google-apis-cloudidentity_v1beta1 0.16.0 → 0.17.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: ad3bf469f0de30ceec4f73a687a84310eb694ac73ecbf084619e6af15aca4c65
4
- data.tar.gz: 02736ce57be624c07fd46f6fdcf85dd43e3f3a812138abc6da8eb54ae99bdafd
3
+ metadata.gz: 507335c12a135d035c2115f25f2a4835c34cad3d781cf4d66a29a31cf1e98d02
4
+ data.tar.gz: ef239020acb995bef916c2bd2e04028d1125e09d1f939ed2d3ec7e3ec71e905d
5
5
  SHA512:
6
- metadata.gz: dc84aad49a8b746aa4bcf2ebfb15c3918b5ad6badcf2a825655f335b7659be50de84d41d34f1091afcf85be2a4b5eeb4bc70272457794db02173d490bbcec585
7
- data.tar.gz: bd180f4d7162e76deaad664f4dafccfa37507213f3f6700983ac795bcd0f4ec0864a5878a47f1b11a0ae981e1891542e0d2232ed134dbbf9b1010d4d70ec52d4
6
+ metadata.gz: a9b9281351d3a6ee780ec44d7b35384bf61912ddaf81611cc7b7c937a2de184dcafa5bb019759a245e70860e8221575d822797ed76a1b76b9628cd99a1a11354
7
+ data.tar.gz: f6ea8ce86e478b116092d4834aa1eeeb37fe47b3e01e5cc577553785b70fbbf64dabae0efcb02841fdd8c5d41c713dd3a74f6a3e81858d35baf5d6ebcb551549
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudidentity_v1beta1
2
2
 
3
+ ### v0.17.0 (2021-11-03)
4
+
5
+ * Regenerated from discovery document revision 20211102
6
+
3
7
  ### v0.16.0 (2021-10-20)
4
8
 
5
9
  * Regenerated from discovery document revision 20211011
@@ -212,6 +212,105 @@ module Google
212
212
  end
213
213
  end
214
214
 
215
+ # Stores information about a certificate.
216
+ class CertificateInfo
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.
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.
847
+ class EndpointVerificationSpecificAttributes
848
+ include Google::Apis::Core::Hashable
849
+
850
+ # Details of certificates.
851
+ # Corresponds to the JSON property `certificateInfo`
852
+ # @return [Array<Google::Apis::CloudidentityV1beta1::CertificateInfo>]
853
+ attr_accessor :certificate_info
854
+
855
+ def initialize(**args)
856
+ update!(**args)
857
+ end
858
+
859
+ # Update properties of this object
860
+ def update!(**args)
861
+ @certificate_info = args[:certificate_info] if args.key?(:certificate_info)
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
@@ -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
 
@@ -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.16.0"
19
+ GEM_VERSION = "0.17.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 = "20211011"
25
+ REVISION = "20211102"
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 CertificateInfo
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 CertificateInfo
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_info, as: 'certificateInfo', class: Google::Apis::CloudidentityV1beta1::CertificateInfo, decorator: Google::Apis::CloudidentityV1beta1::CertificateInfo::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.16.0
4
+ version: 0.17.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-27 00:00:00.000000000 Z
11
+ date: 2021-11-08 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.16.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.17.0
62
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: []