google-apis-cloudidentity_v1beta1 0.1.0 → 0.2.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: 844079381cb6af9dbf2eb9cec3ea58e2b8c734b1a17f1c7b9abcfda26d724916
4
- data.tar.gz: c47f1ed5c2032c740ef01cb0f570a9482c67a73f8c2d7b1dfa052584ea648ac0
3
+ metadata.gz: d367e4d609b648f951df96350c3e0305097176f85495554ab05a2e11be42845a
4
+ data.tar.gz: 95a3054c222d4ff21cdd96a5de0ddb04096bb71d9c485cb24378f3bb2b429062
5
5
  SHA512:
6
- metadata.gz: 82d4d779c089ea0642e966fc748ab46d2034d748a8ae2d08377d96e89fd3794f7122536f1b5a7239dc96b73c31a422e88e95ab9d6d87669e8aac3797cb63b98b
7
- data.tar.gz: d355d2548a7f2ece3667c6f2ca5776dd2aeb0a2f067af216999945bfd944e461e7457f2a9474b834f96ff70d2c75da1f4ba06549dfeada401b5f45ed46a5e846
6
+ metadata.gz: 7c424d447bad88462a1493521cbdc2eaaa021e2533bc79bed73c1d344066cf467905c0b2aaf0bbaab426c011ba2e2bfea69022e2db3f87ab22634f3312750f8d
7
+ data.tar.gz: 56d95d4165317ab983bb32a955f7517984f76f069b5bc9c7e94acbf4817d9dd224d091f4838084b1ff6a8e41563f5c15bfec9d9826a10ff4e085a08decf8a8b2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-cloudidentity_v1beta1
2
2
 
3
+ ### v0.2.0 (2021-01-29)
4
+
5
+ * Regenerated from discovery document revision 20210124
6
+ * Regenerated using generator version 0.1.2
7
+
3
8
  ### v0.1.0 (2021-01-07)
4
9
 
5
10
  * Regenerated using generator version 0.1.1
@@ -2218,6 +2218,44 @@ module Google
2218
2218
  end
2219
2219
  end
2220
2220
 
2221
+ # UserInvitation to join a Google Workspace organization.
2222
+ class UserInvitation
2223
+ include Google::Apis::Core::Hashable
2224
+
2225
+ # Number of invitation emails sent to the user.
2226
+ # Corresponds to the JSON property `mailsSentCount`
2227
+ # @return [Fixnum]
2228
+ attr_accessor :mails_sent_count
2229
+
2230
+ # Shall be of the form `customers/`customer`/userinvitations/`user_email_address`
2231
+ # `
2232
+ # Corresponds to the JSON property `name`
2233
+ # @return [String]
2234
+ attr_accessor :name
2235
+
2236
+ # State of the `UserInvitation`.
2237
+ # Corresponds to the JSON property `state`
2238
+ # @return [String]
2239
+ attr_accessor :state
2240
+
2241
+ # Time when the `UserInvitation` was last updated.
2242
+ # Corresponds to the JSON property `updateTime`
2243
+ # @return [String]
2244
+ attr_accessor :update_time
2245
+
2246
+ def initialize(**args)
2247
+ update!(**args)
2248
+ end
2249
+
2250
+ # Update properties of this object
2251
+ def update!(**args)
2252
+ @mails_sent_count = args[:mails_sent_count] if args.key?(:mails_sent_count)
2253
+ @name = args[:name] if args.key?(:name)
2254
+ @state = args[:state] if args.key?(:state)
2255
+ @update_time = args[:update_time] if args.key?(:update_time)
2256
+ end
2257
+ end
2258
+
2221
2259
  # Request message for wiping all data on the device.
2222
2260
  class WipeDeviceRequest
2223
2261
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudidentityV1beta1
18
18
  # Version of the google-apis-cloudidentity_v1beta1 gem
19
- GEM_VERSION = "0.1.0"
19
+ GEM_VERSION = "0.2.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.1"
22
+ GENERATOR_VERSION = "0.1.2"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20201213"
25
+ REVISION = "20210124"
26
26
  end
27
27
  end
28
28
  end
@@ -352,6 +352,12 @@ module Google
352
352
  include Google::Apis::Core::JsonObjectSupport
353
353
  end
354
354
 
355
+ class UserInvitation
356
+ class Representation < Google::Apis::Core::JsonRepresentation; end
357
+
358
+ include Google::Apis::Core::JsonObjectSupport
359
+ end
360
+
355
361
  class WipeDeviceRequest
356
362
  class Representation < Google::Apis::Core::JsonRepresentation; end
357
363
 
@@ -959,6 +965,16 @@ module Google
959
965
  end
960
966
  end
961
967
 
968
+ class UserInvitation
969
+ # @private
970
+ class Representation < Google::Apis::Core::JsonRepresentation
971
+ property :mails_sent_count, :numeric_string => true, as: 'mailsSentCount'
972
+ property :name, as: 'name'
973
+ property :state, as: 'state'
974
+ property :update_time, as: 'updateTime'
975
+ end
976
+ end
977
+
962
978
  class WipeDeviceRequest
963
979
  # @private
964
980
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudidentity_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.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-01-08 00:00:00.000000000 Z
11
+ date: 2021-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudidentity_v1beta1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.1.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.2.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudidentity_v1beta1
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.1.4
72
+ rubygems_version: 3.2.6
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Cloud Identity API V1beta1