Class: Google::Apis::VmwareengineV1::PrivateCloud

Inherits:
Object
  • Object
show all
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 private cloud resource. Private clouds of type STANDARD and TIME_LIMITED are zonal resources, STRETCHED private clouds are regional.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PrivateCloud

Returns a new instance of PrivateCloud.



1490
1491
1492
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1490

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#create_timeString

Output only. Creation time of this resource. Corresponds to the JSON property createTime

Returns:

  • (String)


1418
1419
1420
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1418

def create_time
  @create_time
end

#delete_timeString

Output only. Time when the resource was scheduled for deletion. Corresponds to the JSON property deleteTime

Returns:

  • (String)


1423
1424
1425
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1423

def delete_time
  @delete_time
end

#descriptionString

User-provided description for this private cloud. Corresponds to the JSON property description

Returns:

  • (String)


1428
1429
1430
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1428

def description
  @description
end

#expire_timeString

Output only. Time when the resource will be irreversibly deleted. Corresponds to the JSON property expireTime

Returns:

  • (String)


1433
1434
1435
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1433

def expire_time
  @expire_time
end

#hcxGoogle::Apis::VmwareengineV1::Hcx

Details about a HCX Cloud Manager appliance. Corresponds to the JSON property hcx



1438
1439
1440
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1438

def hcx
  @hcx
end

#management_clusterGoogle::Apis::VmwareengineV1::ManagementCluster

Management cluster configuration. Corresponds to the JSON property managementCluster



1443
1444
1445
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1443

def management_cluster
  @management_cluster
end

#nameString

Output only. The resource name of this private cloud. 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 Corresponds to the JSON property name

Returns:

  • (String)


1451
1452
1453
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1451

def name
  @name
end

#network_configGoogle::Apis::VmwareengineV1::NetworkConfig

Network configuration in the consumer project with which the peering has to be done. Corresponds to the JSON property networkConfig



1457
1458
1459
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1457

def network_config
  @network_config
end

#nsxGoogle::Apis::VmwareengineV1::Nsx

Details about a NSX Manager appliance. Corresponds to the JSON property nsx



1462
1463
1464
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1462

def nsx
  @nsx
end

#stateString

Output only. State of the resource. New values may be added to this enum when appropriate. Corresponds to the JSON property state

Returns:

  • (String)


1468
1469
1470
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1468

def state
  @state
end

#typeString

Optional. Type of the private cloud. Defaults to STANDARD. Corresponds to the JSON property type

Returns:

  • (String)


1473
1474
1475
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1473

def type
  @type
end

#uidString

Output only. System-generated unique identifier for the resource. Corresponds to the JSON property uid

Returns:

  • (String)


1478
1479
1480
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1478

def uid
  @uid
end

#update_timeString

Output only. Last update time of this resource. Corresponds to the JSON property updateTime

Returns:

  • (String)


1483
1484
1485
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1483

def update_time
  @update_time
end

#vcenterGoogle::Apis::VmwareengineV1::Vcenter

Details about a vCenter Server management appliance. Corresponds to the JSON property vcenter



1488
1489
1490
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1488

def vcenter
  @vcenter
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1495

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @delete_time = args[:delete_time] if args.key?(:delete_time)
  @description = args[:description] if args.key?(:description)
  @expire_time = args[:expire_time] if args.key?(:expire_time)
  @hcx = args[:hcx] if args.key?(:hcx)
  @management_cluster = args[:management_cluster] if args.key?(:management_cluster)
  @name = args[:name] if args.key?(:name)
  @network_config = args[:network_config] if args.key?(:network_config)
  @nsx = args[:nsx] if args.key?(:nsx)
  @state = args[:state] if args.key?(:state)
  @type = args[:type] if args.key?(:type)
  @uid = args[:uid] if args.key?(:uid)
  @update_time = args[:update_time] if args.key?(:update_time)
  @vcenter = args[:vcenter] if args.key?(:vcenter)
end