Class: Google::Apis::GkehubV1alpha::MembershipBinding
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV1alpha::MembershipBinding
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkehub_v1alpha/classes.rb,
lib/google/apis/gkehub_v1alpha/representations.rb,
lib/google/apis/gkehub_v1alpha/representations.rb
Overview
MembershipBinding is a subresource of a Membership, representing what Fleet Scopes (or other, future Fleet resources) a Membership is bound to.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#delete_time ⇒ String
Output only.
-
#fleet ⇒ Boolean
(also: #fleet?)
Whether the membershipbinding is Fleet-wide; true means that this Membership should be bound to all Namespaces in this entire Fleet.
-
#labels ⇒ Hash<String,String>
Optional.
-
#name ⇒ String
The resource name for the membershipbinding itself
projects/project/ locations/location/memberships/membership/bindings/membershipbinding`Corresponds to the JSON propertyname`. -
#scope ⇒ String
A Scope resource name in the format
projects/*/locations/*/scopes/*. -
#state ⇒ Google::Apis::GkehubV1alpha::MembershipBindingLifecycleState
MembershipBindingLifecycleState describes the state of a Binding resource.
-
#uid ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MembershipBinding
constructor
A new instance of MembershipBinding.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MembershipBinding
Returns a new instance of MembershipBinding.
3613 3614 3615 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3613 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. When the membership binding was created.
Corresponds to the JSON property createTime
3566 3567 3568 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3566 def create_time @create_time end |
#delete_time ⇒ String
Output only. When the membership binding was deleted.
Corresponds to the JSON property deleteTime
3571 3572 3573 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3571 def delete_time @delete_time end |
#fleet ⇒ Boolean Also known as: fleet?
Whether the membershipbinding is Fleet-wide; true means that this Membership
should be bound to all Namespaces in this entire Fleet.
Corresponds to the JSON property fleet
3577 3578 3579 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3577 def fleet @fleet end |
#labels ⇒ Hash<String,String>
Optional. Labels for this MembershipBinding.
Corresponds to the JSON property labels
3583 3584 3585 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3583 def labels @labels end |
#name ⇒ String
The resource name for the membershipbinding itself projects/project/
locations/location/memberships/membership/bindings/membershipbinding`
Corresponds to the JSON propertyname`
3589 3590 3591 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3589 def name @name end |
#scope ⇒ String
A Scope resource name in the format projects/*/locations/*/scopes/*.
Corresponds to the JSON property scope
3594 3595 3596 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3594 def scope @scope end |
#state ⇒ Google::Apis::GkehubV1alpha::MembershipBindingLifecycleState
MembershipBindingLifecycleState describes the state of a Binding resource.
Corresponds to the JSON property state
3599 3600 3601 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3599 def state @state end |
#uid ⇒ String
Output only. Google-generated UUID for this resource. This is unique across
all membershipbinding resources. If a membershipbinding resource is deleted
and another resource with the same name is created, it gets a different uid.
Corresponds to the JSON property uid
3606 3607 3608 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3606 def uid @uid end |
#update_time ⇒ String
Output only. When the membership binding was last updated.
Corresponds to the JSON property updateTime
3611 3612 3613 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3611 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 3618 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @delete_time = args[:delete_time] if args.key?(:delete_time) @fleet = args[:fleet] if args.key?(:fleet) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @scope = args[:scope] if args.key?(:scope) @state = args[:state] if args.key?(:state) @uid = args[:uid] if args.key?(:uid) @update_time = args[:update_time] if args.key?(:update_time) end |