-
Notifications
You must be signed in to change notification settings - Fork 82
/
record_operation.go
136 lines (114 loc) · 5.87 KB
/
record_operation.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
// Copyright (c) 2016, 2018, 2024, Oracle and/or its affiliates. All rights reserved.
// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
// Code generated. DO NOT EDIT.
// DNS API
//
// API for the DNS service. Use this API to manage DNS zones, records, and other DNS resources.
// For more information, see Overview of the DNS Service (https://docs.cloud.oracle.com/iaas/Content/DNS/Concepts/dnszonemanagement.htm).
//
package dns
import (
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// RecordOperation An extension of the existing record resource, describing either a
// precondition, an add, or a remove. Preconditions check all fields,
// including read-only data like `recordHash` and `rrsetVersion`.
type RecordOperation struct {
// The fully qualified domain name where the record can be located.
Domain *string `mandatory:"false" json:"domain"`
// A unique identifier for the record within its zone.
RecordHash *string `mandatory:"false" json:"recordHash"`
// A Boolean flag indicating whether or not parts of the record
// are unable to be explicitly managed.
IsProtected *bool `mandatory:"false" json:"isProtected"`
// The record's data, as whitespace-delimited tokens in
// type-specific presentation format. All RDATA is normalized and the
// returned presentation of your RDATA may differ from its initial input.
// For more information about RDATA, see Supported DNS Resource Record Types (https://docs.cloud.oracle.com/iaas/Content/DNS/Reference/supporteddnsresource.htm)
Rdata *string `mandatory:"false" json:"rdata"`
// The latest version of the record's zone in which its RRSet differs
// from the preceding version.
RrsetVersion *string `mandatory:"false" json:"rrsetVersion"`
// The type of DNS record, such as A or CNAME. For more information, see Resource Record (RR) TYPEs (https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-4).
Rtype *string `mandatory:"false" json:"rtype"`
// The Time To Live for the record, in seconds. Using a TTL lower than 30 seconds is not recommended.
Ttl *int `mandatory:"false" json:"ttl"`
// A description of how a record relates to a PATCH operation.
//
// - `REQUIRE` indicates a precondition that record data **must** already exist.
// - `PROHIBIT` indicates a precondition that record data **must not** already exist.
// - `ADD` indicates that record data **must** exist after successful application.
// - `REMOVE` indicates that record data **must not** exist after successful application.
//
// **Note:** `ADD` and `REMOVE` operations can succeed even if
// they require no changes when applied, such as when the described
// records are already present or absent.
//
// **Note:** `ADD` and `REMOVE` operations can describe changes for
// more than one record.
//
// **Example:** `{ "domain": "www.example.com", "rtype": "AAAA", "ttl": 60 }`
// specifies a new TTL for every record in the www.example.com AAAA RRSet.
Operation RecordOperationOperationEnum `mandatory:"false" json:"operation,omitempty"`
}
func (m RecordOperation) String() string {
return common.PointerString(m)
}
// ValidateEnumValue returns an error when providing an unsupported enum value
// This function is being called during constructing API request process
// Not recommended for calling this function directly
func (m RecordOperation) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingRecordOperationOperationEnum(string(m.Operation)); !ok && m.Operation != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for Operation: %s. Supported values are: %s.", m.Operation, strings.Join(GetRecordOperationOperationEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// RecordOperationOperationEnum Enum with underlying type: string
type RecordOperationOperationEnum string
// Set of constants representing the allowable values for RecordOperationOperationEnum
const (
RecordOperationOperationRequire RecordOperationOperationEnum = "REQUIRE"
RecordOperationOperationProhibit RecordOperationOperationEnum = "PROHIBIT"
RecordOperationOperationAdd RecordOperationOperationEnum = "ADD"
RecordOperationOperationRemove RecordOperationOperationEnum = "REMOVE"
)
var mappingRecordOperationOperationEnum = map[string]RecordOperationOperationEnum{
"REQUIRE": RecordOperationOperationRequire,
"PROHIBIT": RecordOperationOperationProhibit,
"ADD": RecordOperationOperationAdd,
"REMOVE": RecordOperationOperationRemove,
}
var mappingRecordOperationOperationEnumLowerCase = map[string]RecordOperationOperationEnum{
"require": RecordOperationOperationRequire,
"prohibit": RecordOperationOperationProhibit,
"add": RecordOperationOperationAdd,
"remove": RecordOperationOperationRemove,
}
// GetRecordOperationOperationEnumValues Enumerates the set of values for RecordOperationOperationEnum
func GetRecordOperationOperationEnumValues() []RecordOperationOperationEnum {
values := make([]RecordOperationOperationEnum, 0)
for _, v := range mappingRecordOperationOperationEnum {
values = append(values, v)
}
return values
}
// GetRecordOperationOperationEnumStringValues Enumerates the set of values in String for RecordOperationOperationEnum
func GetRecordOperationOperationEnumStringValues() []string {
return []string{
"REQUIRE",
"PROHIBIT",
"ADD",
"REMOVE",
}
}
// GetMappingRecordOperationOperationEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingRecordOperationOperationEnum(val string) (RecordOperationOperationEnum, bool) {
enum, ok := mappingRecordOperationOperationEnumLowerCase[strings.ToLower(val)]
return enum, ok
}