Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ServiceIssuersMapping
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ServiceIssuersMapping
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Instance Attribute Summary collapse
-
#email_ids ⇒ Array<String>
List of trusted issuer email ids.
-
#service ⇒ String
String indicating the Apigee service name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ServiceIssuersMapping
constructor
A new instance of GoogleCloudApigeeV1ServiceIssuersMapping.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ServiceIssuersMapping
Returns a new instance of GoogleCloudApigeeV1ServiceIssuersMapping.
10527 10528 10529 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 10527 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email_ids ⇒ Array<String>
List of trusted issuer email ids.
Corresponds to the JSON property emailIds
10520 10521 10522 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 10520 def email_ids @email_ids end |
#service ⇒ String
String indicating the Apigee service name.
Corresponds to the JSON property service
10525 10526 10527 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 10525 def service @service end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10532 10533 10534 10535 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 10532 def update!(**args) @email_ids = args[:email_ids] if args.key?(:email_ids) @service = args[:service] if args.key?(:service) end |