class Google::Apis::ServiceconsumermanagementV1beta1::V1beta1GenerateDefaultIdentityResponse

Response message for the `GenerateDefaultIdentity` method. This response message is assigned to the `response` field of the returned Operation when that operation is done.

Attributes

attach_status[RW]

Status of the role attachment. Under development (go/si-attach-role), currently always return ATTACH_STATUS_UNSPECIFIED) Corresponds to the JSON property `attachStatus` @return [String]

identity[RW]

A default identity in the Identity and Access Management API. Corresponds to the JSON property `identity` @return [Google::Apis::ServiceconsumermanagementV1beta1::V1beta1DefaultIdentity]

role[RW]

Role attached to consumer project. Empty if not attached in this request. ( Under development, currently always return empty.) Corresponds to the JSON property `role` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb, line 3545
def update!(**args)
  @attach_status = args[:attach_status] if args.key?(:attach_status)
  @identity = args[:identity] if args.key?(:identity)
  @role = args[:role] if args.key?(:role)
end