Class: Google::Apis::CloudidentityV1beta1::ListInboundSamlSsoProfilesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::ListInboundSamlSsoProfilesResponse
- 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.ListInboundSamlSsoProfiles method.
Instance Attribute Summary collapse
-
#inbound_saml_sso_profiles ⇒ Array<Google::Apis::CloudidentityV1beta1::InboundSamlSsoProfile>
List of InboundSamlSsoProfiles.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListInboundSamlSsoProfilesResponse
constructor
A new instance of ListInboundSamlSsoProfilesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListInboundSamlSsoProfilesResponse
Returns a new instance of ListInboundSamlSsoProfilesResponse.
2900 2901 2902 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2900 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inbound_saml_sso_profiles ⇒ Array<Google::Apis::CloudidentityV1beta1::InboundSamlSsoProfile>
List of InboundSamlSsoProfiles.
Corresponds to the JSON property inboundSamlSsoProfiles
2892 2893 2894 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2892 def inbound_saml_sso_profiles @inbound_saml_sso_profiles 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
2898 2899 2900 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2898 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2905 2906 2907 2908 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2905 def update!(**args) @inbound_saml_sso_profiles = args[:inbound_saml_sso_profiles] if args.key?(:inbound_saml_sso_profiles) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |