google-apis-cloudidentity_v1beta1 0.15.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: 216be1760e71174e3fb09566f95a27e20287de15f06485d3f3df3f1320fbd421
4
- data.tar.gz: 2fac8d974e9ddbef7ccab2e72ddb2b83d48f5e0d0dc39b7ef23e2d9d18782d58
3
+ metadata.gz: 5ae3759fd4592f414c1bc6da92a879121927c6bb70e526d88d1ad4be1fcca682
4
+ data.tar.gz: da68e1c608d044736831f469862cb7573b0fd38455a20f977e51fbf155fbad54
5
5
  SHA512:
6
- metadata.gz: 4dee61002c6e6191f4d76f45850ec33bd12b63847a4f2a8cf701cb2b78e0195277ae93e34b403cc658e32af2f7405fcb4c7a6693a8c7b4d2ad26fc80472a599d
7
- data.tar.gz: 6c612bc61c64a9b6c3d6b70cc4d5751ba8a8a19c1a2e5f1e9290436cfaea0040cdd5ebb7dda9ef625db92d38f8059e60854c2c8fecb9ae74e6e0e8d63a2a1127
6
+ metadata.gz: 7711914adf854fe5199bc1af7fcd9bb9b29bc5fa0d3af9854a7f75dc2a8dd9ddedf83fdfc53d8b593eab1f0a18f077e1bbfb721514007f8ef48dca211c2e37f4
7
+ data.tar.gz: e404b129e136252b8f3493c4f84724964cf70ef5577a0c85f8e6ee3c0392bf0c0ad9973d2a7cb55585d31b93396cad94f567a238ec8e34bab13ed3e7bd151f0b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-cloudidentity_v1beta1
2
2
 
3
+ ### v0.19.0 (2021-12-08)
4
+
5
+ * Regenerated from discovery document revision 20211207
6
+
7
+ ### v0.18.0 (2021-11-17)
8
+
9
+ * Regenerated from discovery document revision 20211116
10
+
11
+ ### v0.17.0 (2021-11-03)
12
+
13
+ * Regenerated from discovery document revision 20211102
14
+
15
+ ### v0.16.0 (2021-10-20)
16
+
17
+ * Regenerated from discovery document revision 20211011
18
+
3
19
  ### v0.15.0 (2021-09-29)
4
20
 
5
21
  * Regenerated from discovery document revision 20210928
data/OVERVIEW.md CHANGED
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Cloudidentity service in particular.)
67
67
 
@@ -212,6 +212,105 @@ module Google
212
212
  end
213
213
  end
214
214
 
215
+ # Stores information about a certificate.
216
+ class CertificateAttributes
217
+ include Google::Apis::Core::Hashable
218
+
219
+ # CertificateTemplate (v3 Extension in X.509).
220
+ # Corresponds to the JSON property `certificateTemplate`
221
+ # @return [Google::Apis::CloudidentityV1beta1::CertificateTemplate]
222
+ attr_accessor :certificate_template
223
+
224
+ # The encoded certificate fingerprint.
225
+ # Corresponds to the JSON property `fingerprint`
226
+ # @return [String]
227
+ attr_accessor :fingerprint
228
+
229
+ # The name of the issuer of this certificate.
230
+ # Corresponds to the JSON property `issuer`
231
+ # @return [String]
232
+ attr_accessor :issuer
233
+
234
+ # Serial number of the certificate, Example: "123456789".
235
+ # Corresponds to the JSON property `serialNumber`
236
+ # @return [String]
237
+ attr_accessor :serial_number
238
+
239
+ # The subject name of this certificate.
240
+ # Corresponds to the JSON property `subject`
241
+ # @return [String]
242
+ attr_accessor :subject
243
+
244
+ # The certificate thumbprint.
245
+ # Corresponds to the JSON property `thumbprint`
246
+ # @return [String]
247
+ attr_accessor :thumbprint
248
+
249
+ # Validation state of this certificate.
250
+ # Corresponds to the JSON property `validationState`
251
+ # @return [String]
252
+ attr_accessor :validation_state
253
+
254
+ # Certificate not valid at or after this timestamp.
255
+ # Corresponds to the JSON property `validityExpirationTime`
256
+ # @return [String]
257
+ attr_accessor :validity_expiration_time
258
+
259
+ # Certificate not valid before this timestamp.
260
+ # Corresponds to the JSON property `validityStartTime`
261
+ # @return [String]
262
+ attr_accessor :validity_start_time
263
+
264
+ def initialize(**args)
265
+ update!(**args)
266
+ end
267
+
268
+ # Update properties of this object
269
+ def update!(**args)
270
+ @certificate_template = args[:certificate_template] if args.key?(:certificate_template)
271
+ @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
272
+ @issuer = args[:issuer] if args.key?(:issuer)
273
+ @serial_number = args[:serial_number] if args.key?(:serial_number)
274
+ @subject = args[:subject] if args.key?(:subject)
275
+ @thumbprint = args[:thumbprint] if args.key?(:thumbprint)
276
+ @validation_state = args[:validation_state] if args.key?(:validation_state)
277
+ @validity_expiration_time = args[:validity_expiration_time] if args.key?(:validity_expiration_time)
278
+ @validity_start_time = args[:validity_start_time] if args.key?(:validity_start_time)
279
+ end
280
+ end
281
+
282
+ # CertificateTemplate (v3 Extension in X.509).
283
+ class CertificateTemplate
284
+ include Google::Apis::Core::Hashable
285
+
286
+ # The template id of the template. Example: "1.3.6.1.4.1.311.21.8.15608621.
287
+ # 11768144.5720724.16068415.6889630.81.2472537.7784047".
288
+ # Corresponds to the JSON property `id`
289
+ # @return [String]
290
+ attr_accessor :id
291
+
292
+ # The Major version of the template. Example: 100.
293
+ # Corresponds to the JSON property `majorVersion`
294
+ # @return [Fixnum]
295
+ attr_accessor :major_version
296
+
297
+ # The minor version of the template. Example: 12.
298
+ # Corresponds to the JSON property `minorVersion`
299
+ # @return [Fixnum]
300
+ attr_accessor :minor_version
301
+
302
+ def initialize(**args)
303
+ update!(**args)
304
+ end
305
+
306
+ # Update properties of this object
307
+ def update!(**args)
308
+ @id = args[:id] if args.key?(:id)
309
+ @major_version = args[:major_version] if args.key?(:major_version)
310
+ @minor_version = args[:minor_version] if args.key?(:minor_version)
311
+ end
312
+ end
313
+
215
314
  # The response message for MembershipsService.CheckTransitiveMembership.
216
315
  class CheckTransitiveMembershipResponse
217
316
  include Google::Apis::Core::Hashable
@@ -450,6 +549,12 @@ module Google
450
549
  # @return [String]
451
550
  attr_accessor :encryption_state
452
551
 
552
+ # Resource representing the Endpoint Verification-specific attributes of a
553
+ # Device. https://cloud.google.com/endpoint-verification/docs/overview
554
+ # Corresponds to the JSON property `endpointVerificationSpecificAttributes`
555
+ # @return [Google::Apis::CloudidentityV1beta1::EndpointVerificationSpecificAttributes]
556
+ attr_accessor :endpoint_verification_specific_attributes
557
+
453
558
  # Output only. IMEI number of device if GSM device; empty otherwise.
454
559
  # Corresponds to the JSON property `imei`
455
560
  # @return [String]
@@ -554,6 +659,7 @@ module Google
554
659
  @enabled_developer_options = args[:enabled_developer_options] if args.key?(:enabled_developer_options)
555
660
  @enabled_usb_debugging = args[:enabled_usb_debugging] if args.key?(:enabled_usb_debugging)
556
661
  @encryption_state = args[:encryption_state] if args.key?(:encryption_state)
662
+ @endpoint_verification_specific_attributes = args[:endpoint_verification_specific_attributes] if args.key?(:endpoint_verification_specific_attributes)
557
663
  @imei = args[:imei] if args.key?(:imei)
558
664
  @kernel_version = args[:kernel_version] if args.key?(:kernel_version)
559
665
  @last_sync_time = args[:last_sync_time] if args.key?(:last_sync_time)
@@ -736,6 +842,26 @@ module Google
736
842
  end
737
843
  end
738
844
 
845
+ # Resource representing the Endpoint Verification-specific attributes of a
846
+ # Device. https://cloud.google.com/endpoint-verification/docs/overview
847
+ class EndpointVerificationSpecificAttributes
848
+ include Google::Apis::Core::Hashable
849
+
850
+ # Details of certificates.
851
+ # Corresponds to the JSON property `certificateAttributes`
852
+ # @return [Array<Google::Apis::CloudidentityV1beta1::CertificateAttributes>]
853
+ attr_accessor :certificate_attributes
854
+
855
+ def initialize(**args)
856
+ update!(**args)
857
+ end
858
+
859
+ # Update properties of this object
860
+ def update!(**args)
861
+ @certificate_attributes = args[:certificate_attributes] if args.key?(:certificate_attributes)
862
+ end
863
+ end
864
+
739
865
  # A unique identifier for an entity in the Cloud Identity Groups API. An entity
740
866
  # can represent either a group with an optional `namespace` or a user without a `
741
867
  # namespace`. The combination of `id` and `namespace` must be unique; however,
@@ -790,6 +916,32 @@ module Google
790
916
  end
791
917
  end
792
918
 
919
+ # Message containing first admin invitation info for customers
920
+ class FirstAdminInvitationInfo
921
+ include Google::Apis::Core::Hashable
922
+
923
+ # Optional. To enable First Admin Invitation for Domained Customer
924
+ # Corresponds to the JSON property `isFirstAdmin`
925
+ # @return [Boolean]
926
+ attr_accessor :is_first_admin
927
+ alias_method :is_first_admin?, :is_first_admin
928
+
929
+ # Optional. Domain information of first admin invited
930
+ # Corresponds to the JSON property `primaryDomain`
931
+ # @return [String]
932
+ attr_accessor :primary_domain
933
+
934
+ def initialize(**args)
935
+ update!(**args)
936
+ end
937
+
938
+ # Update properties of this object
939
+ def update!(**args)
940
+ @is_first_admin = args[:is_first_admin] if args.key?(:is_first_admin)
941
+ @primary_domain = args[:primary_domain] if args.key?(:primary_domain)
942
+ end
943
+ end
944
+
793
945
  # The response message for MembershipsService.GetMembershipGraph.
794
946
  class GetMembershipGraphResponse
795
947
  include Google::Apis::Core::Hashable
@@ -1976,7 +2128,7 @@ module Google
1976
2128
  # @return [Array<Google::Apis::CloudidentityV1beta1::EntityKey>]
1977
2129
  attr_accessor :preferred_member_key
1978
2130
 
1979
- # The relation between the group and the transitive member.
2131
+ # The relation between the group and the transitive membership.
1980
2132
  # Corresponds to the JSON property `relationType`
1981
2133
  # @return [String]
1982
2134
  attr_accessor :relation_type
@@ -2426,7 +2578,7 @@ module Google
2426
2578
  class SearchTransitiveMembershipsResponse
2427
2579
  include Google::Apis::Core::Hashable
2428
2580
 
2429
- # List of transitive members satisfying the query.
2581
+ # List of transitive memberships satisfying the query.
2430
2582
  # Corresponds to the JSON property `memberships`
2431
2583
  # @return [Array<Google::Apis::CloudidentityV1beta1::MemberRelation>]
2432
2584
  attr_accessor :memberships
@@ -2479,12 +2631,18 @@ module Google
2479
2631
  class SendUserInvitationRequest
2480
2632
  include Google::Apis::Core::Hashable
2481
2633
 
2634
+ # Message containing first admin invitation info for customers
2635
+ # Corresponds to the JSON property `firstAdminInvitationInfo`
2636
+ # @return [Google::Apis::CloudidentityV1beta1::FirstAdminInvitationInfo]
2637
+ attr_accessor :first_admin_invitation_info
2638
+
2482
2639
  def initialize(**args)
2483
2640
  update!(**args)
2484
2641
  end
2485
2642
 
2486
2643
  # Update properties of this object
2487
2644
  def update!(**args)
2645
+ @first_admin_invitation_info = args[:first_admin_invitation_info] if args.key?(:first_admin_invitation_info)
2488
2646
  end
2489
2647
  end
2490
2648
 
@@ -2575,7 +2733,7 @@ module Google
2575
2733
  end
2576
2734
 
2577
2735
  # The `UserInvitation` resource represents an email that can be sent to an
2578
- # unmanaged user account inviting them to join the customers Google Workspace
2736
+ # unmanaged user account inviting them to join the customer's Google Workspace
2579
2737
  # or Cloud Identity account. An unmanaged account shares an email address domain
2580
2738
  # with the Google Workspace or Cloud Identity account but is not managed by it
2581
2739
  # yet. If the user accepts the `UserInvitation`, the user account will become
@@ -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.15.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210928"
25
+ REVISION = "20211207"
26
26
  end
27
27
  end
28
28
  end
@@ -82,6 +82,18 @@ module Google
82
82
  include Google::Apis::Core::JsonObjectSupport
83
83
  end
84
84
 
85
+ class CertificateAttributes
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
91
+ class CertificateTemplate
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
85
97
  class CheckTransitiveMembershipResponse
86
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
87
99
 
@@ -136,6 +148,12 @@ module Google
136
148
  include Google::Apis::Core::JsonObjectSupport
137
149
  end
138
150
 
151
+ class EndpointVerificationSpecificAttributes
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
139
157
  class EntityKey
140
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
159
 
@@ -148,6 +166,12 @@ module Google
148
166
  include Google::Apis::Core::JsonObjectSupport
149
167
  end
150
168
 
169
+ class FirstAdminInvitationInfo
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
151
175
  class GetMembershipGraphResponse
152
176
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
177
 
@@ -592,6 +616,31 @@ module Google
592
616
  end
593
617
  end
594
618
 
619
+ class CertificateAttributes
620
+ # @private
621
+ class Representation < Google::Apis::Core::JsonRepresentation
622
+ property :certificate_template, as: 'certificateTemplate', class: Google::Apis::CloudidentityV1beta1::CertificateTemplate, decorator: Google::Apis::CloudidentityV1beta1::CertificateTemplate::Representation
623
+
624
+ property :fingerprint, as: 'fingerprint'
625
+ property :issuer, as: 'issuer'
626
+ property :serial_number, as: 'serialNumber'
627
+ property :subject, as: 'subject'
628
+ property :thumbprint, as: 'thumbprint'
629
+ property :validation_state, as: 'validationState'
630
+ property :validity_expiration_time, as: 'validityExpirationTime'
631
+ property :validity_start_time, as: 'validityStartTime'
632
+ end
633
+ end
634
+
635
+ class CertificateTemplate
636
+ # @private
637
+ class Representation < Google::Apis::Core::JsonRepresentation
638
+ property :id, as: 'id'
639
+ property :major_version, as: 'majorVersion'
640
+ property :minor_version, as: 'minorVersion'
641
+ end
642
+ end
643
+
595
644
  class CheckTransitiveMembershipResponse
596
645
  # @private
597
646
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -651,6 +700,8 @@ module Google
651
700
  property :enabled_developer_options, as: 'enabledDeveloperOptions'
652
701
  property :enabled_usb_debugging, as: 'enabledUsbDebugging'
653
702
  property :encryption_state, as: 'encryptionState'
703
+ property :endpoint_verification_specific_attributes, as: 'endpointVerificationSpecificAttributes', class: Google::Apis::CloudidentityV1beta1::EndpointVerificationSpecificAttributes, decorator: Google::Apis::CloudidentityV1beta1::EndpointVerificationSpecificAttributes::Representation
704
+
654
705
  property :imei, as: 'imei'
655
706
  property :kernel_version, as: 'kernelVersion'
656
707
  property :last_sync_time, as: 'lastSyncTime'
@@ -712,6 +763,14 @@ module Google
712
763
  end
713
764
  end
714
765
 
766
+ class EndpointVerificationSpecificAttributes
767
+ # @private
768
+ class Representation < Google::Apis::Core::JsonRepresentation
769
+ collection :certificate_attributes, as: 'certificateAttributes', class: Google::Apis::CloudidentityV1beta1::CertificateAttributes, decorator: Google::Apis::CloudidentityV1beta1::CertificateAttributes::Representation
770
+
771
+ end
772
+ end
773
+
715
774
  class EntityKey
716
775
  # @private
717
776
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -727,6 +786,14 @@ module Google
727
786
  end
728
787
  end
729
788
 
789
+ class FirstAdminInvitationInfo
790
+ # @private
791
+ class Representation < Google::Apis::Core::JsonRepresentation
792
+ property :is_first_admin, as: 'isFirstAdmin'
793
+ property :primary_domain, as: 'primaryDomain'
794
+ end
795
+ end
796
+
730
797
  class GetMembershipGraphResponse
731
798
  # @private
732
799
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1229,6 +1296,8 @@ module Google
1229
1296
  class SendUserInvitationRequest
1230
1297
  # @private
1231
1298
  class Representation < Google::Apis::Core::JsonRepresentation
1299
+ property :first_admin_invitation_info, as: 'firstAdminInvitationInfo', class: Google::Apis::CloudidentityV1beta1::FirstAdminInvitationInfo, decorator: Google::Apis::CloudidentityV1beta1::FirstAdminInvitationInfo::Representation
1300
+
1232
1301
  end
1233
1302
  end
1234
1303
 
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.15.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-10-04 00:00:00.000000000 Z
11
+ date: 2021-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudidentity_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.15.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudidentity_v1beta1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudidentity_v1beta1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.19.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudidentity_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths: