Class: Google::Apis::AppengineV1alpha::GceTag

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

Overview

For use only by GCE. GceTag is a wrapper around the GCE administrative tag with parent info.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GceTag

Returns a new instance of GceTag.

[View source]

347
348
349
# File 'lib/google/apis/appengine_v1alpha/classes.rb', line 347

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

Instance Attribute Details

#parentArray<String>

The parents(s) of the tag. Eg. projects/123, folders/456 It usually contains only one parent. But, in some corner cases, it can contain multiple parents. Currently, organizations are not supported. Corresponds to the JSON property parent

Returns:

  • (Array<String>)

340
341
342
# File 'lib/google/apis/appengine_v1alpha/classes.rb', line 340

def parent
  @parent
end

#tagString

The administrative_tag name. Corresponds to the JSON property tag

Returns:

  • (String)

345
346
347
# File 'lib/google/apis/appengine_v1alpha/classes.rb', line 345

def tag
  @tag
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

352
353
354
355
# File 'lib/google/apis/appengine_v1alpha/classes.rb', line 352

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