google-cloud-managed_kafka-v1 1.0.1 → 1.1.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 +4 -4
- data/lib/google/cloud/managed_kafka/v1/managed_kafka_connect/client.rb +1887 -0
- data/lib/google/cloud/managed_kafka/v1/managed_kafka_connect/credentials.rb +47 -0
- data/lib/google/cloud/managed_kafka/v1/managed_kafka_connect/operations.rb +813 -0
- data/lib/google/cloud/managed_kafka/v1/managed_kafka_connect/paths.rb +109 -0
- data/lib/google/cloud/managed_kafka/v1/managed_kafka_connect/rest/client.rb +1771 -0
- data/lib/google/cloud/managed_kafka/v1/managed_kafka_connect/rest/operations.rb +914 -0
- data/lib/google/cloud/managed_kafka/v1/managed_kafka_connect/rest/service_stub.rb +943 -0
- data/lib/google/cloud/managed_kafka/v1/managed_kafka_connect/rest.rb +55 -0
- data/lib/google/cloud/managed_kafka/v1/managed_kafka_connect.rb +57 -0
- data/lib/google/cloud/managed_kafka/v1/rest.rb +1 -0
- data/lib/google/cloud/managed_kafka/v1/version.rb +1 -1
- data/lib/google/cloud/managed_kafka/v1.rb +1 -0
- data/lib/google/cloud/managedkafka/v1/managed_kafka_connect_pb.rb +73 -0
- data/lib/google/cloud/managedkafka/v1/managed_kafka_connect_services_pb.rb +72 -0
- data/lib/google/cloud/managedkafka/v1/resources_pb.rb +11 -1
- data/proto_docs/google/cloud/managedkafka/v1/managed_kafka_connect.rb +344 -0
- data/proto_docs/google/cloud/managedkafka/v1/resources.rb +209 -0
- metadata +14 -2
@@ -0,0 +1,109 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2025 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module ManagedKafka
|
23
|
+
module V1
|
24
|
+
module ManagedKafkaConnect
|
25
|
+
# Path helper methods for the ManagedKafkaConnect API.
|
26
|
+
module Paths
|
27
|
+
##
|
28
|
+
# Create a fully-qualified ConnectCluster resource string.
|
29
|
+
#
|
30
|
+
# The resource will be in the following format:
|
31
|
+
#
|
32
|
+
# `projects/{project}/locations/{location}/connectClusters/{connect_cluster}`
|
33
|
+
#
|
34
|
+
# @param project [String]
|
35
|
+
# @param location [String]
|
36
|
+
# @param connect_cluster [String]
|
37
|
+
#
|
38
|
+
# @return [::String]
|
39
|
+
def connect_cluster_path project:, location:, connect_cluster:
|
40
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
41
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
42
|
+
|
43
|
+
"projects/#{project}/locations/#{location}/connectClusters/#{connect_cluster}"
|
44
|
+
end
|
45
|
+
|
46
|
+
##
|
47
|
+
# Create a fully-qualified Connector resource string.
|
48
|
+
#
|
49
|
+
# The resource will be in the following format:
|
50
|
+
#
|
51
|
+
# `projects/{project}/locations/{location}/connectClusters/{connect_cluster}/connectors/{connector}`
|
52
|
+
#
|
53
|
+
# @param project [String]
|
54
|
+
# @param location [String]
|
55
|
+
# @param connect_cluster [String]
|
56
|
+
# @param connector [String]
|
57
|
+
#
|
58
|
+
# @return [::String]
|
59
|
+
def connector_path project:, location:, connect_cluster:, connector:
|
60
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
61
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
62
|
+
raise ::ArgumentError, "connect_cluster cannot contain /" if connect_cluster.to_s.include? "/"
|
63
|
+
|
64
|
+
"projects/#{project}/locations/#{location}/connectClusters/#{connect_cluster}/connectors/#{connector}"
|
65
|
+
end
|
66
|
+
|
67
|
+
##
|
68
|
+
# Create a fully-qualified Location resource string.
|
69
|
+
#
|
70
|
+
# The resource will be in the following format:
|
71
|
+
#
|
72
|
+
# `projects/{project}/locations/{location}`
|
73
|
+
#
|
74
|
+
# @param project [String]
|
75
|
+
# @param location [String]
|
76
|
+
#
|
77
|
+
# @return [::String]
|
78
|
+
def location_path project:, location:
|
79
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
80
|
+
|
81
|
+
"projects/#{project}/locations/#{location}"
|
82
|
+
end
|
83
|
+
|
84
|
+
##
|
85
|
+
# Create a fully-qualified SecretVersion resource string.
|
86
|
+
#
|
87
|
+
# The resource will be in the following format:
|
88
|
+
#
|
89
|
+
# `projects/{project}/secrets/{secret}/versions/{secret_version}`
|
90
|
+
#
|
91
|
+
# @param project [String]
|
92
|
+
# @param secret [String]
|
93
|
+
# @param secret_version [String]
|
94
|
+
#
|
95
|
+
# @return [::String]
|
96
|
+
def secret_version_path project:, secret:, secret_version:
|
97
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
98
|
+
raise ::ArgumentError, "secret cannot contain /" if secret.to_s.include? "/"
|
99
|
+
|
100
|
+
"projects/#{project}/secrets/#{secret}/versions/#{secret_version}"
|
101
|
+
end
|
102
|
+
|
103
|
+
extend self
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|