Class: Google::Apis::CloudidentityV1beta1::ListInboundOidcSsoProfilesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::ListInboundOidcSsoProfilesResponse
- 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 InboundOidcSsoProfilesService.ListInboundOidcSsoProfiles method.
Instance Attribute Summary collapse
-
#inbound_oidc_sso_profiles ⇒ Array<Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile>
List of InboundOidcSsoProfiles.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListInboundOidcSsoProfilesResponse
constructor
A new instance of ListInboundOidcSsoProfilesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListInboundOidcSsoProfilesResponse
Returns a new instance of ListInboundOidcSsoProfilesResponse.
3025 3026 3027 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3025 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inbound_oidc_sso_profiles ⇒ Array<Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile>
List of InboundOidcSsoProfiles.
Corresponds to the JSON property inboundOidcSsoProfiles
3017 3018 3019 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3017 def inbound_oidc_sso_profiles @inbound_oidc_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
3023 3024 3025 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3023 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3030 3031 3032 3033 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3030 def update!(**args) @inbound_oidc_sso_profiles = args[:inbound_oidc_sso_profiles] if args.key?(:inbound_oidc_sso_profiles) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |