Class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2ClientConfig
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2ClientConfig
- 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
Options related to how clients making requests on behalf of a project should be configured.
Instance Attribute Summary collapse
-
#api_key ⇒ String
Output only.
-
#firebase_subdomain ⇒ String
Output only.
-
#permissions ⇒ Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2Permissions
Configuration related to restricting a user's ability to affect their account.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitAdminV2ClientConfig
constructor
A new instance of GoogleCloudIdentitytoolkitAdminV2ClientConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitAdminV2ClientConfig
Returns a new instance of GoogleCloudIdentitytoolkitAdminV2ClientConfig.
160 161 162 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 160 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_key ⇒ String
Output only. API key that can be used when making requests for this project.
Corresponds to the JSON property apiKey
148 149 150 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 148 def api_key @api_key end |
#firebase_subdomain ⇒ String
Output only. Firebase subdomain.
Corresponds to the JSON property firebaseSubdomain
153 154 155 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 153 def firebase_subdomain @firebase_subdomain end |
#permissions ⇒ Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2Permissions
Configuration related to restricting a user's ability to affect their account.
Corresponds to the JSON property permissions
158 159 160 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 158 def @permissions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
165 166 167 168 169 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 165 def update!(**args) @api_key = args[:api_key] if args.key?(:api_key) @firebase_subdomain = args[:firebase_subdomain] if args.key?(:firebase_subdomain) @permissions = args[:permissions] if args.key?(:permissions) end |