google-apis-identitytoolkit_v2 0.23.0 → 0.25.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1f02aed29964e015c76a1b8a5fa04d8d4c5dff2e12d92b7d505deb4c1075880e
4
- data.tar.gz: 60bb39e907b54d533b005f0e9e0faedeaa07567e18594ba1e9f5bb5f84750f8d
3
+ metadata.gz: f5ad2e10907f1acf3994b7dfa62e6cdf2f06ef0e8fc089283d784033fd80c94c
4
+ data.tar.gz: 212c34a29b0e1e85087aedad52ca4a26d9e2d4bc23dea8a917b8863106c74b39
5
5
  SHA512:
6
- metadata.gz: 0fc18be0eb8478cdd5785718a3fd28c4d75c3c18315ded64f87baa881a8dac8e15d9d6c556bceb2af085e08734a22e1ae2822fbd6bb5109a557d7d3476ba31a4
7
- data.tar.gz: 20e6aab0eb60da7597186cd013cef8c8ec50bb2b5b2f85ebfa4d1521fc4be931f1a3339e0ec5501d042db9d2cc5c59a5cf2b6a2826690ff16f594a82c9eacadb
6
+ metadata.gz: 41b79007976629c9a7392470f9c36df47669ddd25329459f05f6b01309f37aaf016bc6948f5f7eb5fb79d6c8580da0dec517fa9104ffc8f2b93b65901b164ec5
7
+ data.tar.gz: a4ab9dd9467e5c0761e4eec8b92c6e1062b80845e6484e63e126b60012fa532ce6acb3e7426668f53a6121b3e4d9164b911d6fd1b18df6b03b441b7847957477
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-identitytoolkit_v2
2
2
 
3
+ ### v0.25.0 (2025-05-04)
4
+
5
+ * Regenerated using generator version 0.17.0
6
+
7
+ ### v0.24.0 (2025-02-26)
8
+
9
+ * Regenerated from discovery document revision 20250130
10
+ * Regenerated using generator version 0.16.0
11
+
3
12
  ### v0.23.0 (2024-12-02)
4
13
 
5
14
  * Regenerated from discovery document revision 20241024
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/identity-platform) may prov
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -275,6 +275,11 @@ module Google
275
275
  # @return [Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2ClientConfig]
276
276
  attr_accessor :client
277
277
 
278
+ # Output only. Default Firebase hosting site name
279
+ # Corresponds to the JSON property `defaultHostingSite`
280
+ # @return [String]
281
+ attr_accessor :default_hosting_site
282
+
278
283
  # Configuration for settings related to email privacy and public visibility.
279
284
  # Settings in this config protect against email enumeration, but may make some
280
285
  # trade-offs in user-friendliness.
@@ -287,6 +292,11 @@ module Google
287
292
  # @return [Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfig]
288
293
  attr_accessor :mfa
289
294
 
295
+ # Configuration mobile links.
296
+ # Corresponds to the JSON property `mobileLinksConfig`
297
+ # @return [Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MobileLinksConfig]
298
+ attr_accessor :mobile_links_config
299
+
290
300
  # Configuration related to monitoring project activity.
291
301
  # Corresponds to the JSON property `monitoring`
292
302
  # @return [Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MonitoringConfig]
@@ -350,8 +360,10 @@ module Google
350
360
  @autodelete_anonymous_users = args[:autodelete_anonymous_users] if args.key?(:autodelete_anonymous_users)
351
361
  @blocking_functions = args[:blocking_functions] if args.key?(:blocking_functions)
352
362
  @client = args[:client] if args.key?(:client)
363
+ @default_hosting_site = args[:default_hosting_site] if args.key?(:default_hosting_site)
353
364
  @email_privacy_config = args[:email_privacy_config] if args.key?(:email_privacy_config)
354
365
  @mfa = args[:mfa] if args.key?(:mfa)
366
+ @mobile_links_config = args[:mobile_links_config] if args.key?(:mobile_links_config)
355
367
  @monitoring = args[:monitoring] if args.key?(:monitoring)
356
368
  @multi_tenant = args[:multi_tenant] if args.key?(:multi_tenant)
357
369
  @name = args[:name] if args.key?(:name)
@@ -1022,6 +1034,25 @@ module Google
1022
1034
  end
1023
1035
  end
1024
1036
 
1037
+ # Configuration mobile links.
1038
+ class GoogleCloudIdentitytoolkitAdminV2MobileLinksConfig
1039
+ include Google::Apis::Core::Hashable
1040
+
1041
+ # Open code in app domain to use for app links and universal links.
1042
+ # Corresponds to the JSON property `domain`
1043
+ # @return [String]
1044
+ attr_accessor :domain
1045
+
1046
+ def initialize(**args)
1047
+ update!(**args)
1048
+ end
1049
+
1050
+ # Update properties of this object
1051
+ def update!(**args)
1052
+ @domain = args[:domain] if args.key?(:domain)
1053
+ end
1054
+ end
1055
+
1025
1056
  # Configuration related to monitoring project activity.
1026
1057
  class GoogleCloudIdentitytoolkitAdminV2MonitoringConfig
1027
1058
  include Google::Apis::Core::Hashable
@@ -2009,6 +2040,11 @@ module Google
2009
2040
  # @return [Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfig]
2010
2041
  attr_accessor :mfa_config
2011
2042
 
2043
+ # Configuration mobile links.
2044
+ # Corresponds to the JSON property `mobileLinksConfig`
2045
+ # @return [Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MobileLinksConfig]
2046
+ attr_accessor :mobile_links_config
2047
+
2012
2048
  # Configuration related to monitoring project activity.
2013
2049
  # Corresponds to the JSON property `monitoring`
2014
2050
  # @return [Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MonitoringConfig]
@@ -2061,6 +2097,7 @@ module Google
2061
2097
  @hash_config = args[:hash_config] if args.key?(:hash_config)
2062
2098
  @inheritance = args[:inheritance] if args.key?(:inheritance)
2063
2099
  @mfa_config = args[:mfa_config] if args.key?(:mfa_config)
2100
+ @mobile_links_config = args[:mobile_links_config] if args.key?(:mobile_links_config)
2064
2101
  @monitoring = args[:monitoring] if args.key?(:monitoring)
2065
2102
  @name = args[:name] if args.key?(:name)
2066
2103
  @password_policy_config = args[:password_policy_config] if args.key?(:password_policy_config)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module IdentitytoolkitV2
18
18
  # Version of the google-apis-identitytoolkit_v2 gem
19
- GEM_VERSION = "0.23.0"
19
+ GEM_VERSION = "0.25.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241024"
25
+ REVISION = "20250130"
26
26
  end
27
27
  end
28
28
  end
@@ -202,6 +202,12 @@ module Google
202
202
  include Google::Apis::Core::JsonObjectSupport
203
203
  end
204
204
 
205
+ class GoogleCloudIdentitytoolkitAdminV2MobileLinksConfig
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
205
211
  class GoogleCloudIdentitytoolkitAdminV2MonitoringConfig
206
212
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
213
 
@@ -682,10 +688,13 @@ module Google
682
688
 
683
689
  property :client, as: 'client', class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2ClientConfig, decorator: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2ClientConfig::Representation
684
690
 
691
+ property :default_hosting_site, as: 'defaultHostingSite'
685
692
  property :email_privacy_config, as: 'emailPrivacyConfig', class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2EmailPrivacyConfig, decorator: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2EmailPrivacyConfig::Representation
686
693
 
687
694
  property :mfa, as: 'mfa', class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfig, decorator: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfig::Representation
688
695
 
696
+ property :mobile_links_config, as: 'mobileLinksConfig', class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MobileLinksConfig, decorator: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MobileLinksConfig::Representation
697
+
689
698
  property :monitoring, as: 'monitoring', class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MonitoringConfig, decorator: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MonitoringConfig::Representation
690
699
 
691
700
  property :multi_tenant, as: 'multiTenant', class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MultiTenantConfig, decorator: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MultiTenantConfig::Representation
@@ -893,6 +902,13 @@ module Google
893
902
  end
894
903
  end
895
904
 
905
+ class GoogleCloudIdentitytoolkitAdminV2MobileLinksConfig
906
+ # @private
907
+ class Representation < Google::Apis::Core::JsonRepresentation
908
+ property :domain, as: 'domain'
909
+ end
910
+ end
911
+
896
912
  class GoogleCloudIdentitytoolkitAdminV2MonitoringConfig
897
913
  # @private
898
914
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1175,6 +1191,8 @@ module Google
1175
1191
 
1176
1192
  property :mfa_config, as: 'mfaConfig', class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfig, decorator: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfig::Representation
1177
1193
 
1194
+ property :mobile_links_config, as: 'mobileLinksConfig', class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MobileLinksConfig, decorator: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MobileLinksConfig::Representation
1195
+
1178
1196
  property :monitoring, as: 'monitoring', class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MonitoringConfig, decorator: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2MonitoringConfig::Representation
1179
1197
 
1180
1198
  property :name, as: 'name'
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-identitytoolkit_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0
4
+ version: 0.25.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-04 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-identitytoolkit_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-identitytoolkit_v2/v0.23.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-identitytoolkit_v2/v0.25.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-identitytoolkit_v2
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -68,15 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
66
  requirements:
69
67
  - - ">="
70
68
  - !ruby/object:Gem::Version
71
- version: '2.7'
69
+ version: '3.1'
72
70
  required_rubygems_version: !ruby/object:Gem::Requirement
73
71
  requirements:
74
72
  - - ">="
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.22
79
- signing_key:
76
+ rubygems_version: 3.6.8
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Identity Toolkit API V2
82
79
  test_files: []