google-apis-identitytoolkit_v1 0.8.0 → 0.10.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: 1b040967645f25917bc00107b7919a84eb7b16db2ad6a13190806c1fa66a9d2a
|
4
|
+
data.tar.gz: fd030cbd0c921aad801d8faa07f8aa69c9f6887efa57647b089617494998c846
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 106fa3559c7e58f9eac36e6f9aa8ac42b7f879d44ae545ac4f0b1e8455f4ee7d5ef6c570534ba67c2ebb576822a7f3366e1c7533dd44e71a839501189a0f7602
|
7
|
+
data.tar.gz: fd619518dfe0db91670a0066be58acb28e4831cdcb44976ed750ae2f376c73b4cae3733318786910b17b7c683cdce3fa4813fb6475ae88fb9b3f52438fe34df1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-identitytoolkit_v1
|
2
2
|
|
3
|
+
### v0.10.0 (2023-05-14)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230508
|
6
|
+
|
7
|
+
### v0.9.0 (2023-04-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230421
|
10
|
+
|
3
11
|
### v0.8.0 (2023-04-16)
|
4
12
|
|
5
13
|
* 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)
|
@@ -3030,6 +3055,11 @@ module Google
|
|
3030
3055
|
attr_accessor :registered
|
3031
3056
|
alias_method :registered?, :registered
|
3032
3057
|
|
3058
|
+
# Warning notifications for the user.
|
3059
|
+
# Corresponds to the JSON property `userNotifications`
|
3060
|
+
# @return [Array<Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1UserNotification>]
|
3061
|
+
attr_accessor :user_notifications
|
3062
|
+
|
3033
3063
|
def initialize(**args)
|
3034
3064
|
update!(**args)
|
3035
3065
|
end
|
@@ -3050,6 +3080,7 @@ module Google
|
|
3050
3080
|
@profile_picture = args[:profile_picture] if args.key?(:profile_picture)
|
3051
3081
|
@refresh_token = args[:refresh_token] if args.key?(:refresh_token)
|
3052
3082
|
@registered = args[:registered] if args.key?(:registered)
|
3083
|
+
@user_notifications = args[:user_notifications] if args.key?(:user_notifications)
|
3053
3084
|
end
|
3054
3085
|
end
|
3055
3086
|
|
@@ -3825,6 +3856,31 @@ module Google
|
|
3825
3856
|
end
|
3826
3857
|
end
|
3827
3858
|
|
3859
|
+
# Warning notifications for the user.
|
3860
|
+
class GoogleCloudIdentitytoolkitV1UserNotification
|
3861
|
+
include Google::Apis::Core::Hashable
|
3862
|
+
|
3863
|
+
# Warning notification enum. Can be used for localization.
|
3864
|
+
# Corresponds to the JSON property `notificationCode`
|
3865
|
+
# @return [String]
|
3866
|
+
attr_accessor :notification_code
|
3867
|
+
|
3868
|
+
# Warning notification string. Can be used as fallback.
|
3869
|
+
# Corresponds to the JSON property `notificationMessage`
|
3870
|
+
# @return [String]
|
3871
|
+
attr_accessor :notification_message
|
3872
|
+
|
3873
|
+
def initialize(**args)
|
3874
|
+
update!(**args)
|
3875
|
+
end
|
3876
|
+
|
3877
|
+
# Update properties of this object
|
3878
|
+
def update!(**args)
|
3879
|
+
@notification_code = args[:notification_code] if args.key?(:notification_code)
|
3880
|
+
@notification_message = args[:notification_message] if args.key?(:notification_message)
|
3881
|
+
end
|
3882
|
+
end
|
3883
|
+
|
3828
3884
|
# Request message for VerifyIosClient
|
3829
3885
|
class GoogleCloudIdentitytoolkitV1VerifyIosClientRequest
|
3830
3886
|
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.10.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 = "20230508"
|
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
|
|
@@ -364,6 +370,12 @@ module Google
|
|
364
370
|
include Google::Apis::Core::JsonObjectSupport
|
365
371
|
end
|
366
372
|
|
373
|
+
class GoogleCloudIdentitytoolkitV1UserNotification
|
374
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
|
+
|
376
|
+
include Google::Apis::Core::JsonObjectSupport
|
377
|
+
end
|
378
|
+
|
367
379
|
class GoogleCloudIdentitytoolkitV1VerifyIosClientRequest
|
368
380
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
381
|
|
@@ -501,6 +513,13 @@ module Google
|
|
501
513
|
end
|
502
514
|
end
|
503
515
|
|
516
|
+
class GoogleCloudIdentitytoolkitV1EmailInfo
|
517
|
+
# @private
|
518
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
519
|
+
property :email_address, as: 'emailAddress'
|
520
|
+
end
|
521
|
+
end
|
522
|
+
|
504
523
|
class GoogleCloudIdentitytoolkitV1EmailTemplate
|
505
524
|
# @private
|
506
525
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -675,6 +694,8 @@ module Google
|
|
675
694
|
# @private
|
676
695
|
class Representation < Google::Apis::Core::JsonRepresentation
|
677
696
|
property :display_name, as: 'displayName'
|
697
|
+
property :email_info, as: 'emailInfo', class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1EmailInfo, decorator: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1EmailInfo::Representation
|
698
|
+
|
678
699
|
property :enrolled_at, as: 'enrolledAt'
|
679
700
|
property :mfa_enrollment_id, as: 'mfaEnrollmentId'
|
680
701
|
property :phone_info, as: 'phoneInfo'
|
@@ -1027,6 +1048,8 @@ module Google
|
|
1027
1048
|
property :profile_picture, as: 'profilePicture'
|
1028
1049
|
property :refresh_token, as: 'refreshToken'
|
1029
1050
|
property :registered, as: 'registered'
|
1051
|
+
collection :user_notifications, as: 'userNotifications', class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1UserNotification, decorator: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1UserNotification::Representation
|
1052
|
+
|
1030
1053
|
end
|
1031
1054
|
end
|
1032
1055
|
|
@@ -1180,6 +1203,14 @@ module Google
|
|
1180
1203
|
end
|
1181
1204
|
end
|
1182
1205
|
|
1206
|
+
class GoogleCloudIdentitytoolkitV1UserNotification
|
1207
|
+
# @private
|
1208
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1209
|
+
property :notification_code, as: 'notificationCode'
|
1210
|
+
property :notification_message, as: 'notificationMessage'
|
1211
|
+
end
|
1212
|
+
end
|
1213
|
+
|
1183
1214
|
class GoogleCloudIdentitytoolkitV1VerifyIosClientRequest
|
1184
1215
|
# @private
|
1185
1216
|
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.10.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-05-14 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.10.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: []
|