Class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1beta1CreateWorkloadOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1beta1CreateWorkloadOperationMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/assuredworkloads_v1/classes.rb,
generated/google/apis/assuredworkloads_v1/representations.rb,
generated/google/apis/assuredworkloads_v1/representations.rb
Overview
Operation metadata to give request details of CreateWorkload.
Instance Attribute Summary collapse
-
#compliance_regime ⇒ String
Optional.
-
#create_time ⇒ String
Optional.
-
#display_name ⇒ String
Optional.
-
#parent ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAssuredworkloadsV1beta1CreateWorkloadOperationMetadata
constructor
A new instance of GoogleCloudAssuredworkloadsV1beta1CreateWorkloadOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAssuredworkloadsV1beta1CreateWorkloadOperationMetadata
Returns a new instance of GoogleCloudAssuredworkloadsV1beta1CreateWorkloadOperationMetadata.
255 256 257 |
# File 'generated/google/apis/assuredworkloads_v1/classes.rb', line 255 def initialize(**args) update!(**args) end |
Instance Attribute Details
#compliance_regime ⇒ String
Optional. Compliance controls that should be applied to the resources managed
by the workload.
Corresponds to the JSON property complianceRegime
238 239 240 |
# File 'generated/google/apis/assuredworkloads_v1/classes.rb', line 238 def compliance_regime @compliance_regime end |
#create_time ⇒ String
Optional. Time when the operation was created.
Corresponds to the JSON property createTime
243 244 245 |
# File 'generated/google/apis/assuredworkloads_v1/classes.rb', line 243 def create_time @create_time end |
#display_name ⇒ String
Optional. The display name of the workload.
Corresponds to the JSON property displayName
248 249 250 |
# File 'generated/google/apis/assuredworkloads_v1/classes.rb', line 248 def display_name @display_name end |
#parent ⇒ String
Optional. The parent of the workload.
Corresponds to the JSON property parent
253 254 255 |
# File 'generated/google/apis/assuredworkloads_v1/classes.rb', line 253 def parent @parent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
260 261 262 263 264 265 |
# File 'generated/google/apis/assuredworkloads_v1/classes.rb', line 260 def update!(**args) @compliance_regime = args[:compliance_regime] if args.key?(:compliance_regime) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @parent = args[:parent] if args.key?(:parent) end |