Class: Google::Apis::IamV1::ListAttestationRulesResponse
- Inherits:
-
Object
- Object
- Google::Apis::IamV1::ListAttestationRulesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/iam_v1/classes.rb,
lib/google/apis/iam_v1/representations.rb,
lib/google/apis/iam_v1/representations.rb
Overview
Response message for ListAttestationRules.
Instance Attribute Summary collapse
-
#attestation_rules ⇒ Array<Google::Apis::IamV1::AttestationRule>
A list of AttestationRules.
-
#next_page_token ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAttestationRulesResponse
constructor
A new instance of ListAttestationRulesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAttestationRulesResponse
Returns a new instance of ListAttestationRulesResponse.
1233 1234 1235 |
# File 'lib/google/apis/iam_v1/classes.rb', line 1233 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attestation_rules ⇒ Array<Google::Apis::IamV1::AttestationRule>
A list of AttestationRules.
Corresponds to the JSON property attestationRules
1225 1226 1227 |
# File 'lib/google/apis/iam_v1/classes.rb', line 1225 def attestation_rules @attestation_rules end |
#next_page_token ⇒ String
Optional. A token, which can be sent as page_token to retrieve the next page.
If this field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
1231 1232 1233 |
# File 'lib/google/apis/iam_v1/classes.rb', line 1231 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1238 1239 1240 1241 |
# File 'lib/google/apis/iam_v1/classes.rb', line 1238 def update!(**args) @attestation_rules = args[:attestation_rules] if args.key?(:attestation_rules) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |