Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Alias
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1Alias
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/apigee_v1/classes.rb,
generated/google/apis/apigee_v1/representations.rb,
generated/google/apis/apigee_v1/representations.rb
Overview
Reference to a certificate or key/certificate pair.
Instance Attribute Summary collapse
-
#alias ⇒ String
Resource ID for this alias.
-
#certs_info ⇒ Google::Apis::ApigeeV1::GoogleCloudApigeeV1Certificate
Chain of certificates under this alias.
-
#type ⇒ String
Type of alias.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1Alias
constructor
A new instance of GoogleCloudApigeeV1Alias.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1Alias
Returns a new instance of GoogleCloudApigeeV1Alias.
226 227 228 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 226 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alias ⇒ String
Resource ID for this alias. Values must match the regular expression [^/]
1,
255`.
Corresponds to the JSON property
alias`
214 215 216 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 214 def alias @alias end |
#certs_info ⇒ Google::Apis::ApigeeV1::GoogleCloudApigeeV1Certificate
Chain of certificates under this alias.
Corresponds to the JSON property certsInfo
219 220 221 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 219 def certs_info @certs_info end |
#type ⇒ String
Type of alias.
Corresponds to the JSON property type
224 225 226 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 224 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
231 232 233 234 235 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 231 def update!(**args) @alias = args[:alias] if args.key?(:alias) @certs_info = args[:certs_info] if args.key?(:certs_info) @type = args[:type] if args.key?(:type) end |