google-apis-cloudidentity_v1 0.17.0 → 0.20.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: 9cd80975b45d2fba4c5424843d477c7c2208aff51a82486a8bcb40cb9a8f7bb3
4
- data.tar.gz: 2f87843180ff3d50784c2edd9ca229663eb5e2c6d1b7da6eadba8818e7d08f3a
3
+ metadata.gz: 0736c8091c57c30f1246a67974a3473a0ba601b7bed08ce95266ed778c231868
4
+ data.tar.gz: 3327790b2852951f1e98511ed610102eef7e26ce3746764b1fc8d6fbe19f6526
5
5
  SHA512:
6
- metadata.gz: f8b700558c7c4d50b76e2052240938ade6bbc61862fd11100dd53eaad455ac0df494c285d966f96b1bb5e635e0f2c6af26a577b2b4139b39aeb43cb3f00f3898
7
- data.tar.gz: bbd4df58a942a3cc280b4a5e80835a9dda904c5cca22bfd910b2fab868d5f5b1c6989702e12ecc8382319e14d3b98c51872ab4edd1b64d19ef378977a79de06c
6
+ metadata.gz: 1444a72b9249ae123cc4949181654d17e439d1b0edd0d854d0ff5ba0672db5bb16a9518067df1258c5a54220d22efd72173545aeb59a74103c76a15935c218d0
7
+ data.tar.gz: ce074b7140eb0f963896c3d3a7fbdb29b7b4b6e90f531f30359da98b7e5f7ad76bdacd2970b0c627e250e38d0e413685b1b264a3f4b4018d79a7b56b32178b2f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-cloudidentity_v1
2
2
 
3
+ ### v0.20.0 (2022-03-02)
4
+
5
+ * Regenerated from discovery document revision 20220301
6
+
7
+ ### v0.19.0 (2022-02-23)
8
+
9
+ * Regenerated from discovery document revision 20220221
10
+
11
+ ### v0.18.0 (2022-02-10)
12
+
13
+ * Regenerated from discovery document revision 20220208
14
+ * Regenerated using generator version 0.4.1
15
+
3
16
  ### v0.17.0 (2021-12-16)
4
17
 
5
18
  * Regenerated from discovery document revision 20211214
@@ -1181,6 +1181,16 @@ module Google
1181
1181
  # @return [String]
1182
1182
  attr_accessor :customer
1183
1183
 
1184
+ # Optional. Specifies if a user is able to factory reset a device after a Device
1185
+ # Wipe. On iOS, this is called "Activation Lock", while on Android, this is
1186
+ # known as "Factory Reset Protection". If true, this protection will be removed
1187
+ # from the device, so that a user can successfully factory reset. If false, the
1188
+ # setting is untouched on the device.
1189
+ # Corresponds to the JSON property `removeResetLock`
1190
+ # @return [Boolean]
1191
+ attr_accessor :remove_reset_lock
1192
+ alias_method :remove_reset_lock?, :remove_reset_lock
1193
+
1184
1194
  def initialize(**args)
1185
1195
  update!(**args)
1186
1196
  end
@@ -1188,6 +1198,7 @@ module Google
1188
1198
  # Update properties of this object
1189
1199
  def update!(**args)
1190
1200
  @customer = args[:customer] if args.key?(:customer)
1201
+ @remove_reset_lock = args[:remove_reset_lock] if args.key?(:remove_reset_lock)
1191
1202
  end
1192
1203
  end
1193
1204
 
@@ -2083,49 +2094,6 @@ module Google
2083
2094
  @membership_role = args[:membership_role] if args.key?(:membership_role)
2084
2095
  end
2085
2096
  end
2086
-
2087
- # The `UserInvitation` resource represents an email that can be sent to an
2088
- # unmanaged user account inviting them to join the customer's Google Workspace
2089
- # or Cloud Identity account. An unmanaged account shares an email address domain
2090
- # with the Google Workspace or Cloud Identity account but is not managed by it
2091
- # yet. If the user accepts the `UserInvitation`, the user account will become
2092
- # managed.
2093
- class UserInvitation
2094
- include Google::Apis::Core::Hashable
2095
-
2096
- # Number of invitation emails sent to the user.
2097
- # Corresponds to the JSON property `mailsSentCount`
2098
- # @return [Fixnum]
2099
- attr_accessor :mails_sent_count
2100
-
2101
- # Shall be of the form `customers/`customer`/userinvitations/`user_email_address`
2102
- # `.
2103
- # Corresponds to the JSON property `name`
2104
- # @return [String]
2105
- attr_accessor :name
2106
-
2107
- # State of the `UserInvitation`.
2108
- # Corresponds to the JSON property `state`
2109
- # @return [String]
2110
- attr_accessor :state
2111
-
2112
- # Time when the `UserInvitation` was last updated.
2113
- # Corresponds to the JSON property `updateTime`
2114
- # @return [String]
2115
- attr_accessor :update_time
2116
-
2117
- def initialize(**args)
2118
- update!(**args)
2119
- end
2120
-
2121
- # Update properties of this object
2122
- def update!(**args)
2123
- @mails_sent_count = args[:mails_sent_count] if args.key?(:mails_sent_count)
2124
- @name = args[:name] if args.key?(:name)
2125
- @state = args[:state] if args.key?(:state)
2126
- @update_time = args[:update_time] if args.key?(:update_time)
2127
- end
2128
- end
2129
2097
  end
2130
2098
  end
2131
2099
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudidentityV1
18
18
  # Version of the google-apis-cloudidentity_v1 gem
19
- GEM_VERSION = "0.17.0"
19
+ GEM_VERSION = "0.20.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211214"
25
+ REVISION = "20220301"
26
26
  end
27
27
  end
28
28
  end
@@ -454,12 +454,6 @@ module Google
454
454
  include Google::Apis::Core::JsonObjectSupport
455
455
  end
456
456
 
457
- class UserInvitation
458
- class Representation < Google::Apis::Core::JsonRepresentation; end
459
-
460
- include Google::Apis::Core::JsonObjectSupport
461
- end
462
-
463
457
  class CheckTransitiveMembershipResponse
464
458
  # @private
465
459
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -809,6 +803,7 @@ module Google
809
803
  # @private
810
804
  class Representation < Google::Apis::Core::JsonRepresentation
811
805
  property :customer, as: 'customer'
806
+ property :remove_reset_lock, as: 'removeResetLock'
812
807
  end
813
808
  end
814
809
 
@@ -1084,16 +1079,6 @@ module Google
1084
1079
 
1085
1080
  end
1086
1081
  end
1087
-
1088
- class UserInvitation
1089
- # @private
1090
- class Representation < Google::Apis::Core::JsonRepresentation
1091
- property :mails_sent_count, :numeric_string => true, as: 'mailsSentCount'
1092
- property :name, as: 'name'
1093
- property :state, as: 'state'
1094
- property :update_time, as: 'updateTime'
1095
- end
1096
- end
1097
1082
  end
1098
1083
  end
1099
1084
  end
@@ -29,9 +29,15 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1'
31
31
 
32
+ # Private Service: https://www.googleapis.com/auth/cloud-identity.devices
33
+ AUTH_CLOUD_IDENTITY_DEVICES = 'https://www.googleapis.com/auth/cloud-identity.devices'
34
+
32
35
  # See your device details
33
36
  AUTH_CLOUD_IDENTITY_DEVICES_LOOKUP = 'https://www.googleapis.com/auth/cloud-identity.devices.lookup'
34
37
 
38
+ # Private Service: https://www.googleapis.com/auth/cloud-identity.devices.readonly
39
+ AUTH_CLOUD_IDENTITY_DEVICES_READONLY = 'https://www.googleapis.com/auth/cloud-identity.devices.readonly'
40
+
35
41
  # See, change, create, and delete any of the Cloud Identity Groups that you can access, including the members of each group
36
42
  AUTH_CLOUD_IDENTITY_GROUPS = 'https://www.googleapis.com/auth/cloud-identity.groups'
37
43
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudidentity_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.20.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: 2022-01-10 00:00:00.000000000 Z
11
+ date: 2022-03-07 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-cloudidentity_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1/v0.17.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1/v0.20.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudidentity_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.4
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Identity API V1