1package dns
2
3// Copyright (c) Microsoft Corporation. All rights reserved.
4// Licensed under the MIT License. See License.txt in the project root for license information.
5//
6// Code generated by Microsoft (R) AutoRest Code Generator.
7// Changes may cause incorrect behavior and will be lost if the code is regenerated.
8
9// RecordType enumerates the values for record type.
10type RecordType string
11
12const (
13	// A ...
14	A RecordType = "A"
15	// AAAA ...
16	AAAA RecordType = "AAAA"
17	// CNAME ...
18	CNAME RecordType = "CNAME"
19	// MX ...
20	MX RecordType = "MX"
21	// NS ...
22	NS RecordType = "NS"
23	// PTR ...
24	PTR RecordType = "PTR"
25	// SOA ...
26	SOA RecordType = "SOA"
27	// SRV ...
28	SRV RecordType = "SRV"
29	// TXT ...
30	TXT RecordType = "TXT"
31)
32
33// PossibleRecordTypeValues returns an array of possible values for the RecordType const type.
34func PossibleRecordTypeValues() []RecordType {
35	return []RecordType{A, AAAA, CNAME, MX, NS, PTR, SOA, SRV, TXT}
36}
37