Class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2AppleSignInConfig
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2AppleSignInConfig
- 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
Additional config for SignInWithApple.
Instance Attribute Summary collapse
-
#bundle_ids ⇒ Array<String>
A list of Bundle ID's usable by this project Corresponds to the JSON property
bundleIds
. -
#code_flow_config ⇒ Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2CodeFlowConfig
Additional config for Apple for code flow.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitAdminV2AppleSignInConfig
constructor
A new instance of GoogleCloudIdentitytoolkitAdminV2AppleSignInConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitAdminV2AppleSignInConfig
Returns a new instance of GoogleCloudIdentitytoolkitAdminV2AppleSignInConfig.
103 104 105 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 103 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bundle_ids ⇒ Array<String>
A list of Bundle ID's usable by this project
Corresponds to the JSON property bundleIds
96 97 98 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 96 def bundle_ids @bundle_ids end |
#code_flow_config ⇒ Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2CodeFlowConfig
Additional config for Apple for code flow.
Corresponds to the JSON property codeFlowConfig
101 102 103 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 101 def code_flow_config @code_flow_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
108 109 110 111 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 108 def update!(**args) @bundle_ids = args[:bundle_ids] if args.key?(:bundle_ids) @code_flow_config = args[:code_flow_config] if args.key?(:code_flow_config) end |