Class: Google::Apis::ComputeV1::Project
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::Project
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb
Overview
A Project resource. Projects can only be created in the Google Cloud Platform Console. Unless marked otherwise, values can only be modified in the console.
Instance Attribute Summary collapse
-
#common_instance_metadata ⇒ Google::Apis::ComputeV1::Metadata
A metadata key/value entry.
-
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
-
#default_service_account ⇒ String
[Output Only] Default service account used by VMs running in this project.
-
#description ⇒ String
An optional textual description of the resource.
-
#enabled_features ⇒ Array<String>
Restricted features enabled for use on this project.
-
#id ⇒ String
[Output Only] The unique identifier for the resource.
-
#kind ⇒ String
[Output Only] Type of the resource.
-
#name ⇒ String
The project ID.
-
#quotas ⇒ Array<Google::Apis::ComputeV1::Quota>
[Output Only] Quotas assigned to this project.
-
#self_link ⇒ String
[Output Only] Server-defined URL for the resource.
-
#usage_export_location ⇒ Google::Apis::ComputeV1::UsageExportLocation
The location in Cloud Storage and naming method of the daily usage report.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Project
constructor
A new instance of Project.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Project
Returns a new instance of Project.
6572 6573 6574 |
# File 'generated/google/apis/compute_v1/classes.rb', line 6572 def initialize(**args) update!(**args) end |
Instance Attribute Details
#common_instance_metadata ⇒ Google::Apis::ComputeV1::Metadata
A metadata key/value entry.
Corresponds to the JSON property commonInstanceMetadata
6516 6517 6518 |
# File 'generated/google/apis/compute_v1/classes.rb', line 6516 def @common_instance_metadata end |
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
Corresponds to the JSON property creationTimestamp
6521 6522 6523 |
# File 'generated/google/apis/compute_v1/classes.rb', line 6521 def @creation_timestamp end |
#default_service_account ⇒ String
[Output Only] Default service account used by VMs running in this project.
Corresponds to the JSON property defaultServiceAccount
6526 6527 6528 |
# File 'generated/google/apis/compute_v1/classes.rb', line 6526 def default_service_account @default_service_account end |
#description ⇒ String
An optional textual description of the resource.
Corresponds to the JSON property description
6531 6532 6533 |
# File 'generated/google/apis/compute_v1/classes.rb', line 6531 def description @description end |
#enabled_features ⇒ Array<String>
Restricted features enabled for use on this project.
Corresponds to the JSON property enabledFeatures
6536 6537 6538 |
# File 'generated/google/apis/compute_v1/classes.rb', line 6536 def enabled_features @enabled_features end |
#id ⇒ String
[Output Only] The unique identifier for the resource. This identifier is
defined by the server. This is not the project ID, and is just a unique ID
used by Compute Engine to identify resources.
Corresponds to the JSON property id
6543 6544 6545 |
# File 'generated/google/apis/compute_v1/classes.rb', line 6543 def id @id end |
#kind ⇒ String
[Output Only] Type of the resource. Always compute#project for projects.
Corresponds to the JSON property kind
6548 6549 6550 |
# File 'generated/google/apis/compute_v1/classes.rb', line 6548 def kind @kind end |
#name ⇒ String
The project ID. For example: my-example-project. Use the project ID to make
requests to Compute Engine.
Corresponds to the JSON property name
6554 6555 6556 |
# File 'generated/google/apis/compute_v1/classes.rb', line 6554 def name @name end |
#quotas ⇒ Array<Google::Apis::ComputeV1::Quota>
[Output Only] Quotas assigned to this project.
Corresponds to the JSON property quotas
6559 6560 6561 |
# File 'generated/google/apis/compute_v1/classes.rb', line 6559 def quotas @quotas end |
#self_link ⇒ String
[Output Only] Server-defined URL for the resource.
Corresponds to the JSON property selfLink
6564 6565 6566 |
# File 'generated/google/apis/compute_v1/classes.rb', line 6564 def self_link @self_link end |
#usage_export_location ⇒ Google::Apis::ComputeV1::UsageExportLocation
The location in Cloud Storage and naming method of the daily usage report.
Contains bucket_name and report_name prefix.
Corresponds to the JSON property usageExportLocation
6570 6571 6572 |
# File 'generated/google/apis/compute_v1/classes.rb', line 6570 def usage_export_location @usage_export_location end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 |
# File 'generated/google/apis/compute_v1/classes.rb', line 6577 def update!(**args) @common_instance_metadata = args[:common_instance_metadata] if args.key?(:common_instance_metadata) @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp) @default_service_account = args[:default_service_account] if args.key?(:default_service_account) @description = args[:description] if args.key?(:description) @enabled_features = args[:enabled_features] if args.key?(:enabled_features) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @quotas = args[:quotas] if args.key?(:quotas) @self_link = args[:self_link] if args.key?(:self_link) @usage_export_location = args[:usage_export_location] if args.key?(:usage_export_location) end |