Class: Google::Apis::GkeonpremV1::VmwareAdminVCenterConfig
- Inherits:
-
Object
- Object
- Google::Apis::GkeonpremV1::VmwareAdminVCenterConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkeonprem_v1/classes.rb,
lib/google/apis/gkeonprem_v1/representations.rb,
lib/google/apis/gkeonprem_v1/representations.rb
Overview
VmwareAdminVCenterConfig contains VCenter configuration for VMware admin cluster.
Instance Attribute Summary collapse
-
#address ⇒ String
The vCenter IP address.
-
#ca_cert_data ⇒ String
Contains the vCenter CA certificate public key for SSL verification.
-
#cluster ⇒ String
The name of the vCenter cluster for the admin cluster.
-
#data_disk ⇒ String
The name of the virtual machine disk (VMDK) for the admin cluster.
-
#datacenter ⇒ String
The name of the vCenter datacenter for the admin cluster.
-
#datastore ⇒ String
The name of the vCenter datastore for the admin cluster.
-
#folder ⇒ String
The name of the vCenter folder for the admin cluster.
-
#resource_pool ⇒ String
The name of the vCenter resource pool for the admin cluster.
-
#storage_policy_name ⇒ String
The name of the vCenter storage policy for the user cluster.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VmwareAdminVCenterConfig
constructor
A new instance of VmwareAdminVCenterConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VmwareAdminVCenterConfig
Returns a new instance of VmwareAdminVCenterConfig.
4294 4295 4296 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4294 def initialize(**args) update!(**args) end |
Instance Attribute Details
#address ⇒ String
The vCenter IP address.
Corresponds to the JSON property address
4252 4253 4254 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4252 def address @address end |
#ca_cert_data ⇒ String
Contains the vCenter CA certificate public key for SSL verification.
Corresponds to the JSON property caCertData
4257 4258 4259 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4257 def ca_cert_data @ca_cert_data end |
#cluster ⇒ String
The name of the vCenter cluster for the admin cluster.
Corresponds to the JSON property cluster
4262 4263 4264 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4262 def cluster @cluster end |
#data_disk ⇒ String
The name of the virtual machine disk (VMDK) for the admin cluster.
Corresponds to the JSON property dataDisk
4267 4268 4269 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4267 def data_disk @data_disk end |
#datacenter ⇒ String
The name of the vCenter datacenter for the admin cluster.
Corresponds to the JSON property datacenter
4272 4273 4274 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4272 def datacenter @datacenter end |
#datastore ⇒ String
The name of the vCenter datastore for the admin cluster.
Corresponds to the JSON property datastore
4277 4278 4279 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4277 def datastore @datastore end |
#folder ⇒ String
The name of the vCenter folder for the admin cluster.
Corresponds to the JSON property folder
4282 4283 4284 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4282 def folder @folder end |
#resource_pool ⇒ String
The name of the vCenter resource pool for the admin cluster.
Corresponds to the JSON property resourcePool
4287 4288 4289 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4287 def resource_pool @resource_pool end |
#storage_policy_name ⇒ String
The name of the vCenter storage policy for the user cluster.
Corresponds to the JSON property storagePolicyName
4292 4293 4294 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4292 def storage_policy_name @storage_policy_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4299 def update!(**args) @address = args[:address] if args.key?(:address) @ca_cert_data = args[:ca_cert_data] if args.key?(:ca_cert_data) @cluster = args[:cluster] if args.key?(:cluster) @data_disk = args[:data_disk] if args.key?(:data_disk) @datacenter = args[:datacenter] if args.key?(:datacenter) @datastore = args[:datastore] if args.key?(:datastore) @folder = args[:folder] if args.key?(:folder) @resource_pool = args[:resource_pool] if args.key?(:resource_pool) @storage_policy_name = args[:storage_policy_name] if args.key?(:storage_policy_name) end |