class Google::Apis::ServiceusageV1::GetServiceIdentityResponse

Response message for getting service identity.

Attributes

identity[RW]

Service identity for a service. This is the identity that service producer should use to access consumer resources. Corresponds to the JSON property `identity` @return [Google::Apis::ServiceusageV1::ServiceIdentity]

state[RW]

Service identity state. Corresponds to the JSON property `state` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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