google-cloud-oracle_database-v1 0.14.0 → 0.16.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/oracle_database/v1/oracle_database/client.rb +107 -374
- data/lib/google/cloud/oracle_database/v1/oracle_database/paths.rb +0 -76
- data/lib/google/cloud/oracle_database/v1/oracle_database/rest/client.rb +100 -346
- data/lib/google/cloud/oracle_database/v1/oracle_database/rest/service_stub.rb +62 -244
- data/lib/google/cloud/oracle_database/v1/version.rb +1 -1
- data/lib/google/cloud/oracledatabase/v1/exadata_infra_pb.rb +3 -1
- data/lib/google/cloud/oracledatabase/v1/exascale_db_storage_vault_pb.rb +1 -1
- data/lib/google/cloud/oracledatabase/v1/goldengate_connection_type_pb.rb +1 -2
- data/lib/google/cloud/oracledatabase/v1/goldengate_deployment_environment_pb.rb +1 -2
- data/lib/google/cloud/oracledatabase/v1/goldengate_deployment_type_pb.rb +1 -2
- data/lib/google/cloud/oracledatabase/v1/goldengate_deployment_version_pb.rb +1 -2
- data/lib/google/cloud/oracledatabase/v1/oracledatabase_pb.rb +1 -1
- data/lib/google/cloud/oracledatabase/v1/oracledatabase_services_pb.rb +2 -8
- data/lib/google/cloud/oracledatabase/v1/vm_cluster_pb.rb +2 -1
- data/proto_docs/google/cloud/oracledatabase/v1/exadata_infra.rb +32 -0
- data/proto_docs/google/cloud/oracledatabase/v1/exascale_db_storage_vault.rb +6 -0
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_connection_type.rb +0 -10
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_deployment_environment.rb +0 -10
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_deployment_type.rb +0 -11
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_deployment_version.rb +0 -11
- data/proto_docs/google/cloud/oracledatabase/v1/vm_cluster.rb +20 -0
- metadata +1 -1
|
@@ -233,6 +233,46 @@ module Google
|
|
|
233
233
|
end
|
|
234
234
|
end
|
|
235
235
|
|
|
236
|
+
##
|
|
237
|
+
# Baseline implementation for the configure_exascale_cloud_exadata_infrastructure REST call
|
|
238
|
+
#
|
|
239
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ConfigureExascaleCloudExadataInfrastructureRequest]
|
|
240
|
+
# A request object representing the call parameters. Required.
|
|
241
|
+
# @param options [::Gapic::CallOptions]
|
|
242
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
243
|
+
#
|
|
244
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
245
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
|
246
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
247
|
+
#
|
|
248
|
+
# @return [::Google::Longrunning::Operation]
|
|
249
|
+
# A result object deserialized from the server's reply
|
|
250
|
+
def configure_exascale_cloud_exadata_infrastructure request_pb, options = nil
|
|
251
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
252
|
+
|
|
253
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_configure_exascale_cloud_exadata_infrastructure_request request_pb
|
|
254
|
+
query_string_params = if query_string_params.any?
|
|
255
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
256
|
+
else
|
|
257
|
+
{}
|
|
258
|
+
end
|
|
259
|
+
|
|
260
|
+
response = @client_stub.make_http_request(
|
|
261
|
+
verb,
|
|
262
|
+
uri: uri,
|
|
263
|
+
body: body || "",
|
|
264
|
+
params: query_string_params,
|
|
265
|
+
method_name: "configure_exascale_cloud_exadata_infrastructure",
|
|
266
|
+
options: options
|
|
267
|
+
)
|
|
268
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
269
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
|
270
|
+
catch :response do
|
|
271
|
+
yield result, operation if block_given?
|
|
272
|
+
result
|
|
273
|
+
end
|
|
274
|
+
end
|
|
275
|
+
|
|
236
276
|
##
|
|
237
277
|
# Baseline implementation for the list_cloud_vm_clusters REST call
|
|
238
278
|
#
|
|
@@ -2713,46 +2753,6 @@ module Google
|
|
|
2713
2753
|
end
|
|
2714
2754
|
end
|
|
2715
2755
|
|
|
2716
|
-
##
|
|
2717
|
-
# Baseline implementation for the get_goldengate_deployment_version REST call
|
|
2718
|
-
#
|
|
2719
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetGoldengateDeploymentVersionRequest]
|
|
2720
|
-
# A request object representing the call parameters. Required.
|
|
2721
|
-
# @param options [::Gapic::CallOptions]
|
|
2722
|
-
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2723
|
-
#
|
|
2724
|
-
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2725
|
-
# @yieldparam result [::Google::Cloud::OracleDatabase::V1::GoldengateDeploymentVersion]
|
|
2726
|
-
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2727
|
-
#
|
|
2728
|
-
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateDeploymentVersion]
|
|
2729
|
-
# A result object deserialized from the server's reply
|
|
2730
|
-
def get_goldengate_deployment_version request_pb, options = nil
|
|
2731
|
-
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2732
|
-
|
|
2733
|
-
verb, uri, query_string_params, body = ServiceStub.transcode_get_goldengate_deployment_version_request request_pb
|
|
2734
|
-
query_string_params = if query_string_params.any?
|
|
2735
|
-
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2736
|
-
else
|
|
2737
|
-
{}
|
|
2738
|
-
end
|
|
2739
|
-
|
|
2740
|
-
response = @client_stub.make_http_request(
|
|
2741
|
-
verb,
|
|
2742
|
-
uri: uri,
|
|
2743
|
-
body: body || "",
|
|
2744
|
-
params: query_string_params,
|
|
2745
|
-
method_name: "get_goldengate_deployment_version",
|
|
2746
|
-
options: options
|
|
2747
|
-
)
|
|
2748
|
-
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2749
|
-
result = ::Google::Cloud::OracleDatabase::V1::GoldengateDeploymentVersion.decode_json response.body, ignore_unknown_fields: true
|
|
2750
|
-
catch :response do
|
|
2751
|
-
yield result, operation if block_given?
|
|
2752
|
-
result
|
|
2753
|
-
end
|
|
2754
|
-
end
|
|
2755
|
-
|
|
2756
2756
|
##
|
|
2757
2757
|
# Baseline implementation for the list_goldengate_deployment_versions REST call
|
|
2758
2758
|
#
|
|
@@ -2793,46 +2793,6 @@ module Google
|
|
|
2793
2793
|
end
|
|
2794
2794
|
end
|
|
2795
2795
|
|
|
2796
|
-
##
|
|
2797
|
-
# Baseline implementation for the get_goldengate_deployment_type REST call
|
|
2798
|
-
#
|
|
2799
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetGoldengateDeploymentTypeRequest]
|
|
2800
|
-
# A request object representing the call parameters. Required.
|
|
2801
|
-
# @param options [::Gapic::CallOptions]
|
|
2802
|
-
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2803
|
-
#
|
|
2804
|
-
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2805
|
-
# @yieldparam result [::Google::Cloud::OracleDatabase::V1::GoldengateDeploymentType]
|
|
2806
|
-
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2807
|
-
#
|
|
2808
|
-
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateDeploymentType]
|
|
2809
|
-
# A result object deserialized from the server's reply
|
|
2810
|
-
def get_goldengate_deployment_type request_pb, options = nil
|
|
2811
|
-
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2812
|
-
|
|
2813
|
-
verb, uri, query_string_params, body = ServiceStub.transcode_get_goldengate_deployment_type_request request_pb
|
|
2814
|
-
query_string_params = if query_string_params.any?
|
|
2815
|
-
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2816
|
-
else
|
|
2817
|
-
{}
|
|
2818
|
-
end
|
|
2819
|
-
|
|
2820
|
-
response = @client_stub.make_http_request(
|
|
2821
|
-
verb,
|
|
2822
|
-
uri: uri,
|
|
2823
|
-
body: body || "",
|
|
2824
|
-
params: query_string_params,
|
|
2825
|
-
method_name: "get_goldengate_deployment_type",
|
|
2826
|
-
options: options
|
|
2827
|
-
)
|
|
2828
|
-
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2829
|
-
result = ::Google::Cloud::OracleDatabase::V1::GoldengateDeploymentType.decode_json response.body, ignore_unknown_fields: true
|
|
2830
|
-
catch :response do
|
|
2831
|
-
yield result, operation if block_given?
|
|
2832
|
-
result
|
|
2833
|
-
end
|
|
2834
|
-
end
|
|
2835
|
-
|
|
2836
2796
|
##
|
|
2837
2797
|
# Baseline implementation for the list_goldengate_deployment_types REST call
|
|
2838
2798
|
#
|
|
@@ -2873,46 +2833,6 @@ module Google
|
|
|
2873
2833
|
end
|
|
2874
2834
|
end
|
|
2875
2835
|
|
|
2876
|
-
##
|
|
2877
|
-
# Baseline implementation for the get_goldengate_deployment_environment REST call
|
|
2878
|
-
#
|
|
2879
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetGoldengateDeploymentEnvironmentRequest]
|
|
2880
|
-
# A request object representing the call parameters. Required.
|
|
2881
|
-
# @param options [::Gapic::CallOptions]
|
|
2882
|
-
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2883
|
-
#
|
|
2884
|
-
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2885
|
-
# @yieldparam result [::Google::Cloud::OracleDatabase::V1::GoldengateDeploymentEnvironment]
|
|
2886
|
-
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2887
|
-
#
|
|
2888
|
-
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateDeploymentEnvironment]
|
|
2889
|
-
# A result object deserialized from the server's reply
|
|
2890
|
-
def get_goldengate_deployment_environment request_pb, options = nil
|
|
2891
|
-
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2892
|
-
|
|
2893
|
-
verb, uri, query_string_params, body = ServiceStub.transcode_get_goldengate_deployment_environment_request request_pb
|
|
2894
|
-
query_string_params = if query_string_params.any?
|
|
2895
|
-
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2896
|
-
else
|
|
2897
|
-
{}
|
|
2898
|
-
end
|
|
2899
|
-
|
|
2900
|
-
response = @client_stub.make_http_request(
|
|
2901
|
-
verb,
|
|
2902
|
-
uri: uri,
|
|
2903
|
-
body: body || "",
|
|
2904
|
-
params: query_string_params,
|
|
2905
|
-
method_name: "get_goldengate_deployment_environment",
|
|
2906
|
-
options: options
|
|
2907
|
-
)
|
|
2908
|
-
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2909
|
-
result = ::Google::Cloud::OracleDatabase::V1::GoldengateDeploymentEnvironment.decode_json response.body, ignore_unknown_fields: true
|
|
2910
|
-
catch :response do
|
|
2911
|
-
yield result, operation if block_given?
|
|
2912
|
-
result
|
|
2913
|
-
end
|
|
2914
|
-
end
|
|
2915
|
-
|
|
2916
2836
|
##
|
|
2917
2837
|
# Baseline implementation for the list_goldengate_deployment_environments REST call
|
|
2918
2838
|
#
|
|
@@ -2953,46 +2873,6 @@ module Google
|
|
|
2953
2873
|
end
|
|
2954
2874
|
end
|
|
2955
2875
|
|
|
2956
|
-
##
|
|
2957
|
-
# Baseline implementation for the get_goldengate_connection_type REST call
|
|
2958
|
-
#
|
|
2959
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetGoldengateConnectionTypeRequest]
|
|
2960
|
-
# A request object representing the call parameters. Required.
|
|
2961
|
-
# @param options [::Gapic::CallOptions]
|
|
2962
|
-
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2963
|
-
#
|
|
2964
|
-
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2965
|
-
# @yieldparam result [::Google::Cloud::OracleDatabase::V1::GoldengateConnectionType]
|
|
2966
|
-
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2967
|
-
#
|
|
2968
|
-
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateConnectionType]
|
|
2969
|
-
# A result object deserialized from the server's reply
|
|
2970
|
-
def get_goldengate_connection_type request_pb, options = nil
|
|
2971
|
-
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2972
|
-
|
|
2973
|
-
verb, uri, query_string_params, body = ServiceStub.transcode_get_goldengate_connection_type_request request_pb
|
|
2974
|
-
query_string_params = if query_string_params.any?
|
|
2975
|
-
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2976
|
-
else
|
|
2977
|
-
{}
|
|
2978
|
-
end
|
|
2979
|
-
|
|
2980
|
-
response = @client_stub.make_http_request(
|
|
2981
|
-
verb,
|
|
2982
|
-
uri: uri,
|
|
2983
|
-
body: body || "",
|
|
2984
|
-
params: query_string_params,
|
|
2985
|
-
method_name: "get_goldengate_connection_type",
|
|
2986
|
-
options: options
|
|
2987
|
-
)
|
|
2988
|
-
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2989
|
-
result = ::Google::Cloud::OracleDatabase::V1::GoldengateConnectionType.decode_json response.body, ignore_unknown_fields: true
|
|
2990
|
-
catch :response do
|
|
2991
|
-
yield result, operation if block_given?
|
|
2992
|
-
result
|
|
2993
|
-
end
|
|
2994
|
-
end
|
|
2995
|
-
|
|
2996
2876
|
##
|
|
2997
2877
|
# Baseline implementation for the list_goldengate_connection_types REST call
|
|
2998
2878
|
#
|
|
@@ -3398,6 +3278,28 @@ module Google
|
|
|
3398
3278
|
transcoder.transcode request_pb
|
|
3399
3279
|
end
|
|
3400
3280
|
|
|
3281
|
+
##
|
|
3282
|
+
# @private
|
|
3283
|
+
#
|
|
3284
|
+
# GRPC transcoding helper method for the configure_exascale_cloud_exadata_infrastructure REST call
|
|
3285
|
+
#
|
|
3286
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ConfigureExascaleCloudExadataInfrastructureRequest]
|
|
3287
|
+
# A request object representing the call parameters. Required.
|
|
3288
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3289
|
+
# Uri, Body, Query string parameters
|
|
3290
|
+
def self.transcode_configure_exascale_cloud_exadata_infrastructure_request request_pb
|
|
3291
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3292
|
+
.with_bindings(
|
|
3293
|
+
uri_method: :post,
|
|
3294
|
+
uri_template: "/v1/{name}:configureExascale",
|
|
3295
|
+
body: "*",
|
|
3296
|
+
matches: [
|
|
3297
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/cloudExadataInfrastructures/[^/]+/?$}, false]
|
|
3298
|
+
]
|
|
3299
|
+
)
|
|
3300
|
+
transcoder.transcode request_pb
|
|
3301
|
+
end
|
|
3302
|
+
|
|
3401
3303
|
##
|
|
3402
3304
|
# @private
|
|
3403
3305
|
#
|
|
@@ -4728,27 +4630,6 @@ module Google
|
|
|
4728
4630
|
transcoder.transcode request_pb
|
|
4729
4631
|
end
|
|
4730
4632
|
|
|
4731
|
-
##
|
|
4732
|
-
# @private
|
|
4733
|
-
#
|
|
4734
|
-
# GRPC transcoding helper method for the get_goldengate_deployment_version REST call
|
|
4735
|
-
#
|
|
4736
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetGoldengateDeploymentVersionRequest]
|
|
4737
|
-
# A request object representing the call parameters. Required.
|
|
4738
|
-
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
4739
|
-
# Uri, Body, Query string parameters
|
|
4740
|
-
def self.transcode_get_goldengate_deployment_version_request request_pb
|
|
4741
|
-
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
4742
|
-
.with_bindings(
|
|
4743
|
-
uri_method: :get,
|
|
4744
|
-
uri_template: "/v1/{name}",
|
|
4745
|
-
matches: [
|
|
4746
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/goldengateDeploymentVersions/[^/]+/?$}, false]
|
|
4747
|
-
]
|
|
4748
|
-
)
|
|
4749
|
-
transcoder.transcode request_pb
|
|
4750
|
-
end
|
|
4751
|
-
|
|
4752
4633
|
##
|
|
4753
4634
|
# @private
|
|
4754
4635
|
#
|
|
@@ -4770,27 +4651,6 @@ module Google
|
|
|
4770
4651
|
transcoder.transcode request_pb
|
|
4771
4652
|
end
|
|
4772
4653
|
|
|
4773
|
-
##
|
|
4774
|
-
# @private
|
|
4775
|
-
#
|
|
4776
|
-
# GRPC transcoding helper method for the get_goldengate_deployment_type REST call
|
|
4777
|
-
#
|
|
4778
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetGoldengateDeploymentTypeRequest]
|
|
4779
|
-
# A request object representing the call parameters. Required.
|
|
4780
|
-
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
4781
|
-
# Uri, Body, Query string parameters
|
|
4782
|
-
def self.transcode_get_goldengate_deployment_type_request request_pb
|
|
4783
|
-
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
4784
|
-
.with_bindings(
|
|
4785
|
-
uri_method: :get,
|
|
4786
|
-
uri_template: "/v1/{name}",
|
|
4787
|
-
matches: [
|
|
4788
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/goldengateDeploymentTypes/[^/]+/?$}, false]
|
|
4789
|
-
]
|
|
4790
|
-
)
|
|
4791
|
-
transcoder.transcode request_pb
|
|
4792
|
-
end
|
|
4793
|
-
|
|
4794
4654
|
##
|
|
4795
4655
|
# @private
|
|
4796
4656
|
#
|
|
@@ -4812,27 +4672,6 @@ module Google
|
|
|
4812
4672
|
transcoder.transcode request_pb
|
|
4813
4673
|
end
|
|
4814
4674
|
|
|
4815
|
-
##
|
|
4816
|
-
# @private
|
|
4817
|
-
#
|
|
4818
|
-
# GRPC transcoding helper method for the get_goldengate_deployment_environment REST call
|
|
4819
|
-
#
|
|
4820
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetGoldengateDeploymentEnvironmentRequest]
|
|
4821
|
-
# A request object representing the call parameters. Required.
|
|
4822
|
-
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
4823
|
-
# Uri, Body, Query string parameters
|
|
4824
|
-
def self.transcode_get_goldengate_deployment_environment_request request_pb
|
|
4825
|
-
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
4826
|
-
.with_bindings(
|
|
4827
|
-
uri_method: :get,
|
|
4828
|
-
uri_template: "/v1/{name}",
|
|
4829
|
-
matches: [
|
|
4830
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/goldengateDeploymentEnvironments/[^/]+/?$}, false]
|
|
4831
|
-
]
|
|
4832
|
-
)
|
|
4833
|
-
transcoder.transcode request_pb
|
|
4834
|
-
end
|
|
4835
|
-
|
|
4836
4675
|
##
|
|
4837
4676
|
# @private
|
|
4838
4677
|
#
|
|
@@ -4854,27 +4693,6 @@ module Google
|
|
|
4854
4693
|
transcoder.transcode request_pb
|
|
4855
4694
|
end
|
|
4856
4695
|
|
|
4857
|
-
##
|
|
4858
|
-
# @private
|
|
4859
|
-
#
|
|
4860
|
-
# GRPC transcoding helper method for the get_goldengate_connection_type REST call
|
|
4861
|
-
#
|
|
4862
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetGoldengateConnectionTypeRequest]
|
|
4863
|
-
# A request object representing the call parameters. Required.
|
|
4864
|
-
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
4865
|
-
# Uri, Body, Query string parameters
|
|
4866
|
-
def self.transcode_get_goldengate_connection_type_request request_pb
|
|
4867
|
-
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
4868
|
-
.with_bindings(
|
|
4869
|
-
uri_method: :get,
|
|
4870
|
-
uri_template: "/v1/{name}",
|
|
4871
|
-
matches: [
|
|
4872
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/goldengateConnectionTypes/[^/]+/?$}, false]
|
|
4873
|
-
]
|
|
4874
|
-
)
|
|
4875
|
-
transcoder.transcode request_pb
|
|
4876
|
-
end
|
|
4877
|
-
|
|
4878
4696
|
##
|
|
4879
4697
|
# @private
|
|
4880
4698
|
#
|
|
@@ -13,7 +13,7 @@ require 'google/type/dayofweek_pb'
|
|
|
13
13
|
require 'google/type/month_pb'
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
descriptor_data = "\n2google/cloud/oracledatabase/v1/exadata_infra.proto\x12\x1egoogle.cloud.oracledatabase.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1bgoogle/api/field_info.proto\x1a\x19google/api/resource.proto\x1a+google/cloud/oracledatabase/v1/common.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1bgoogle/type/dayofweek.proto\x1a\x17google/type/month.proto\"\x84\x05\n\x1a\x43loudExadataInfrastructure\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x19\n\x0c\x64isplay_name\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x1c\n\x0fgcp_oracle_zone\x18\x08 \x01(\tB\x03\xe0\x41\x01\x12\x1b\n\x0e\x65ntitlement_id\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12]\n\nproperties\x18\x05 \x01(\x0b\x32\x44.google.cloud.oracledatabase.v1.CloudExadataInfrastructurePropertiesB\x03\xe0\x41\x01\x12[\n\x06labels\x18\x06 \x03(\x0b\x32\x46.google.cloud.oracledatabase.v1.CloudExadataInfrastructure.LabelsEntryB\x03\xe0\x41\x01\x12\x34\n\x0b\x63reate_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\xdb\x01\xea\x41\xd7\x01\n8oracledatabase.googleapis.com/CloudExadataInfrastructure\x12\x62projects/{project}/locations/{location}/cloudExadataInfrastructures/{cloud_exadata_infrastructure}*\x1b\x63loudExadataInfrastructures2\x1a\x63loudExadataInfrastructure\"\
|
|
16
|
+
descriptor_data = "\n2google/cloud/oracledatabase/v1/exadata_infra.proto\x12\x1egoogle.cloud.oracledatabase.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1bgoogle/api/field_info.proto\x1a\x19google/api/resource.proto\x1a+google/cloud/oracledatabase/v1/common.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1bgoogle/type/dayofweek.proto\x1a\x17google/type/month.proto\"\x84\x05\n\x1a\x43loudExadataInfrastructure\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x19\n\x0c\x64isplay_name\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x1c\n\x0fgcp_oracle_zone\x18\x08 \x01(\tB\x03\xe0\x41\x01\x12\x1b\n\x0e\x65ntitlement_id\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12]\n\nproperties\x18\x05 \x01(\x0b\x32\x44.google.cloud.oracledatabase.v1.CloudExadataInfrastructurePropertiesB\x03\xe0\x41\x01\x12[\n\x06labels\x18\x06 \x03(\x0b\x32\x46.google.cloud.oracledatabase.v1.CloudExadataInfrastructure.LabelsEntryB\x03\xe0\x41\x01\x12\x34\n\x0b\x63reate_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\xdb\x01\xea\x41\xd7\x01\n8oracledatabase.googleapis.com/CloudExadataInfrastructure\x12\x62projects/{project}/locations/{location}/cloudExadataInfrastructures/{cloud_exadata_infrastructure}*\x1b\x63loudExadataInfrastructures2\x1a\x63loudExadataInfrastructure\"\x83\x0c\n$CloudExadataInfrastructureProperties\x12\x11\n\x04ocid\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x1a\n\rcompute_count\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x1a\n\rstorage_count\x18\x03 \x01(\x05\x42\x03\xe0\x41\x01\x12\"\n\x15total_storage_size_gb\x18\x04 \x01(\x05\x42\x03\xe0\x41\x01\x12&\n\x19\x61vailable_storage_size_gb\x18\x05 \x01(\x05\x42\x03\xe0\x41\x03\x12R\n\x12maintenance_window\x18\x06 \x01(\x0b\x32\x31.google.cloud.oracledatabase.v1.MaintenanceWindowB\x03\xe0\x41\x01\x12^\n\x05state\x18\x07 \x01(\x0e\x32J.google.cloud.oracledatabase.v1.CloudExadataInfrastructureProperties.StateB\x03\xe0\x41\x03\x12\x12\n\x05shape\x18\x08 \x01(\tB\x03\xe0\x41\x02\x12\x14\n\x07oci_url\x18\t \x01(\tB\x03\xe0\x41\x03\x12\x16\n\tcpu_count\x18\n \x01(\x05\x42\x03\xe0\x41\x03\x12\x1a\n\rmax_cpu_count\x18\x0b \x01(\x05\x42\x03\xe0\x41\x03\x12\x1b\n\x0ememory_size_gb\x18\x0c \x01(\x05\x42\x03\xe0\x41\x03\x12\x1a\n\rmax_memory_gb\x18\r \x01(\x05\x42\x03\xe0\x41\x03\x12$\n\x17\x64\x62_node_storage_size_gb\x18\x0e \x01(\x05\x42\x03\xe0\x41\x03\x12(\n\x1bmax_db_node_storage_size_gb\x18\x0f \x01(\x05\x42\x03\xe0\x41\x03\x12!\n\x14\x64\x61ta_storage_size_tb\x18\x10 \x01(\x01\x42\x03\xe0\x41\x03\x12 \n\x13max_data_storage_tb\x18\x11 \x01(\x01\x42\x03\xe0\x41\x03\x12$\n\x17\x61\x63tivated_storage_count\x18\x12 \x01(\x05\x42\x03\xe0\x41\x03\x12%\n\x18\x61\x64\x64itional_storage_count\x18\x13 \x01(\x05\x42\x03\xe0\x41\x03\x12\x1e\n\x11\x64\x62_server_version\x18\x14 \x01(\tB\x03\xe0\x41\x03\x12#\n\x16storage_server_version\x18\x15 \x01(\tB\x03\xe0\x41\x03\x12$\n\x17next_maintenance_run_id\x18\x16 \x01(\tB\x03\xe0\x41\x03\x12\x42\n\x19next_maintenance_run_time\x18\x17 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12K\n\"next_security_maintenance_run_time\x18\x18 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x11\x63ustomer_contacts\x18\x19 \x03(\x0b\x32/.google.cloud.oracledatabase.v1.CustomerContactB\x03\xe0\x41\x01\x12+\n\x1emonthly_storage_server_version\x18\x1a \x01(\tB\x03\xe0\x41\x03\x12&\n\x19monthly_db_server_version\x18\x1b \x01(\tB\x03\xe0\x41\x03\x12H\n\rcompute_model\x18\x1f \x01(\x0e\x32,.google.cloud.oracledatabase.v1.ComputeModelB\x03\xe0\x41\x03\x12!\n\x14\x64\x61tabase_server_type\x18\x1d \x01(\tB\x03\xe0\x41\x03\x12 \n\x13storage_server_type\x18\x1e \x01(\tB\x03\xe0\x41\x03\x12L\n\x0f\x65xascale_config\x18 \x01(\x0b\x32..google.cloud.oracledatabase.v1.ExascaleConfigB\x03\xe0\x41\x03\"\x97\x01\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x10\n\x0cPROVISIONING\x10\x01\x12\r\n\tAVAILABLE\x10\x02\x12\x0c\n\x08UPDATING\x10\x03\x12\x0f\n\x0bTERMINATING\x10\x04\x12\x0e\n\nTERMINATED\x10\x05\x12\n\n\x06\x46\x41ILED\x10\x06\x12\x1b\n\x17MAINTENANCE_IN_PROGRESS\x10\x07\"\\\n\x0e\x45xascaleConfig\x12\"\n\x15total_storage_size_gb\x18\x01 \x01(\x05\x42\x03\xe0\x41\x03\x12&\n\x19\x61vailable_storage_size_gb\x18\x02 \x01(\x05\x42\x03\xe0\x41\x03\"\xa5\x05\n\x11MaintenanceWindow\x12\x66\n\npreference\x18\x01 \x01(\x0e\x32M.google.cloud.oracledatabase.v1.MaintenanceWindow.MaintenanceWindowPreferenceB\x03\xe0\x41\x01\x12\'\n\x06months\x18\x02 \x03(\x0e\x32\x12.google.type.MonthB\x03\xe0\x41\x01\x12\x1b\n\x0eweeks_of_month\x18\x03 \x03(\x05\x42\x03\xe0\x41\x01\x12\x31\n\x0c\x64\x61ys_of_week\x18\x04 \x03(\x0e\x32\x16.google.type.DayOfWeekB\x03\xe0\x41\x01\x12\x19\n\x0chours_of_day\x18\x05 \x03(\x05\x42\x03\xe0\x41\x01\x12\x1b\n\x0elead_time_week\x18\x06 \x01(\x05\x42\x03\xe0\x41\x01\x12Z\n\rpatching_mode\x18\x07 \x01(\x0e\x32>.google.cloud.oracledatabase.v1.MaintenanceWindow.PatchingModeB\x03\xe0\x41\x01\x12\'\n\x1a\x63ustom_action_timeout_mins\x18\x08 \x01(\x05\x42\x03\xe0\x41\x01\x12-\n is_custom_action_timeout_enabled\x18\t \x01(\x08\x42\x03\xe0\x41\x01\"v\n\x1bMaintenanceWindowPreference\x12-\n)MAINTENANCE_WINDOW_PREFERENCE_UNSPECIFIED\x10\x00\x12\x15\n\x11\x43USTOM_PREFERENCE\x10\x01\x12\x11\n\rNO_PREFERENCE\x10\x02\"K\n\x0cPatchingMode\x12\x1d\n\x19PATCHING_MODE_UNSPECIFIED\x10\x00\x12\x0b\n\x07ROLLING\x10\x01\x12\x0f\n\x0bNON_ROLLING\x10\x02\"\xc9\x01\n2ConfigureExascaleCloudExadataInfrastructureRequest\x12N\n\x04name\x18\x01 \x01(\tB@\xe0\x41\x02\xfa\x41:\n8oracledatabase.googleapis.com/CloudExadataInfrastructure\x12\"\n\x15total_storage_size_gb\x18\x02 \x01(\x05\x42\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x03 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x42\xf9\x01\n\"com.google.cloud.oracledatabase.v1B\x1f\x43loudExadataInfrastructureProtoP\x01ZJcloud.google.com/go/oracledatabase/apiv1/oracledatabasepb;oracledatabasepb\xaa\x02\x1eGoogle.Cloud.OracleDatabase.V1\xca\x02\x1eGoogle\\Cloud\\OracleDatabase\\V1\xea\x02!Google::Cloud::OracleDatabase::V1b\x06proto3"
|
|
17
17
|
|
|
18
18
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
19
19
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -25,9 +25,11 @@ module Google
|
|
|
25
25
|
CloudExadataInfrastructure = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.CloudExadataInfrastructure").msgclass
|
|
26
26
|
CloudExadataInfrastructureProperties = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.CloudExadataInfrastructureProperties").msgclass
|
|
27
27
|
CloudExadataInfrastructureProperties::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.CloudExadataInfrastructureProperties.State").enummodule
|
|
28
|
+
ExascaleConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.ExascaleConfig").msgclass
|
|
28
29
|
MaintenanceWindow = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.MaintenanceWindow").msgclass
|
|
29
30
|
MaintenanceWindow::MaintenanceWindowPreference = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.MaintenanceWindow.MaintenanceWindowPreference").enummodule
|
|
30
31
|
MaintenanceWindow::PatchingMode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.MaintenanceWindow.PatchingMode").enummodule
|
|
32
|
+
ConfigureExascaleCloudExadataInfrastructureRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.ConfigureExascaleCloudExadataInfrastructureRequest").msgclass
|
|
31
33
|
end
|
|
32
34
|
end
|
|
33
35
|
end
|
|
@@ -11,7 +11,7 @@ require 'google/protobuf/timestamp_pb'
|
|
|
11
11
|
require 'google/type/datetime_pb'
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
descriptor_data = "\n>google/cloud/oracledatabase/v1/exascale_db_storage_vault.proto\x12\x1egoogle.cloud.oracledatabase.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1bgoogle/api/field_info.proto\x1a\x19google/api/resource.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1agoogle/type/datetime.proto\"\
|
|
14
|
+
descriptor_data = "\n>google/cloud/oracledatabase/v1/exascale_db_storage_vault.proto\x12\x1egoogle.cloud.oracledatabase.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1bgoogle/api/field_info.proto\x1a\x19google/api/resource.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1agoogle/type/datetime.proto\"\xc7\x05\n\x16\x45xascaleDbStorageVault\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x19\n\x0c\x64isplay_name\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x1c\n\x0fgcp_oracle_zone\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12Y\n\nproperties\x18\x04 \x01(\x0b\x32@.google.cloud.oracledatabase.v1.ExascaleDbStorageVaultPropertiesB\x03\xe0\x41\x02\x12\x34\n\x0b\x63reate_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x1b\n\x0e\x65ntitlement_id\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12W\n\x06labels\x18\x07 \x03(\x0b\x32\x42.google.cloud.oracledatabase.v1.ExascaleDbStorageVault.LabelsEntryB\x03\xe0\x41\x01\x12`\n\x16\x65xadata_infrastructure\x18\x08 \x01(\tB@\xe0\x41\x01\xfa\x41:\n8oracledatabase.googleapis.com/CloudExadataInfrastructure\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\xc8\x01\xea\x41\xc4\x01\n4oracledatabase.googleapis.com/ExascaleDbStorageVault\x12[projects/{project}/locations/{location}/exascaleDbStorageVaults/{exascale_db_storage_vault}*\x17\x65xascaleDbStorageVaults2\x16\x65xascaleDbStorageVault\"\x85\x07\n ExascaleDbStorageVaultProperties\x12\x11\n\x04ocid\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12-\n\ttime_zone\x18\x02 \x01(\x0b\x32\x15.google.type.TimeZoneB\x03\xe0\x41\x03\x12\x62\n\x1b\x65xascale_db_storage_details\x18\x03 \x01(\x0b\x32\x38.google.cloud.oracledatabase.v1.ExascaleDbStorageDetailsB\x03\xe0\x41\x02\x12Z\n\x05state\x18\x04 \x01(\x0e\x32\x46.google.cloud.oracledatabase.v1.ExascaleDbStorageVaultProperties.StateB\x03\xe0\x41\x03\x12\x18\n\x0b\x64\x65scription\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x1b\n\x0evm_cluster_ids\x18\x06 \x03(\tB\x03\xe0\x41\x03\x12\x1d\n\x10vm_cluster_count\x18\t \x01(\x05\x42\x03\xe0\x41\x03\x12+\n\x1e\x61\x64\x64itional_flash_cache_percent\x18\x07 \x01(\x05\x42\x03\xe0\x41\x01\x12\x14\n\x07oci_uri\x18\x08 \x01(\tB\x03\xe0\x41\x03\x12w\n\x19\x61ttached_shape_attributes\x18\n \x03(\x0e\x32O.google.cloud.oracledatabase.v1.ExascaleDbStorageVaultProperties.ShapeAttributeB\x03\xe0\x41\x03\x12x\n\x1a\x61vailable_shape_attributes\x18\x0b \x03(\x0e\x32O.google.cloud.oracledatabase.v1.ExascaleDbStorageVaultProperties.ShapeAttributeB\x03\xe0\x41\x03\"z\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x10\n\x0cPROVISIONING\x10\x01\x12\r\n\tAVAILABLE\x10\x02\x12\x0c\n\x08UPDATING\x10\x03\x12\x0f\n\x0bTERMINATING\x10\x04\x12\x0e\n\nTERMINATED\x10\x05\x12\n\n\x06\x46\x41ILED\x10\x06\"W\n\x0eShapeAttribute\x12\x1f\n\x1bSHAPE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x11\n\rSMART_STORAGE\x10\x01\x12\x11\n\rBLOCK_STORAGE\x10\x02\"X\n\x18\x45xascaleDbStorageDetails\x12\x1f\n\x12\x61vailable_size_gbs\x18\x01 \x01(\x05\x42\x03\xe0\x41\x03\x12\x1b\n\x0etotal_size_gbs\x18\x02 \x01(\x05\x42\x03\xe0\x41\x02\"n\n GetExascaleDbStorageVaultRequest\x12J\n\x04name\x18\x01 \x01(\tB<\xe0\x41\x02\xfa\x41\x36\n4oracledatabase.googleapis.com/ExascaleDbStorageVault\"\xcf\x01\n\"ListExascaleDbStorageVaultsRequest\x12L\n\x06parent\x18\x01 \x01(\tB<\xe0\x41\x02\xfa\x41\x36\x12\x34oracledatabase.googleapis.com/ExascaleDbStorageVault\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xaf\x01\n#ListExascaleDbStorageVaultsResponse\x12Z\n\x1a\x65xascale_db_storage_vaults\x18\x01 \x03(\x0b\x32\x36.google.cloud.oracledatabase.v1.ExascaleDbStorageVault\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\x9f\x02\n#CreateExascaleDbStorageVaultRequest\x12L\n\x06parent\x18\x01 \x01(\tB<\xe0\x41\x02\xfa\x41\x36\x12\x34oracledatabase.googleapis.com/ExascaleDbStorageVault\x12)\n\x1c\x65xascale_db_storage_vault_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12^\n\x19\x65xascale_db_storage_vault\x18\x03 \x01(\x0b\x32\x36.google.cloud.oracledatabase.v1.ExascaleDbStorageVaultB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x04 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"\x92\x01\n#DeleteExascaleDbStorageVaultRequest\x12J\n\x04name\x18\x01 \x01(\tB<\xe0\x41\x02\xfa\x41\x36\n4oracledatabase.googleapis.com/ExascaleDbStorageVault\x12\x1f\n\nrequest_id\x18\x02 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x42\xf5\x01\n\"com.google.cloud.oracledatabase.v1B\x1b\x45xascaleDbStorageVaultProtoP\x01ZJcloud.google.com/go/oracledatabase/apiv1/oracledatabasepb;oracledatabasepb\xaa\x02\x1eGoogle.Cloud.OracleDatabase.V1\xca\x02\x1eGoogle\\Cloud\\OracleDatabase\\V1\xea\x02!Google::Cloud::OracleDatabase::V1b\x06proto3"
|
|
15
15
|
|
|
16
16
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
17
17
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -8,7 +8,7 @@ require 'google/api/field_behavior_pb'
|
|
|
8
8
|
require 'google/api/resource_pb'
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
descriptor_data = "\n?google/cloud/oracledatabase/v1/goldengate_connection_type.proto\x12\x1egoogle.cloud.oracledatabase.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\"\xd3\x07\n\x18GoldengateConnectionType\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x65\n\x0f\x63onnection_type\x18\x02 \x01(\x0e\x32G.google.cloud.oracledatabase.v1.GoldengateConnectionType.ConnectionTypeB\x03\xe0\x41\x03\x12\x1d\n\x10technology_types\x18\x03 \x03(\tB\x03\xe0\x41\x03\"\xc9\x04\n\x0e\x43onnectionType\x12\x1f\n\x1b\x43ONNECTION_TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nGOLDENGATE\x10\x01\x12\t\n\x05KAFKA\x10\x02\x12\x19\n\x15KAFKA_SCHEMA_REGISTRY\x10\x03\x12\t\n\x05MYSQL\x10\x04\x12\x18\n\x14JAVA_MESSAGE_SERVICE\x10\x05\x12\x17\n\x13MICROSOFT_SQLSERVER\x10\x06\x12\x16\n\x12OCI_OBJECT_STORAGE\x10\x07\x12\n\n\x06ORACLE\x10\x08\x12\x1b\n\x17\x41ZURE_DATA_LAKE_STORAGE\x10\t\x12\x0e\n\nPOSTGRESQL\x10\n\x12\x1b\n\x17\x41ZURE_SYNAPSE_ANALYTICS\x10\x0b\x12\r\n\tSNOWFLAKE\x10\x0c\x12\r\n\tAMAZON_S3\x10\r\x12\x08\n\x04HDFS\x10\x0e\x12\x1b\n\x17ORACLE_AI_DATA_PLATFORM\x10\x0f\x12\x10\n\x0cORACLE_NOSQL\x10\x10\x12\x0b\n\x07MONGODB\x10\x11\x12\x12\n\x0e\x41MAZON_KINESIS\x10\x12\x12\x13\n\x0f\x41MAZON_REDSHIFT\x10\x13\x12\x07\n\x03\x44\x42\x32\x10\x14\x12\t\n\x05REDIS\x10\x15\x12\x11\n\rELASTICSEARCH\x10\x16\x12\x0b\n\x07GENERIC\x10\x17\x12\x18\n\x14GOOGLE_CLOUD_STORAGE\x10\x18\x12\x13\n\x0fGOOGLE_BIGQUERY\x10\x19\x12\x0e\n\nDATABRICKS\x10\x1a\x12\x11\n\rGOOGLE_PUBSUB\x10\x1b\x12\x14\n\x10MICROSOFT_FABRIC\x10\x1c\x12\x0b\n\x07ICEBERG\x10\x1d:\xd1\x01\xea\x41\xcd\x01\n6oracledatabase.googleapis.com/GoldengateConnectionType\x12^projects/{project}/locations/{location}/goldengateConnectionTypes/{goldengate_connection_type}*\x19goldengateConnectionTypes2\x18goldengateConnectionType\"
|
|
11
|
+
descriptor_data = "\n?google/cloud/oracledatabase/v1/goldengate_connection_type.proto\x12\x1egoogle.cloud.oracledatabase.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\"\xd3\x07\n\x18GoldengateConnectionType\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x65\n\x0f\x63onnection_type\x18\x02 \x01(\x0e\x32G.google.cloud.oracledatabase.v1.GoldengateConnectionType.ConnectionTypeB\x03\xe0\x41\x03\x12\x1d\n\x10technology_types\x18\x03 \x03(\tB\x03\xe0\x41\x03\"\xc9\x04\n\x0e\x43onnectionType\x12\x1f\n\x1b\x43ONNECTION_TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nGOLDENGATE\x10\x01\x12\t\n\x05KAFKA\x10\x02\x12\x19\n\x15KAFKA_SCHEMA_REGISTRY\x10\x03\x12\t\n\x05MYSQL\x10\x04\x12\x18\n\x14JAVA_MESSAGE_SERVICE\x10\x05\x12\x17\n\x13MICROSOFT_SQLSERVER\x10\x06\x12\x16\n\x12OCI_OBJECT_STORAGE\x10\x07\x12\n\n\x06ORACLE\x10\x08\x12\x1b\n\x17\x41ZURE_DATA_LAKE_STORAGE\x10\t\x12\x0e\n\nPOSTGRESQL\x10\n\x12\x1b\n\x17\x41ZURE_SYNAPSE_ANALYTICS\x10\x0b\x12\r\n\tSNOWFLAKE\x10\x0c\x12\r\n\tAMAZON_S3\x10\r\x12\x08\n\x04HDFS\x10\x0e\x12\x1b\n\x17ORACLE_AI_DATA_PLATFORM\x10\x0f\x12\x10\n\x0cORACLE_NOSQL\x10\x10\x12\x0b\n\x07MONGODB\x10\x11\x12\x12\n\x0e\x41MAZON_KINESIS\x10\x12\x12\x13\n\x0f\x41MAZON_REDSHIFT\x10\x13\x12\x07\n\x03\x44\x42\x32\x10\x14\x12\t\n\x05REDIS\x10\x15\x12\x11\n\rELASTICSEARCH\x10\x16\x12\x0b\n\x07GENERIC\x10\x17\x12\x18\n\x14GOOGLE_CLOUD_STORAGE\x10\x18\x12\x13\n\x0fGOOGLE_BIGQUERY\x10\x19\x12\x0e\n\nDATABRICKS\x10\x1a\x12\x11\n\rGOOGLE_PUBSUB\x10\x1b\x12\x14\n\x10MICROSOFT_FABRIC\x10\x1c\x12\x0b\n\x07ICEBERG\x10\x1d:\xd1\x01\xea\x41\xcd\x01\n6oracledatabase.googleapis.com/GoldengateConnectionType\x12^projects/{project}/locations/{location}/goldengateConnectionTypes/{goldengate_connection_type}*\x19goldengateConnectionTypes2\x18goldengateConnectionType\"\xbc\x01\n$ListGoldengateConnectionTypesRequest\x12N\n\x06parent\x18\x01 \x01(\tB>\xe0\x41\x02\xfa\x41\x38\x12\x36oracledatabase.googleapis.com/GoldengateConnectionType\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xb9\x01\n%ListGoldengateConnectionTypesResponse\x12]\n\x1bgoldengate_connection_types\x18\x01 \x03(\x0b\x32\x38.google.cloud.oracledatabase.v1.GoldengateConnectionType\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x18\n\x0bunreachable\x18\x03 \x03(\tB\x03\xe0\x41\x06\x42\xf7\x01\n\"com.google.cloud.oracledatabase.v1B\x1dGoldengateConnectionTypeProtoP\x01ZJcloud.google.com/go/oracledatabase/apiv1/oracledatabasepb;oracledatabasepb\xaa\x02\x1eGoogle.Cloud.OracleDatabase.V1\xca\x02\x1eGoogle\\Cloud\\OracleDatabase\\V1\xea\x02!Google::Cloud::OracleDatabase::V1b\x06proto3"
|
|
12
12
|
|
|
13
13
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
14
14
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -19,7 +19,6 @@ module Google
|
|
|
19
19
|
module V1
|
|
20
20
|
GoldengateConnectionType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.GoldengateConnectionType").msgclass
|
|
21
21
|
GoldengateConnectionType::ConnectionType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.GoldengateConnectionType.ConnectionType").enummodule
|
|
22
|
-
GetGoldengateConnectionTypeRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.GetGoldengateConnectionTypeRequest").msgclass
|
|
23
22
|
ListGoldengateConnectionTypesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.ListGoldengateConnectionTypesRequest").msgclass
|
|
24
23
|
ListGoldengateConnectionTypesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.ListGoldengateConnectionTypesResponse").msgclass
|
|
25
24
|
end
|
|
@@ -8,7 +8,7 @@ require 'google/api/field_behavior_pb'
|
|
|
8
8
|
require 'google/api/resource_pb'
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
descriptor_data = "\nFgoogle/cloud/oracledatabase/v1/goldengate_deployment_environment.proto\x12\x1egoogle.cloud.oracledatabase.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\"\xa7\x08\n\x1fGoldengateDeploymentEnvironment\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12i\n\x08\x63\x61tegory\x18\x02 \x01(\x0e\x32R.google.cloud.oracledatabase.v1.GoldengateDeploymentEnvironment.DeploymentCategoryB\x03\xe0\x41\x03\x12\x14\n\x0c\x64isplay_name\x18\x03 \x01(\t\x12#\n\x16\x64\x65\x66\x61ult_cpu_core_count\x18\x04 \x01(\x05\x42\x03\xe0\x41\x03\x12x\n\x10\x65nvironment_type\x18\x05 \x01(\x0e\x32Y.google.cloud.oracledatabase.v1.GoldengateDeploymentEnvironment.DeploymentEnvironmentTypeB\x03\xe0\x41\x03\x12!\n\x14\x61uto_scaling_enabled\x18\x06 \x01(\x08\x42\x03\xe0\x41\x03\x12\x1f\n\x12max_cpu_core_count\x18\x07 \x01(\x05\x42\x03\xe0\x41\x03\x12#\n\x16memory_gb_per_cpu_core\x18\x08 \x01(\x05\x42\x03\xe0\x41\x03\x12\x1f\n\x12min_cpu_core_count\x18\t \x01(\x05\x42\x03\xe0\x41\x03\x12\x30\n#network_bandwidth_gbps_per_cpu_core\x18\n \x01(\x05\x42\x03\xe0\x41\x03\x12\x30\n#storage_usage_limit_gb_per_cpu_core\x18\x0b \x01(\x05\x42\x03\xe0\x41\x03\"v\n\x12\x44\x65ploymentCategory\x12#\n\x1f\x44\x45PLOYMENT_CATEGORY_UNSPECIFIED\x10\x00\x12\x1d\n\x19\x44\x41TA_REPLICATION_CATEGORY\x10\x01\x12\x1c\n\x18\x44\x41TA_TRANSFORMS_CATEGORY\x10\x02\"t\n\x19\x44\x65ploymentEnvironmentType\x12+\n\'DEPLOYMENT_ENVIRONMENT_TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nPRODUCTION\x10\x01\x12\x1a\n\x16\x44\x45VELOPMENT_OR_TESTING\x10\x02:\xf4\x01\xea\x41\xf0\x01\n=oracledatabase.googleapis.com/GoldengateDeploymentEnvironment\x12lprojects/{project}/locations/{location}/goldengateDeploymentEnvironments/{goldengate_deployment_environment}* goldengateDeploymentEnvironments2\x1fgoldengateDeploymentEnvironment\"\
|
|
11
|
+
descriptor_data = "\nFgoogle/cloud/oracledatabase/v1/goldengate_deployment_environment.proto\x12\x1egoogle.cloud.oracledatabase.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\"\xa7\x08\n\x1fGoldengateDeploymentEnvironment\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12i\n\x08\x63\x61tegory\x18\x02 \x01(\x0e\x32R.google.cloud.oracledatabase.v1.GoldengateDeploymentEnvironment.DeploymentCategoryB\x03\xe0\x41\x03\x12\x14\n\x0c\x64isplay_name\x18\x03 \x01(\t\x12#\n\x16\x64\x65\x66\x61ult_cpu_core_count\x18\x04 \x01(\x05\x42\x03\xe0\x41\x03\x12x\n\x10\x65nvironment_type\x18\x05 \x01(\x0e\x32Y.google.cloud.oracledatabase.v1.GoldengateDeploymentEnvironment.DeploymentEnvironmentTypeB\x03\xe0\x41\x03\x12!\n\x14\x61uto_scaling_enabled\x18\x06 \x01(\x08\x42\x03\xe0\x41\x03\x12\x1f\n\x12max_cpu_core_count\x18\x07 \x01(\x05\x42\x03\xe0\x41\x03\x12#\n\x16memory_gb_per_cpu_core\x18\x08 \x01(\x05\x42\x03\xe0\x41\x03\x12\x1f\n\x12min_cpu_core_count\x18\t \x01(\x05\x42\x03\xe0\x41\x03\x12\x30\n#network_bandwidth_gbps_per_cpu_core\x18\n \x01(\x05\x42\x03\xe0\x41\x03\x12\x30\n#storage_usage_limit_gb_per_cpu_core\x18\x0b \x01(\x05\x42\x03\xe0\x41\x03\"v\n\x12\x44\x65ploymentCategory\x12#\n\x1f\x44\x45PLOYMENT_CATEGORY_UNSPECIFIED\x10\x00\x12\x1d\n\x19\x44\x41TA_REPLICATION_CATEGORY\x10\x01\x12\x1c\n\x18\x44\x41TA_TRANSFORMS_CATEGORY\x10\x02\"t\n\x19\x44\x65ploymentEnvironmentType\x12+\n\'DEPLOYMENT_ENVIRONMENT_TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nPRODUCTION\x10\x01\x12\x1a\n\x16\x44\x45VELOPMENT_OR_TESTING\x10\x02:\xf4\x01\xea\x41\xf0\x01\n=oracledatabase.googleapis.com/GoldengateDeploymentEnvironment\x12lprojects/{project}/locations/{location}/goldengateDeploymentEnvironments/{goldengate_deployment_environment}* goldengateDeploymentEnvironments2\x1fgoldengateDeploymentEnvironment\"\xb5\x01\n+ListGoldengateDeploymentEnvironmentsRequest\x12U\n\x06parent\x18\x01 \x01(\tBE\xe0\x41\x02\xfa\x41?\x12=oracledatabase.googleapis.com/GoldengateDeploymentEnvironment\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\xce\x01\n,ListGoldengateDeploymentEnvironmentsResponse\x12k\n\"goldengate_deployment_environments\x18\x01 \x03(\x0b\x32?.google.cloud.oracledatabase.v1.GoldengateDeploymentEnvironment\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x18\n\x0bunreachable\x18\x03 \x03(\tB\x03\xe0\x41\x06\x42\xfe\x01\n\"com.google.cloud.oracledatabase.v1B$GoldengateDeploymentEnvironmentProtoP\x01ZJcloud.google.com/go/oracledatabase/apiv1/oracledatabasepb;oracledatabasepb\xaa\x02\x1eGoogle.Cloud.OracleDatabase.V1\xca\x02\x1eGoogle\\Cloud\\OracleDatabase\\V1\xea\x02!Google::Cloud::OracleDatabase::V1b\x06proto3"
|
|
12
12
|
|
|
13
13
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
14
14
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -20,7 +20,6 @@ module Google
|
|
|
20
20
|
GoldengateDeploymentEnvironment = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.GoldengateDeploymentEnvironment").msgclass
|
|
21
21
|
GoldengateDeploymentEnvironment::DeploymentCategory = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.GoldengateDeploymentEnvironment.DeploymentCategory").enummodule
|
|
22
22
|
GoldengateDeploymentEnvironment::DeploymentEnvironmentType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.GoldengateDeploymentEnvironment.DeploymentEnvironmentType").enummodule
|
|
23
|
-
GetGoldengateDeploymentEnvironmentRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.GetGoldengateDeploymentEnvironmentRequest").msgclass
|
|
24
23
|
ListGoldengateDeploymentEnvironmentsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.ListGoldengateDeploymentEnvironmentsRequest").msgclass
|
|
25
24
|
ListGoldengateDeploymentEnvironmentsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.ListGoldengateDeploymentEnvironmentsResponse").msgclass
|
|
26
25
|
end
|
|
@@ -8,7 +8,7 @@ require 'google/api/field_behavior_pb'
|
|
|
8
8
|
require 'google/api/resource_pb'
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
descriptor_data = "\n?google/cloud/oracledatabase/v1/goldengate_deployment_type.proto\x12\x1egoogle.cloud.oracledatabase.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\"\xbe\x08\n\x18GoldengateDeploymentType\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x65\n\x0f\x64\x65ployment_type\x18\x02 \x01(\x0e\x32G.google.cloud.oracledatabase.v1.GoldengateDeploymentType.DeploymentTypeB\x03\xe0\x41\x03\x12\x62\n\x08\x63\x61tegory\x18\x03 \x01(\x0e\x32K.google.cloud.oracledatabase.v1.GoldengateDeploymentType.DeploymentCategoryB\x03\xe0\x41\x03\x12\x1d\n\x10\x63onnection_types\x18\x04 \x03(\tB\x03\xe0\x41\x03\x12\x19\n\x0c\x64isplay_name\x18\x05 \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0bogg_version\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12 \n\x13source_technologies\x18\x07 \x03(\tB\x03\xe0\x41\x03\x12#\n\x16supported_capabilities\x18\x08 \x03(\tB\x03\xe0\x41\x03\x12\'\n\x1asupported_technologies_url\x18\t \x01(\tB\x03\xe0\x41\x03\x12 \n\x13target_technologies\x18\n \x03(\tB\x03\xe0\x41\x03\x12\x1d\n\x10\x64\x65\x66\x61ult_username\x18\x0b \x01(\tB\x03\xe0\x41\x03\"\xf2\x01\n\x0e\x44\x65ploymentType\x12\x1f\n\x1b\x44\x45PLOYMENT_TYPE_UNSPECIFIED\x10\x00\x12\x07\n\x03OGG\x10\x01\x12\x13\n\x0f\x44\x41TABASE_ORACLE\x10\x02\x12\x0b\n\x07\x42IGDATA\x10\x03\x12 \n\x1c\x44\x41TABASE_MICROSOFT_SQLSERVER\x10\x04\x12\x12\n\x0e\x44\x41TABASE_MYSQL\x10\x05\x12\x17\n\x13\x44\x41TABASE_POSTGRESQL\x10\x06\x12\x13\n\x0f\x44\x41TABASE_DB2ZOS\x10\x07\x12\x11\n\rDATABASE_DB2I\x10\x08\x12\x08\n\x04GGSA\x10\t\x12\x13\n\x0f\x44\x41TA_TRANSFORMS\x10\n\"v\n\x12\x44\x65ploymentCategory\x12#\n\x1f\x44\x45PLOYMENT_CATEGORY_UNSPECIFIED\x10\x00\x12\x1d\n\x19\x44\x41TA_REPLICATION_CATEGORY\x10\x01\x12\x1c\n\x18\x44\x41TA_TRANSFORMS_CATEGORY\x10\x02:\xd1\x01\xea\x41\xcd\x01\n6oracledatabase.googleapis.com/GoldengateDeploymentType\x12^projects/{project}/locations/{location}/goldengateDeploymentTypes/{goldengate_deployment_type}*\x19goldengateDeploymentTypes2\x18goldengateDeploymentType\"
|
|
11
|
+
descriptor_data = "\n?google/cloud/oracledatabase/v1/goldengate_deployment_type.proto\x12\x1egoogle.cloud.oracledatabase.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\"\xbe\x08\n\x18GoldengateDeploymentType\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x65\n\x0f\x64\x65ployment_type\x18\x02 \x01(\x0e\x32G.google.cloud.oracledatabase.v1.GoldengateDeploymentType.DeploymentTypeB\x03\xe0\x41\x03\x12\x62\n\x08\x63\x61tegory\x18\x03 \x01(\x0e\x32K.google.cloud.oracledatabase.v1.GoldengateDeploymentType.DeploymentCategoryB\x03\xe0\x41\x03\x12\x1d\n\x10\x63onnection_types\x18\x04 \x03(\tB\x03\xe0\x41\x03\x12\x19\n\x0c\x64isplay_name\x18\x05 \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0bogg_version\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12 \n\x13source_technologies\x18\x07 \x03(\tB\x03\xe0\x41\x03\x12#\n\x16supported_capabilities\x18\x08 \x03(\tB\x03\xe0\x41\x03\x12\'\n\x1asupported_technologies_url\x18\t \x01(\tB\x03\xe0\x41\x03\x12 \n\x13target_technologies\x18\n \x03(\tB\x03\xe0\x41\x03\x12\x1d\n\x10\x64\x65\x66\x61ult_username\x18\x0b \x01(\tB\x03\xe0\x41\x03\"\xf2\x01\n\x0e\x44\x65ploymentType\x12\x1f\n\x1b\x44\x45PLOYMENT_TYPE_UNSPECIFIED\x10\x00\x12\x07\n\x03OGG\x10\x01\x12\x13\n\x0f\x44\x41TABASE_ORACLE\x10\x02\x12\x0b\n\x07\x42IGDATA\x10\x03\x12 \n\x1c\x44\x41TABASE_MICROSOFT_SQLSERVER\x10\x04\x12\x12\n\x0e\x44\x41TABASE_MYSQL\x10\x05\x12\x17\n\x13\x44\x41TABASE_POSTGRESQL\x10\x06\x12\x13\n\x0f\x44\x41TABASE_DB2ZOS\x10\x07\x12\x11\n\rDATABASE_DB2I\x10\x08\x12\x08\n\x04GGSA\x10\t\x12\x13\n\x0f\x44\x41TA_TRANSFORMS\x10\n\"v\n\x12\x44\x65ploymentCategory\x12#\n\x1f\x44\x45PLOYMENT_CATEGORY_UNSPECIFIED\x10\x00\x12\x1d\n\x19\x44\x41TA_REPLICATION_CATEGORY\x10\x01\x12\x1c\n\x18\x44\x41TA_TRANSFORMS_CATEGORY\x10\x02:\xd1\x01\xea\x41\xcd\x01\n6oracledatabase.googleapis.com/GoldengateDeploymentType\x12^projects/{project}/locations/{location}/goldengateDeploymentTypes/{goldengate_deployment_type}*\x19goldengateDeploymentTypes2\x18goldengateDeploymentType\"\xd3\x01\n$ListGoldengateDeploymentTypesRequest\x12N\n\x06parent\x18\x01 \x01(\tB>\xe0\x41\x02\xfa\x41\x38\x12\x36oracledatabase.googleapis.com/GoldengateDeploymentType\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xb9\x01\n%ListGoldengateDeploymentTypesResponse\x12]\n\x1bgoldengate_deployment_types\x18\x01 \x03(\x0b\x32\x38.google.cloud.oracledatabase.v1.GoldengateDeploymentType\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x18\n\x0bunreachable\x18\x03 \x03(\tB\x03\xe0\x41\x06\x42\xf7\x01\n\"com.google.cloud.oracledatabase.v1B\x1dGoldengateDeploymentTypeProtoP\x01ZJcloud.google.com/go/oracledatabase/apiv1/oracledatabasepb;oracledatabasepb\xaa\x02\x1eGoogle.Cloud.OracleDatabase.V1\xca\x02\x1eGoogle\\Cloud\\OracleDatabase\\V1\xea\x02!Google::Cloud::OracleDatabase::V1b\x06proto3"
|
|
12
12
|
|
|
13
13
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
14
14
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -20,7 +20,6 @@ module Google
|
|
|
20
20
|
GoldengateDeploymentType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.GoldengateDeploymentType").msgclass
|
|
21
21
|
GoldengateDeploymentType::DeploymentType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.GoldengateDeploymentType.DeploymentType").enummodule
|
|
22
22
|
GoldengateDeploymentType::DeploymentCategory = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.GoldengateDeploymentType.DeploymentCategory").enummodule
|
|
23
|
-
GetGoldengateDeploymentTypeRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.GetGoldengateDeploymentTypeRequest").msgclass
|
|
24
23
|
ListGoldengateDeploymentTypesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.ListGoldengateDeploymentTypesRequest").msgclass
|
|
25
24
|
ListGoldengateDeploymentTypesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.ListGoldengateDeploymentTypesResponse").msgclass
|
|
26
25
|
end
|
|
@@ -9,7 +9,7 @@ require 'google/api/resource_pb'
|
|
|
9
9
|
require 'google/protobuf/timestamp_pb'
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
descriptor_data = "\nBgoogle/cloud/oracledatabase/v1/goldengate_deployment_version.proto\x12\x1egoogle.cloud.oracledatabase.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x86\x03\n\x1bGoldengateDeploymentVersion\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x11\n\x04ocid\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12^\n\nproperties\x18\x03 \x01(\x0b\x32\x45.google.cloud.oracledatabase.v1.GoldengateDeploymentVersionPropertiesB\x03\xe0\x41\x03:\xe0\x01\xea\x41\xdc\x01\n9oracledatabase.googleapis.com/GoldengateDeploymentVersion\x12\x64projects/{project}/locations/{location}/goldengateDeploymentVersions/{goldengate_deployment_version}*\x1cgoldengateDeploymentVersions2\x1bgoldengateDeploymentVersion\"\x93\x06\n%GoldengateDeploymentVersionProperties\x12r\n\x0f\x64\x65ployment_type\x18\x01 \x01(\x0e\x32T.google.cloud.oracledatabase.v1.GoldengateDeploymentVersionProperties.DeploymentTypeB\x03\xe0\x41\x03\x12\x19\n\x0csecurity_fix\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\x12\x18\n\x0bogg_version\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12v\n\x0crelease_type\x18\x04 \x01(\x0e\x32[.google.cloud.oracledatabase.v1.GoldengateDeploymentVersionProperties.DeploymentReleaseTypeB\x03\xe0\x41\x03\x12\x35\n\x0crelease_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x39\n\x10support_end_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\"\xf2\x01\n\x0e\x44\x65ploymentType\x12\x1f\n\x1b\x44\x45PLOYMENT_TYPE_UNSPECIFIED\x10\x00\x12\x07\n\x03OGG\x10\x01\x12\x13\n\x0f\x44\x41TABASE_ORACLE\x10\x02\x12\x0b\n\x07\x42IGDATA\x10\x03\x12 \n\x1c\x44\x41TABASE_MICROSOFT_SQLSERVER\x10\x04\x12\x12\n\x0e\x44\x41TABASE_MYSQL\x10\x05\x12\x17\n\x13\x44\x41TABASE_POSTGRESQL\x10\x06\x12\x13\n\x0f\x44\x41TABASE_DB2ZOS\x10\x07\x12\x11\n\rDATABASE_DB2I\x10\x08\x12\x08\n\x04GGSA\x10\t\x12\x13\n\x0f\x44\x41TA_TRANSFORMS\x10\n\"b\n\x15\x44\x65ploymentReleaseType\x12\'\n#DEPLOYMENT_RELEASE_TYPE_UNSPECIFIED\x10\x00\x12\t\n\x05MAJOR\x10\x01\x12\n\n\x06\x42UNDLE\x10\x02\x12\t\n\x05MINOR\x10\x03\"
|
|
12
|
+
descriptor_data = "\nBgoogle/cloud/oracledatabase/v1/goldengate_deployment_version.proto\x12\x1egoogle.cloud.oracledatabase.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x86\x03\n\x1bGoldengateDeploymentVersion\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x11\n\x04ocid\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12^\n\nproperties\x18\x03 \x01(\x0b\x32\x45.google.cloud.oracledatabase.v1.GoldengateDeploymentVersionPropertiesB\x03\xe0\x41\x03:\xe0\x01\xea\x41\xdc\x01\n9oracledatabase.googleapis.com/GoldengateDeploymentVersion\x12\x64projects/{project}/locations/{location}/goldengateDeploymentVersions/{goldengate_deployment_version}*\x1cgoldengateDeploymentVersions2\x1bgoldengateDeploymentVersion\"\x93\x06\n%GoldengateDeploymentVersionProperties\x12r\n\x0f\x64\x65ployment_type\x18\x01 \x01(\x0e\x32T.google.cloud.oracledatabase.v1.GoldengateDeploymentVersionProperties.DeploymentTypeB\x03\xe0\x41\x03\x12\x19\n\x0csecurity_fix\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\x12\x18\n\x0bogg_version\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12v\n\x0crelease_type\x18\x04 \x01(\x0e\x32[.google.cloud.oracledatabase.v1.GoldengateDeploymentVersionProperties.DeploymentReleaseTypeB\x03\xe0\x41\x03\x12\x35\n\x0crelease_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x39\n\x10support_end_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\"\xf2\x01\n\x0e\x44\x65ploymentType\x12\x1f\n\x1b\x44\x45PLOYMENT_TYPE_UNSPECIFIED\x10\x00\x12\x07\n\x03OGG\x10\x01\x12\x13\n\x0f\x44\x41TABASE_ORACLE\x10\x02\x12\x0b\n\x07\x42IGDATA\x10\x03\x12 \n\x1c\x44\x41TABASE_MICROSOFT_SQLSERVER\x10\x04\x12\x12\n\x0e\x44\x41TABASE_MYSQL\x10\x05\x12\x17\n\x13\x44\x41TABASE_POSTGRESQL\x10\x06\x12\x13\n\x0f\x44\x41TABASE_DB2ZOS\x10\x07\x12\x11\n\rDATABASE_DB2I\x10\x08\x12\x08\n\x04GGSA\x10\t\x12\x13\n\x0f\x44\x41TA_TRANSFORMS\x10\n\"b\n\x15\x44\x65ploymentReleaseType\x12\'\n#DEPLOYMENT_RELEASE_TYPE_UNSPECIFIED\x10\x00\x12\t\n\x05MAJOR\x10\x01\x12\n\n\x06\x42UNDLE\x10\x02\x12\t\n\x05MINOR\x10\x03\"\xc2\x01\n\'ListGoldengateDeploymentVersionsRequest\x12Q\n\x06parent\x18\x01 \x01(\tBA\xe0\x41\x02\xfa\x41;\x12\x39oracledatabase.googleapis.com/GoldengateDeploymentVersion\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xc2\x01\n(ListGoldengateDeploymentVersionsResponse\x12\x63\n\x1egoldengate_deployment_versions\x18\x01 \x03(\x0b\x32;.google.cloud.oracledatabase.v1.GoldengateDeploymentVersion\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x18\n\x0bunreachable\x18\x03 \x03(\tB\x03\xe0\x41\x06\x42\xfa\x01\n\"com.google.cloud.oracledatabase.v1B GoldengateDeploymentVersionProtoP\x01ZJcloud.google.com/go/oracledatabase/apiv1/oracledatabasepb;oracledatabasepb\xaa\x02\x1eGoogle.Cloud.OracleDatabase.V1\xca\x02\x1eGoogle\\Cloud\\OracleDatabase\\V1\xea\x02!Google::Cloud::OracleDatabase::V1b\x06proto3"
|
|
13
13
|
|
|
14
14
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
15
15
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -22,7 +22,6 @@ module Google
|
|
|
22
22
|
GoldengateDeploymentVersionProperties = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.GoldengateDeploymentVersionProperties").msgclass
|
|
23
23
|
GoldengateDeploymentVersionProperties::DeploymentType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.GoldengateDeploymentVersionProperties.DeploymentType").enummodule
|
|
24
24
|
GoldengateDeploymentVersionProperties::DeploymentReleaseType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.GoldengateDeploymentVersionProperties.DeploymentReleaseType").enummodule
|
|
25
|
-
GetGoldengateDeploymentVersionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.GetGoldengateDeploymentVersionRequest").msgclass
|
|
26
25
|
ListGoldengateDeploymentVersionsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.ListGoldengateDeploymentVersionsRequest").msgclass
|
|
27
26
|
ListGoldengateDeploymentVersionsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oracledatabase.v1.ListGoldengateDeploymentVersionsResponse").msgclass
|
|
28
27
|
end
|