Class: Google::Apis::CloudresourcemanagerV1::ResourceId

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudresourcemanager_v1/classes.rb,
generated/google/apis/cloudresourcemanager_v1/representations.rb,
generated/google/apis/cloudresourcemanager_v1/representations.rb

Overview

A container to reference an id for any resource type. A resource in Google Cloud Platform is a generic term for something you (a developer) may want to interact with through one of our API's. Some examples are an App Engine app, a Compute Engine instance, a Cloud SQL database, and so on.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ResourceId

Returns a new instance of ResourceId.



1690
1691
1692
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1690

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

Instance Attribute Details

#idString

The type-specific id. This should correspond to the id used in the type- specific API's. Corresponds to the JSON property id

Returns:

  • (String)


1682
1683
1684
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1682

def id
  @id
end

#typeString

The resource type this id is for. At present, the valid types are: " organization", "folder", and "project". Corresponds to the JSON property type

Returns:

  • (String)


1688
1689
1690
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1688

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1695
1696
1697
1698
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1695

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