Class: Google::Apis::OsconfigV1::ListOsPolicyAssignmentRevisionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1::ListOsPolicyAssignmentRevisionsResponse
- 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
A response message for listing all revisions for a OS policy assignment.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The pagination token to retrieve the next page of OS policy assignment revisions.
-
#os_policy_assignments ⇒ Array<Google::Apis::OsconfigV1::OsPolicyAssignment>
The OS policy assignment revisions Corresponds to the JSON property
osPolicyAssignments
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListOsPolicyAssignmentRevisionsResponse
constructor
A new instance of ListOsPolicyAssignmentRevisionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListOsPolicyAssignmentRevisionsResponse
Returns a new instance of ListOsPolicyAssignmentRevisionsResponse.
1044 1045 1046 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1044 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
The pagination token to retrieve the next page of OS policy assignment
revisions.
Corresponds to the JSON property nextPageToken
1037 1038 1039 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1037 def next_page_token @next_page_token end |
#os_policy_assignments ⇒ Array<Google::Apis::OsconfigV1::OsPolicyAssignment>
The OS policy assignment revisions
Corresponds to the JSON property osPolicyAssignments
1042 1043 1044 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1042 def os_policy_assignments @os_policy_assignments end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1049 1050 1051 1052 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1049 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @os_policy_assignments = args[:os_policy_assignments] if args.key?(:os_policy_assignments) end |