class Google::Apis::GkehubV1alpha::IdentityServiceMembershipState

**Anthos Identity Service**: State for a single Membership.

Attributes

failure_reason[RW]

The reason of the failure. Corresponds to the JSON property `failureReason` @return [String]

installed_version[RW]

Installed AIS version. This is the AIS version installed on this member. The values makes sense iff state is OK. Corresponds to the JSON property `installedVersion` @return [String]

member_config[RW]

**Anthos Identity Service**: Configuration for a single Membership. Corresponds to the JSON property `memberConfig` @return [Google::Apis::GkehubV1alpha::IdentityServiceMembershipSpec]

state[RW]

Deployment state on this member Corresponds to the JSON property `state` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/gkehub_v1alpha/classes.rb, line 1430
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/gkehub_v1alpha/classes.rb, line 1435
def update!(**args)
  @failure_reason = args[:failure_reason] if args.key?(:failure_reason)
  @installed_version = args[:installed_version] if args.key?(:installed_version)
  @member_config = args[:member_config] if args.key?(:member_config)
  @state = args[:state] if args.key?(:state)
end