Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/google-cloud-managedkafka/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Google APIs Client Libraries, in [Client Libraries Explained][explained].
1. [Select or create a Cloud Platform project][projects].
1. [Enable billing for your project][billing].
1. [Enable the Managed Service for Apache Kafka API API][enable_api].
1. [Set up authentication][auth] so you can access the
1. [Set up authentication with a service account][auth] so you can access the
API from your local workstation.

### Installing the client library
Expand Down Expand Up @@ -204,4 +204,4 @@ See [LICENSE](https://github.com/googleapis/google-cloud-node/blob/main/LICENSE)
[projects]: https://console.cloud.google.com/project
[billing]: https://support.google.com/cloud/answer/6293499#enable-billing
[enable_api]: https://console.cloud.google.com/flows/enableapi?apiid=managedkafka.googleapis.com
[auth]: https://cloud.google.com/docs/authentication/external/set-up-adc-local
[auth]: https://cloud.google.com/docs/authentication/getting-started
Original file line number Diff line number Diff line change
Expand Up @@ -152,15 +152,15 @@ service ManagedKafka {
// Returns the properties of a single consumer group.
rpc GetConsumerGroup(GetConsumerGroupRequest) returns (ConsumerGroup) {
option (google.api.http) = {
get: "/v1/{name=projects/*/locations/*/clusters/*/consumerGroups/*}"
get: "/v1/{name=projects/*/locations/*/clusters/*/consumerGroups/**}"
};
option (google.api.method_signature) = "name";
}

// Updates the properties of a single consumer group.
rpc UpdateConsumerGroup(UpdateConsumerGroupRequest) returns (ConsumerGroup) {
option (google.api.http) = {
patch: "/v1/{consumer_group.name=projects/*/locations/*/clusters/*/consumerGroups/*}"
patch: "/v1/{consumer_group.name=projects/*/locations/*/clusters/*/consumerGroups/**}"
body: "consumer_group"
};
option (google.api.method_signature) = "consumer_group,update_mask";
Expand All @@ -170,7 +170,7 @@ service ManagedKafka {
rpc DeleteConsumerGroup(DeleteConsumerGroupRequest)
returns (google.protobuf.Empty) {
option (google.api.http) = {
delete: "/v1/{name=projects/*/locations/*/clusters/*/consumerGroups/*}"
delete: "/v1/{name=projects/*/locations/*/clusters/*/consumerGroups/**}"
};
option (google.api.method_signature) = "name";
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,6 @@ message NetworkConfig {
// The subnet must be located in the same region as the Kafka cluster. The
// project may differ. Multiple subnets from the same parent network must not
// be specified.
//
// The CIDR range of the subnet must be within the IPv4 address ranges for
// private networks, as specified in RFC 1918.
string subnet = 2 [(google.api.field_behavior) = REQUIRED];
}

Expand Down
15 changes: 6 additions & 9 deletions packages/google-cloud-managedkafka/protos/protos.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading