class Google::Apis::CloudresourcemanagerV1::Project
A Project is a high-level Google Cloud Platform entity. It is a container for ACLs, APIs, AppEngine Apps, VMs, and other Google Cloud Platform resources.
Attributes
Creation time. Read-only. Corresponds to the JSON property `createTime` @return [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-z](\ [-a-z0-9]*)?. Label values must be between 0 and 63 characters long and must conform to the regular expression ([a-z](*[a-z0-9])?)?. 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` @return [Hash<String,String>]
The Project lifecycle state. Read-only. Corresponds to the JSON property `lifecycleState` @return [String]
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 AppEngine app, a Compute Engine instance, a Cloud SQL database, and so on. Corresponds to the JSON property `parent` @return [Google::Apis::CloudresourcemanagerV1::ResourceId]
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` @return [String]
The number uniquely identifying the project. Example: 415104041262 Read-only. Corresponds to the JSON property `projectNumber` @return [String]
Public Class Methods
# File generated/google/apis/cloudresourcemanager_v1/classes.rb, line 79 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/cloudresourcemanager_v1/classes.rb, line 84 def update!(**args) @project_number = args[:project_number] if args.key?(:project_number) @project_id = args[:project_id] if args.key?(:project_id) @lifecycle_state = args[:lifecycle_state] if args.key?(:lifecycle_state) @name = args[:name] if args.key?(:name) @create_time = args[:create_time] if args.key?(:create_time) @labels = args[:labels] if args.key?(:labels) @parent = args[:parent] if args.key?(:parent) end