google-apis-cloudchannel_v1 0.51.0 → 0.52.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a7346d331f12582af20b0de6c1ca12fbc5bf1e9e6a6dccba04ac897b0ddc09c
4
- data.tar.gz: e6f8e0d26ec5ab0fe1add90440b9ddf86ea2ef445b711f978b06f001e0115a98
3
+ metadata.gz: 434feafbf1541f1062fa8c5e6dd6f62c6649e2cc8e62cc3f8e5240ce55cb8cda
4
+ data.tar.gz: fa5d0b22338297fc4b5f9628ce0e25bb848354e7d7ab98fae546f26f5277521a
5
5
  SHA512:
6
- metadata.gz: 15ce6d84cace435e44cda6f37d75f4316a9c9db598232037d0536017e385f0bc8d30c1edf5d9c3cda618dc71ea2237a32b2b3a1038008bdefa7bfd08df370e10
7
- data.tar.gz: 982448c564f40803711273c2e06062246f0940ec8e028a49b71e39f3cf6ffbda18bff6e084a3e4d92163aa0929f44db314d64d1db73a6ac8381ce4619732f69c
6
+ metadata.gz: 8ef7a9da0306888c5d2e12536822e3f0446086733d36a1dbbe373ebe055b1d5d6b9a832bd8ec9cd12528de4dafc0f9a2349803abbd26e5753a44e809f987685c
7
+ data.tar.gz: 0217f37643a8a5b3ae3d92b24d4a19215cc905f780b1295c289223616fb7700aec17c846b0b92ed93630a57505a704ec98cb4529566c710b3a1534b251aeb71b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudchannel_v1
2
2
 
3
+ ### v0.52.0 (2024-09-01)
4
+
5
+ * Regenerated from discovery document revision 20240828
6
+
3
7
  ### v0.51.0 (2024-08-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20240728
@@ -462,6 +462,12 @@ module Google
462
462
  # @return [String]
463
463
  attr_accessor :domain
464
464
 
465
+ # Optional. Primary admin email to fetch for Cloud Identity account domainless
466
+ # customer.
467
+ # Corresponds to the JSON property `primaryAdminEmail`
468
+ # @return [String]
469
+ attr_accessor :primary_admin_email
470
+
465
471
  def initialize(**args)
466
472
  update!(**args)
467
473
  end
@@ -469,6 +475,7 @@ module Google
469
475
  # Update properties of this object
470
476
  def update!(**args)
471
477
  @domain = args[:domain] if args.key?(:domain)
478
+ @primary_admin_email = args[:primary_admin_email] if args.key?(:primary_admin_email)
472
479
  end
473
480
  end
474
481
 
@@ -496,6 +503,12 @@ module Google
496
503
  class GoogleCloudChannelV1CloudIdentityCustomerAccount
497
504
  include Google::Apis::Core::Hashable
498
505
 
506
+ # If existing = true, and is 2-tier customer, the channel partner of the
507
+ # customer.
508
+ # Corresponds to the JSON property `channelPartnerCloudIdentityId`
509
+ # @return [String]
510
+ attr_accessor :channel_partner_cloud_identity_id
511
+
499
512
  # If existing = true, the Cloud Identity ID of the customer.
500
513
  # Corresponds to the JSON property `customerCloudIdentityId`
501
514
  # @return [String]
@@ -507,6 +520,11 @@ module Google
507
520
  # @return [String]
508
521
  attr_accessor :customer_name
509
522
 
523
+ # If existing = true, the type of the customer.
524
+ # Corresponds to the JSON property `customerType`
525
+ # @return [String]
526
+ attr_accessor :customer_type
527
+
510
528
  # Returns true if a Cloud Identity account exists for a specific domain.
511
529
  # Corresponds to the JSON property `existing`
512
530
  # @return [Boolean]
@@ -526,8 +544,10 @@ module Google
526
544
 
527
545
  # Update properties of this object
528
546
  def update!(**args)
547
+ @channel_partner_cloud_identity_id = args[:channel_partner_cloud_identity_id] if args.key?(:channel_partner_cloud_identity_id)
529
548
  @customer_cloud_identity_id = args[:customer_cloud_identity_id] if args.key?(:customer_cloud_identity_id)
530
549
  @customer_name = args[:customer_name] if args.key?(:customer_name)
550
+ @customer_type = args[:customer_type] if args.key?(:customer_type)
531
551
  @existing = args[:existing] if args.key?(:existing)
532
552
  @owned = args[:owned] if args.key?(:owned)
533
553
  end
@@ -1447,6 +1467,11 @@ module Google
1447
1467
  attr_accessor :overwrite_if_exists
1448
1468
  alias_method :overwrite_if_exists?, :overwrite_if_exists
1449
1469
 
1470
+ # Optional. Customer's primary admin email.
1471
+ # Corresponds to the JSON property `primaryAdminEmail`
1472
+ # @return [String]
1473
+ attr_accessor :primary_admin_email
1474
+
1450
1475
  def initialize(**args)
1451
1476
  update!(**args)
1452
1477
  end
@@ -1459,6 +1484,7 @@ module Google
1459
1484
  @customer = args[:customer] if args.key?(:customer)
1460
1485
  @domain = args[:domain] if args.key?(:domain)
1461
1486
  @overwrite_if_exists = args[:overwrite_if_exists] if args.key?(:overwrite_if_exists)
1487
+ @primary_admin_email = args[:primary_admin_email] if args.key?(:primary_admin_email)
1462
1488
  end
1463
1489
  end
1464
1490
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudchannelV1
18
18
  # Version of the google-apis-cloudchannel_v1 gem
19
- GEM_VERSION = "0.51.0"
19
+ GEM_VERSION = "0.52.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240728"
25
+ REVISION = "20240828"
26
26
  end
27
27
  end
28
28
  end
@@ -975,6 +975,7 @@ module Google
975
975
  # @private
976
976
  class Representation < Google::Apis::Core::JsonRepresentation
977
977
  property :domain, as: 'domain'
978
+ property :primary_admin_email, as: 'primaryAdminEmail'
978
979
  end
979
980
  end
980
981
 
@@ -989,8 +990,10 @@ module Google
989
990
  class GoogleCloudChannelV1CloudIdentityCustomerAccount
990
991
  # @private
991
992
  class Representation < Google::Apis::Core::JsonRepresentation
993
+ property :channel_partner_cloud_identity_id, as: 'channelPartnerCloudIdentityId'
992
994
  property :customer_cloud_identity_id, as: 'customerCloudIdentityId'
993
995
  property :customer_name, as: 'customerName'
996
+ property :customer_type, as: 'customerType'
994
997
  property :existing, as: 'existing'
995
998
  property :owned, as: 'owned'
996
999
  end
@@ -1223,6 +1226,7 @@ module Google
1223
1226
  property :customer, as: 'customer'
1224
1227
  property :domain, as: 'domain'
1225
1228
  property :overwrite_if_exists, as: 'overwriteIfExists'
1229
+ property :primary_admin_email, as: 'primaryAdminEmail'
1226
1230
  end
1227
1231
  end
1228
1232
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudchannel_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.51.0
4
+ version: 0.52.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: 2024-08-04 00:00:00.000000000 Z
11
+ date: 2024-09-01 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-cloudchannel_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudchannel_v1/v0.51.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudchannel_v1/v0.52.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudchannel_v1
63
63
  post_install_message:
64
64
  rdoc_options: []