Class: Google::Apis::CloudidentityV1beta1::ListIdpCredentialsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::ListIdpCredentialsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1beta1/classes.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb
Overview
Response of the InboundSamlSsoProfilesService.ListIdpCredentials method.
Instance Attribute Summary collapse
-
#idp_credentials ⇒ Array<Google::Apis::CloudidentityV1beta1::IdpCredential>
The IdpCredentials from the specified InboundSamlSsoProfile.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListIdpCredentialsResponse
constructor
A new instance of ListIdpCredentialsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListIdpCredentialsResponse
Returns a new instance of ListIdpCredentialsResponse.
2889 2890 2891 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2889 def initialize(**args) update!(**args) end |
Instance Attribute Details
#idp_credentials ⇒ Array<Google::Apis::CloudidentityV1beta1::IdpCredential>
The IdpCredentials from the specified InboundSamlSsoProfile.
Corresponds to the JSON property idpCredentials
2881 2882 2883 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2881 def idp_credentials @idp_credentials end |
#next_page_token ⇒ String
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
2887 2888 2889 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2887 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2894 2895 2896 2897 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2894 def update!(**args) @idp_credentials = args[:idp_credentials] if args.key?(:idp_credentials) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |