Class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2ListOAuthIdpConfigsResponse
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2ListOAuthIdpConfigsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/identitytoolkit_v2/classes.rb,
lib/google/apis/identitytoolkit_v2/representations.rb,
lib/google/apis/identitytoolkit_v2/representations.rb
Overview
Response for ListOAuthIdpConfigs
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
-
#oauth_idp_configs ⇒ Array<Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2OAuthIdpConfig>
The set of configs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitAdminV2ListOAuthIdpConfigsResponse
constructor
A new instance of GoogleCloudIdentitytoolkitAdminV2ListOAuthIdpConfigsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitAdminV2ListOAuthIdpConfigsResponse
Returns a new instance of GoogleCloudIdentitytoolkitAdminV2ListOAuthIdpConfigsResponse.
989 990 991 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 989 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more
results in the list.
Corresponds to the JSON property nextPageToken
982 983 984 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 982 def next_page_token @next_page_token end |
#oauth_idp_configs ⇒ Array<Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2OAuthIdpConfig>
The set of configs.
Corresponds to the JSON property oauthIdpConfigs
987 988 989 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 987 def oauth_idp_configs @oauth_idp_configs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
994 995 996 997 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 994 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @oauth_idp_configs = args[:oauth_idp_configs] if args.key?(:oauth_idp_configs) end |