Class: Google::Apis::CertificatemanagerV1::CertificateMap
- Inherits:
-
Object
- Object
- Google::Apis::CertificatemanagerV1::CertificateMap
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/certificatemanager_v1/classes.rb,
lib/google/apis/certificatemanager_v1/representations.rb,
lib/google/apis/certificatemanager_v1/representations.rb
Overview
Defines a collection of certificate configurations.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
Optional.
-
#gclb_targets ⇒ Array<Google::Apis::CertificatemanagerV1::GclbTarget>
Output only.
-
#labels ⇒ Hash<String,String>
Optional.
-
#name ⇒ String
Identifier.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CertificateMap
constructor
A new instance of CertificateMap.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CertificateMap
Returns a new instance of CertificateMap.
335 336 337 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 335 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The creation timestamp of a Certificate Map.
Corresponds to the JSON property createTime
305 306 307 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 305 def create_time @create_time end |
#description ⇒ String
Optional. One or more paragraphs of text description of a certificate map.
Corresponds to the JSON property description
310 311 312 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 310 def description @description end |
#gclb_targets ⇒ Array<Google::Apis::CertificatemanagerV1::GclbTarget>
Output only. A list of GCLB targets that use this Certificate Map. A Target
Proxy is only present on this list if it's attached to a Forwarding Rule.
Corresponds to the JSON property gclbTargets
316 317 318 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 316 def gclb_targets @gclb_targets end |
#labels ⇒ Hash<String,String>
Optional. Set of labels associated with a Certificate Map.
Corresponds to the JSON property labels
321 322 323 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 321 def labels @labels end |
#name ⇒ String
Identifier. A user-defined name of the Certificate Map. Certificate Map names
must be unique globally and match pattern projects/*/locations/*/
certificateMaps/*
.
Corresponds to the JSON property name
328 329 330 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 328 def name @name end |
#update_time ⇒ String
Output only. The update timestamp of a Certificate Map.
Corresponds to the JSON property updateTime
333 334 335 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 333 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
340 341 342 343 344 345 346 347 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 340 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @gclb_targets = args[:gclb_targets] if args.key?(:gclb_targets) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) end |