google-apis-identitytoolkit_v1 0.5.0 → 0.6.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: a7b5a20913a010efeace339435c1dfa0cba2da68548598dd50db612681553aab
4
- data.tar.gz: c78585ccbfe538085d0457873b2f25e36033b093009b062226890f4e95a763ce
3
+ metadata.gz: f422bc38ff01d1f034487d50e72bbfcc5e97bc974acacc2c274123b09b1e79e0
4
+ data.tar.gz: 94976c780ae819009093098ef25271082446f40ad462b01bbf59175e48fbdc9d
5
5
  SHA512:
6
- metadata.gz: 882f28dc2f9b5361eb6aa33f40c2f7bac7ce7c294ce9179a5b3700fc9bbc34d90bb9c6b71ce8d298b9cdfa2bfc954ec0ecb418dd30bf92d7fc738ae45e4b80cf
7
- data.tar.gz: 61c09d7ee8968c70fbe7b9afc98947cf2e15193dfc1d6a9bd6fa2c26a2bc185d53a1990bafc4dff4eaff246301066a4e4170c5ae18a34c359104a2a86b5ad641
6
+ metadata.gz: 4bfb68ba3f8f77aff7cc17914363f0acd672ce694dc7de91dc9a9c0ce5a0e57619e7921595bfd935c60a7eaaee391e473c6fd45c9d52afe888a4141dca432f7a
7
+ data.tar.gz: 53578c87532e1dd9d6a028f60bd3959f62def3e3365c731020b1749e5fc508cc5dce372907ab9079126c8efa87bbc77f694d246e5fd45b657da898246babfbc6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-identitytoolkit_v1
2
2
 
3
+ ### v0.6.0 (2023-03-26)
4
+
5
+ * Regenerated from discovery document revision 20230318
6
+
3
7
  ### v0.5.0 (2023-02-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20230220
@@ -1314,6 +1314,11 @@ module Google
1314
1314
  # @return [String]
1315
1315
  attr_accessor :phone_info
1316
1316
 
1317
+ # Information about TOTP MFA.
1318
+ # Corresponds to the JSON property `totpInfo`
1319
+ # @return [Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1TotpInfo]
1320
+ attr_accessor :totp_info
1321
+
1317
1322
  # Output only. Unobfuscated phone_info.
1318
1323
  # Corresponds to the JSON property `unobfuscatedPhoneInfo`
1319
1324
  # @return [String]
@@ -1329,6 +1334,7 @@ module Google
1329
1334
  @enrolled_at = args[:enrolled_at] if args.key?(:enrolled_at)
1330
1335
  @mfa_enrollment_id = args[:mfa_enrollment_id] if args.key?(:mfa_enrollment_id)
1331
1336
  @phone_info = args[:phone_info] if args.key?(:phone_info)
1337
+ @totp_info = args[:totp_info] if args.key?(:totp_info)
1332
1338
  @unobfuscated_phone_info = args[:unobfuscated_phone_info] if args.key?(:unobfuscated_phone_info)
1333
1339
  end
1334
1340
  end
@@ -3394,6 +3400,19 @@ module Google
3394
3400
  end
3395
3401
  end
3396
3402
 
3403
+ # Information about TOTP MFA.
3404
+ class GoogleCloudIdentitytoolkitV1TotpInfo
3405
+ include Google::Apis::Core::Hashable
3406
+
3407
+ def initialize(**args)
3408
+ update!(**args)
3409
+ end
3410
+
3411
+ # Update properties of this object
3412
+ def update!(**args)
3413
+ end
3414
+ end
3415
+
3397
3416
  # Request message for UploadAccount.
3398
3417
  class GoogleCloudIdentitytoolkitV1UploadAccountRequest
3399
3418
  include Google::Apis::Core::Hashable
@@ -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.5.0"
19
+ GEM_VERSION = "0.6.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 = "20230220"
25
+ REVISION = "20230318"
26
26
  end
27
27
  end
28
28
  end
@@ -340,6 +340,12 @@ module Google
340
340
  include Google::Apis::Core::JsonObjectSupport
341
341
  end
342
342
 
343
+ class GoogleCloudIdentitytoolkitV1TotpInfo
344
+ class Representation < Google::Apis::Core::JsonRepresentation; end
345
+
346
+ include Google::Apis::Core::JsonObjectSupport
347
+ end
348
+
343
349
  class GoogleCloudIdentitytoolkitV1UploadAccountRequest
344
350
  class Representation < Google::Apis::Core::JsonRepresentation; end
345
351
 
@@ -670,6 +676,8 @@ module Google
670
676
  property :enrolled_at, as: 'enrolledAt'
671
677
  property :mfa_enrollment_id, as: 'mfaEnrollmentId'
672
678
  property :phone_info, as: 'phoneInfo'
679
+ property :totp_info, as: 'totpInfo', class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1TotpInfo, decorator: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1TotpInfo::Representation
680
+
673
681
  property :unobfuscated_phone_info, as: 'unobfuscatedPhoneInfo'
674
682
  end
675
683
  end
@@ -1092,6 +1100,12 @@ module Google
1092
1100
  end
1093
1101
  end
1094
1102
 
1103
+ class GoogleCloudIdentitytoolkitV1TotpInfo
1104
+ # @private
1105
+ class Representation < Google::Apis::Core::JsonRepresentation
1106
+ end
1107
+ end
1108
+
1095
1109
  class GoogleCloudIdentitytoolkitV1UploadAccountRequest
1096
1110
  # @private
1097
1111
  class Representation < Google::Apis::Core::JsonRepresentation
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.5.0
4
+ version: 0.6.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-02-26 00:00:00.000000000 Z
11
+ date: 2023-03-26 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.5.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-identitytoolkit_v1/v0.6.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: []