Class: Google::Apis::OsconfigV1::ListOsPolicyAssignmentReportsResponse
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1::ListOsPolicyAssignmentReportsResponse
- 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 OS Policy assignment reports including the page of results and page token.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The pagination token to retrieve the next page of OS policy assignment report objects.
-
#os_policy_assignment_reports ⇒ Array<Google::Apis::OsconfigV1::OsPolicyAssignmentReport>
List of OS policy assignment reports.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListOsPolicyAssignmentReportsResponse
constructor
A new instance of ListOsPolicyAssignmentReportsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListOsPolicyAssignmentReportsResponse
Returns a new instance of ListOsPolicyAssignmentReportsResponse.
1018 1019 1020 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1018 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 report
objects.
Corresponds to the JSON property nextPageToken
1011 1012 1013 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1011 def next_page_token @next_page_token end |
#os_policy_assignment_reports ⇒ Array<Google::Apis::OsconfigV1::OsPolicyAssignmentReport>
List of OS policy assignment reports.
Corresponds to the JSON property osPolicyAssignmentReports
1016 1017 1018 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1016 def os_policy_assignment_reports @os_policy_assignment_reports end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1023 1024 1025 1026 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1023 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @os_policy_assignment_reports = args[:os_policy_assignment_reports] if args.key?(:os_policy_assignment_reports) end |