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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f422bc38ff01d1f034487d50e72bbfcc5e97bc974acacc2c274123b09b1e79e0
|
4
|
+
data.tar.gz: 94976c780ae819009093098ef25271082446f40ad462b01bbf59175e48fbdc9d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4bfb68ba3f8f77aff7cc17914363f0acd672ce694dc7de91dc9a9c0ce5a0e57619e7921595bfd935c60a7eaaee391e473c6fd45c9d52afe888a4141dca432f7a
|
7
|
+
data.tar.gz: 53578c87532e1dd9d6a028f60bd3959f62def3e3365c731020b1749e5fc508cc5dce372907ab9079126c8efa87bbc77f694d246e5fd45b657da898246babfbc6
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
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 = "
|
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.
|
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-
|
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.
|
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: []
|