Class: Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1DefineCertificateResponse
- Inherits:
-
Object
- Object
- Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1DefineCertificateResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chromepolicy_v1/classes.rb,
lib/google/apis/chromepolicy_v1/representations.rb,
lib/google/apis/chromepolicy_v1/representations.rb
Overview
Response object for creating a certificate.
Instance Attribute Summary collapse
-
#network_id ⇒ String
The guid of the certificate created by the action.
-
#settings ⇒ Array<Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1NetworkSetting>
the affiliated settings of the certificate (NOT IMPLEMENTED) Corresponds to the JSON property
settings. -
#target_resource ⇒ String
the resource at which the certificate is defined.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromePolicyVersionsV1DefineCertificateResponse
constructor
A new instance of GoogleChromePolicyVersionsV1DefineCertificateResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromePolicyVersionsV1DefineCertificateResponse
Returns a new instance of GoogleChromePolicyVersionsV1DefineCertificateResponse.
287 288 289 |
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 287 def initialize(**args) update!(**args) end |
Instance Attribute Details
#network_id ⇒ String
The guid of the certificate created by the action.
Corresponds to the JSON property networkId
275 276 277 |
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 275 def network_id @network_id end |
#settings ⇒ Array<Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1NetworkSetting>
the affiliated settings of the certificate (NOT IMPLEMENTED)
Corresponds to the JSON property settings
280 281 282 |
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 280 def settings @settings end |
#target_resource ⇒ String
the resource at which the certificate is defined.
Corresponds to the JSON property targetResource
285 286 287 |
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 285 def target_resource @target_resource end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
292 293 294 295 296 |
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 292 def update!(**args) @network_id = args[:network_id] if args.key?(:network_id) @settings = args[:settings] if args.key?(:settings) @target_resource = args[:target_resource] if args.key?(:target_resource) end |