google-apis-managedkafka_v1 0.17.0 → 0.18.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: 94d025ee543a4329a08b18758171036edc959fea482d4be376640007b0164bc6
4
- data.tar.gz: 2b8c74cc178b535bdb5a0e26e1304859658a42a69b1a793fa6ee466e24bce043
3
+ metadata.gz: 262bd4fa5170cf908d9cc833350d3321662f385ad1ea1506b8a6c605d31bb2ec
4
+ data.tar.gz: 87231c51e0d3a409a7d18dd3b636c7d3cda8d43542e51aced9b6a6c5d085c5bc
5
5
  SHA512:
6
- metadata.gz: 5fb401650c44393dbbc3bb262442cdc6264e504a5f5feda268c46f4ef6a80211506fdfb0f088cf15d2da42ea62880cdece6fff08f09dbbc89ca241ecd3623513
7
- data.tar.gz: a3cbc40c229413efe2cea293d4f60a86148d3ab79dc4999356f86b19602f6ef5f58d64385dcfaa64d1bc1ffdf67d62f172c31e96e73b957286bb5b88ccef5b1a
6
+ metadata.gz: fd4a22964e4d638b4a6689694cfff9f65eea6105e286e0ab4019f57f37637dada3e21ab6e05031e3296a03c08af0158351f0feb85f4fcd5d8c0feb9ff52ed652
7
+ data.tar.gz: 1273cf3faba66f40c0c408fb444d146deda07700e0c63c6d2a0e9bd3d3b3aaae90f255a65d4df5f150813682695c98cd1a4428e2c15b818b9d80ae8a1d817f14
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-managedkafka_v1
2
2
 
3
+ ### v0.18.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251204
6
+
3
7
  ### v0.17.0 (2025-11-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20251114
@@ -543,9 +543,11 @@ module Google
543
543
  class ConnectNetworkConfig
544
544
  include Google::Apis::Core::Hashable
545
545
 
546
- # Optional. Additional subnets may be specified. They may be in another region,
547
- # but must be in the same VPC network. The Connect workers can communicate with
548
- # network endpoints in either the primary or additional subnets.
546
+ # Optional. Deprecated: Managed Kafka Connect clusters can now reach any
547
+ # endpoint accessible from the primary subnet without the need to define
548
+ # additional subnets. Please see https://cloud.google.com/managed-service-for-
549
+ # apache-kafka/docs/connect-cluster/create-connect-cluster#worker-subnet for
550
+ # more information.
549
551
  # Corresponds to the JSON property `additionalSubnets`
550
552
  # @return [Array<String>]
551
553
  attr_accessor :additional_subnets
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ManagedkafkaV1
18
18
  # Version of the google-apis-managedkafka_v1 gem
19
- GEM_VERSION = "0.17.0"
19
+ GEM_VERSION = "0.18.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251114"
25
+ REVISION = "20251204"
26
26
  end
27
27
  end
28
28
  end
@@ -705,6 +705,9 @@ module Google
705
705
  # Provide this to retrieve the subsequent page. When paginating, all other
706
706
  # parameters provided to `ListConsumerGroups` must match the call that provided
707
707
  # the page token.
708
+ # @param [String] view
709
+ # Optional. Specifies the view (BASIC or FULL) of the ConsumerGroup resource to
710
+ # be returned in the response. Defaults to FULL view.
708
711
  # @param [String] fields
709
712
  # Selector specifying which fields to include in a partial response.
710
713
  # @param [String] quota_user
@@ -722,13 +725,14 @@ module Google
722
725
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
723
726
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
724
727
  # @raise [Google::Apis::AuthorizationError] Authorization is required
725
- def list_project_location_cluster_consumer_groups(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
728
+ def list_project_location_cluster_consumer_groups(parent, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
726
729
  command = make_simple_command(:get, 'v1/{+parent}/consumerGroups', options)
727
730
  command.response_representation = Google::Apis::ManagedkafkaV1::ListConsumerGroupsResponse::Representation
728
731
  command.response_class = Google::Apis::ManagedkafkaV1::ListConsumerGroupsResponse
729
732
  command.params['parent'] = parent unless parent.nil?
730
733
  command.query['pageSize'] = page_size unless page_size.nil?
731
734
  command.query['pageToken'] = page_token unless page_token.nil?
735
+ command.query['view'] = view unless view.nil?
732
736
  command.query['fields'] = fields unless fields.nil?
733
737
  command.query['quotaUser'] = quota_user unless quota_user.nil?
734
738
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-managedkafka_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-managedkafka_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-managedkafka_v1/v0.17.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-managedkafka_v1/v0.18.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-managedkafka_v1
62
62
  rdoc_options: []
63
63
  require_paths: