google-cloud-vmware_engine-v1 0.3.0 → 0.4.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/vmware_engine/v1/version.rb +1 -1
- data/lib/google/cloud/vmware_engine/v1/vmware_engine/client.rb +1000 -40
- data/lib/google/cloud/vmware_engine/v1/vmware_engine/operations.rb +3 -1
- data/lib/google/cloud/vmware_engine/v1/vmware_engine/paths.rb +40 -0
- data/lib/google/cloud/vmware_engine/v1/vmware_engine/rest/client.rb +837 -99
- data/lib/google/cloud/vmware_engine/v1/vmware_engine/rest/operations.rb +7 -5
- data/lib/google/cloud/vmware_engine/v1/vmware_engine/rest/service_stub.rb +506 -31
- data/lib/google/cloud/vmwareengine/v1/vmwareengine_pb.rb +12 -1
- data/lib/google/cloud/vmwareengine/v1/vmwareengine_resources_pb.rb +10 -1
- data/lib/google/cloud/vmwareengine/v1/vmwareengine_services_pb.rb +28 -0
- data/proto_docs/google/cloud/vmwareengine/v1/vmwareengine.rb +274 -0
- data/proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb +227 -0
- metadata +4 -4
@@ -664,7 +664,9 @@ module Google
|
|
664
664
|
class Configuration
|
665
665
|
extend ::Gapic::Config
|
666
666
|
|
667
|
-
|
667
|
+
DEFAULT_ENDPOINT = "vmwareengine.googleapis.com"
|
668
|
+
|
669
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
668
670
|
config_attr :credentials, nil do |value|
|
669
671
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
670
672
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
@@ -157,6 +157,46 @@ module Google
|
|
157
157
|
"projects/#{project}/locations/#{location}/privateClouds/#{private_cloud}"
|
158
158
|
end
|
159
159
|
|
160
|
+
##
|
161
|
+
# Create a fully-qualified PrivateConnection resource string.
|
162
|
+
#
|
163
|
+
# The resource will be in the following format:
|
164
|
+
#
|
165
|
+
# `projects/{project}/locations/{location}/privateConnections/{private_connection}`
|
166
|
+
#
|
167
|
+
# @param project [String]
|
168
|
+
# @param location [String]
|
169
|
+
# @param private_connection [String]
|
170
|
+
#
|
171
|
+
# @return [::String]
|
172
|
+
def private_connection_path project:, location:, private_connection:
|
173
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
174
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
175
|
+
|
176
|
+
"projects/#{project}/locations/#{location}/privateConnections/#{private_connection}"
|
177
|
+
end
|
178
|
+
|
179
|
+
##
|
180
|
+
# Create a fully-qualified Subnet resource string.
|
181
|
+
#
|
182
|
+
# The resource will be in the following format:
|
183
|
+
#
|
184
|
+
# `projects/{project}/locations/{location}/privateClouds/{private_cloud}/subnets/{subnet}`
|
185
|
+
#
|
186
|
+
# @param project [String]
|
187
|
+
# @param location [String]
|
188
|
+
# @param private_cloud [String]
|
189
|
+
# @param subnet [String]
|
190
|
+
#
|
191
|
+
# @return [::String]
|
192
|
+
def subnet_path project:, location:, private_cloud:, subnet:
|
193
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
194
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
195
|
+
raise ::ArgumentError, "private_cloud cannot contain /" if private_cloud.to_s.include? "/"
|
196
|
+
|
197
|
+
"projects/#{project}/locations/#{location}/privateClouds/#{private_cloud}/subnets/#{subnet}"
|
198
|
+
end
|
199
|
+
|
160
200
|
##
|
161
201
|
# Create a fully-qualified VmwareEngineNetwork resource string.
|
162
202
|
#
|