Class: Google::Apis::OsconfigV1::GoogleCloudOsconfigV1OsPolicyAssignmentOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1::GoogleCloudOsconfigV1OsPolicyAssignmentOperationMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/osconfig_v1/classes.rb,
lib/google/apis/osconfig_v1/representations.rb,
lib/google/apis/osconfig_v1/representations.rb
Overview
OS policy assignment operation metadata provided by OS policy assignment API methods that return long running operations.
Instance Attribute Summary collapse
-
#api_method ⇒ String
The OS policy assignment API method.
-
#os_policy_assignment ⇒ String
Reference to the
OSPolicyAssignment
API resource. -
#rollout_start_time ⇒ String
Rollout start time Corresponds to the JSON property
rolloutStartTime
. -
#rollout_state ⇒ String
State of the rollout Corresponds to the JSON property
rolloutState
. -
#rollout_update_time ⇒ String
Rollout update time Corresponds to the JSON property
rolloutUpdateTime
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudOsconfigV1OsPolicyAssignmentOperationMetadata
constructor
A new instance of GoogleCloudOsconfigV1OsPolicyAssignmentOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudOsconfigV1OsPolicyAssignmentOperationMetadata
Returns a new instance of GoogleCloudOsconfigV1OsPolicyAssignmentOperationMetadata.
466 467 468 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 466 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_method ⇒ String
The OS policy assignment API method.
Corresponds to the JSON property apiMethod
442 443 444 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 442 def api_method @api_method end |
#os_policy_assignment ⇒ String
Reference to the OSPolicyAssignment
API resource. Format: projects/
project_number/locations/
location/osPolicyAssignments/
os_policy_assignment_id@revision_id`
Corresponds to the JSON property
osPolicyAssignment`
449 450 451 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 449 def os_policy_assignment @os_policy_assignment end |
#rollout_start_time ⇒ String
Rollout start time
Corresponds to the JSON property rolloutStartTime
454 455 456 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 454 def rollout_start_time @rollout_start_time end |
#rollout_state ⇒ String
State of the rollout
Corresponds to the JSON property rolloutState
459 460 461 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 459 def rollout_state @rollout_state end |
#rollout_update_time ⇒ String
Rollout update time
Corresponds to the JSON property rolloutUpdateTime
464 465 466 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 464 def rollout_update_time @rollout_update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
471 472 473 474 475 476 477 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 471 def update!(**args) @api_method = args[:api_method] if args.key?(:api_method) @os_policy_assignment = args[:os_policy_assignment] if args.key?(:os_policy_assignment) @rollout_start_time = args[:rollout_start_time] if args.key?(:rollout_start_time) @rollout_state = args[:rollout_state] if args.key?(:rollout_state) @rollout_update_time = args[:rollout_update_time] if args.key?(:rollout_update_time) end |