google-cloud-oracle_database-v1 0.13.0 → 0.15.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/README.md +1 -1
- data/lib/google/cloud/oracle_database/v1/oracle_database/client.rb +2298 -184
- data/lib/google/cloud/oracle_database/v1/oracle_database/operations.rb +2 -0
- data/lib/google/cloud/oracle_database/v1/oracle_database/paths.rb +76 -0
- data/lib/google/cloud/oracle_database/v1/oracle_database/rest/client.rb +2098 -117
- data/lib/google/cloud/oracle_database/v1/oracle_database/rest/operations.rb +2 -0
- data/lib/google/cloud/oracle_database/v1/oracle_database/rest/service_stub.rb +1533 -368
- data/lib/google/cloud/oracle_database/v1/version.rb +1 -1
- data/lib/google/cloud/oracledatabase/v1/autonomous_database_pb.rb +1 -1
- data/lib/google/cloud/oracledatabase/v1/database_pb.rb +1 -1
- data/lib/google/cloud/oracledatabase/v1/db_system_pb.rb +1 -1
- data/lib/google/cloud/oracledatabase/v1/exadata_infra_pb.rb +2 -1
- data/lib/google/cloud/oracledatabase/v1/exascale_db_storage_vault_pb.rb +1 -1
- data/lib/google/cloud/oracledatabase/v1/goldengate_connection_assignment_pb.rb +38 -0
- data/lib/google/cloud/oracledatabase/v1/goldengate_connection_pb.rb +98 -0
- data/lib/google/cloud/oracledatabase/v1/goldengate_connection_type_pb.rb +27 -0
- data/lib/google/cloud/oracledatabase/v1/goldengate_deployment_environment_pb.rb +28 -0
- data/lib/google/cloud/oracledatabase/v1/goldengate_deployment_pb.rb +54 -0
- data/lib/google/cloud/oracledatabase/v1/goldengate_deployment_type_pb.rb +28 -0
- data/lib/google/cloud/oracledatabase/v1/goldengate_deployment_version_pb.rb +30 -0
- data/lib/google/cloud/oracledatabase/v1/oracledatabase_pb.rb +8 -1
- data/lib/google/cloud/oracledatabase/v1/oracledatabase_services_pb.rb +39 -0
- data/lib/google/cloud/oracledatabase/v1/vm_cluster_pb.rb +1 -1
- data/proto_docs/google/api/client.rb +4 -0
- data/proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb +84 -48
- data/proto_docs/google/cloud/oracledatabase/v1/database.rb +27 -1
- data/proto_docs/google/cloud/oracledatabase/v1/db_system.rb +6 -1
- data/proto_docs/google/cloud/oracledatabase/v1/exascale_db_storage_vault.rb +4 -0
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_connection.rb +2238 -0
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_connection_assignment.rb +300 -0
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_connection_type.rb +176 -0
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_deployment.rb +712 -0
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_deployment_environment.rb +135 -0
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_deployment_type.rb +166 -0
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_deployment_version.rb +164 -0
- data/proto_docs/google/cloud/oracledatabase/v1/oracledatabase.rb +20 -2
- data/proto_docs/google/cloud/oracledatabase/v1/vm_cluster.rb +4 -4
- metadata +17 -3
|
@@ -2314,23 +2314,23 @@ module Google
|
|
|
2314
2314
|
end
|
|
2315
2315
|
|
|
2316
2316
|
##
|
|
2317
|
-
# Baseline implementation for the
|
|
2317
|
+
# Baseline implementation for the list_goldengate_deployments REST call
|
|
2318
2318
|
#
|
|
2319
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
2319
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentsRequest]
|
|
2320
2320
|
# A request object representing the call parameters. Required.
|
|
2321
2321
|
# @param options [::Gapic::CallOptions]
|
|
2322
2322
|
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2323
2323
|
#
|
|
2324
2324
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2325
|
-
# @yieldparam result [::Google::Cloud::OracleDatabase::V1::
|
|
2325
|
+
# @yieldparam result [::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentsResponse]
|
|
2326
2326
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2327
2327
|
#
|
|
2328
|
-
# @return [::Google::Cloud::OracleDatabase::V1::
|
|
2328
|
+
# @return [::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentsResponse]
|
|
2329
2329
|
# A result object deserialized from the server's reply
|
|
2330
|
-
def
|
|
2330
|
+
def list_goldengate_deployments request_pb, options = nil
|
|
2331
2331
|
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2332
2332
|
|
|
2333
|
-
verb, uri, query_string_params, body = ServiceStub.
|
|
2333
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_list_goldengate_deployments_request request_pb
|
|
2334
2334
|
query_string_params = if query_string_params.any?
|
|
2335
2335
|
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2336
2336
|
else
|
|
@@ -2342,11 +2342,11 @@ module Google
|
|
|
2342
2342
|
uri: uri,
|
|
2343
2343
|
body: body || "",
|
|
2344
2344
|
params: query_string_params,
|
|
2345
|
-
method_name: "
|
|
2345
|
+
method_name: "list_goldengate_deployments",
|
|
2346
2346
|
options: options
|
|
2347
2347
|
)
|
|
2348
2348
|
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2349
|
-
result = ::Google::Cloud::OracleDatabase::V1::
|
|
2349
|
+
result = ::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentsResponse.decode_json response.body, ignore_unknown_fields: true
|
|
2350
2350
|
catch :response do
|
|
2351
2351
|
yield result, operation if block_given?
|
|
2352
2352
|
result
|
|
@@ -2354,23 +2354,23 @@ module Google
|
|
|
2354
2354
|
end
|
|
2355
2355
|
|
|
2356
2356
|
##
|
|
2357
|
-
# Baseline implementation for the
|
|
2357
|
+
# Baseline implementation for the get_goldengate_deployment REST call
|
|
2358
2358
|
#
|
|
2359
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
2359
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetGoldengateDeploymentRequest]
|
|
2360
2360
|
# A request object representing the call parameters. Required.
|
|
2361
2361
|
# @param options [::Gapic::CallOptions]
|
|
2362
2362
|
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2363
2363
|
#
|
|
2364
2364
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2365
|
-
# @yieldparam result [::Google::Cloud::OracleDatabase::V1::
|
|
2365
|
+
# @yieldparam result [::Google::Cloud::OracleDatabase::V1::GoldengateDeployment]
|
|
2366
2366
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2367
2367
|
#
|
|
2368
|
-
# @return [::Google::Cloud::OracleDatabase::V1::
|
|
2368
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateDeployment]
|
|
2369
2369
|
# A result object deserialized from the server's reply
|
|
2370
|
-
def
|
|
2370
|
+
def get_goldengate_deployment request_pb, options = nil
|
|
2371
2371
|
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2372
2372
|
|
|
2373
|
-
verb, uri, query_string_params, body = ServiceStub.
|
|
2373
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_get_goldengate_deployment_request request_pb
|
|
2374
2374
|
query_string_params = if query_string_params.any?
|
|
2375
2375
|
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2376
2376
|
else
|
|
@@ -2382,11 +2382,11 @@ module Google
|
|
|
2382
2382
|
uri: uri,
|
|
2383
2383
|
body: body || "",
|
|
2384
2384
|
params: query_string_params,
|
|
2385
|
-
method_name: "
|
|
2385
|
+
method_name: "get_goldengate_deployment",
|
|
2386
2386
|
options: options
|
|
2387
2387
|
)
|
|
2388
2388
|
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2389
|
-
result = ::Google::Cloud::OracleDatabase::V1::
|
|
2389
|
+
result = ::Google::Cloud::OracleDatabase::V1::GoldengateDeployment.decode_json response.body, ignore_unknown_fields: true
|
|
2390
2390
|
catch :response do
|
|
2391
2391
|
yield result, operation if block_given?
|
|
2392
2392
|
result
|
|
@@ -2394,85 +2394,1256 @@ module Google
|
|
|
2394
2394
|
end
|
|
2395
2395
|
|
|
2396
2396
|
##
|
|
2397
|
-
#
|
|
2398
|
-
#
|
|
2399
|
-
# GRPC transcoding helper method for the list_cloud_exadata_infrastructures REST call
|
|
2397
|
+
# Baseline implementation for the create_goldengate_deployment REST call
|
|
2400
2398
|
#
|
|
2401
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
2399
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::CreateGoldengateDeploymentRequest]
|
|
2402
2400
|
# A request object representing the call parameters. Required.
|
|
2403
|
-
# @
|
|
2404
|
-
#
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2401
|
+
# @param options [::Gapic::CallOptions]
|
|
2402
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2403
|
+
#
|
|
2404
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2405
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
|
2406
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2407
|
+
#
|
|
2408
|
+
# @return [::Google::Longrunning::Operation]
|
|
2409
|
+
# A result object deserialized from the server's reply
|
|
2410
|
+
def create_goldengate_deployment request_pb, options = nil
|
|
2411
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2412
|
+
|
|
2413
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_create_goldengate_deployment_request request_pb
|
|
2414
|
+
query_string_params = if query_string_params.any?
|
|
2415
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2416
|
+
else
|
|
2417
|
+
{}
|
|
2418
|
+
end
|
|
2419
|
+
|
|
2420
|
+
response = @client_stub.make_http_request(
|
|
2421
|
+
verb,
|
|
2422
|
+
uri: uri,
|
|
2423
|
+
body: body || "",
|
|
2424
|
+
params: query_string_params,
|
|
2425
|
+
method_name: "create_goldengate_deployment",
|
|
2426
|
+
options: options
|
|
2427
|
+
)
|
|
2428
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2429
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
|
2430
|
+
catch :response do
|
|
2431
|
+
yield result, operation if block_given?
|
|
2432
|
+
result
|
|
2433
|
+
end
|
|
2415
2434
|
end
|
|
2416
2435
|
|
|
2417
2436
|
##
|
|
2418
|
-
#
|
|
2437
|
+
# Baseline implementation for the delete_goldengate_deployment REST call
|
|
2419
2438
|
#
|
|
2420
|
-
#
|
|
2439
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::DeleteGoldengateDeploymentRequest]
|
|
2440
|
+
# A request object representing the call parameters. Required.
|
|
2441
|
+
# @param options [::Gapic::CallOptions]
|
|
2442
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2421
2443
|
#
|
|
2422
|
-
# @
|
|
2444
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2445
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
|
2446
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2447
|
+
#
|
|
2448
|
+
# @return [::Google::Longrunning::Operation]
|
|
2449
|
+
# A result object deserialized from the server's reply
|
|
2450
|
+
def delete_goldengate_deployment request_pb, options = nil
|
|
2451
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2452
|
+
|
|
2453
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_delete_goldengate_deployment_request request_pb
|
|
2454
|
+
query_string_params = if query_string_params.any?
|
|
2455
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2456
|
+
else
|
|
2457
|
+
{}
|
|
2458
|
+
end
|
|
2459
|
+
|
|
2460
|
+
response = @client_stub.make_http_request(
|
|
2461
|
+
verb,
|
|
2462
|
+
uri: uri,
|
|
2463
|
+
body: body || "",
|
|
2464
|
+
params: query_string_params,
|
|
2465
|
+
method_name: "delete_goldengate_deployment",
|
|
2466
|
+
options: options
|
|
2467
|
+
)
|
|
2468
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2469
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
|
2470
|
+
catch :response do
|
|
2471
|
+
yield result, operation if block_given?
|
|
2472
|
+
result
|
|
2473
|
+
end
|
|
2474
|
+
end
|
|
2475
|
+
|
|
2476
|
+
##
|
|
2477
|
+
# Baseline implementation for the stop_goldengate_deployment REST call
|
|
2478
|
+
#
|
|
2479
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::StopGoldengateDeploymentRequest]
|
|
2423
2480
|
# A request object representing the call parameters. Required.
|
|
2424
|
-
# @
|
|
2425
|
-
#
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2481
|
+
# @param options [::Gapic::CallOptions]
|
|
2482
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2483
|
+
#
|
|
2484
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2485
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
|
2486
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2487
|
+
#
|
|
2488
|
+
# @return [::Google::Longrunning::Operation]
|
|
2489
|
+
# A result object deserialized from the server's reply
|
|
2490
|
+
def stop_goldengate_deployment request_pb, options = nil
|
|
2491
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2492
|
+
|
|
2493
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_stop_goldengate_deployment_request request_pb
|
|
2494
|
+
query_string_params = if query_string_params.any?
|
|
2495
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2496
|
+
else
|
|
2497
|
+
{}
|
|
2498
|
+
end
|
|
2499
|
+
|
|
2500
|
+
response = @client_stub.make_http_request(
|
|
2501
|
+
verb,
|
|
2502
|
+
uri: uri,
|
|
2503
|
+
body: body || "",
|
|
2504
|
+
params: query_string_params,
|
|
2505
|
+
method_name: "stop_goldengate_deployment",
|
|
2506
|
+
options: options
|
|
2507
|
+
)
|
|
2508
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2509
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
|
2510
|
+
catch :response do
|
|
2511
|
+
yield result, operation if block_given?
|
|
2512
|
+
result
|
|
2513
|
+
end
|
|
2436
2514
|
end
|
|
2437
2515
|
|
|
2438
2516
|
##
|
|
2439
|
-
#
|
|
2517
|
+
# Baseline implementation for the start_goldengate_deployment REST call
|
|
2440
2518
|
#
|
|
2441
|
-
#
|
|
2519
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::StartGoldengateDeploymentRequest]
|
|
2520
|
+
# A request object representing the call parameters. Required.
|
|
2521
|
+
# @param options [::Gapic::CallOptions]
|
|
2522
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2442
2523
|
#
|
|
2443
|
-
# @
|
|
2524
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2525
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
|
2526
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2527
|
+
#
|
|
2528
|
+
# @return [::Google::Longrunning::Operation]
|
|
2529
|
+
# A result object deserialized from the server's reply
|
|
2530
|
+
def start_goldengate_deployment request_pb, options = nil
|
|
2531
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2532
|
+
|
|
2533
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_start_goldengate_deployment_request request_pb
|
|
2534
|
+
query_string_params = if query_string_params.any?
|
|
2535
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2536
|
+
else
|
|
2537
|
+
{}
|
|
2538
|
+
end
|
|
2539
|
+
|
|
2540
|
+
response = @client_stub.make_http_request(
|
|
2541
|
+
verb,
|
|
2542
|
+
uri: uri,
|
|
2543
|
+
body: body || "",
|
|
2544
|
+
params: query_string_params,
|
|
2545
|
+
method_name: "start_goldengate_deployment",
|
|
2546
|
+
options: options
|
|
2547
|
+
)
|
|
2548
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2549
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
|
2550
|
+
catch :response do
|
|
2551
|
+
yield result, operation if block_given?
|
|
2552
|
+
result
|
|
2553
|
+
end
|
|
2554
|
+
end
|
|
2555
|
+
|
|
2556
|
+
##
|
|
2557
|
+
# Baseline implementation for the list_goldengate_connections REST call
|
|
2558
|
+
#
|
|
2559
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListGoldengateConnectionsRequest]
|
|
2444
2560
|
# A request object representing the call parameters. Required.
|
|
2445
|
-
# @
|
|
2446
|
-
#
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2561
|
+
# @param options [::Gapic::CallOptions]
|
|
2562
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2563
|
+
#
|
|
2564
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2565
|
+
# @yieldparam result [::Google::Cloud::OracleDatabase::V1::ListGoldengateConnectionsResponse]
|
|
2566
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2567
|
+
#
|
|
2568
|
+
# @return [::Google::Cloud::OracleDatabase::V1::ListGoldengateConnectionsResponse]
|
|
2569
|
+
# A result object deserialized from the server's reply
|
|
2570
|
+
def list_goldengate_connections request_pb, options = nil
|
|
2571
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2572
|
+
|
|
2573
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_list_goldengate_connections_request request_pb
|
|
2574
|
+
query_string_params = if query_string_params.any?
|
|
2575
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2576
|
+
else
|
|
2577
|
+
{}
|
|
2578
|
+
end
|
|
2579
|
+
|
|
2580
|
+
response = @client_stub.make_http_request(
|
|
2581
|
+
verb,
|
|
2582
|
+
uri: uri,
|
|
2583
|
+
body: body || "",
|
|
2584
|
+
params: query_string_params,
|
|
2585
|
+
method_name: "list_goldengate_connections",
|
|
2586
|
+
options: options
|
|
2587
|
+
)
|
|
2588
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2589
|
+
result = ::Google::Cloud::OracleDatabase::V1::ListGoldengateConnectionsResponse.decode_json response.body, ignore_unknown_fields: true
|
|
2590
|
+
catch :response do
|
|
2591
|
+
yield result, operation if block_given?
|
|
2592
|
+
result
|
|
2593
|
+
end
|
|
2458
2594
|
end
|
|
2459
2595
|
|
|
2460
2596
|
##
|
|
2461
|
-
#
|
|
2597
|
+
# Baseline implementation for the get_goldengate_connection REST call
|
|
2462
2598
|
#
|
|
2463
|
-
#
|
|
2599
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetGoldengateConnectionRequest]
|
|
2600
|
+
# A request object representing the call parameters. Required.
|
|
2601
|
+
# @param options [::Gapic::CallOptions]
|
|
2602
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2464
2603
|
#
|
|
2465
|
-
# @
|
|
2604
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2605
|
+
# @yieldparam result [::Google::Cloud::OracleDatabase::V1::GoldengateConnection]
|
|
2606
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2607
|
+
#
|
|
2608
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateConnection]
|
|
2609
|
+
# A result object deserialized from the server's reply
|
|
2610
|
+
def get_goldengate_connection request_pb, options = nil
|
|
2611
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2612
|
+
|
|
2613
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_get_goldengate_connection_request request_pb
|
|
2614
|
+
query_string_params = if query_string_params.any?
|
|
2615
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2616
|
+
else
|
|
2617
|
+
{}
|
|
2618
|
+
end
|
|
2619
|
+
|
|
2620
|
+
response = @client_stub.make_http_request(
|
|
2621
|
+
verb,
|
|
2622
|
+
uri: uri,
|
|
2623
|
+
body: body || "",
|
|
2624
|
+
params: query_string_params,
|
|
2625
|
+
method_name: "get_goldengate_connection",
|
|
2626
|
+
options: options
|
|
2627
|
+
)
|
|
2628
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2629
|
+
result = ::Google::Cloud::OracleDatabase::V1::GoldengateConnection.decode_json response.body, ignore_unknown_fields: true
|
|
2630
|
+
catch :response do
|
|
2631
|
+
yield result, operation if block_given?
|
|
2632
|
+
result
|
|
2633
|
+
end
|
|
2634
|
+
end
|
|
2635
|
+
|
|
2636
|
+
##
|
|
2637
|
+
# Baseline implementation for the create_goldengate_connection REST call
|
|
2638
|
+
#
|
|
2639
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::CreateGoldengateConnectionRequest]
|
|
2466
2640
|
# A request object representing the call parameters. Required.
|
|
2467
|
-
# @
|
|
2468
|
-
#
|
|
2469
|
-
|
|
2470
|
-
|
|
2641
|
+
# @param options [::Gapic::CallOptions]
|
|
2642
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2643
|
+
#
|
|
2644
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2645
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
|
2646
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2647
|
+
#
|
|
2648
|
+
# @return [::Google::Longrunning::Operation]
|
|
2649
|
+
# A result object deserialized from the server's reply
|
|
2650
|
+
def create_goldengate_connection request_pb, options = nil
|
|
2651
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2652
|
+
|
|
2653
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_create_goldengate_connection_request request_pb
|
|
2654
|
+
query_string_params = if query_string_params.any?
|
|
2655
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2656
|
+
else
|
|
2657
|
+
{}
|
|
2658
|
+
end
|
|
2659
|
+
|
|
2660
|
+
response = @client_stub.make_http_request(
|
|
2661
|
+
verb,
|
|
2662
|
+
uri: uri,
|
|
2663
|
+
body: body || "",
|
|
2664
|
+
params: query_string_params,
|
|
2665
|
+
method_name: "create_goldengate_connection",
|
|
2666
|
+
options: options
|
|
2667
|
+
)
|
|
2668
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2669
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
|
2670
|
+
catch :response do
|
|
2671
|
+
yield result, operation if block_given?
|
|
2672
|
+
result
|
|
2673
|
+
end
|
|
2674
|
+
end
|
|
2675
|
+
|
|
2676
|
+
##
|
|
2677
|
+
# Baseline implementation for the delete_goldengate_connection REST call
|
|
2678
|
+
#
|
|
2679
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::DeleteGoldengateConnectionRequest]
|
|
2680
|
+
# A request object representing the call parameters. Required.
|
|
2681
|
+
# @param options [::Gapic::CallOptions]
|
|
2682
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2683
|
+
#
|
|
2684
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2685
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
|
2686
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2687
|
+
#
|
|
2688
|
+
# @return [::Google::Longrunning::Operation]
|
|
2689
|
+
# A result object deserialized from the server's reply
|
|
2690
|
+
def delete_goldengate_connection request_pb, options = nil
|
|
2691
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2692
|
+
|
|
2693
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_delete_goldengate_connection_request request_pb
|
|
2694
|
+
query_string_params = if query_string_params.any?
|
|
2695
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2696
|
+
else
|
|
2697
|
+
{}
|
|
2698
|
+
end
|
|
2699
|
+
|
|
2700
|
+
response = @client_stub.make_http_request(
|
|
2701
|
+
verb,
|
|
2702
|
+
uri: uri,
|
|
2703
|
+
body: body || "",
|
|
2704
|
+
params: query_string_params,
|
|
2705
|
+
method_name: "delete_goldengate_connection",
|
|
2706
|
+
options: options
|
|
2707
|
+
)
|
|
2708
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2709
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
|
2710
|
+
catch :response do
|
|
2711
|
+
yield result, operation if block_given?
|
|
2712
|
+
result
|
|
2713
|
+
end
|
|
2714
|
+
end
|
|
2715
|
+
|
|
2716
|
+
##
|
|
2717
|
+
# Baseline implementation for the list_goldengate_deployment_versions REST call
|
|
2718
|
+
#
|
|
2719
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentVersionsRequest]
|
|
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::ListGoldengateDeploymentVersionsResponse]
|
|
2726
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2727
|
+
#
|
|
2728
|
+
# @return [::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentVersionsResponse]
|
|
2729
|
+
# A result object deserialized from the server's reply
|
|
2730
|
+
def list_goldengate_deployment_versions 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_list_goldengate_deployment_versions_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: "list_goldengate_deployment_versions",
|
|
2746
|
+
options: options
|
|
2747
|
+
)
|
|
2748
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2749
|
+
result = ::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentVersionsResponse.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
|
+
##
|
|
2757
|
+
# Baseline implementation for the list_goldengate_deployment_types REST call
|
|
2758
|
+
#
|
|
2759
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentTypesRequest]
|
|
2760
|
+
# A request object representing the call parameters. Required.
|
|
2761
|
+
# @param options [::Gapic::CallOptions]
|
|
2762
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2763
|
+
#
|
|
2764
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2765
|
+
# @yieldparam result [::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentTypesResponse]
|
|
2766
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2767
|
+
#
|
|
2768
|
+
# @return [::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentTypesResponse]
|
|
2769
|
+
# A result object deserialized from the server's reply
|
|
2770
|
+
def list_goldengate_deployment_types request_pb, options = nil
|
|
2771
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2772
|
+
|
|
2773
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_list_goldengate_deployment_types_request request_pb
|
|
2774
|
+
query_string_params = if query_string_params.any?
|
|
2775
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2776
|
+
else
|
|
2777
|
+
{}
|
|
2778
|
+
end
|
|
2779
|
+
|
|
2780
|
+
response = @client_stub.make_http_request(
|
|
2781
|
+
verb,
|
|
2782
|
+
uri: uri,
|
|
2783
|
+
body: body || "",
|
|
2784
|
+
params: query_string_params,
|
|
2785
|
+
method_name: "list_goldengate_deployment_types",
|
|
2786
|
+
options: options
|
|
2787
|
+
)
|
|
2788
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2789
|
+
result = ::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentTypesResponse.decode_json response.body, ignore_unknown_fields: true
|
|
2790
|
+
catch :response do
|
|
2791
|
+
yield result, operation if block_given?
|
|
2792
|
+
result
|
|
2793
|
+
end
|
|
2794
|
+
end
|
|
2795
|
+
|
|
2796
|
+
##
|
|
2797
|
+
# Baseline implementation for the list_goldengate_deployment_environments REST call
|
|
2798
|
+
#
|
|
2799
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentEnvironmentsRequest]
|
|
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::ListGoldengateDeploymentEnvironmentsResponse]
|
|
2806
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2807
|
+
#
|
|
2808
|
+
# @return [::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentEnvironmentsResponse]
|
|
2809
|
+
# A result object deserialized from the server's reply
|
|
2810
|
+
def list_goldengate_deployment_environments 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_list_goldengate_deployment_environments_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: "list_goldengate_deployment_environments",
|
|
2826
|
+
options: options
|
|
2827
|
+
)
|
|
2828
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2829
|
+
result = ::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentEnvironmentsResponse.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
|
+
##
|
|
2837
|
+
# Baseline implementation for the list_goldengate_connection_types REST call
|
|
2838
|
+
#
|
|
2839
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListGoldengateConnectionTypesRequest]
|
|
2840
|
+
# A request object representing the call parameters. Required.
|
|
2841
|
+
# @param options [::Gapic::CallOptions]
|
|
2842
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2843
|
+
#
|
|
2844
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2845
|
+
# @yieldparam result [::Google::Cloud::OracleDatabase::V1::ListGoldengateConnectionTypesResponse]
|
|
2846
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2847
|
+
#
|
|
2848
|
+
# @return [::Google::Cloud::OracleDatabase::V1::ListGoldengateConnectionTypesResponse]
|
|
2849
|
+
# A result object deserialized from the server's reply
|
|
2850
|
+
def list_goldengate_connection_types request_pb, options = nil
|
|
2851
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2852
|
+
|
|
2853
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_list_goldengate_connection_types_request request_pb
|
|
2854
|
+
query_string_params = if query_string_params.any?
|
|
2855
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2856
|
+
else
|
|
2857
|
+
{}
|
|
2858
|
+
end
|
|
2859
|
+
|
|
2860
|
+
response = @client_stub.make_http_request(
|
|
2861
|
+
verb,
|
|
2862
|
+
uri: uri,
|
|
2863
|
+
body: body || "",
|
|
2864
|
+
params: query_string_params,
|
|
2865
|
+
method_name: "list_goldengate_connection_types",
|
|
2866
|
+
options: options
|
|
2867
|
+
)
|
|
2868
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2869
|
+
result = ::Google::Cloud::OracleDatabase::V1::ListGoldengateConnectionTypesResponse.decode_json response.body, ignore_unknown_fields: true
|
|
2870
|
+
catch :response do
|
|
2871
|
+
yield result, operation if block_given?
|
|
2872
|
+
result
|
|
2873
|
+
end
|
|
2874
|
+
end
|
|
2875
|
+
|
|
2876
|
+
##
|
|
2877
|
+
# Baseline implementation for the list_db_versions REST call
|
|
2878
|
+
#
|
|
2879
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListDbVersionsRequest]
|
|
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::ListDbVersionsResponse]
|
|
2886
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2887
|
+
#
|
|
2888
|
+
# @return [::Google::Cloud::OracleDatabase::V1::ListDbVersionsResponse]
|
|
2889
|
+
# A result object deserialized from the server's reply
|
|
2890
|
+
def list_db_versions 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_list_db_versions_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: "list_db_versions",
|
|
2906
|
+
options: options
|
|
2907
|
+
)
|
|
2908
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2909
|
+
result = ::Google::Cloud::OracleDatabase::V1::ListDbVersionsResponse.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
|
+
##
|
|
2917
|
+
# Baseline implementation for the list_database_character_sets REST call
|
|
2918
|
+
#
|
|
2919
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListDatabaseCharacterSetsRequest]
|
|
2920
|
+
# A request object representing the call parameters. Required.
|
|
2921
|
+
# @param options [::Gapic::CallOptions]
|
|
2922
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2923
|
+
#
|
|
2924
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2925
|
+
# @yieldparam result [::Google::Cloud::OracleDatabase::V1::ListDatabaseCharacterSetsResponse]
|
|
2926
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2927
|
+
#
|
|
2928
|
+
# @return [::Google::Cloud::OracleDatabase::V1::ListDatabaseCharacterSetsResponse]
|
|
2929
|
+
# A result object deserialized from the server's reply
|
|
2930
|
+
def list_database_character_sets request_pb, options = nil
|
|
2931
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2932
|
+
|
|
2933
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_list_database_character_sets_request request_pb
|
|
2934
|
+
query_string_params = if query_string_params.any?
|
|
2935
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2936
|
+
else
|
|
2937
|
+
{}
|
|
2938
|
+
end
|
|
2939
|
+
|
|
2940
|
+
response = @client_stub.make_http_request(
|
|
2941
|
+
verb,
|
|
2942
|
+
uri: uri,
|
|
2943
|
+
body: body || "",
|
|
2944
|
+
params: query_string_params,
|
|
2945
|
+
method_name: "list_database_character_sets",
|
|
2946
|
+
options: options
|
|
2947
|
+
)
|
|
2948
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2949
|
+
result = ::Google::Cloud::OracleDatabase::V1::ListDatabaseCharacterSetsResponse.decode_json response.body, ignore_unknown_fields: true
|
|
2950
|
+
catch :response do
|
|
2951
|
+
yield result, operation if block_given?
|
|
2952
|
+
result
|
|
2953
|
+
end
|
|
2954
|
+
end
|
|
2955
|
+
|
|
2956
|
+
##
|
|
2957
|
+
# Baseline implementation for the list_goldengate_connection_assignments REST call
|
|
2958
|
+
#
|
|
2959
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListGoldengateConnectionAssignmentsRequest]
|
|
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::ListGoldengateConnectionAssignmentsResponse]
|
|
2966
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2967
|
+
#
|
|
2968
|
+
# @return [::Google::Cloud::OracleDatabase::V1::ListGoldengateConnectionAssignmentsResponse]
|
|
2969
|
+
# A result object deserialized from the server's reply
|
|
2970
|
+
def list_goldengate_connection_assignments 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_list_goldengate_connection_assignments_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: "list_goldengate_connection_assignments",
|
|
2986
|
+
options: options
|
|
2987
|
+
)
|
|
2988
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2989
|
+
result = ::Google::Cloud::OracleDatabase::V1::ListGoldengateConnectionAssignmentsResponse.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
|
+
##
|
|
2997
|
+
# Baseline implementation for the get_goldengate_connection_assignment REST call
|
|
2998
|
+
#
|
|
2999
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetGoldengateConnectionAssignmentRequest]
|
|
3000
|
+
# A request object representing the call parameters. Required.
|
|
3001
|
+
# @param options [::Gapic::CallOptions]
|
|
3002
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
3003
|
+
#
|
|
3004
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
3005
|
+
# @yieldparam result [::Google::Cloud::OracleDatabase::V1::GoldengateConnectionAssignment]
|
|
3006
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
3007
|
+
#
|
|
3008
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateConnectionAssignment]
|
|
3009
|
+
# A result object deserialized from the server's reply
|
|
3010
|
+
def get_goldengate_connection_assignment request_pb, options = nil
|
|
3011
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
3012
|
+
|
|
3013
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_get_goldengate_connection_assignment_request request_pb
|
|
3014
|
+
query_string_params = if query_string_params.any?
|
|
3015
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
3016
|
+
else
|
|
3017
|
+
{}
|
|
3018
|
+
end
|
|
3019
|
+
|
|
3020
|
+
response = @client_stub.make_http_request(
|
|
3021
|
+
verb,
|
|
3022
|
+
uri: uri,
|
|
3023
|
+
body: body || "",
|
|
3024
|
+
params: query_string_params,
|
|
3025
|
+
method_name: "get_goldengate_connection_assignment",
|
|
3026
|
+
options: options
|
|
3027
|
+
)
|
|
3028
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
3029
|
+
result = ::Google::Cloud::OracleDatabase::V1::GoldengateConnectionAssignment.decode_json response.body, ignore_unknown_fields: true
|
|
3030
|
+
catch :response do
|
|
3031
|
+
yield result, operation if block_given?
|
|
3032
|
+
result
|
|
3033
|
+
end
|
|
3034
|
+
end
|
|
3035
|
+
|
|
3036
|
+
##
|
|
3037
|
+
# Baseline implementation for the create_goldengate_connection_assignment REST call
|
|
3038
|
+
#
|
|
3039
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::CreateGoldengateConnectionAssignmentRequest]
|
|
3040
|
+
# A request object representing the call parameters. Required.
|
|
3041
|
+
# @param options [::Gapic::CallOptions]
|
|
3042
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
3043
|
+
#
|
|
3044
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
3045
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
|
3046
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
3047
|
+
#
|
|
3048
|
+
# @return [::Google::Longrunning::Operation]
|
|
3049
|
+
# A result object deserialized from the server's reply
|
|
3050
|
+
def create_goldengate_connection_assignment request_pb, options = nil
|
|
3051
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
3052
|
+
|
|
3053
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_create_goldengate_connection_assignment_request request_pb
|
|
3054
|
+
query_string_params = if query_string_params.any?
|
|
3055
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
3056
|
+
else
|
|
3057
|
+
{}
|
|
3058
|
+
end
|
|
3059
|
+
|
|
3060
|
+
response = @client_stub.make_http_request(
|
|
3061
|
+
verb,
|
|
3062
|
+
uri: uri,
|
|
3063
|
+
body: body || "",
|
|
3064
|
+
params: query_string_params,
|
|
3065
|
+
method_name: "create_goldengate_connection_assignment",
|
|
3066
|
+
options: options
|
|
3067
|
+
)
|
|
3068
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
3069
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
|
3070
|
+
catch :response do
|
|
3071
|
+
yield result, operation if block_given?
|
|
3072
|
+
result
|
|
3073
|
+
end
|
|
3074
|
+
end
|
|
3075
|
+
|
|
3076
|
+
##
|
|
3077
|
+
# Baseline implementation for the delete_goldengate_connection_assignment REST call
|
|
3078
|
+
#
|
|
3079
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::DeleteGoldengateConnectionAssignmentRequest]
|
|
3080
|
+
# A request object representing the call parameters. Required.
|
|
3081
|
+
# @param options [::Gapic::CallOptions]
|
|
3082
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
3083
|
+
#
|
|
3084
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
3085
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
|
3086
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
3087
|
+
#
|
|
3088
|
+
# @return [::Google::Longrunning::Operation]
|
|
3089
|
+
# A result object deserialized from the server's reply
|
|
3090
|
+
def delete_goldengate_connection_assignment request_pb, options = nil
|
|
3091
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
3092
|
+
|
|
3093
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_delete_goldengate_connection_assignment_request request_pb
|
|
3094
|
+
query_string_params = if query_string_params.any?
|
|
3095
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
3096
|
+
else
|
|
3097
|
+
{}
|
|
3098
|
+
end
|
|
3099
|
+
|
|
3100
|
+
response = @client_stub.make_http_request(
|
|
3101
|
+
verb,
|
|
3102
|
+
uri: uri,
|
|
3103
|
+
body: body || "",
|
|
3104
|
+
params: query_string_params,
|
|
3105
|
+
method_name: "delete_goldengate_connection_assignment",
|
|
3106
|
+
options: options
|
|
3107
|
+
)
|
|
3108
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
3109
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
|
3110
|
+
catch :response do
|
|
3111
|
+
yield result, operation if block_given?
|
|
3112
|
+
result
|
|
3113
|
+
end
|
|
3114
|
+
end
|
|
3115
|
+
|
|
3116
|
+
##
|
|
3117
|
+
# Baseline implementation for the test_goldengate_connection_assignment REST call
|
|
3118
|
+
#
|
|
3119
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::TestGoldengateConnectionAssignmentRequest]
|
|
3120
|
+
# A request object representing the call parameters. Required.
|
|
3121
|
+
# @param options [::Gapic::CallOptions]
|
|
3122
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
3123
|
+
#
|
|
3124
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
3125
|
+
# @yieldparam result [::Google::Cloud::OracleDatabase::V1::TestGoldengateConnectionAssignmentResponse]
|
|
3126
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
3127
|
+
#
|
|
3128
|
+
# @return [::Google::Cloud::OracleDatabase::V1::TestGoldengateConnectionAssignmentResponse]
|
|
3129
|
+
# A result object deserialized from the server's reply
|
|
3130
|
+
def test_goldengate_connection_assignment request_pb, options = nil
|
|
3131
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
3132
|
+
|
|
3133
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_test_goldengate_connection_assignment_request request_pb
|
|
3134
|
+
query_string_params = if query_string_params.any?
|
|
3135
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
3136
|
+
else
|
|
3137
|
+
{}
|
|
3138
|
+
end
|
|
3139
|
+
|
|
3140
|
+
response = @client_stub.make_http_request(
|
|
3141
|
+
verb,
|
|
3142
|
+
uri: uri,
|
|
3143
|
+
body: body || "",
|
|
3144
|
+
params: query_string_params,
|
|
3145
|
+
method_name: "test_goldengate_connection_assignment",
|
|
3146
|
+
options: options
|
|
3147
|
+
)
|
|
3148
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
3149
|
+
result = ::Google::Cloud::OracleDatabase::V1::TestGoldengateConnectionAssignmentResponse.decode_json response.body, ignore_unknown_fields: true
|
|
3150
|
+
catch :response do
|
|
3151
|
+
yield result, operation if block_given?
|
|
3152
|
+
result
|
|
3153
|
+
end
|
|
3154
|
+
end
|
|
3155
|
+
|
|
3156
|
+
##
|
|
3157
|
+
# @private
|
|
3158
|
+
#
|
|
3159
|
+
# GRPC transcoding helper method for the list_cloud_exadata_infrastructures REST call
|
|
3160
|
+
#
|
|
3161
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListCloudExadataInfrastructuresRequest]
|
|
3162
|
+
# A request object representing the call parameters. Required.
|
|
3163
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3164
|
+
# Uri, Body, Query string parameters
|
|
3165
|
+
def self.transcode_list_cloud_exadata_infrastructures_request request_pb
|
|
3166
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3167
|
+
.with_bindings(
|
|
3168
|
+
uri_method: :get,
|
|
3169
|
+
uri_template: "/v1/{parent}/cloudExadataInfrastructures",
|
|
3170
|
+
matches: [
|
|
3171
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3172
|
+
]
|
|
3173
|
+
)
|
|
3174
|
+
transcoder.transcode request_pb
|
|
3175
|
+
end
|
|
3176
|
+
|
|
3177
|
+
##
|
|
3178
|
+
# @private
|
|
3179
|
+
#
|
|
3180
|
+
# GRPC transcoding helper method for the get_cloud_exadata_infrastructure REST call
|
|
3181
|
+
#
|
|
3182
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetCloudExadataInfrastructureRequest]
|
|
3183
|
+
# A request object representing the call parameters. Required.
|
|
3184
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3185
|
+
# Uri, Body, Query string parameters
|
|
3186
|
+
def self.transcode_get_cloud_exadata_infrastructure_request request_pb
|
|
3187
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3188
|
+
.with_bindings(
|
|
3189
|
+
uri_method: :get,
|
|
3190
|
+
uri_template: "/v1/{name}",
|
|
3191
|
+
matches: [
|
|
3192
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/cloudExadataInfrastructures/[^/]+/?$}, false]
|
|
3193
|
+
]
|
|
3194
|
+
)
|
|
3195
|
+
transcoder.transcode request_pb
|
|
3196
|
+
end
|
|
3197
|
+
|
|
3198
|
+
##
|
|
3199
|
+
# @private
|
|
3200
|
+
#
|
|
3201
|
+
# GRPC transcoding helper method for the create_cloud_exadata_infrastructure REST call
|
|
3202
|
+
#
|
|
3203
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::CreateCloudExadataInfrastructureRequest]
|
|
3204
|
+
# A request object representing the call parameters. Required.
|
|
3205
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3206
|
+
# Uri, Body, Query string parameters
|
|
3207
|
+
def self.transcode_create_cloud_exadata_infrastructure_request request_pb
|
|
3208
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3209
|
+
.with_bindings(
|
|
3210
|
+
uri_method: :post,
|
|
3211
|
+
uri_template: "/v1/{parent}/cloudExadataInfrastructures",
|
|
3212
|
+
body: "cloud_exadata_infrastructure",
|
|
3213
|
+
matches: [
|
|
3214
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3215
|
+
]
|
|
3216
|
+
)
|
|
3217
|
+
transcoder.transcode request_pb
|
|
3218
|
+
end
|
|
3219
|
+
|
|
3220
|
+
##
|
|
3221
|
+
# @private
|
|
3222
|
+
#
|
|
3223
|
+
# GRPC transcoding helper method for the delete_cloud_exadata_infrastructure REST call
|
|
3224
|
+
#
|
|
3225
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::DeleteCloudExadataInfrastructureRequest]
|
|
3226
|
+
# A request object representing the call parameters. Required.
|
|
3227
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3228
|
+
# Uri, Body, Query string parameters
|
|
3229
|
+
def self.transcode_delete_cloud_exadata_infrastructure_request request_pb
|
|
3230
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3231
|
+
.with_bindings(
|
|
3232
|
+
uri_method: :delete,
|
|
3233
|
+
uri_template: "/v1/{name}",
|
|
3234
|
+
matches: [
|
|
3235
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/cloudExadataInfrastructures/[^/]+/?$}, false]
|
|
3236
|
+
]
|
|
3237
|
+
)
|
|
3238
|
+
transcoder.transcode request_pb
|
|
3239
|
+
end
|
|
3240
|
+
|
|
3241
|
+
##
|
|
3242
|
+
# @private
|
|
3243
|
+
#
|
|
3244
|
+
# GRPC transcoding helper method for the list_cloud_vm_clusters REST call
|
|
3245
|
+
#
|
|
3246
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListCloudVmClustersRequest]
|
|
3247
|
+
# A request object representing the call parameters. Required.
|
|
3248
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3249
|
+
# Uri, Body, Query string parameters
|
|
3250
|
+
def self.transcode_list_cloud_vm_clusters_request request_pb
|
|
3251
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3252
|
+
.with_bindings(
|
|
3253
|
+
uri_method: :get,
|
|
3254
|
+
uri_template: "/v1/{parent}/cloudVmClusters",
|
|
3255
|
+
matches: [
|
|
3256
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3257
|
+
]
|
|
3258
|
+
)
|
|
3259
|
+
transcoder.transcode request_pb
|
|
3260
|
+
end
|
|
3261
|
+
|
|
3262
|
+
##
|
|
3263
|
+
# @private
|
|
3264
|
+
#
|
|
3265
|
+
# GRPC transcoding helper method for the get_cloud_vm_cluster REST call
|
|
3266
|
+
#
|
|
3267
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetCloudVmClusterRequest]
|
|
3268
|
+
# A request object representing the call parameters. Required.
|
|
3269
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3270
|
+
# Uri, Body, Query string parameters
|
|
3271
|
+
def self.transcode_get_cloud_vm_cluster_request request_pb
|
|
3272
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3273
|
+
.with_bindings(
|
|
3274
|
+
uri_method: :get,
|
|
3275
|
+
uri_template: "/v1/{name}",
|
|
3276
|
+
matches: [
|
|
3277
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/cloudVmClusters/[^/]+/?$}, false]
|
|
3278
|
+
]
|
|
3279
|
+
)
|
|
3280
|
+
transcoder.transcode request_pb
|
|
3281
|
+
end
|
|
3282
|
+
|
|
3283
|
+
##
|
|
3284
|
+
# @private
|
|
3285
|
+
#
|
|
3286
|
+
# GRPC transcoding helper method for the create_cloud_vm_cluster REST call
|
|
3287
|
+
#
|
|
3288
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::CreateCloudVmClusterRequest]
|
|
3289
|
+
# A request object representing the call parameters. Required.
|
|
3290
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3291
|
+
# Uri, Body, Query string parameters
|
|
3292
|
+
def self.transcode_create_cloud_vm_cluster_request request_pb
|
|
3293
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3294
|
+
.with_bindings(
|
|
3295
|
+
uri_method: :post,
|
|
3296
|
+
uri_template: "/v1/{parent}/cloudVmClusters",
|
|
3297
|
+
body: "cloud_vm_cluster",
|
|
3298
|
+
matches: [
|
|
3299
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3300
|
+
]
|
|
3301
|
+
)
|
|
3302
|
+
transcoder.transcode request_pb
|
|
3303
|
+
end
|
|
3304
|
+
|
|
3305
|
+
##
|
|
3306
|
+
# @private
|
|
3307
|
+
#
|
|
3308
|
+
# GRPC transcoding helper method for the delete_cloud_vm_cluster REST call
|
|
3309
|
+
#
|
|
3310
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::DeleteCloudVmClusterRequest]
|
|
3311
|
+
# A request object representing the call parameters. Required.
|
|
3312
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3313
|
+
# Uri, Body, Query string parameters
|
|
3314
|
+
def self.transcode_delete_cloud_vm_cluster_request request_pb
|
|
3315
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3316
|
+
.with_bindings(
|
|
3317
|
+
uri_method: :delete,
|
|
3318
|
+
uri_template: "/v1/{name}",
|
|
3319
|
+
matches: [
|
|
3320
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/cloudVmClusters/[^/]+/?$}, false]
|
|
3321
|
+
]
|
|
3322
|
+
)
|
|
3323
|
+
transcoder.transcode request_pb
|
|
3324
|
+
end
|
|
3325
|
+
|
|
3326
|
+
##
|
|
3327
|
+
# @private
|
|
3328
|
+
#
|
|
3329
|
+
# GRPC transcoding helper method for the list_entitlements REST call
|
|
3330
|
+
#
|
|
3331
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListEntitlementsRequest]
|
|
3332
|
+
# A request object representing the call parameters. Required.
|
|
3333
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3334
|
+
# Uri, Body, Query string parameters
|
|
3335
|
+
def self.transcode_list_entitlements_request request_pb
|
|
3336
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3337
|
+
.with_bindings(
|
|
3338
|
+
uri_method: :get,
|
|
3339
|
+
uri_template: "/v1/{parent}/entitlements",
|
|
3340
|
+
matches: [
|
|
3341
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3342
|
+
]
|
|
3343
|
+
)
|
|
3344
|
+
transcoder.transcode request_pb
|
|
3345
|
+
end
|
|
3346
|
+
|
|
3347
|
+
##
|
|
3348
|
+
# @private
|
|
3349
|
+
#
|
|
3350
|
+
# GRPC transcoding helper method for the list_db_servers REST call
|
|
3351
|
+
#
|
|
3352
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListDbServersRequest]
|
|
3353
|
+
# A request object representing the call parameters. Required.
|
|
3354
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3355
|
+
# Uri, Body, Query string parameters
|
|
3356
|
+
def self.transcode_list_db_servers_request request_pb
|
|
3357
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3358
|
+
.with_bindings(
|
|
3359
|
+
uri_method: :get,
|
|
3360
|
+
uri_template: "/v1/{parent}/dbServers",
|
|
3361
|
+
matches: [
|
|
3362
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/cloudExadataInfrastructures/[^/]+/?$}, false]
|
|
3363
|
+
]
|
|
3364
|
+
)
|
|
3365
|
+
transcoder.transcode request_pb
|
|
3366
|
+
end
|
|
3367
|
+
|
|
3368
|
+
##
|
|
3369
|
+
# @private
|
|
3370
|
+
#
|
|
3371
|
+
# GRPC transcoding helper method for the list_db_nodes REST call
|
|
3372
|
+
#
|
|
3373
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListDbNodesRequest]
|
|
3374
|
+
# A request object representing the call parameters. Required.
|
|
3375
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3376
|
+
# Uri, Body, Query string parameters
|
|
3377
|
+
def self.transcode_list_db_nodes_request request_pb
|
|
3378
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3379
|
+
.with_bindings(
|
|
3380
|
+
uri_method: :get,
|
|
3381
|
+
uri_template: "/v1/{parent}/dbNodes",
|
|
3382
|
+
matches: [
|
|
3383
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/cloudVmClusters/[^/]+/?$}, false]
|
|
3384
|
+
]
|
|
3385
|
+
)
|
|
3386
|
+
.with_bindings(
|
|
3387
|
+
uri_method: :get,
|
|
3388
|
+
uri_template: "/v1/{parent}/dbNodes",
|
|
3389
|
+
matches: [
|
|
3390
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/exadbVmClusters/[^/]+/?$}, false]
|
|
3391
|
+
]
|
|
3392
|
+
)
|
|
3393
|
+
transcoder.transcode request_pb
|
|
3394
|
+
end
|
|
3395
|
+
|
|
3396
|
+
##
|
|
3397
|
+
# @private
|
|
3398
|
+
#
|
|
3399
|
+
# GRPC transcoding helper method for the list_gi_versions REST call
|
|
3400
|
+
#
|
|
3401
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListGiVersionsRequest]
|
|
3402
|
+
# A request object representing the call parameters. Required.
|
|
3403
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3404
|
+
# Uri, Body, Query string parameters
|
|
3405
|
+
def self.transcode_list_gi_versions_request request_pb
|
|
3406
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3407
|
+
.with_bindings(
|
|
3408
|
+
uri_method: :get,
|
|
3409
|
+
uri_template: "/v1/{parent}/giVersions",
|
|
3410
|
+
matches: [
|
|
3411
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3412
|
+
]
|
|
3413
|
+
)
|
|
3414
|
+
transcoder.transcode request_pb
|
|
3415
|
+
end
|
|
3416
|
+
|
|
3417
|
+
##
|
|
3418
|
+
# @private
|
|
3419
|
+
#
|
|
3420
|
+
# GRPC transcoding helper method for the list_minor_versions REST call
|
|
3421
|
+
#
|
|
3422
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListMinorVersionsRequest]
|
|
3423
|
+
# A request object representing the call parameters. Required.
|
|
3424
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3425
|
+
# Uri, Body, Query string parameters
|
|
3426
|
+
def self.transcode_list_minor_versions_request request_pb
|
|
3427
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3428
|
+
.with_bindings(
|
|
3429
|
+
uri_method: :get,
|
|
3430
|
+
uri_template: "/v1/{parent}/minorVersions",
|
|
3431
|
+
matches: [
|
|
3432
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/giVersions/[^/]+/?$}, false]
|
|
3433
|
+
]
|
|
3434
|
+
)
|
|
3435
|
+
transcoder.transcode request_pb
|
|
3436
|
+
end
|
|
3437
|
+
|
|
3438
|
+
##
|
|
3439
|
+
# @private
|
|
3440
|
+
#
|
|
3441
|
+
# GRPC transcoding helper method for the list_db_system_shapes REST call
|
|
3442
|
+
#
|
|
3443
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListDbSystemShapesRequest]
|
|
3444
|
+
# A request object representing the call parameters. Required.
|
|
3445
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3446
|
+
# Uri, Body, Query string parameters
|
|
3447
|
+
def self.transcode_list_db_system_shapes_request request_pb
|
|
3448
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3449
|
+
.with_bindings(
|
|
3450
|
+
uri_method: :get,
|
|
3451
|
+
uri_template: "/v1/{parent}/dbSystemShapes",
|
|
3452
|
+
matches: [
|
|
3453
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3454
|
+
]
|
|
3455
|
+
)
|
|
3456
|
+
transcoder.transcode request_pb
|
|
3457
|
+
end
|
|
3458
|
+
|
|
3459
|
+
##
|
|
3460
|
+
# @private
|
|
3461
|
+
#
|
|
3462
|
+
# GRPC transcoding helper method for the list_autonomous_databases REST call
|
|
3463
|
+
#
|
|
3464
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListAutonomousDatabasesRequest]
|
|
3465
|
+
# A request object representing the call parameters. Required.
|
|
3466
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3467
|
+
# Uri, Body, Query string parameters
|
|
3468
|
+
def self.transcode_list_autonomous_databases_request request_pb
|
|
3469
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3470
|
+
.with_bindings(
|
|
3471
|
+
uri_method: :get,
|
|
3472
|
+
uri_template: "/v1/{parent}/autonomousDatabases",
|
|
3473
|
+
matches: [
|
|
3474
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3475
|
+
]
|
|
3476
|
+
)
|
|
3477
|
+
transcoder.transcode request_pb
|
|
3478
|
+
end
|
|
3479
|
+
|
|
3480
|
+
##
|
|
3481
|
+
# @private
|
|
3482
|
+
#
|
|
3483
|
+
# GRPC transcoding helper method for the get_autonomous_database REST call
|
|
3484
|
+
#
|
|
3485
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetAutonomousDatabaseRequest]
|
|
3486
|
+
# A request object representing the call parameters. Required.
|
|
3487
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3488
|
+
# Uri, Body, Query string parameters
|
|
3489
|
+
def self.transcode_get_autonomous_database_request request_pb
|
|
3490
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3491
|
+
.with_bindings(
|
|
3492
|
+
uri_method: :get,
|
|
3493
|
+
uri_template: "/v1/{name}",
|
|
3494
|
+
matches: [
|
|
3495
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/autonomousDatabases/[^/]+/?$}, false]
|
|
3496
|
+
]
|
|
3497
|
+
)
|
|
3498
|
+
transcoder.transcode request_pb
|
|
3499
|
+
end
|
|
3500
|
+
|
|
3501
|
+
##
|
|
3502
|
+
# @private
|
|
3503
|
+
#
|
|
3504
|
+
# GRPC transcoding helper method for the create_autonomous_database REST call
|
|
3505
|
+
#
|
|
3506
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::CreateAutonomousDatabaseRequest]
|
|
3507
|
+
# A request object representing the call parameters. Required.
|
|
3508
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3509
|
+
# Uri, Body, Query string parameters
|
|
3510
|
+
def self.transcode_create_autonomous_database_request request_pb
|
|
3511
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3512
|
+
.with_bindings(
|
|
3513
|
+
uri_method: :post,
|
|
3514
|
+
uri_template: "/v1/{parent}/autonomousDatabases",
|
|
3515
|
+
body: "autonomous_database",
|
|
3516
|
+
matches: [
|
|
3517
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3518
|
+
]
|
|
3519
|
+
)
|
|
3520
|
+
transcoder.transcode request_pb
|
|
3521
|
+
end
|
|
3522
|
+
|
|
3523
|
+
##
|
|
3524
|
+
# @private
|
|
3525
|
+
#
|
|
3526
|
+
# GRPC transcoding helper method for the update_autonomous_database REST call
|
|
3527
|
+
#
|
|
3528
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::UpdateAutonomousDatabaseRequest]
|
|
3529
|
+
# A request object representing the call parameters. Required.
|
|
3530
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3531
|
+
# Uri, Body, Query string parameters
|
|
3532
|
+
def self.transcode_update_autonomous_database_request request_pb
|
|
3533
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3534
|
+
.with_bindings(
|
|
3535
|
+
uri_method: :patch,
|
|
3536
|
+
uri_template: "/v1/{autonomous_database.name}",
|
|
3537
|
+
body: "autonomous_database",
|
|
3538
|
+
matches: [
|
|
3539
|
+
["autonomous_database.name", %r{^projects/[^/]+/locations/[^/]+/autonomousDatabases/[^/]+/?$}, false]
|
|
3540
|
+
]
|
|
3541
|
+
)
|
|
3542
|
+
transcoder.transcode request_pb
|
|
3543
|
+
end
|
|
3544
|
+
|
|
3545
|
+
##
|
|
3546
|
+
# @private
|
|
3547
|
+
#
|
|
3548
|
+
# GRPC transcoding helper method for the delete_autonomous_database REST call
|
|
3549
|
+
#
|
|
3550
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::DeleteAutonomousDatabaseRequest]
|
|
3551
|
+
# A request object representing the call parameters. Required.
|
|
3552
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3553
|
+
# Uri, Body, Query string parameters
|
|
3554
|
+
def self.transcode_delete_autonomous_database_request request_pb
|
|
3555
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2471
3556
|
.with_bindings(
|
|
2472
3557
|
uri_method: :delete,
|
|
2473
3558
|
uri_template: "/v1/{name}",
|
|
2474
3559
|
matches: [
|
|
2475
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/
|
|
3560
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/autonomousDatabases/[^/]+/?$}, false]
|
|
3561
|
+
]
|
|
3562
|
+
)
|
|
3563
|
+
transcoder.transcode request_pb
|
|
3564
|
+
end
|
|
3565
|
+
|
|
3566
|
+
##
|
|
3567
|
+
# @private
|
|
3568
|
+
#
|
|
3569
|
+
# GRPC transcoding helper method for the restore_autonomous_database REST call
|
|
3570
|
+
#
|
|
3571
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::RestoreAutonomousDatabaseRequest]
|
|
3572
|
+
# A request object representing the call parameters. Required.
|
|
3573
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3574
|
+
# Uri, Body, Query string parameters
|
|
3575
|
+
def self.transcode_restore_autonomous_database_request request_pb
|
|
3576
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3577
|
+
.with_bindings(
|
|
3578
|
+
uri_method: :post,
|
|
3579
|
+
uri_template: "/v1/{name}:restore",
|
|
3580
|
+
body: "*",
|
|
3581
|
+
matches: [
|
|
3582
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/autonomousDatabases/[^/]+/?$}, false]
|
|
3583
|
+
]
|
|
3584
|
+
)
|
|
3585
|
+
transcoder.transcode request_pb
|
|
3586
|
+
end
|
|
3587
|
+
|
|
3588
|
+
##
|
|
3589
|
+
# @private
|
|
3590
|
+
#
|
|
3591
|
+
# GRPC transcoding helper method for the generate_autonomous_database_wallet REST call
|
|
3592
|
+
#
|
|
3593
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GenerateAutonomousDatabaseWalletRequest]
|
|
3594
|
+
# A request object representing the call parameters. Required.
|
|
3595
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3596
|
+
# Uri, Body, Query string parameters
|
|
3597
|
+
def self.transcode_generate_autonomous_database_wallet_request request_pb
|
|
3598
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3599
|
+
.with_bindings(
|
|
3600
|
+
uri_method: :post,
|
|
3601
|
+
uri_template: "/v1/{name}:generateWallet",
|
|
3602
|
+
body: "*",
|
|
3603
|
+
matches: [
|
|
3604
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/autonomousDatabases/[^/]+/?$}, false]
|
|
3605
|
+
]
|
|
3606
|
+
)
|
|
3607
|
+
transcoder.transcode request_pb
|
|
3608
|
+
end
|
|
3609
|
+
|
|
3610
|
+
##
|
|
3611
|
+
# @private
|
|
3612
|
+
#
|
|
3613
|
+
# GRPC transcoding helper method for the list_autonomous_db_versions REST call
|
|
3614
|
+
#
|
|
3615
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListAutonomousDbVersionsRequest]
|
|
3616
|
+
# A request object representing the call parameters. Required.
|
|
3617
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3618
|
+
# Uri, Body, Query string parameters
|
|
3619
|
+
def self.transcode_list_autonomous_db_versions_request request_pb
|
|
3620
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3621
|
+
.with_bindings(
|
|
3622
|
+
uri_method: :get,
|
|
3623
|
+
uri_template: "/v1/{parent}/autonomousDbVersions",
|
|
3624
|
+
matches: [
|
|
3625
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3626
|
+
]
|
|
3627
|
+
)
|
|
3628
|
+
transcoder.transcode request_pb
|
|
3629
|
+
end
|
|
3630
|
+
|
|
3631
|
+
##
|
|
3632
|
+
# @private
|
|
3633
|
+
#
|
|
3634
|
+
# GRPC transcoding helper method for the list_autonomous_database_character_sets REST call
|
|
3635
|
+
#
|
|
3636
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListAutonomousDatabaseCharacterSetsRequest]
|
|
3637
|
+
# A request object representing the call parameters. Required.
|
|
3638
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3639
|
+
# Uri, Body, Query string parameters
|
|
3640
|
+
def self.transcode_list_autonomous_database_character_sets_request request_pb
|
|
3641
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3642
|
+
.with_bindings(
|
|
3643
|
+
uri_method: :get,
|
|
3644
|
+
uri_template: "/v1/{parent}/autonomousDatabaseCharacterSets",
|
|
3645
|
+
matches: [
|
|
3646
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
2476
3647
|
]
|
|
2477
3648
|
)
|
|
2478
3649
|
transcoder.transcode request_pb
|
|
@@ -2481,17 +3652,17 @@ module Google
|
|
|
2481
3652
|
##
|
|
2482
3653
|
# @private
|
|
2483
3654
|
#
|
|
2484
|
-
# GRPC transcoding helper method for the
|
|
3655
|
+
# GRPC transcoding helper method for the list_autonomous_database_backups REST call
|
|
2485
3656
|
#
|
|
2486
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
3657
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListAutonomousDatabaseBackupsRequest]
|
|
2487
3658
|
# A request object representing the call parameters. Required.
|
|
2488
3659
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2489
3660
|
# Uri, Body, Query string parameters
|
|
2490
|
-
def self.
|
|
3661
|
+
def self.transcode_list_autonomous_database_backups_request request_pb
|
|
2491
3662
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2492
3663
|
.with_bindings(
|
|
2493
3664
|
uri_method: :get,
|
|
2494
|
-
uri_template: "/v1/{parent}/
|
|
3665
|
+
uri_template: "/v1/{parent}/autonomousDatabaseBackups",
|
|
2495
3666
|
matches: [
|
|
2496
3667
|
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
2497
3668
|
]
|
|
@@ -2502,19 +3673,20 @@ module Google
|
|
|
2502
3673
|
##
|
|
2503
3674
|
# @private
|
|
2504
3675
|
#
|
|
2505
|
-
# GRPC transcoding helper method for the
|
|
3676
|
+
# GRPC transcoding helper method for the stop_autonomous_database REST call
|
|
2506
3677
|
#
|
|
2507
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
3678
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::StopAutonomousDatabaseRequest]
|
|
2508
3679
|
# A request object representing the call parameters. Required.
|
|
2509
3680
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2510
3681
|
# Uri, Body, Query string parameters
|
|
2511
|
-
def self.
|
|
3682
|
+
def self.transcode_stop_autonomous_database_request request_pb
|
|
2512
3683
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2513
3684
|
.with_bindings(
|
|
2514
|
-
uri_method: :
|
|
2515
|
-
uri_template: "/v1/{name}",
|
|
3685
|
+
uri_method: :post,
|
|
3686
|
+
uri_template: "/v1/{name}:stop",
|
|
3687
|
+
body: "*",
|
|
2516
3688
|
matches: [
|
|
2517
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/
|
|
3689
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/autonomousDatabases/[^/]+/?$}, false]
|
|
2518
3690
|
]
|
|
2519
3691
|
)
|
|
2520
3692
|
transcoder.transcode request_pb
|
|
@@ -2523,20 +3695,20 @@ module Google
|
|
|
2523
3695
|
##
|
|
2524
3696
|
# @private
|
|
2525
3697
|
#
|
|
2526
|
-
# GRPC transcoding helper method for the
|
|
3698
|
+
# GRPC transcoding helper method for the start_autonomous_database REST call
|
|
2527
3699
|
#
|
|
2528
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
3700
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::StartAutonomousDatabaseRequest]
|
|
2529
3701
|
# A request object representing the call parameters. Required.
|
|
2530
3702
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2531
3703
|
# Uri, Body, Query string parameters
|
|
2532
|
-
def self.
|
|
3704
|
+
def self.transcode_start_autonomous_database_request request_pb
|
|
2533
3705
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2534
3706
|
.with_bindings(
|
|
2535
3707
|
uri_method: :post,
|
|
2536
|
-
uri_template: "/v1/{
|
|
2537
|
-
body: "
|
|
3708
|
+
uri_template: "/v1/{name}:start",
|
|
3709
|
+
body: "*",
|
|
2538
3710
|
matches: [
|
|
2539
|
-
["
|
|
3711
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/autonomousDatabases/[^/]+/?$}, false]
|
|
2540
3712
|
]
|
|
2541
3713
|
)
|
|
2542
3714
|
transcoder.transcode request_pb
|
|
@@ -2545,19 +3717,20 @@ module Google
|
|
|
2545
3717
|
##
|
|
2546
3718
|
# @private
|
|
2547
3719
|
#
|
|
2548
|
-
# GRPC transcoding helper method for the
|
|
3720
|
+
# GRPC transcoding helper method for the restart_autonomous_database REST call
|
|
2549
3721
|
#
|
|
2550
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
3722
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::RestartAutonomousDatabaseRequest]
|
|
2551
3723
|
# A request object representing the call parameters. Required.
|
|
2552
3724
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2553
3725
|
# Uri, Body, Query string parameters
|
|
2554
|
-
def self.
|
|
3726
|
+
def self.transcode_restart_autonomous_database_request request_pb
|
|
2555
3727
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2556
3728
|
.with_bindings(
|
|
2557
|
-
uri_method: :
|
|
2558
|
-
uri_template: "/v1/{name}",
|
|
3729
|
+
uri_method: :post,
|
|
3730
|
+
uri_template: "/v1/{name}:restart",
|
|
3731
|
+
body: "*",
|
|
2559
3732
|
matches: [
|
|
2560
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/
|
|
3733
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/autonomousDatabases/[^/]+/?$}, false]
|
|
2561
3734
|
]
|
|
2562
3735
|
)
|
|
2563
3736
|
transcoder.transcode request_pb
|
|
@@ -2566,19 +3739,20 @@ module Google
|
|
|
2566
3739
|
##
|
|
2567
3740
|
# @private
|
|
2568
3741
|
#
|
|
2569
|
-
# GRPC transcoding helper method for the
|
|
3742
|
+
# GRPC transcoding helper method for the switchover_autonomous_database REST call
|
|
2570
3743
|
#
|
|
2571
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
3744
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::SwitchoverAutonomousDatabaseRequest]
|
|
2572
3745
|
# A request object representing the call parameters. Required.
|
|
2573
3746
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2574
3747
|
# Uri, Body, Query string parameters
|
|
2575
|
-
def self.
|
|
3748
|
+
def self.transcode_switchover_autonomous_database_request request_pb
|
|
2576
3749
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2577
3750
|
.with_bindings(
|
|
2578
|
-
uri_method: :
|
|
2579
|
-
uri_template: "/v1/{
|
|
3751
|
+
uri_method: :post,
|
|
3752
|
+
uri_template: "/v1/{name}:switchover",
|
|
3753
|
+
body: "*",
|
|
2580
3754
|
matches: [
|
|
2581
|
-
["
|
|
3755
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/autonomousDatabases/[^/]+/?$}, false]
|
|
2582
3756
|
]
|
|
2583
3757
|
)
|
|
2584
3758
|
transcoder.transcode request_pb
|
|
@@ -2587,19 +3761,20 @@ module Google
|
|
|
2587
3761
|
##
|
|
2588
3762
|
# @private
|
|
2589
3763
|
#
|
|
2590
|
-
# GRPC transcoding helper method for the
|
|
3764
|
+
# GRPC transcoding helper method for the failover_autonomous_database REST call
|
|
2591
3765
|
#
|
|
2592
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
3766
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::FailoverAutonomousDatabaseRequest]
|
|
2593
3767
|
# A request object representing the call parameters. Required.
|
|
2594
3768
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2595
3769
|
# Uri, Body, Query string parameters
|
|
2596
|
-
def self.
|
|
3770
|
+
def self.transcode_failover_autonomous_database_request request_pb
|
|
2597
3771
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2598
3772
|
.with_bindings(
|
|
2599
|
-
uri_method: :
|
|
2600
|
-
uri_template: "/v1/{
|
|
3773
|
+
uri_method: :post,
|
|
3774
|
+
uri_template: "/v1/{name}:failover",
|
|
3775
|
+
body: "*",
|
|
2601
3776
|
matches: [
|
|
2602
|
-
["
|
|
3777
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/autonomousDatabases/[^/]+/?$}, false]
|
|
2603
3778
|
]
|
|
2604
3779
|
)
|
|
2605
3780
|
transcoder.transcode request_pb
|
|
@@ -2608,26 +3783,19 @@ module Google
|
|
|
2608
3783
|
##
|
|
2609
3784
|
# @private
|
|
2610
3785
|
#
|
|
2611
|
-
# GRPC transcoding helper method for the
|
|
3786
|
+
# GRPC transcoding helper method for the list_odb_networks REST call
|
|
2612
3787
|
#
|
|
2613
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
3788
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListOdbNetworksRequest]
|
|
2614
3789
|
# A request object representing the call parameters. Required.
|
|
2615
3790
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2616
3791
|
# Uri, Body, Query string parameters
|
|
2617
|
-
def self.
|
|
3792
|
+
def self.transcode_list_odb_networks_request request_pb
|
|
2618
3793
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2619
3794
|
.with_bindings(
|
|
2620
3795
|
uri_method: :get,
|
|
2621
|
-
uri_template: "/v1/{parent}/
|
|
2622
|
-
matches: [
|
|
2623
|
-
["parent", %r{^projects/[^/]+/locations/[^/]+/cloudVmClusters/[^/]+/?$}, false]
|
|
2624
|
-
]
|
|
2625
|
-
)
|
|
2626
|
-
.with_bindings(
|
|
2627
|
-
uri_method: :get,
|
|
2628
|
-
uri_template: "/v1/{parent}/dbNodes",
|
|
3796
|
+
uri_template: "/v1/{parent}/odbNetworks",
|
|
2629
3797
|
matches: [
|
|
2630
|
-
["parent", %r{^projects/[^/]+/locations/[^/]
|
|
3798
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
2631
3799
|
]
|
|
2632
3800
|
)
|
|
2633
3801
|
transcoder.transcode request_pb
|
|
@@ -2636,19 +3804,19 @@ module Google
|
|
|
2636
3804
|
##
|
|
2637
3805
|
# @private
|
|
2638
3806
|
#
|
|
2639
|
-
# GRPC transcoding helper method for the
|
|
3807
|
+
# GRPC transcoding helper method for the get_odb_network REST call
|
|
2640
3808
|
#
|
|
2641
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
3809
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetOdbNetworkRequest]
|
|
2642
3810
|
# A request object representing the call parameters. Required.
|
|
2643
3811
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2644
3812
|
# Uri, Body, Query string parameters
|
|
2645
|
-
def self.
|
|
3813
|
+
def self.transcode_get_odb_network_request request_pb
|
|
2646
3814
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2647
3815
|
.with_bindings(
|
|
2648
3816
|
uri_method: :get,
|
|
2649
|
-
uri_template: "/v1/{
|
|
3817
|
+
uri_template: "/v1/{name}",
|
|
2650
3818
|
matches: [
|
|
2651
|
-
["
|
|
3819
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/odbNetworks/[^/]+/?$}, false]
|
|
2652
3820
|
]
|
|
2653
3821
|
)
|
|
2654
3822
|
transcoder.transcode request_pb
|
|
@@ -2657,19 +3825,20 @@ module Google
|
|
|
2657
3825
|
##
|
|
2658
3826
|
# @private
|
|
2659
3827
|
#
|
|
2660
|
-
# GRPC transcoding helper method for the
|
|
3828
|
+
# GRPC transcoding helper method for the create_odb_network REST call
|
|
2661
3829
|
#
|
|
2662
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
3830
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::CreateOdbNetworkRequest]
|
|
2663
3831
|
# A request object representing the call parameters. Required.
|
|
2664
3832
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2665
3833
|
# Uri, Body, Query string parameters
|
|
2666
|
-
def self.
|
|
3834
|
+
def self.transcode_create_odb_network_request request_pb
|
|
2667
3835
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2668
3836
|
.with_bindings(
|
|
2669
|
-
uri_method: :
|
|
2670
|
-
uri_template: "/v1/{parent}/
|
|
3837
|
+
uri_method: :post,
|
|
3838
|
+
uri_template: "/v1/{parent}/odbNetworks",
|
|
3839
|
+
body: "odb_network",
|
|
2671
3840
|
matches: [
|
|
2672
|
-
["parent", %r{^projects/[^/]+/locations/[^/]
|
|
3841
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
2673
3842
|
]
|
|
2674
3843
|
)
|
|
2675
3844
|
transcoder.transcode request_pb
|
|
@@ -2678,19 +3847,19 @@ module Google
|
|
|
2678
3847
|
##
|
|
2679
3848
|
# @private
|
|
2680
3849
|
#
|
|
2681
|
-
# GRPC transcoding helper method for the
|
|
3850
|
+
# GRPC transcoding helper method for the delete_odb_network REST call
|
|
2682
3851
|
#
|
|
2683
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
3852
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::DeleteOdbNetworkRequest]
|
|
2684
3853
|
# A request object representing the call parameters. Required.
|
|
2685
3854
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2686
3855
|
# Uri, Body, Query string parameters
|
|
2687
|
-
def self.
|
|
3856
|
+
def self.transcode_delete_odb_network_request request_pb
|
|
2688
3857
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2689
3858
|
.with_bindings(
|
|
2690
|
-
uri_method: :
|
|
2691
|
-
uri_template: "/v1/{
|
|
3859
|
+
uri_method: :delete,
|
|
3860
|
+
uri_template: "/v1/{name}",
|
|
2692
3861
|
matches: [
|
|
2693
|
-
["
|
|
3862
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/odbNetworks/[^/]+/?$}, false]
|
|
2694
3863
|
]
|
|
2695
3864
|
)
|
|
2696
3865
|
transcoder.transcode request_pb
|
|
@@ -2699,19 +3868,19 @@ module Google
|
|
|
2699
3868
|
##
|
|
2700
3869
|
# @private
|
|
2701
3870
|
#
|
|
2702
|
-
# GRPC transcoding helper method for the
|
|
3871
|
+
# GRPC transcoding helper method for the list_odb_subnets REST call
|
|
2703
3872
|
#
|
|
2704
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
3873
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListOdbSubnetsRequest]
|
|
2705
3874
|
# A request object representing the call parameters. Required.
|
|
2706
3875
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2707
3876
|
# Uri, Body, Query string parameters
|
|
2708
|
-
def self.
|
|
3877
|
+
def self.transcode_list_odb_subnets_request request_pb
|
|
2709
3878
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2710
3879
|
.with_bindings(
|
|
2711
3880
|
uri_method: :get,
|
|
2712
|
-
uri_template: "/v1/{parent}/
|
|
3881
|
+
uri_template: "/v1/{parent}/odbSubnets",
|
|
2713
3882
|
matches: [
|
|
2714
|
-
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3883
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/odbNetworks/[^/]+/?$}, false]
|
|
2715
3884
|
]
|
|
2716
3885
|
)
|
|
2717
3886
|
transcoder.transcode request_pb
|
|
@@ -2720,19 +3889,19 @@ module Google
|
|
|
2720
3889
|
##
|
|
2721
3890
|
# @private
|
|
2722
3891
|
#
|
|
2723
|
-
# GRPC transcoding helper method for the
|
|
3892
|
+
# GRPC transcoding helper method for the get_odb_subnet REST call
|
|
2724
3893
|
#
|
|
2725
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
3894
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetOdbSubnetRequest]
|
|
2726
3895
|
# A request object representing the call parameters. Required.
|
|
2727
3896
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2728
3897
|
# Uri, Body, Query string parameters
|
|
2729
|
-
def self.
|
|
3898
|
+
def self.transcode_get_odb_subnet_request request_pb
|
|
2730
3899
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2731
3900
|
.with_bindings(
|
|
2732
3901
|
uri_method: :get,
|
|
2733
3902
|
uri_template: "/v1/{name}",
|
|
2734
3903
|
matches: [
|
|
2735
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/
|
|
3904
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/odbNetworks/[^/]+/odbSubnets/[^/]+/?$}, false]
|
|
2736
3905
|
]
|
|
2737
3906
|
)
|
|
2738
3907
|
transcoder.transcode request_pb
|
|
@@ -2741,20 +3910,20 @@ module Google
|
|
|
2741
3910
|
##
|
|
2742
3911
|
# @private
|
|
2743
3912
|
#
|
|
2744
|
-
# GRPC transcoding helper method for the
|
|
3913
|
+
# GRPC transcoding helper method for the create_odb_subnet REST call
|
|
2745
3914
|
#
|
|
2746
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
3915
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::CreateOdbSubnetRequest]
|
|
2747
3916
|
# A request object representing the call parameters. Required.
|
|
2748
3917
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2749
3918
|
# Uri, Body, Query string parameters
|
|
2750
|
-
def self.
|
|
3919
|
+
def self.transcode_create_odb_subnet_request request_pb
|
|
2751
3920
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2752
3921
|
.with_bindings(
|
|
2753
3922
|
uri_method: :post,
|
|
2754
|
-
uri_template: "/v1/{parent}/
|
|
2755
|
-
body: "
|
|
3923
|
+
uri_template: "/v1/{parent}/odbSubnets",
|
|
3924
|
+
body: "odb_subnet",
|
|
2756
3925
|
matches: [
|
|
2757
|
-
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3926
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/odbNetworks/[^/]+/?$}, false]
|
|
2758
3927
|
]
|
|
2759
3928
|
)
|
|
2760
3929
|
transcoder.transcode request_pb
|
|
@@ -2763,20 +3932,19 @@ module Google
|
|
|
2763
3932
|
##
|
|
2764
3933
|
# @private
|
|
2765
3934
|
#
|
|
2766
|
-
# GRPC transcoding helper method for the
|
|
3935
|
+
# GRPC transcoding helper method for the delete_odb_subnet REST call
|
|
2767
3936
|
#
|
|
2768
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
3937
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::DeleteOdbSubnetRequest]
|
|
2769
3938
|
# A request object representing the call parameters. Required.
|
|
2770
3939
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2771
3940
|
# Uri, Body, Query string parameters
|
|
2772
|
-
def self.
|
|
3941
|
+
def self.transcode_delete_odb_subnet_request request_pb
|
|
2773
3942
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2774
3943
|
.with_bindings(
|
|
2775
|
-
uri_method: :
|
|
2776
|
-
uri_template: "/v1/{
|
|
2777
|
-
body: "autonomous_database",
|
|
3944
|
+
uri_method: :delete,
|
|
3945
|
+
uri_template: "/v1/{name}",
|
|
2778
3946
|
matches: [
|
|
2779
|
-
["
|
|
3947
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/odbNetworks/[^/]+/odbSubnets/[^/]+/?$}, false]
|
|
2780
3948
|
]
|
|
2781
3949
|
)
|
|
2782
3950
|
transcoder.transcode request_pb
|
|
@@ -2785,19 +3953,19 @@ module Google
|
|
|
2785
3953
|
##
|
|
2786
3954
|
# @private
|
|
2787
3955
|
#
|
|
2788
|
-
# GRPC transcoding helper method for the
|
|
3956
|
+
# GRPC transcoding helper method for the list_exadb_vm_clusters REST call
|
|
2789
3957
|
#
|
|
2790
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
3958
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListExadbVmClustersRequest]
|
|
2791
3959
|
# A request object representing the call parameters. Required.
|
|
2792
3960
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2793
3961
|
# Uri, Body, Query string parameters
|
|
2794
|
-
def self.
|
|
3962
|
+
def self.transcode_list_exadb_vm_clusters_request request_pb
|
|
2795
3963
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2796
3964
|
.with_bindings(
|
|
2797
|
-
uri_method: :
|
|
2798
|
-
uri_template: "/v1/{
|
|
3965
|
+
uri_method: :get,
|
|
3966
|
+
uri_template: "/v1/{parent}/exadbVmClusters",
|
|
2799
3967
|
matches: [
|
|
2800
|
-
["
|
|
3968
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
2801
3969
|
]
|
|
2802
3970
|
)
|
|
2803
3971
|
transcoder.transcode request_pb
|
|
@@ -2806,20 +3974,19 @@ module Google
|
|
|
2806
3974
|
##
|
|
2807
3975
|
# @private
|
|
2808
3976
|
#
|
|
2809
|
-
# GRPC transcoding helper method for the
|
|
3977
|
+
# GRPC transcoding helper method for the get_exadb_vm_cluster REST call
|
|
2810
3978
|
#
|
|
2811
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
3979
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetExadbVmClusterRequest]
|
|
2812
3980
|
# A request object representing the call parameters. Required.
|
|
2813
3981
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2814
3982
|
# Uri, Body, Query string parameters
|
|
2815
|
-
def self.
|
|
3983
|
+
def self.transcode_get_exadb_vm_cluster_request request_pb
|
|
2816
3984
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2817
3985
|
.with_bindings(
|
|
2818
|
-
uri_method: :
|
|
2819
|
-
uri_template: "/v1/{name}
|
|
2820
|
-
body: "*",
|
|
3986
|
+
uri_method: :get,
|
|
3987
|
+
uri_template: "/v1/{name}",
|
|
2821
3988
|
matches: [
|
|
2822
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/
|
|
3989
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/exadbVmClusters/[^/]+/?$}, false]
|
|
2823
3990
|
]
|
|
2824
3991
|
)
|
|
2825
3992
|
transcoder.transcode request_pb
|
|
@@ -2828,20 +3995,20 @@ module Google
|
|
|
2828
3995
|
##
|
|
2829
3996
|
# @private
|
|
2830
3997
|
#
|
|
2831
|
-
# GRPC transcoding helper method for the
|
|
3998
|
+
# GRPC transcoding helper method for the create_exadb_vm_cluster REST call
|
|
2832
3999
|
#
|
|
2833
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4000
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::CreateExadbVmClusterRequest]
|
|
2834
4001
|
# A request object representing the call parameters. Required.
|
|
2835
4002
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2836
4003
|
# Uri, Body, Query string parameters
|
|
2837
|
-
def self.
|
|
4004
|
+
def self.transcode_create_exadb_vm_cluster_request request_pb
|
|
2838
4005
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2839
4006
|
.with_bindings(
|
|
2840
4007
|
uri_method: :post,
|
|
2841
|
-
uri_template: "/v1/{
|
|
2842
|
-
body: "
|
|
4008
|
+
uri_template: "/v1/{parent}/exadbVmClusters",
|
|
4009
|
+
body: "exadb_vm_cluster",
|
|
2843
4010
|
matches: [
|
|
2844
|
-
["
|
|
4011
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
2845
4012
|
]
|
|
2846
4013
|
)
|
|
2847
4014
|
transcoder.transcode request_pb
|
|
@@ -2850,19 +4017,19 @@ module Google
|
|
|
2850
4017
|
##
|
|
2851
4018
|
# @private
|
|
2852
4019
|
#
|
|
2853
|
-
# GRPC transcoding helper method for the
|
|
4020
|
+
# GRPC transcoding helper method for the delete_exadb_vm_cluster REST call
|
|
2854
4021
|
#
|
|
2855
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4022
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::DeleteExadbVmClusterRequest]
|
|
2856
4023
|
# A request object representing the call parameters. Required.
|
|
2857
4024
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2858
4025
|
# Uri, Body, Query string parameters
|
|
2859
|
-
def self.
|
|
4026
|
+
def self.transcode_delete_exadb_vm_cluster_request request_pb
|
|
2860
4027
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2861
4028
|
.with_bindings(
|
|
2862
|
-
uri_method: :
|
|
2863
|
-
uri_template: "/v1/{
|
|
4029
|
+
uri_method: :delete,
|
|
4030
|
+
uri_template: "/v1/{name}",
|
|
2864
4031
|
matches: [
|
|
2865
|
-
["
|
|
4032
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/exadbVmClusters/[^/]+/?$}, false]
|
|
2866
4033
|
]
|
|
2867
4034
|
)
|
|
2868
4035
|
transcoder.transcode request_pb
|
|
@@ -2871,19 +4038,20 @@ module Google
|
|
|
2871
4038
|
##
|
|
2872
4039
|
# @private
|
|
2873
4040
|
#
|
|
2874
|
-
# GRPC transcoding helper method for the
|
|
4041
|
+
# GRPC transcoding helper method for the update_exadb_vm_cluster REST call
|
|
2875
4042
|
#
|
|
2876
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4043
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::UpdateExadbVmClusterRequest]
|
|
2877
4044
|
# A request object representing the call parameters. Required.
|
|
2878
4045
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2879
4046
|
# Uri, Body, Query string parameters
|
|
2880
|
-
def self.
|
|
4047
|
+
def self.transcode_update_exadb_vm_cluster_request request_pb
|
|
2881
4048
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2882
4049
|
.with_bindings(
|
|
2883
|
-
uri_method: :
|
|
2884
|
-
uri_template: "/v1/{
|
|
4050
|
+
uri_method: :patch,
|
|
4051
|
+
uri_template: "/v1/{exadb_vm_cluster.name}",
|
|
4052
|
+
body: "exadb_vm_cluster",
|
|
2885
4053
|
matches: [
|
|
2886
|
-
["
|
|
4054
|
+
["exadb_vm_cluster.name", %r{^projects/[^/]+/locations/[^/]+/exadbVmClusters/[^/]+/?$}, false]
|
|
2887
4055
|
]
|
|
2888
4056
|
)
|
|
2889
4057
|
transcoder.transcode request_pb
|
|
@@ -2892,19 +4060,20 @@ module Google
|
|
|
2892
4060
|
##
|
|
2893
4061
|
# @private
|
|
2894
4062
|
#
|
|
2895
|
-
# GRPC transcoding helper method for the
|
|
4063
|
+
# GRPC transcoding helper method for the remove_virtual_machine_exadb_vm_cluster REST call
|
|
2896
4064
|
#
|
|
2897
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4065
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::RemoveVirtualMachineExadbVmClusterRequest]
|
|
2898
4066
|
# A request object representing the call parameters. Required.
|
|
2899
4067
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2900
4068
|
# Uri, Body, Query string parameters
|
|
2901
|
-
def self.
|
|
4069
|
+
def self.transcode_remove_virtual_machine_exadb_vm_cluster_request request_pb
|
|
2902
4070
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2903
4071
|
.with_bindings(
|
|
2904
|
-
uri_method: :
|
|
2905
|
-
uri_template: "/v1/{
|
|
4072
|
+
uri_method: :post,
|
|
4073
|
+
uri_template: "/v1/{name}:removeVirtualMachine",
|
|
4074
|
+
body: "*",
|
|
2906
4075
|
matches: [
|
|
2907
|
-
["
|
|
4076
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/exadbVmClusters/[^/]+/?$}, false]
|
|
2908
4077
|
]
|
|
2909
4078
|
)
|
|
2910
4079
|
transcoder.transcode request_pb
|
|
@@ -2913,20 +4082,19 @@ module Google
|
|
|
2913
4082
|
##
|
|
2914
4083
|
# @private
|
|
2915
4084
|
#
|
|
2916
|
-
# GRPC transcoding helper method for the
|
|
4085
|
+
# GRPC transcoding helper method for the list_exascale_db_storage_vaults REST call
|
|
2917
4086
|
#
|
|
2918
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4087
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListExascaleDbStorageVaultsRequest]
|
|
2919
4088
|
# A request object representing the call parameters. Required.
|
|
2920
4089
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2921
4090
|
# Uri, Body, Query string parameters
|
|
2922
|
-
def self.
|
|
4091
|
+
def self.transcode_list_exascale_db_storage_vaults_request request_pb
|
|
2923
4092
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2924
|
-
.with_bindings(
|
|
2925
|
-
uri_method: :
|
|
2926
|
-
uri_template: "/v1/{
|
|
2927
|
-
body: "*",
|
|
4093
|
+
.with_bindings(
|
|
4094
|
+
uri_method: :get,
|
|
4095
|
+
uri_template: "/v1/{parent}/exascaleDbStorageVaults",
|
|
2928
4096
|
matches: [
|
|
2929
|
-
["
|
|
4097
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
2930
4098
|
]
|
|
2931
4099
|
)
|
|
2932
4100
|
transcoder.transcode request_pb
|
|
@@ -2935,20 +4103,19 @@ module Google
|
|
|
2935
4103
|
##
|
|
2936
4104
|
# @private
|
|
2937
4105
|
#
|
|
2938
|
-
# GRPC transcoding helper method for the
|
|
4106
|
+
# GRPC transcoding helper method for the get_exascale_db_storage_vault REST call
|
|
2939
4107
|
#
|
|
2940
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4108
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetExascaleDbStorageVaultRequest]
|
|
2941
4109
|
# A request object representing the call parameters. Required.
|
|
2942
4110
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2943
4111
|
# Uri, Body, Query string parameters
|
|
2944
|
-
def self.
|
|
4112
|
+
def self.transcode_get_exascale_db_storage_vault_request request_pb
|
|
2945
4113
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2946
4114
|
.with_bindings(
|
|
2947
|
-
uri_method: :
|
|
2948
|
-
uri_template: "/v1/{name}
|
|
2949
|
-
body: "*",
|
|
4115
|
+
uri_method: :get,
|
|
4116
|
+
uri_template: "/v1/{name}",
|
|
2950
4117
|
matches: [
|
|
2951
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/
|
|
4118
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/exascaleDbStorageVaults/[^/]+/?$}, false]
|
|
2952
4119
|
]
|
|
2953
4120
|
)
|
|
2954
4121
|
transcoder.transcode request_pb
|
|
@@ -2957,20 +4124,20 @@ module Google
|
|
|
2957
4124
|
##
|
|
2958
4125
|
# @private
|
|
2959
4126
|
#
|
|
2960
|
-
# GRPC transcoding helper method for the
|
|
4127
|
+
# GRPC transcoding helper method for the create_exascale_db_storage_vault REST call
|
|
2961
4128
|
#
|
|
2962
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4129
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::CreateExascaleDbStorageVaultRequest]
|
|
2963
4130
|
# A request object representing the call parameters. Required.
|
|
2964
4131
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2965
4132
|
# Uri, Body, Query string parameters
|
|
2966
|
-
def self.
|
|
4133
|
+
def self.transcode_create_exascale_db_storage_vault_request request_pb
|
|
2967
4134
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2968
4135
|
.with_bindings(
|
|
2969
4136
|
uri_method: :post,
|
|
2970
|
-
uri_template: "/v1/{
|
|
2971
|
-
body: "
|
|
4137
|
+
uri_template: "/v1/{parent}/exascaleDbStorageVaults",
|
|
4138
|
+
body: "exascale_db_storage_vault",
|
|
2972
4139
|
matches: [
|
|
2973
|
-
["
|
|
4140
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
2974
4141
|
]
|
|
2975
4142
|
)
|
|
2976
4143
|
transcoder.transcode request_pb
|
|
@@ -2979,20 +4146,19 @@ module Google
|
|
|
2979
4146
|
##
|
|
2980
4147
|
# @private
|
|
2981
4148
|
#
|
|
2982
|
-
# GRPC transcoding helper method for the
|
|
4149
|
+
# GRPC transcoding helper method for the delete_exascale_db_storage_vault REST call
|
|
2983
4150
|
#
|
|
2984
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4151
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::DeleteExascaleDbStorageVaultRequest]
|
|
2985
4152
|
# A request object representing the call parameters. Required.
|
|
2986
4153
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
2987
4154
|
# Uri, Body, Query string parameters
|
|
2988
|
-
def self.
|
|
4155
|
+
def self.transcode_delete_exascale_db_storage_vault_request request_pb
|
|
2989
4156
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
2990
4157
|
.with_bindings(
|
|
2991
|
-
uri_method: :
|
|
2992
|
-
uri_template: "/v1/{name}
|
|
2993
|
-
body: "*",
|
|
4158
|
+
uri_method: :delete,
|
|
4159
|
+
uri_template: "/v1/{name}",
|
|
2994
4160
|
matches: [
|
|
2995
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/
|
|
4161
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/exascaleDbStorageVaults/[^/]+/?$}, false]
|
|
2996
4162
|
]
|
|
2997
4163
|
)
|
|
2998
4164
|
transcoder.transcode request_pb
|
|
@@ -3001,20 +4167,19 @@ module Google
|
|
|
3001
4167
|
##
|
|
3002
4168
|
# @private
|
|
3003
4169
|
#
|
|
3004
|
-
# GRPC transcoding helper method for the
|
|
4170
|
+
# GRPC transcoding helper method for the list_db_system_initial_storage_sizes REST call
|
|
3005
4171
|
#
|
|
3006
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4172
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListDbSystemInitialStorageSizesRequest]
|
|
3007
4173
|
# A request object representing the call parameters. Required.
|
|
3008
4174
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3009
4175
|
# Uri, Body, Query string parameters
|
|
3010
|
-
def self.
|
|
4176
|
+
def self.transcode_list_db_system_initial_storage_sizes_request request_pb
|
|
3011
4177
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3012
4178
|
.with_bindings(
|
|
3013
|
-
uri_method: :
|
|
3014
|
-
uri_template: "/v1/{
|
|
3015
|
-
body: "*",
|
|
4179
|
+
uri_method: :get,
|
|
4180
|
+
uri_template: "/v1/{parent}/dbSystemInitialStorageSizes",
|
|
3016
4181
|
matches: [
|
|
3017
|
-
["
|
|
4182
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3018
4183
|
]
|
|
3019
4184
|
)
|
|
3020
4185
|
transcoder.transcode request_pb
|
|
@@ -3023,17 +4188,17 @@ module Google
|
|
|
3023
4188
|
##
|
|
3024
4189
|
# @private
|
|
3025
4190
|
#
|
|
3026
|
-
# GRPC transcoding helper method for the
|
|
4191
|
+
# GRPC transcoding helper method for the list_databases REST call
|
|
3027
4192
|
#
|
|
3028
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4193
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListDatabasesRequest]
|
|
3029
4194
|
# A request object representing the call parameters. Required.
|
|
3030
4195
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3031
4196
|
# Uri, Body, Query string parameters
|
|
3032
|
-
def self.
|
|
4197
|
+
def self.transcode_list_databases_request request_pb
|
|
3033
4198
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3034
4199
|
.with_bindings(
|
|
3035
4200
|
uri_method: :get,
|
|
3036
|
-
uri_template: "/v1/{parent}/
|
|
4201
|
+
uri_template: "/v1/{parent}/databases",
|
|
3037
4202
|
matches: [
|
|
3038
4203
|
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3039
4204
|
]
|
|
@@ -3044,19 +4209,19 @@ module Google
|
|
|
3044
4209
|
##
|
|
3045
4210
|
# @private
|
|
3046
4211
|
#
|
|
3047
|
-
# GRPC transcoding helper method for the
|
|
4212
|
+
# GRPC transcoding helper method for the get_database REST call
|
|
3048
4213
|
#
|
|
3049
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4214
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetDatabaseRequest]
|
|
3050
4215
|
# A request object representing the call parameters. Required.
|
|
3051
4216
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3052
4217
|
# Uri, Body, Query string parameters
|
|
3053
|
-
def self.
|
|
4218
|
+
def self.transcode_get_database_request request_pb
|
|
3054
4219
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3055
4220
|
.with_bindings(
|
|
3056
4221
|
uri_method: :get,
|
|
3057
4222
|
uri_template: "/v1/{name}",
|
|
3058
4223
|
matches: [
|
|
3059
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/
|
|
4224
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/databases/[^/]+/?$}, false]
|
|
3060
4225
|
]
|
|
3061
4226
|
)
|
|
3062
4227
|
transcoder.transcode request_pb
|
|
@@ -3065,18 +4230,17 @@ module Google
|
|
|
3065
4230
|
##
|
|
3066
4231
|
# @private
|
|
3067
4232
|
#
|
|
3068
|
-
# GRPC transcoding helper method for the
|
|
4233
|
+
# GRPC transcoding helper method for the list_pluggable_databases REST call
|
|
3069
4234
|
#
|
|
3070
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4235
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListPluggableDatabasesRequest]
|
|
3071
4236
|
# A request object representing the call parameters. Required.
|
|
3072
4237
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3073
4238
|
# Uri, Body, Query string parameters
|
|
3074
|
-
def self.
|
|
4239
|
+
def self.transcode_list_pluggable_databases_request request_pb
|
|
3075
4240
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3076
4241
|
.with_bindings(
|
|
3077
|
-
uri_method: :
|
|
3078
|
-
uri_template: "/v1/{parent}/
|
|
3079
|
-
body: "odb_network",
|
|
4242
|
+
uri_method: :get,
|
|
4243
|
+
uri_template: "/v1/{parent}/pluggableDatabases",
|
|
3080
4244
|
matches: [
|
|
3081
4245
|
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3082
4246
|
]
|
|
@@ -3087,19 +4251,19 @@ module Google
|
|
|
3087
4251
|
##
|
|
3088
4252
|
# @private
|
|
3089
4253
|
#
|
|
3090
|
-
# GRPC transcoding helper method for the
|
|
4254
|
+
# GRPC transcoding helper method for the get_pluggable_database REST call
|
|
3091
4255
|
#
|
|
3092
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4256
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetPluggableDatabaseRequest]
|
|
3093
4257
|
# A request object representing the call parameters. Required.
|
|
3094
4258
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3095
4259
|
# Uri, Body, Query string parameters
|
|
3096
|
-
def self.
|
|
4260
|
+
def self.transcode_get_pluggable_database_request request_pb
|
|
3097
4261
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3098
4262
|
.with_bindings(
|
|
3099
|
-
uri_method: :
|
|
4263
|
+
uri_method: :get,
|
|
3100
4264
|
uri_template: "/v1/{name}",
|
|
3101
4265
|
matches: [
|
|
3102
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/
|
|
4266
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/pluggableDatabases/[^/]+/?$}, false]
|
|
3103
4267
|
]
|
|
3104
4268
|
)
|
|
3105
4269
|
transcoder.transcode request_pb
|
|
@@ -3108,19 +4272,19 @@ module Google
|
|
|
3108
4272
|
##
|
|
3109
4273
|
# @private
|
|
3110
4274
|
#
|
|
3111
|
-
# GRPC transcoding helper method for the
|
|
4275
|
+
# GRPC transcoding helper method for the list_db_systems REST call
|
|
3112
4276
|
#
|
|
3113
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4277
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListDbSystemsRequest]
|
|
3114
4278
|
# A request object representing the call parameters. Required.
|
|
3115
4279
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3116
4280
|
# Uri, Body, Query string parameters
|
|
3117
|
-
def self.
|
|
4281
|
+
def self.transcode_list_db_systems_request request_pb
|
|
3118
4282
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3119
4283
|
.with_bindings(
|
|
3120
4284
|
uri_method: :get,
|
|
3121
|
-
uri_template: "/v1/{parent}/
|
|
4285
|
+
uri_template: "/v1/{parent}/dbSystems",
|
|
3122
4286
|
matches: [
|
|
3123
|
-
["parent", %r{^projects/[^/]+/locations/[^/]
|
|
4287
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3124
4288
|
]
|
|
3125
4289
|
)
|
|
3126
4290
|
transcoder.transcode request_pb
|
|
@@ -3129,19 +4293,19 @@ module Google
|
|
|
3129
4293
|
##
|
|
3130
4294
|
# @private
|
|
3131
4295
|
#
|
|
3132
|
-
# GRPC transcoding helper method for the
|
|
4296
|
+
# GRPC transcoding helper method for the get_db_system REST call
|
|
3133
4297
|
#
|
|
3134
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4298
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetDbSystemRequest]
|
|
3135
4299
|
# A request object representing the call parameters. Required.
|
|
3136
4300
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3137
4301
|
# Uri, Body, Query string parameters
|
|
3138
|
-
def self.
|
|
4302
|
+
def self.transcode_get_db_system_request request_pb
|
|
3139
4303
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3140
4304
|
.with_bindings(
|
|
3141
4305
|
uri_method: :get,
|
|
3142
4306
|
uri_template: "/v1/{name}",
|
|
3143
4307
|
matches: [
|
|
3144
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/
|
|
4308
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/dbSystems/[^/]+/?$}, false]
|
|
3145
4309
|
]
|
|
3146
4310
|
)
|
|
3147
4311
|
transcoder.transcode request_pb
|
|
@@ -3150,20 +4314,20 @@ module Google
|
|
|
3150
4314
|
##
|
|
3151
4315
|
# @private
|
|
3152
4316
|
#
|
|
3153
|
-
# GRPC transcoding helper method for the
|
|
4317
|
+
# GRPC transcoding helper method for the create_db_system REST call
|
|
3154
4318
|
#
|
|
3155
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4319
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::CreateDbSystemRequest]
|
|
3156
4320
|
# A request object representing the call parameters. Required.
|
|
3157
4321
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3158
4322
|
# Uri, Body, Query string parameters
|
|
3159
|
-
def self.
|
|
4323
|
+
def self.transcode_create_db_system_request request_pb
|
|
3160
4324
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3161
4325
|
.with_bindings(
|
|
3162
4326
|
uri_method: :post,
|
|
3163
|
-
uri_template: "/v1/{parent}/
|
|
3164
|
-
body: "
|
|
4327
|
+
uri_template: "/v1/{parent}/dbSystems",
|
|
4328
|
+
body: "db_system",
|
|
3165
4329
|
matches: [
|
|
3166
|
-
["parent", %r{^projects/[^/]+/locations/[^/]
|
|
4330
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3167
4331
|
]
|
|
3168
4332
|
)
|
|
3169
4333
|
transcoder.transcode request_pb
|
|
@@ -3172,19 +4336,19 @@ module Google
|
|
|
3172
4336
|
##
|
|
3173
4337
|
# @private
|
|
3174
4338
|
#
|
|
3175
|
-
# GRPC transcoding helper method for the
|
|
4339
|
+
# GRPC transcoding helper method for the delete_db_system REST call
|
|
3176
4340
|
#
|
|
3177
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4341
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::DeleteDbSystemRequest]
|
|
3178
4342
|
# A request object representing the call parameters. Required.
|
|
3179
4343
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3180
4344
|
# Uri, Body, Query string parameters
|
|
3181
|
-
def self.
|
|
4345
|
+
def self.transcode_delete_db_system_request request_pb
|
|
3182
4346
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3183
4347
|
.with_bindings(
|
|
3184
4348
|
uri_method: :delete,
|
|
3185
4349
|
uri_template: "/v1/{name}",
|
|
3186
4350
|
matches: [
|
|
3187
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/
|
|
4351
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/dbSystems/[^/]+/?$}, false]
|
|
3188
4352
|
]
|
|
3189
4353
|
)
|
|
3190
4354
|
transcoder.transcode request_pb
|
|
@@ -3193,17 +4357,17 @@ module Google
|
|
|
3193
4357
|
##
|
|
3194
4358
|
# @private
|
|
3195
4359
|
#
|
|
3196
|
-
# GRPC transcoding helper method for the
|
|
4360
|
+
# GRPC transcoding helper method for the list_goldengate_deployments REST call
|
|
3197
4361
|
#
|
|
3198
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4362
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentsRequest]
|
|
3199
4363
|
# A request object representing the call parameters. Required.
|
|
3200
4364
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3201
4365
|
# Uri, Body, Query string parameters
|
|
3202
|
-
def self.
|
|
4366
|
+
def self.transcode_list_goldengate_deployments_request request_pb
|
|
3203
4367
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3204
4368
|
.with_bindings(
|
|
3205
4369
|
uri_method: :get,
|
|
3206
|
-
uri_template: "/v1/{parent}/
|
|
4370
|
+
uri_template: "/v1/{parent}/goldengateDeployments",
|
|
3207
4371
|
matches: [
|
|
3208
4372
|
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3209
4373
|
]
|
|
@@ -3214,19 +4378,19 @@ module Google
|
|
|
3214
4378
|
##
|
|
3215
4379
|
# @private
|
|
3216
4380
|
#
|
|
3217
|
-
# GRPC transcoding helper method for the
|
|
4381
|
+
# GRPC transcoding helper method for the get_goldengate_deployment REST call
|
|
3218
4382
|
#
|
|
3219
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4383
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetGoldengateDeploymentRequest]
|
|
3220
4384
|
# A request object representing the call parameters. Required.
|
|
3221
4385
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3222
4386
|
# Uri, Body, Query string parameters
|
|
3223
|
-
def self.
|
|
4387
|
+
def self.transcode_get_goldengate_deployment_request request_pb
|
|
3224
4388
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3225
4389
|
.with_bindings(
|
|
3226
4390
|
uri_method: :get,
|
|
3227
4391
|
uri_template: "/v1/{name}",
|
|
3228
4392
|
matches: [
|
|
3229
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/
|
|
4393
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/goldengateDeployments/[^/]+/?$}, false]
|
|
3230
4394
|
]
|
|
3231
4395
|
)
|
|
3232
4396
|
transcoder.transcode request_pb
|
|
@@ -3235,18 +4399,18 @@ module Google
|
|
|
3235
4399
|
##
|
|
3236
4400
|
# @private
|
|
3237
4401
|
#
|
|
3238
|
-
# GRPC transcoding helper method for the
|
|
4402
|
+
# GRPC transcoding helper method for the create_goldengate_deployment REST call
|
|
3239
4403
|
#
|
|
3240
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4404
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::CreateGoldengateDeploymentRequest]
|
|
3241
4405
|
# A request object representing the call parameters. Required.
|
|
3242
4406
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3243
4407
|
# Uri, Body, Query string parameters
|
|
3244
|
-
def self.
|
|
4408
|
+
def self.transcode_create_goldengate_deployment_request request_pb
|
|
3245
4409
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3246
4410
|
.with_bindings(
|
|
3247
4411
|
uri_method: :post,
|
|
3248
|
-
uri_template: "/v1/{parent}/
|
|
3249
|
-
body: "
|
|
4412
|
+
uri_template: "/v1/{parent}/goldengateDeployments",
|
|
4413
|
+
body: "goldengate_deployment",
|
|
3250
4414
|
matches: [
|
|
3251
4415
|
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3252
4416
|
]
|
|
@@ -3257,19 +4421,19 @@ module Google
|
|
|
3257
4421
|
##
|
|
3258
4422
|
# @private
|
|
3259
4423
|
#
|
|
3260
|
-
# GRPC transcoding helper method for the
|
|
4424
|
+
# GRPC transcoding helper method for the delete_goldengate_deployment REST call
|
|
3261
4425
|
#
|
|
3262
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4426
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::DeleteGoldengateDeploymentRequest]
|
|
3263
4427
|
# A request object representing the call parameters. Required.
|
|
3264
4428
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3265
4429
|
# Uri, Body, Query string parameters
|
|
3266
|
-
def self.
|
|
4430
|
+
def self.transcode_delete_goldengate_deployment_request request_pb
|
|
3267
4431
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3268
4432
|
.with_bindings(
|
|
3269
4433
|
uri_method: :delete,
|
|
3270
4434
|
uri_template: "/v1/{name}",
|
|
3271
4435
|
matches: [
|
|
3272
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/
|
|
4436
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/goldengateDeployments/[^/]+/?$}, false]
|
|
3273
4437
|
]
|
|
3274
4438
|
)
|
|
3275
4439
|
transcoder.transcode request_pb
|
|
@@ -3278,20 +4442,20 @@ module Google
|
|
|
3278
4442
|
##
|
|
3279
4443
|
# @private
|
|
3280
4444
|
#
|
|
3281
|
-
# GRPC transcoding helper method for the
|
|
4445
|
+
# GRPC transcoding helper method for the stop_goldengate_deployment REST call
|
|
3282
4446
|
#
|
|
3283
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4447
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::StopGoldengateDeploymentRequest]
|
|
3284
4448
|
# A request object representing the call parameters. Required.
|
|
3285
4449
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3286
4450
|
# Uri, Body, Query string parameters
|
|
3287
|
-
def self.
|
|
4451
|
+
def self.transcode_stop_goldengate_deployment_request request_pb
|
|
3288
4452
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3289
4453
|
.with_bindings(
|
|
3290
|
-
uri_method: :
|
|
3291
|
-
uri_template: "/v1/{
|
|
3292
|
-
body: "
|
|
4454
|
+
uri_method: :post,
|
|
4455
|
+
uri_template: "/v1/{name}:stop",
|
|
4456
|
+
body: "*",
|
|
3293
4457
|
matches: [
|
|
3294
|
-
["
|
|
4458
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/goldengateDeployments/[^/]+/?$}, false]
|
|
3295
4459
|
]
|
|
3296
4460
|
)
|
|
3297
4461
|
transcoder.transcode request_pb
|
|
@@ -3300,20 +4464,20 @@ module Google
|
|
|
3300
4464
|
##
|
|
3301
4465
|
# @private
|
|
3302
4466
|
#
|
|
3303
|
-
# GRPC transcoding helper method for the
|
|
4467
|
+
# GRPC transcoding helper method for the start_goldengate_deployment REST call
|
|
3304
4468
|
#
|
|
3305
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4469
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::StartGoldengateDeploymentRequest]
|
|
3306
4470
|
# A request object representing the call parameters. Required.
|
|
3307
4471
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3308
4472
|
# Uri, Body, Query string parameters
|
|
3309
|
-
def self.
|
|
4473
|
+
def self.transcode_start_goldengate_deployment_request request_pb
|
|
3310
4474
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3311
4475
|
.with_bindings(
|
|
3312
4476
|
uri_method: :post,
|
|
3313
|
-
uri_template: "/v1/{name}:
|
|
4477
|
+
uri_template: "/v1/{name}:start",
|
|
3314
4478
|
body: "*",
|
|
3315
4479
|
matches: [
|
|
3316
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/
|
|
4480
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/goldengateDeployments/[^/]+/?$}, false]
|
|
3317
4481
|
]
|
|
3318
4482
|
)
|
|
3319
4483
|
transcoder.transcode request_pb
|
|
@@ -3322,17 +4486,17 @@ module Google
|
|
|
3322
4486
|
##
|
|
3323
4487
|
# @private
|
|
3324
4488
|
#
|
|
3325
|
-
# GRPC transcoding helper method for the
|
|
4489
|
+
# GRPC transcoding helper method for the list_goldengate_connections REST call
|
|
3326
4490
|
#
|
|
3327
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4491
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListGoldengateConnectionsRequest]
|
|
3328
4492
|
# A request object representing the call parameters. Required.
|
|
3329
4493
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3330
4494
|
# Uri, Body, Query string parameters
|
|
3331
|
-
def self.
|
|
4495
|
+
def self.transcode_list_goldengate_connections_request request_pb
|
|
3332
4496
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3333
4497
|
.with_bindings(
|
|
3334
4498
|
uri_method: :get,
|
|
3335
|
-
uri_template: "/v1/{parent}/
|
|
4499
|
+
uri_template: "/v1/{parent}/goldengateConnections",
|
|
3336
4500
|
matches: [
|
|
3337
4501
|
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3338
4502
|
]
|
|
@@ -3343,19 +4507,19 @@ module Google
|
|
|
3343
4507
|
##
|
|
3344
4508
|
# @private
|
|
3345
4509
|
#
|
|
3346
|
-
# GRPC transcoding helper method for the
|
|
4510
|
+
# GRPC transcoding helper method for the get_goldengate_connection REST call
|
|
3347
4511
|
#
|
|
3348
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4512
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetGoldengateConnectionRequest]
|
|
3349
4513
|
# A request object representing the call parameters. Required.
|
|
3350
4514
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3351
4515
|
# Uri, Body, Query string parameters
|
|
3352
|
-
def self.
|
|
4516
|
+
def self.transcode_get_goldengate_connection_request request_pb
|
|
3353
4517
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3354
4518
|
.with_bindings(
|
|
3355
4519
|
uri_method: :get,
|
|
3356
4520
|
uri_template: "/v1/{name}",
|
|
3357
4521
|
matches: [
|
|
3358
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/
|
|
4522
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/goldengateConnections/[^/]+/?$}, false]
|
|
3359
4523
|
]
|
|
3360
4524
|
)
|
|
3361
4525
|
transcoder.transcode request_pb
|
|
@@ -3364,18 +4528,18 @@ module Google
|
|
|
3364
4528
|
##
|
|
3365
4529
|
# @private
|
|
3366
4530
|
#
|
|
3367
|
-
# GRPC transcoding helper method for the
|
|
4531
|
+
# GRPC transcoding helper method for the create_goldengate_connection REST call
|
|
3368
4532
|
#
|
|
3369
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4533
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::CreateGoldengateConnectionRequest]
|
|
3370
4534
|
# A request object representing the call parameters. Required.
|
|
3371
4535
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3372
4536
|
# Uri, Body, Query string parameters
|
|
3373
|
-
def self.
|
|
4537
|
+
def self.transcode_create_goldengate_connection_request request_pb
|
|
3374
4538
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3375
4539
|
.with_bindings(
|
|
3376
4540
|
uri_method: :post,
|
|
3377
|
-
uri_template: "/v1/{parent}/
|
|
3378
|
-
body: "
|
|
4541
|
+
uri_template: "/v1/{parent}/goldengateConnections",
|
|
4542
|
+
body: "goldengate_connection",
|
|
3379
4543
|
matches: [
|
|
3380
4544
|
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3381
4545
|
]
|
|
@@ -3386,19 +4550,19 @@ module Google
|
|
|
3386
4550
|
##
|
|
3387
4551
|
# @private
|
|
3388
4552
|
#
|
|
3389
|
-
# GRPC transcoding helper method for the
|
|
4553
|
+
# GRPC transcoding helper method for the delete_goldengate_connection REST call
|
|
3390
4554
|
#
|
|
3391
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4555
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::DeleteGoldengateConnectionRequest]
|
|
3392
4556
|
# A request object representing the call parameters. Required.
|
|
3393
4557
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3394
4558
|
# Uri, Body, Query string parameters
|
|
3395
|
-
def self.
|
|
4559
|
+
def self.transcode_delete_goldengate_connection_request request_pb
|
|
3396
4560
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3397
4561
|
.with_bindings(
|
|
3398
4562
|
uri_method: :delete,
|
|
3399
4563
|
uri_template: "/v1/{name}",
|
|
3400
4564
|
matches: [
|
|
3401
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/
|
|
4565
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/goldengateConnections/[^/]+/?$}, false]
|
|
3402
4566
|
]
|
|
3403
4567
|
)
|
|
3404
4568
|
transcoder.transcode request_pb
|
|
@@ -3407,17 +4571,17 @@ module Google
|
|
|
3407
4571
|
##
|
|
3408
4572
|
# @private
|
|
3409
4573
|
#
|
|
3410
|
-
# GRPC transcoding helper method for the
|
|
4574
|
+
# GRPC transcoding helper method for the list_goldengate_deployment_versions REST call
|
|
3411
4575
|
#
|
|
3412
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4576
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentVersionsRequest]
|
|
3413
4577
|
# A request object representing the call parameters. Required.
|
|
3414
4578
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3415
4579
|
# Uri, Body, Query string parameters
|
|
3416
|
-
def self.
|
|
4580
|
+
def self.transcode_list_goldengate_deployment_versions_request request_pb
|
|
3417
4581
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3418
4582
|
.with_bindings(
|
|
3419
4583
|
uri_method: :get,
|
|
3420
|
-
uri_template: "/v1/{parent}/
|
|
4584
|
+
uri_template: "/v1/{parent}/goldengateDeploymentVersions",
|
|
3421
4585
|
matches: [
|
|
3422
4586
|
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3423
4587
|
]
|
|
@@ -3428,17 +4592,17 @@ module Google
|
|
|
3428
4592
|
##
|
|
3429
4593
|
# @private
|
|
3430
4594
|
#
|
|
3431
|
-
# GRPC transcoding helper method for the
|
|
4595
|
+
# GRPC transcoding helper method for the list_goldengate_deployment_types REST call
|
|
3432
4596
|
#
|
|
3433
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4597
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentTypesRequest]
|
|
3434
4598
|
# A request object representing the call parameters. Required.
|
|
3435
4599
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3436
4600
|
# Uri, Body, Query string parameters
|
|
3437
|
-
def self.
|
|
4601
|
+
def self.transcode_list_goldengate_deployment_types_request request_pb
|
|
3438
4602
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3439
4603
|
.with_bindings(
|
|
3440
4604
|
uri_method: :get,
|
|
3441
|
-
uri_template: "/v1/{parent}/
|
|
4605
|
+
uri_template: "/v1/{parent}/goldengateDeploymentTypes",
|
|
3442
4606
|
matches: [
|
|
3443
4607
|
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3444
4608
|
]
|
|
@@ -3449,19 +4613,19 @@ module Google
|
|
|
3449
4613
|
##
|
|
3450
4614
|
# @private
|
|
3451
4615
|
#
|
|
3452
|
-
# GRPC transcoding helper method for the
|
|
4616
|
+
# GRPC transcoding helper method for the list_goldengate_deployment_environments REST call
|
|
3453
4617
|
#
|
|
3454
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4618
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListGoldengateDeploymentEnvironmentsRequest]
|
|
3455
4619
|
# A request object representing the call parameters. Required.
|
|
3456
4620
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3457
4621
|
# Uri, Body, Query string parameters
|
|
3458
|
-
def self.
|
|
4622
|
+
def self.transcode_list_goldengate_deployment_environments_request request_pb
|
|
3459
4623
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3460
4624
|
.with_bindings(
|
|
3461
4625
|
uri_method: :get,
|
|
3462
|
-
uri_template: "/v1/{
|
|
4626
|
+
uri_template: "/v1/{parent}/goldengateDeploymentEnvironments",
|
|
3463
4627
|
matches: [
|
|
3464
|
-
["
|
|
4628
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3465
4629
|
]
|
|
3466
4630
|
)
|
|
3467
4631
|
transcoder.transcode request_pb
|
|
@@ -3470,17 +4634,17 @@ module Google
|
|
|
3470
4634
|
##
|
|
3471
4635
|
# @private
|
|
3472
4636
|
#
|
|
3473
|
-
# GRPC transcoding helper method for the
|
|
4637
|
+
# GRPC transcoding helper method for the list_goldengate_connection_types REST call
|
|
3474
4638
|
#
|
|
3475
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4639
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListGoldengateConnectionTypesRequest]
|
|
3476
4640
|
# A request object representing the call parameters. Required.
|
|
3477
4641
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3478
4642
|
# Uri, Body, Query string parameters
|
|
3479
|
-
def self.
|
|
4643
|
+
def self.transcode_list_goldengate_connection_types_request request_pb
|
|
3480
4644
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3481
4645
|
.with_bindings(
|
|
3482
4646
|
uri_method: :get,
|
|
3483
|
-
uri_template: "/v1/{parent}/
|
|
4647
|
+
uri_template: "/v1/{parent}/goldengateConnectionTypes",
|
|
3484
4648
|
matches: [
|
|
3485
4649
|
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3486
4650
|
]
|
|
@@ -3491,19 +4655,19 @@ module Google
|
|
|
3491
4655
|
##
|
|
3492
4656
|
# @private
|
|
3493
4657
|
#
|
|
3494
|
-
# GRPC transcoding helper method for the
|
|
4658
|
+
# GRPC transcoding helper method for the list_db_versions REST call
|
|
3495
4659
|
#
|
|
3496
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4660
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListDbVersionsRequest]
|
|
3497
4661
|
# A request object representing the call parameters. Required.
|
|
3498
4662
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3499
4663
|
# Uri, Body, Query string parameters
|
|
3500
|
-
def self.
|
|
4664
|
+
def self.transcode_list_db_versions_request request_pb
|
|
3501
4665
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3502
4666
|
.with_bindings(
|
|
3503
4667
|
uri_method: :get,
|
|
3504
|
-
uri_template: "/v1/{
|
|
4668
|
+
uri_template: "/v1/{parent}/dbVersions",
|
|
3505
4669
|
matches: [
|
|
3506
|
-
["
|
|
4670
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3507
4671
|
]
|
|
3508
4672
|
)
|
|
3509
4673
|
transcoder.transcode request_pb
|
|
@@ -3512,17 +4676,17 @@ module Google
|
|
|
3512
4676
|
##
|
|
3513
4677
|
# @private
|
|
3514
4678
|
#
|
|
3515
|
-
# GRPC transcoding helper method for the
|
|
4679
|
+
# GRPC transcoding helper method for the list_database_character_sets REST call
|
|
3516
4680
|
#
|
|
3517
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4681
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListDatabaseCharacterSetsRequest]
|
|
3518
4682
|
# A request object representing the call parameters. Required.
|
|
3519
4683
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3520
4684
|
# Uri, Body, Query string parameters
|
|
3521
|
-
def self.
|
|
4685
|
+
def self.transcode_list_database_character_sets_request request_pb
|
|
3522
4686
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3523
4687
|
.with_bindings(
|
|
3524
4688
|
uri_method: :get,
|
|
3525
|
-
uri_template: "/v1/{parent}/
|
|
4689
|
+
uri_template: "/v1/{parent}/databaseCharacterSets",
|
|
3526
4690
|
matches: [
|
|
3527
4691
|
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3528
4692
|
]
|
|
@@ -3533,19 +4697,19 @@ module Google
|
|
|
3533
4697
|
##
|
|
3534
4698
|
# @private
|
|
3535
4699
|
#
|
|
3536
|
-
# GRPC transcoding helper method for the
|
|
4700
|
+
# GRPC transcoding helper method for the list_goldengate_connection_assignments REST call
|
|
3537
4701
|
#
|
|
3538
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4702
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::ListGoldengateConnectionAssignmentsRequest]
|
|
3539
4703
|
# A request object representing the call parameters. Required.
|
|
3540
4704
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3541
4705
|
# Uri, Body, Query string parameters
|
|
3542
|
-
def self.
|
|
4706
|
+
def self.transcode_list_goldengate_connection_assignments_request request_pb
|
|
3543
4707
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3544
4708
|
.with_bindings(
|
|
3545
4709
|
uri_method: :get,
|
|
3546
|
-
uri_template: "/v1/{
|
|
4710
|
+
uri_template: "/v1/{parent}/goldengateConnectionAssignments",
|
|
3547
4711
|
matches: [
|
|
3548
|
-
["
|
|
4712
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3549
4713
|
]
|
|
3550
4714
|
)
|
|
3551
4715
|
transcoder.transcode request_pb
|
|
@@ -3554,20 +4718,19 @@ module Google
|
|
|
3554
4718
|
##
|
|
3555
4719
|
# @private
|
|
3556
4720
|
#
|
|
3557
|
-
# GRPC transcoding helper method for the
|
|
4721
|
+
# GRPC transcoding helper method for the get_goldengate_connection_assignment REST call
|
|
3558
4722
|
#
|
|
3559
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4723
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::GetGoldengateConnectionAssignmentRequest]
|
|
3560
4724
|
# A request object representing the call parameters. Required.
|
|
3561
4725
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3562
4726
|
# Uri, Body, Query string parameters
|
|
3563
|
-
def self.
|
|
4727
|
+
def self.transcode_get_goldengate_connection_assignment_request request_pb
|
|
3564
4728
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3565
4729
|
.with_bindings(
|
|
3566
|
-
uri_method: :
|
|
3567
|
-
uri_template: "/v1/{
|
|
3568
|
-
body: "db_system",
|
|
4730
|
+
uri_method: :get,
|
|
4731
|
+
uri_template: "/v1/{name}",
|
|
3569
4732
|
matches: [
|
|
3570
|
-
["
|
|
4733
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/goldengateConnectionAssignments/[^/]+/?$}, false]
|
|
3571
4734
|
]
|
|
3572
4735
|
)
|
|
3573
4736
|
transcoder.transcode request_pb
|
|
@@ -3576,19 +4739,20 @@ module Google
|
|
|
3576
4739
|
##
|
|
3577
4740
|
# @private
|
|
3578
4741
|
#
|
|
3579
|
-
# GRPC transcoding helper method for the
|
|
4742
|
+
# GRPC transcoding helper method for the create_goldengate_connection_assignment REST call
|
|
3580
4743
|
#
|
|
3581
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4744
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::CreateGoldengateConnectionAssignmentRequest]
|
|
3582
4745
|
# A request object representing the call parameters. Required.
|
|
3583
4746
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3584
4747
|
# Uri, Body, Query string parameters
|
|
3585
|
-
def self.
|
|
4748
|
+
def self.transcode_create_goldengate_connection_assignment_request request_pb
|
|
3586
4749
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3587
4750
|
.with_bindings(
|
|
3588
|
-
uri_method: :
|
|
3589
|
-
uri_template: "/v1/{
|
|
4751
|
+
uri_method: :post,
|
|
4752
|
+
uri_template: "/v1/{parent}/goldengateConnectionAssignments",
|
|
4753
|
+
body: "goldengate_connection_assignment",
|
|
3590
4754
|
matches: [
|
|
3591
|
-
["
|
|
4755
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
3592
4756
|
]
|
|
3593
4757
|
)
|
|
3594
4758
|
transcoder.transcode request_pb
|
|
@@ -3597,19 +4761,19 @@ module Google
|
|
|
3597
4761
|
##
|
|
3598
4762
|
# @private
|
|
3599
4763
|
#
|
|
3600
|
-
# GRPC transcoding helper method for the
|
|
4764
|
+
# GRPC transcoding helper method for the delete_goldengate_connection_assignment REST call
|
|
3601
4765
|
#
|
|
3602
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4766
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::DeleteGoldengateConnectionAssignmentRequest]
|
|
3603
4767
|
# A request object representing the call parameters. Required.
|
|
3604
4768
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3605
4769
|
# Uri, Body, Query string parameters
|
|
3606
|
-
def self.
|
|
4770
|
+
def self.transcode_delete_goldengate_connection_assignment_request request_pb
|
|
3607
4771
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3608
4772
|
.with_bindings(
|
|
3609
|
-
uri_method: :
|
|
3610
|
-
uri_template: "/v1/{
|
|
4773
|
+
uri_method: :delete,
|
|
4774
|
+
uri_template: "/v1/{name}",
|
|
3611
4775
|
matches: [
|
|
3612
|
-
["
|
|
4776
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/goldengateConnectionAssignments/[^/]+/?$}, false]
|
|
3613
4777
|
]
|
|
3614
4778
|
)
|
|
3615
4779
|
transcoder.transcode request_pb
|
|
@@ -3618,19 +4782,20 @@ module Google
|
|
|
3618
4782
|
##
|
|
3619
4783
|
# @private
|
|
3620
4784
|
#
|
|
3621
|
-
# GRPC transcoding helper method for the
|
|
4785
|
+
# GRPC transcoding helper method for the test_goldengate_connection_assignment REST call
|
|
3622
4786
|
#
|
|
3623
|
-
# @param request_pb [::Google::Cloud::OracleDatabase::V1::
|
|
4787
|
+
# @param request_pb [::Google::Cloud::OracleDatabase::V1::TestGoldengateConnectionAssignmentRequest]
|
|
3624
4788
|
# A request object representing the call parameters. Required.
|
|
3625
4789
|
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3626
4790
|
# Uri, Body, Query string parameters
|
|
3627
|
-
def self.
|
|
4791
|
+
def self.transcode_test_goldengate_connection_assignment_request request_pb
|
|
3628
4792
|
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3629
4793
|
.with_bindings(
|
|
3630
|
-
uri_method: :
|
|
3631
|
-
uri_template: "/v1/{
|
|
4794
|
+
uri_method: :post,
|
|
4795
|
+
uri_template: "/v1/{name}:test",
|
|
4796
|
+
body: "*",
|
|
3632
4797
|
matches: [
|
|
3633
|
-
["
|
|
4798
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/goldengateConnectionAssignments/[^/]+/?$}, false]
|
|
3634
4799
|
]
|
|
3635
4800
|
)
|
|
3636
4801
|
transcoder.transcode request_pb
|