Class: Google::Apis::CloudidentityV1::ListInboundSamlSsoProfilesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1::ListInboundSamlSsoProfilesResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1/classes.rb,
lib/google/apis/cloudidentity_v1/representations.rb,
lib/google/apis/cloudidentity_v1/representations.rb
Overview
Response of the InboundSamlSsoProfilesService.ListInboundSamlSsoProfiles method.
Instance Attribute Summary collapse
-
#inbound_saml_sso_profiles ⇒ Array<Google::Apis::CloudidentityV1::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.
1799 1800 1801 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1799 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inbound_saml_sso_profiles ⇒ Array<Google::Apis::CloudidentityV1::InboundSamlSsoProfile>
List of InboundSamlSsoProfiles.
Corresponds to the JSON property inboundSamlSsoProfiles
1791 1792 1793 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1791 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
1797 1798 1799 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1797 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1804 1805 1806 1807 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1804 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 |