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
One or more paragraphs of text description of a certificate map.
-
#gclb_targets ⇒ Array<Google::Apis::CertificatemanagerV1::GclbTarget>
Output only.
-
#labels ⇒ Hash<String,String>
Set of labels associated with a Certificate Map.
-
#name ⇒ String
A user-defined name of the Certificate Map.
-
#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.
199 200 201 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 199 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
171 172 173 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 171 def create_time @create_time end |
#description ⇒ String
One or more paragraphs of text description of a certificate map.
Corresponds to the JSON property description
176 177 178 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 176 def description @description end |
#gclb_targets ⇒ Array<Google::Apis::CertificatemanagerV1::GclbTarget>
Output only. A list of GCLB targets which use this Certificate Map.
Corresponds to the JSON property gclbTargets
181 182 183 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 181 def gclb_targets @gclb_targets end |
#labels ⇒ Hash<String,String>
Set of labels associated with a Certificate Map.
Corresponds to the JSON property labels
186 187 188 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 186 def labels @labels end |
#name ⇒ String
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
192 193 194 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 192 def name @name end |
#update_time ⇒ String
Output only. The update timestamp of a Certificate Map.
Corresponds to the JSON property updateTime
197 198 199 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 197 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
204 205 206 207 208 209 210 211 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 204 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 |