google-apis-identitytoolkit_v1 0.8.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1253cfdf8dca61457449fefec277de3dc7de09d9fb541aa7412b1c540014d65c
4
- data.tar.gz: 0c2bf86b3f1bad7b3576d8c292dc4dcf9cc9249efc606df6ecbf1b7244854ff6
3
+ metadata.gz: 8165244eae9c74e7715be19034073924bf9a1fc716d95368bd603fc54368a372
4
+ data.tar.gz: 5430bc60195074ae95e4be633012dd166cb95a49d7ada95d5eace20612e8f37e
5
5
  SHA512:
6
- metadata.gz: cb7a5c3711d326190a8635ffaf81886a7a9b7d3f33106994117798a13c5e5bdada4bbc91848f8eb0d4b2475b3f354ef5bb948d2cabcee2419342f576d6547885
7
- data.tar.gz: e46031654dfbf7185afbb395bd8ec27653540c15a6d7fec56708373712ce4e97ca9b32891773927a174dca493690e99f606ae96fca6be512601cf79f2767dafc
6
+ metadata.gz: 2a266f92971a4184e0c3c4d952a708995be3dda468fda130791aa7da712e6f22995e7af770e387b328d943b32605fd40cf04625961d445b9f16201162c813471
7
+ data.tar.gz: cf848cc6b319c86266431d8bda936e56dc54e6188e88e9ac4cf256a946f6e3e7ca2d369f521e2f52b4010f086ebef787ecaabd6d24c595222a4066f22252ed3b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-identitytoolkit_v1
2
2
 
3
+ ### v0.9.0 (2023-04-30)
4
+
5
+ * Regenerated from discovery document revision 20230421
6
+
3
7
  ### v0.8.0 (2023-04-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20230410
@@ -544,6 +544,25 @@ module Google
544
544
  end
545
545
  end
546
546
 
547
+ # Information about email MFA.
548
+ class GoogleCloudIdentitytoolkitV1EmailInfo
549
+ include Google::Apis::Core::Hashable
550
+
551
+ # Email address that a MFA verification should be sent to.
552
+ # Corresponds to the JSON property `emailAddress`
553
+ # @return [String]
554
+ attr_accessor :email_address
555
+
556
+ def initialize(**args)
557
+ update!(**args)
558
+ end
559
+
560
+ # Update properties of this object
561
+ def update!(**args)
562
+ @email_address = args[:email_address] if args.key?(:email_address)
563
+ end
564
+ end
565
+
547
566
  # Email template
548
567
  class GoogleCloudIdentitytoolkitV1EmailTemplate
549
568
  include Google::Apis::Core::Hashable
@@ -1310,6 +1329,11 @@ module Google
1310
1329
  # @return [String]
1311
1330
  attr_accessor :display_name
1312
1331
 
1332
+ # Information about email MFA.
1333
+ # Corresponds to the JSON property `emailInfo`
1334
+ # @return [Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1EmailInfo]
1335
+ attr_accessor :email_info
1336
+
1313
1337
  # Timestamp when the account enrolled this second factor.
1314
1338
  # Corresponds to the JSON property `enrolledAt`
1315
1339
  # @return [String]
@@ -1344,6 +1368,7 @@ module Google
1344
1368
  # Update properties of this object
1345
1369
  def update!(**args)
1346
1370
  @display_name = args[:display_name] if args.key?(:display_name)
1371
+ @email_info = args[:email_info] if args.key?(:email_info)
1347
1372
  @enrolled_at = args[:enrolled_at] if args.key?(:enrolled_at)
1348
1373
  @mfa_enrollment_id = args[:mfa_enrollment_id] if args.key?(:mfa_enrollment_id)
1349
1374
  @phone_info = args[:phone_info] if args.key?(:phone_info)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module IdentitytoolkitV1
18
18
  # Version of the google-apis-identitytoolkit_v1 gem
19
- GEM_VERSION = "0.8.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230410"
25
+ REVISION = "20230421"
26
26
  end
27
27
  end
28
28
  end
@@ -94,6 +94,12 @@ module Google
94
94
  include Google::Apis::Core::JsonObjectSupport
95
95
  end
96
96
 
97
+ class GoogleCloudIdentitytoolkitV1EmailInfo
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
97
103
  class GoogleCloudIdentitytoolkitV1EmailTemplate
98
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
105
 
@@ -501,6 +507,13 @@ module Google
501
507
  end
502
508
  end
503
509
 
510
+ class GoogleCloudIdentitytoolkitV1EmailInfo
511
+ # @private
512
+ class Representation < Google::Apis::Core::JsonRepresentation
513
+ property :email_address, as: 'emailAddress'
514
+ end
515
+ end
516
+
504
517
  class GoogleCloudIdentitytoolkitV1EmailTemplate
505
518
  # @private
506
519
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -675,6 +688,8 @@ module Google
675
688
  # @private
676
689
  class Representation < Google::Apis::Core::JsonRepresentation
677
690
  property :display_name, as: 'displayName'
691
+ property :email_info, as: 'emailInfo', class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1EmailInfo, decorator: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1EmailInfo::Representation
692
+
678
693
  property :enrolled_at, as: 'enrolledAt'
679
694
  property :mfa_enrollment_id, as: 'mfaEnrollmentId'
680
695
  property :phone_info, as: 'phoneInfo'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-identitytoolkit_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-23 00:00:00.000000000 Z
11
+ date: 2023-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-identitytoolkit_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-identitytoolkit_v1/v0.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-identitytoolkit_v1/v0.9.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-identitytoolkit_v1
63
63
  post_install_message:
64
64
  rdoc_options: []