Class: Google::Apis::ServicenetworkingV1::ServiceIdentity

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/servicenetworking_v1/classes.rb,
generated/google/apis/servicenetworking_v1/representations.rb,
generated/google/apis/servicenetworking_v1/representations.rb

Overview

The per-product per-project service identity for a service. Use this field to configure per-product per-project service identity. Example of a service identity configuration. usage: service_identity:

  • service_account_parent: "projects/123456789" display_name: "Cloud XXX Service Agent" description: "Used as the identity of Cloud XXX to access resources"

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ServiceIdentity

Returns a new instance of ServiceIdentity.



3418
3419
3420
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3418

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#descriptionString

Optional. A user-specified opaque description of the service account. Must be less than or equal to 256 UTF-8 bytes. Corresponds to the JSON property description

Returns:

  • (String)


3403
3404
3405
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3403

def description
  @description
end

#display_nameString

Optional. A user-specified name for the service account. Must be less than or equal to 100 UTF-8 bytes. Corresponds to the JSON property displayName

Returns:

  • (String)


3409
3410
3411
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3409

def display_name
  @display_name
end

#service_account_parentString

A service account project that hosts the service accounts. An example name would be: projects/123456789 Corresponds to the JSON property serviceAccountParent

Returns:

  • (String)


3416
3417
3418
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3416

def 
  @service_account_parent
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3423
3424
3425
3426
3427
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3423

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @service_account_parent = args[:service_account_parent] if args.key?(:service_account_parent)
end