Class: Google::Apis::CloudresourcemanagerV1beta1::Project

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

Overview

A Project is a high-level Google Cloud Platform entity. It is a container for ACLs, APIs, App Engine Apps, VMs, and other Google Cloud Platform resources.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Project

Returns a new instance of Project.



1024
1025
1026
# File 'lib/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 1024

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

Instance Attribute Details

#create_timeString

Creation time. Read-only. Corresponds to the JSON property createTime

Returns:

  • (String)


978
979
980
# File 'lib/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 978

def create_time
  @create_time
end

#labelsHash<String,String>

The labels associated with this Project. Label keys must be between 1 and 63 characters long and must conform to the following regular expression: a-z0,62 . Label values must be between 0 and 63 characters long and must conform to the regular expression [a-z0-9_-]0,63. A label value can be empty. No more than 256 labels can be associated with a given resource. Clients should store labels in a representation such as JSON that does not depend on specific characters being disallowed. Example: "environment" : "dev" Read-write. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


989
990
991
# File 'lib/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 989

def labels
  @labels
end

#lifecycle_stateString

The Project lifecycle state. Read-only. Corresponds to the JSON property lifecycleState

Returns:

  • (String)


994
995
996
# File 'lib/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 994

def lifecycle_state
  @lifecycle_state
end

#nameString

The optional user-assigned display name of the Project. When present it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen, single-quote, double-quote, space, and exclamation point. Example: My Project Read-write. Corresponds to the JSON property name

Returns:

  • (String)


1002
1003
1004
# File 'lib/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 1002

def name
  @name
end

#parentGoogle::Apis::CloudresourcemanagerV1beta1::ResourceId

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. Corresponds to the JSON property parent



1010
1011
1012
# File 'lib/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 1010

def parent
  @parent
end

#project_idString

The unique, user-assigned ID of the Project. It must be 6 to 30 lowercase letters, digits, or hyphens. It must start with a letter. Trailing hyphens are prohibited. Example: tokyo-rain-123 Read-only after creation. Corresponds to the JSON property projectId

Returns:

  • (String)


1017
1018
1019
# File 'lib/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 1017

def project_id
  @project_id
end

#project_numberFixnum

The number uniquely identifying the project. Example: 415104041262 Read-only. Corresponds to the JSON property projectNumber

Returns:

  • (Fixnum)


1022
1023
1024
# File 'lib/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 1022

def project_number
  @project_number
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1029
1030
1031
1032
1033
1034
1035
1036
1037
# File 'lib/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 1029

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @labels = args[:labels] if args.key?(:labels)
  @lifecycle_state = args[:lifecycle_state] if args.key?(:lifecycle_state)
  @name = args[:name] if args.key?(:name)
  @parent = args[:parent] if args.key?(:parent)
  @project_id = args[:project_id] if args.key?(:project_id)
  @project_number = args[:project_number] if args.key?(:project_number)
end