Class: Google::Apis::CloudresourcemanagerV1beta1::Organization
- Inherits:
-
Object
- Object
- Google::Apis::CloudresourcemanagerV1beta1::Organization
- Defined in:
- generated/google/apis/cloudresourcemanager_v1beta1/classes.rb,
generated/google/apis/cloudresourcemanager_v1beta1/representations.rb,
generated/google/apis/cloudresourcemanager_v1beta1/representations.rb
Overview
The root node in the resource hierarchy to which a particular entity's (e.g., company) resources belong.
Instance Attribute Summary collapse
-
#creation_time ⇒ String
Timestamp when the Organization was created.
-
#display_name ⇒ String
A friendly string to be used to refer to the Organization in the UI.
-
#lifecycle_state ⇒ String
The organization's current lifecycle state.
-
#name ⇒ String
Output Only.
-
#organization_id ⇒ String
An immutable id for the Organization that is assigned on creation.
-
#owner ⇒ Google::Apis::CloudresourcemanagerV1beta1::OrganizationOwner
The entity that owns an Organization.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Organization
constructor
A new instance of Organization.
-
#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) ⇒ Organization
Returns a new instance of Organization
605 606 607 |
# File 'generated/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 605 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creation_time ⇒ String
Timestamp when the Organization was created. Assigned by the server.
Corresponds to the JSON property creationTime
603 604 605 |
# File 'generated/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 603 def creation_time @creation_time end |
#display_name ⇒ String
A friendly string to be used to refer to the Organization in the UI.
Assigned by the server, set to the primary domain of the G Suite
customer that owns the organization.
Corresponds to the JSON property displayName
597 598 599 |
# File 'generated/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 597 def display_name @display_name end |
#lifecycle_state ⇒ String
The organization's current lifecycle state. Assigned by the server.
Corresponds to the JSON property lifecycleState
589 590 591 |
# File 'generated/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 589 def lifecycle_state @lifecycle_state end |
#name ⇒ String
Output Only. The resource name of the organization. This is the
organization's relative path in the API. Its format is
"organizations/[organization_id]". For example, "organizations/1234".
Corresponds to the JSON property name
575 576 577 |
# File 'generated/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 575 def name @name end |
#organization_id ⇒ String
An immutable id for the Organization that is assigned on creation. This
should be omitted when creating a new Organization.
This field is read-only.
This field is deprecated and will be removed in v1. Use name instead.
Corresponds to the JSON property organizationId
583 584 585 |
# File 'generated/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 583 def organization_id @organization_id end |
#owner ⇒ Google::Apis::CloudresourcemanagerV1beta1::OrganizationOwner
The entity that owns an Organization. The lifetime of the Organization and
all of its descendants are bound to the OrganizationOwner. If the
OrganizationOwner is deleted, the Organization and all its descendants will
be deleted.
Corresponds to the JSON property owner
568 569 570 |
# File 'generated/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 568 def owner @owner end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
610 611 612 613 614 615 616 617 |
# File 'generated/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 610 def update!(**args) @owner = args[:owner] if args.key?(:owner) @name = args[:name] if args.key?(:name) @organization_id = args[:organization_id] if args.key?(:organization_id) @lifecycle_state = args[:lifecycle_state] if args.key?(:lifecycle_state) @display_name = args[:display_name] if args.key?(:display_name) @creation_time = args[:creation_time] if args.key?(:creation_time) end |