Class: Google::Apis::ServiceconsumermanagementV1::TenancyUnit
- Inherits:
-
Object
- Object
- Google::Apis::ServiceconsumermanagementV1::TenancyUnit
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/serviceconsumermanagement_v1/classes.rb,
generated/google/apis/serviceconsumermanagement_v1/representations.rb,
generated/google/apis/serviceconsumermanagement_v1/representations.rb
Overview
Representation of a tenancy unit.
Instance Attribute Summary collapse
-
#consumer ⇒ String
For example 'projects/123456'.
-
#create_time ⇒ String
Corresponds to the JSON property
createTime
. -
#name ⇒ String
Globally unique identifier of this tenancy unit "services/
service
/collection id
/resource id
/tenancyUnits/unit
" Corresponds to the JSON propertyname
. -
#service ⇒ String
For example 'serviceconsumermanagement.googleapis.com'.
-
#tenant_resources ⇒ Array<Google::Apis::ServiceconsumermanagementV1::TenantResource>
Resources constituting the tenancy unit.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TenancyUnit
constructor
A new instance of TenancyUnit.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TenancyUnit
Returns a new instance of TenancyUnit
3600 3601 3602 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 3600 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consumer ⇒ String
For example 'projects/123456'.
Corresponds to the JSON property consumer
3575 3576 3577 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 3575 def consumer @consumer end |
#create_time ⇒ String
Corresponds to the JSON property createTime
3580 3581 3582 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 3580 def create_time @create_time end |
#name ⇒ String
Globally unique identifier of this tenancy unit
"services/service
/collection id
/resource id
/tenancyUnits/unit
"
Corresponds to the JSON property name
3586 3587 3588 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 3586 def name @name end |
#service ⇒ String
For example 'serviceconsumermanagement.googleapis.com'.
Corresponds to the JSON property service
3592 3593 3594 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 3592 def service @service end |
#tenant_resources ⇒ Array<Google::Apis::ServiceconsumermanagementV1::TenantResource>
Resources constituting the tenancy unit.
There can be at most 512 tenant resources in a tenancy unit.
Corresponds to the JSON property tenantResources
3598 3599 3600 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 3598 def tenant_resources @tenant_resources end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3605 3606 3607 3608 3609 3610 3611 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 3605 def update!(**args) @consumer = args[:consumer] if args.key?(:consumer) @create_time = args[:create_time] if args.key?(:create_time) @name = args[:name] if args.key?(:name) @service = args[:service] if args.key?(:service) @tenant_resources = args[:tenant_resources] if args.key?(:tenant_resources) end |