-
Notifications
You must be signed in to change notification settings - Fork 82
/
create_resolver_vnic_endpoint_details.go
104 lines (83 loc) · 4.07 KB
/
create_resolver_vnic_endpoint_details.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
// 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 (
"encoding/json"
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// CreateResolverVnicEndpointDetails The body for defining a new resolver VNIC endpoint. Either isForwarding or isListening must be true, but not both.
// If isListening is true, a listeningAddress may be provided. If isForwarding is true, a forwardingAddress
// may be provided. When not provided, an address will be chosen automatically.
// **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
type CreateResolverVnicEndpointDetails struct {
// The name of the resolver endpoint. Must be unique, case-insensitive, within the resolver.
Name *string `mandatory:"true" json:"name"`
// A Boolean flag indicating whether or not the resolver endpoint is for forwarding.
IsForwarding *bool `mandatory:"true" json:"isForwarding"`
// A Boolean flag indicating whether or not the resolver endpoint is for listening.
IsListening *bool `mandatory:"true" json:"isListening"`
// The OCID of a subnet. Must be part of the VCN that the resolver is attached to.
SubnetId *string `mandatory:"true" json:"subnetId"`
// An IP address from which forwarded queries may be sent. For VNIC endpoints, this IP address must be part
// of the subnet and will be assigned by the system if unspecified when isForwarding is true.
ForwardingAddress *string `mandatory:"false" json:"forwardingAddress"`
// An IP address to listen to queries on. For VNIC endpoints this IP address must be part of the
// subnet and will be assigned by the system if unspecified when isListening is true.
ListeningAddress *string `mandatory:"false" json:"listeningAddress"`
// An array of network security group OCIDs for the resolver endpoint. These must be part of the VCN that the
// resolver endpoint is a part of.
NsgIds []string `mandatory:"false" json:"nsgIds"`
}
// GetName returns Name
func (m CreateResolverVnicEndpointDetails) GetName() *string {
return m.Name
}
// GetForwardingAddress returns ForwardingAddress
func (m CreateResolverVnicEndpointDetails) GetForwardingAddress() *string {
return m.ForwardingAddress
}
// GetIsForwarding returns IsForwarding
func (m CreateResolverVnicEndpointDetails) GetIsForwarding() *bool {
return m.IsForwarding
}
// GetIsListening returns IsListening
func (m CreateResolverVnicEndpointDetails) GetIsListening() *bool {
return m.IsListening
}
// GetListeningAddress returns ListeningAddress
func (m CreateResolverVnicEndpointDetails) GetListeningAddress() *string {
return m.ListeningAddress
}
func (m CreateResolverVnicEndpointDetails) 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 CreateResolverVnicEndpointDetails) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// MarshalJSON marshals to json representation
func (m CreateResolverVnicEndpointDetails) MarshalJSON() (buff []byte, e error) {
type MarshalTypeCreateResolverVnicEndpointDetails CreateResolverVnicEndpointDetails
s := struct {
DiscriminatorParam string `json:"endpointType"`
MarshalTypeCreateResolverVnicEndpointDetails
}{
"VNIC",
(MarshalTypeCreateResolverVnicEndpointDetails)(m),
}
return json.Marshal(&s)
}