Class: Google::Apis::VmwareengineV1::ManagementDnsZoneBinding
- Inherits:
-
Object
- Object
- Google::Apis::VmwareengineV1::ManagementDnsZoneBinding
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vmwareengine_v1/classes.rb,
lib/google/apis/vmwareengine_v1/representations.rb,
lib/google/apis/vmwareengine_v1/representations.rb
Overview
Represents a binding between a network and the management DNS zone. A management DNS zone is the Cloud DNS cross-project binding zone that VMware Engine creates for each private cloud. It contains FQDNs and corresponding IP addresses for the private cloud's ESXi hosts and management VM appliances like vCenter and NSX Manager.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
User-provided description for this resource.
-
#name ⇒ String
Output only.
-
#state ⇒ String
Output only.
-
#uid ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
-
#vmware_engine_network ⇒ String
Network to bind is a VMware Engine network.
-
#vpc_network ⇒ String
Network to bind is a standard consumer VPC.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ManagementDnsZoneBinding
constructor
A new instance of ManagementDnsZoneBinding.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ManagementDnsZoneBinding
Returns a new instance of ManagementDnsZoneBinding.
1724 1725 1726 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1724 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Creation time of this resource.
Corresponds to the JSON property createTime
1678 1679 1680 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1678 def create_time @create_time end |
#description ⇒ String
User-provided description for this resource.
Corresponds to the JSON property description
1683 1684 1685 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1683 def description @description end |
#name ⇒ String
Output only. The resource name of this binding. Resource names are schemeless
URIs that follow the conventions in https://cloud.google.com/apis/design/
resource_names. For example: projects/my-project/locations/us-central1-a/
privateClouds/my-cloud/managementDnsZoneBindings/my-management-dns-zone-
binding
Corresponds to the JSON property name
1692 1693 1694 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1692 def name @name end |
#state ⇒ String
Output only. The state of the resource.
Corresponds to the JSON property state
1697 1698 1699 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1697 def state @state end |
#uid ⇒ String
Output only. System-generated unique identifier for the resource.
Corresponds to the JSON property uid
1702 1703 1704 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1702 def uid @uid end |
#update_time ⇒ String
Output only. Last update time of this resource.
Corresponds to the JSON property updateTime
1707 1708 1709 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1707 def update_time @update_time end |
#vmware_engine_network ⇒ String
Network to bind is a VMware Engine network. Specify the name in the following
form for VMware engine network: projects/
project/locations/global/
vmwareEngineNetworks/
vmware_engine_network_id.
project`can either be a
project number or a project ID.
Corresponds to the JSON property
vmwareEngineNetwork`
1715 1716 1717 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1715 def vmware_engine_network @vmware_engine_network end |
#vpc_network ⇒ String
Network to bind is a standard consumer VPC. Specify the name in the following
form for consumer VPC network: projects/
project/global/networks/
network_id
. project
can either be a project number or a project ID.
Corresponds to the JSON property vpcNetwork
1722 1723 1724 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1722 def vpc_network @vpc_network end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1729 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @name = args[:name] if args.key?(:name) @state = args[:state] if args.key?(:state) @uid = args[:uid] if args.key?(:uid) @update_time = args[:update_time] if args.key?(:update_time) @vmware_engine_network = args[:vmware_engine_network] if args.key?(:vmware_engine_network) @vpc_network = args[:vpc_network] if args.key?(:vpc_network) end |