google-apis-cloudidentity_v1 0.16.0 → 0.19.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: 43d53b0efc2f564f64df1acb14c5b3977ada795537df4590b6cb03f49690bd15
4
- data.tar.gz: 6ce752692586b9bec12700dd1dde3d41861621155b84c8181bda815002d8482e
3
+ metadata.gz: 04d7a79fface86225f33bfb95ddc220fdcf608cf05a0f5d811cbde622d1365a8
4
+ data.tar.gz: b44dcd081a37f398e3b74c51da6ea95a39741ed1364f8abc96c3ae7b420c2135
5
5
  SHA512:
6
- metadata.gz: 6f626f5587cca8ccb358691d1fdc0cddf88789f83e33b78fc4a4f5fc278ef857e23f8300cdc6f9f69b1b68b9f180d27d80d05e2c132b9345c978e070259f04e1
7
- data.tar.gz: ed190ad8eb9bd920f8003b96010d18699a088d40fef0788a9bac3142cf6b561bb953343ae2d0091dde0b5f39ef527c64f10c5833dc147ff23e2c22560ec43aba
6
+ metadata.gz: 3b9c981bc4772554358d2413a0accf26958cfea421d98a27e5d05f237712fb44e75f76ce42ab1d6f5e536fabeb523d528b5463ce40fcf9b9096de236855d7b32
7
+ data.tar.gz: f26555f29c35a0a137e149a7a0a8dd9f324e9e08809baa8d66b62d7b98d30584001cd346bec3c3bad1ac9a6dbcdf3a062e2466e5574626e76766b560b111048c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-cloudidentity_v1
2
2
 
3
+ ### v0.19.0 (2022-02-23)
4
+
5
+ * Regenerated from discovery document revision 20220221
6
+
7
+ ### v0.18.0 (2022-02-10)
8
+
9
+ * Regenerated from discovery document revision 20220208
10
+ * Regenerated using generator version 0.4.1
11
+
12
+ ### v0.17.0 (2021-12-16)
13
+
14
+ * Regenerated from discovery document revision 20211214
15
+
3
16
  ### v0.16.0 (2021-12-08)
4
17
 
5
18
  * Regenerated from discovery document revision 20211207
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/cloudidentity_v1"
51
51
  client = Google::Apis::CloudidentityV1::CloudIdentityService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -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.16.0"
19
+ GEM_VERSION = "0.19.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 = "20211207"
25
+ REVISION = "20220221"
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
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.16.0
4
+ version: 0.19.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: 2021-12-13 00:00:00.000000000 Z
11
+ date: 2022-02-28 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.16.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1/v0.19.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.2.17
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