Class: Google::Apis::ServicecontrolV1::ResourceLocation

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

Overview

Location information about a resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ResourceLocation

Returns a new instance of ResourceLocation.



2177
2178
2179
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 2177

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

Instance Attribute Details

#current_locationsArray<String>

The locations of a resource after the execution of the operation. Requests to create or delete a location based resource must populate the ' current_locations' field and not the 'original_locations' field. For example: " europe-west1-a" "us-east1" "nam3" Corresponds to the JSON property currentLocations

Returns:

  • (Array<String>)


2167
2168
2169
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 2167

def current_locations
  @current_locations
end

#original_locationsArray<String>

The locations of a resource prior to the execution of the operation. Requests that mutate the resource's location must populate both the 'original_locations' as well as the 'current_locations' fields. For example: "europe-west1-a" "us- east1" "nam3" Corresponds to the JSON property originalLocations

Returns:

  • (Array<String>)


2175
2176
2177
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 2175

def original_locations
  @original_locations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2182
2183
2184
2185
# File 'lib/google/apis/servicecontrol_v1/classes.rb', line 2182

def update!(**args)
  @current_locations = args[:current_locations] if args.key?(:current_locations)
  @original_locations = args[:original_locations] if args.key?(:original_locations)
end