Class: Google::Apis::WorkloadmanagerV1::AssetLocation

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/workloadmanager_v1/classes.rb,
lib/google/apis/workloadmanager_v1/representations.rb,
lib/google/apis/workloadmanager_v1/representations.rb

Overview

Provides the mapping of a cloud asset to a direct physical location or to a proxy that defines the location on its behalf.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AssetLocation

Returns a new instance of AssetLocation.



52
53
54
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 52

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

Instance Attribute Details

#expectedGoogle::Apis::WorkloadmanagerV1::IsolationExpectations

Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state of the region at the time of asset creation. Corresponds to the JSON property expected



34
35
36
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 34

def expected
  @expected
end

#extra_parametersArray<Google::Apis::WorkloadmanagerV1::ExtraParameter>

Defines extra parameters required for specific asset types. Corresponds to the JSON property extraParameters



39
40
41
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 39

def extra_parameters
  @extra_parameters
end

#location_dataArray<Google::Apis::WorkloadmanagerV1::LocationData>

Contains all kinds of physical location definitions for this asset. Corresponds to the JSON property locationData



44
45
46
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 44

def location_data
  @location_data
end

#parent_assetArray<Google::Apis::WorkloadmanagerV1::CloudAsset>

Defines parents assets if any in order to allow later generation of child_asset_location data via child assets. Corresponds to the JSON property parentAsset



50
51
52
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 50

def parent_asset
  @parent_asset
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



57
58
59
60
61
62
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 57

def update!(**args)
  @expected = args[:expected] if args.key?(:expected)
  @extra_parameters = args[:extra_parameters] if args.key?(:extra_parameters)
  @location_data = args[:location_data] if args.key?(:location_data)
  @parent_asset = args[:parent_asset] if args.key?(:parent_asset)
end