oci 2.2.0 → 2.2.1
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/oci/audit/audit_client.rb +9 -3
- data/lib/oci/core/blockstorage_client.rb +90 -30
- data/lib/oci/core/compute_client.rb +115 -41
- data/lib/oci/core/compute_client_composite_operations.rb +1 -1
- data/lib/oci/core/virtual_network_client.rb +315 -105
- data/lib/oci/database/database_client.rb +112 -38
- data/lib/oci/dns/dns_client.rb +48 -16
- data/lib/oci/email/email_client.rb +24 -8
- data/lib/oci/file_storage/file_storage_client.rb +63 -21
- data/lib/oci/identity/identity.rb +3 -0
- data/lib/oci/identity/identity_client.rb +460 -69
- data/lib/oci/identity/models/auth_token.rb +282 -0
- data/lib/oci/identity/models/create_auth_token_details.rb +147 -0
- data/lib/oci/identity/models/swift_password.rb +3 -1
- data/lib/oci/identity/models/update_auth_token_details.rb +146 -0
- data/lib/oci/identity/models/user.rb +2 -1
- data/lib/oci/load_balancer/load_balancer_client.rb +126 -42
- data/lib/oci/object_storage/object_storage_client.rb +78 -26
- data/lib/oci/version.rb +1 -1
- metadata +5 -2
@@ -8,7 +8,8 @@ module OCI
|
|
8
8
|
# An individual employee or system that needs to manage or use your company's Oracle Cloud Infrastructure
|
9
9
|
# resources. Users might need to launch instances, manage remote disks, work with your cloud network, etc. Users
|
10
10
|
# have one or more IAM Service credentials ({ApiKey},
|
11
|
-
# {UIPassword},
|
11
|
+
# {UIPassword}, {SwiftPassword} and
|
12
|
+
# {AuthToken}).
|
12
13
|
# For more information, see [User Credentials](https://docs.us-phoenix-1.oraclecloud.com/Content/API/Concepts/usercredentials.htm)). End users of your
|
13
14
|
# application are not typically IAM Service users. For conceptual information about users and other IAM Service
|
14
15
|
# components, see [Overview of the IAM Service](https://docs.us-phoenix-1.oraclecloud.com/Content/Identity/Concepts/overview.htm).
|
@@ -108,7 +108,7 @@ module OCI
|
|
108
108
|
#
|
109
109
|
# @param [Hash] opts the optional parameters
|
110
110
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
111
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
111
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
112
112
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
113
113
|
# particular request, please provide the request ID.
|
114
114
|
# (default to )
|
@@ -131,6 +131,7 @@ module OCI
|
|
131
131
|
path = '/loadBalancers/{loadBalancerId}/backendSets/{backendSetName}/backends'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{backendSetName}', backend_set_name.to_s)
|
132
132
|
operation_signing_strategy = :standard
|
133
133
|
|
134
|
+
# rubocop:disable Style/NegatedIf
|
134
135
|
# Query Params
|
135
136
|
query_params = {}
|
136
137
|
|
@@ -140,6 +141,7 @@ module OCI
|
|
140
141
|
header_params['content-type'] = 'application/json'
|
141
142
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
142
143
|
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
144
|
+
# rubocop:enable Style/NegatedIf
|
143
145
|
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
144
146
|
|
145
147
|
post_body = @api_client.object_to_http_body(create_backend_details)
|
@@ -172,7 +174,7 @@ module OCI
|
|
172
174
|
# @param [String] load_balancer_id The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the load balancer on which to add a backend set.
|
173
175
|
# @param [Hash] opts the optional parameters
|
174
176
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
175
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
177
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
176
178
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
177
179
|
# particular request, please provide the request ID.
|
178
180
|
# (default to )
|
@@ -193,6 +195,7 @@ module OCI
|
|
193
195
|
path = '/loadBalancers/{loadBalancerId}/backendSets'.sub('{loadBalancerId}', load_balancer_id.to_s)
|
194
196
|
operation_signing_strategy = :standard
|
195
197
|
|
198
|
+
# rubocop:disable Style/NegatedIf
|
196
199
|
# Query Params
|
197
200
|
query_params = {}
|
198
201
|
|
@@ -202,6 +205,7 @@ module OCI
|
|
202
205
|
header_params['content-type'] = 'application/json'
|
203
206
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
204
207
|
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
208
|
+
# rubocop:enable Style/NegatedIf
|
205
209
|
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
206
210
|
|
207
211
|
post_body = @api_client.object_to_http_body(create_backend_set_details)
|
@@ -234,7 +238,7 @@ module OCI
|
|
234
238
|
# @param [String] load_balancer_id The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the load balancer on which to add the certificate bundle.
|
235
239
|
# @param [Hash] opts the optional parameters
|
236
240
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
237
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
241
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
238
242
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
239
243
|
# particular request, please provide the request ID.
|
240
244
|
# (default to )
|
@@ -255,6 +259,7 @@ module OCI
|
|
255
259
|
path = '/loadBalancers/{loadBalancerId}/certificates'.sub('{loadBalancerId}', load_balancer_id.to_s)
|
256
260
|
operation_signing_strategy = :standard
|
257
261
|
|
262
|
+
# rubocop:disable Style/NegatedIf
|
258
263
|
# Query Params
|
259
264
|
query_params = {}
|
260
265
|
|
@@ -264,6 +269,7 @@ module OCI
|
|
264
269
|
header_params['content-type'] = 'application/json'
|
265
270
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
266
271
|
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
272
|
+
# rubocop:enable Style/NegatedIf
|
267
273
|
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
268
274
|
|
269
275
|
post_body = @api_client.object_to_http_body(create_certificate_details)
|
@@ -298,7 +304,7 @@ module OCI
|
|
298
304
|
# @param [String] load_balancer_id The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the load balancer to add the hostname to.
|
299
305
|
# @param [Hash] opts the optional parameters
|
300
306
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
301
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
307
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
302
308
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
303
309
|
# particular request, please provide the request ID.
|
304
310
|
# (default to )
|
@@ -319,6 +325,7 @@ module OCI
|
|
319
325
|
path = '/loadBalancers/{loadBalancerId}/hostnames'.sub('{loadBalancerId}', load_balancer_id.to_s)
|
320
326
|
operation_signing_strategy = :standard
|
321
327
|
|
328
|
+
# rubocop:disable Style/NegatedIf
|
322
329
|
# Query Params
|
323
330
|
query_params = {}
|
324
331
|
|
@@ -328,6 +335,7 @@ module OCI
|
|
328
335
|
header_params['content-type'] = 'application/json'
|
329
336
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
330
337
|
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
338
|
+
# rubocop:enable Style/NegatedIf
|
331
339
|
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
332
340
|
|
333
341
|
post_body = @api_client.object_to_http_body(create_hostname_details)
|
@@ -360,7 +368,7 @@ module OCI
|
|
360
368
|
# @param [String] load_balancer_id The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the load balancer on which to add a listener.
|
361
369
|
# @param [Hash] opts the optional parameters
|
362
370
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
363
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
371
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
364
372
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
365
373
|
# particular request, please provide the request ID.
|
366
374
|
# (default to )
|
@@ -381,6 +389,7 @@ module OCI
|
|
381
389
|
path = '/loadBalancers/{loadBalancerId}/listeners'.sub('{loadBalancerId}', load_balancer_id.to_s)
|
382
390
|
operation_signing_strategy = :standard
|
383
391
|
|
392
|
+
# rubocop:disable Style/NegatedIf
|
384
393
|
# Query Params
|
385
394
|
query_params = {}
|
386
395
|
|
@@ -390,6 +399,7 @@ module OCI
|
|
390
399
|
header_params['content-type'] = 'application/json'
|
391
400
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
392
401
|
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
402
|
+
# rubocop:enable Style/NegatedIf
|
393
403
|
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
394
404
|
|
395
405
|
post_body = @api_client.object_to_http_body(create_listener_details)
|
@@ -448,7 +458,7 @@ module OCI
|
|
448
458
|
# @param [OCI::LoadBalancer::Models::CreateLoadBalancerDetails] create_load_balancer_details The configuration details for creating a load balancer.
|
449
459
|
# @param [Hash] opts the optional parameters
|
450
460
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
451
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
461
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
452
462
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
453
463
|
# particular request, please provide the request ID.
|
454
464
|
# (default to )
|
@@ -467,6 +477,7 @@ module OCI
|
|
467
477
|
path = '/loadBalancers'
|
468
478
|
operation_signing_strategy = :standard
|
469
479
|
|
480
|
+
# rubocop:disable Style/NegatedIf
|
470
481
|
# Query Params
|
471
482
|
query_params = {}
|
472
483
|
|
@@ -476,6 +487,7 @@ module OCI
|
|
476
487
|
header_params['content-type'] = 'application/json'
|
477
488
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
478
489
|
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
490
|
+
# rubocop:enable Style/NegatedIf
|
479
491
|
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
480
492
|
|
481
493
|
post_body = @api_client.object_to_http_body(create_load_balancer_details)
|
@@ -510,7 +522,7 @@ module OCI
|
|
510
522
|
# @param [String] load_balancer_id The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the load balancer to add the path route set to.
|
511
523
|
# @param [Hash] opts the optional parameters
|
512
524
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
513
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
525
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
514
526
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
515
527
|
# particular request, please provide the request ID.
|
516
528
|
# (default to )
|
@@ -531,6 +543,7 @@ module OCI
|
|
531
543
|
path = '/loadBalancers/{loadBalancerId}/pathRouteSets'.sub('{loadBalancerId}', load_balancer_id.to_s)
|
532
544
|
operation_signing_strategy = :standard
|
533
545
|
|
546
|
+
# rubocop:disable Style/NegatedIf
|
534
547
|
# Query Params
|
535
548
|
query_params = {}
|
536
549
|
|
@@ -540,6 +553,7 @@ module OCI
|
|
540
553
|
header_params['content-type'] = 'application/json'
|
541
554
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
542
555
|
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
556
|
+
# rubocop:enable Style/NegatedIf
|
543
557
|
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
544
558
|
|
545
559
|
post_body = @api_client.object_to_http_body(create_path_route_set_details)
|
@@ -579,7 +593,7 @@ module OCI
|
|
579
593
|
#
|
580
594
|
# @param [Hash] opts the optional parameters
|
581
595
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
582
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
596
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
583
597
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
584
598
|
# particular request, please provide the request ID.
|
585
599
|
# (default to )
|
@@ -597,6 +611,7 @@ module OCI
|
|
597
611
|
path = '/loadBalancers/{loadBalancerId}/backendSets/{backendSetName}/backends/{backendName}'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{backendSetName}', backend_set_name.to_s).sub('{backendName}', backend_name.to_s)
|
598
612
|
operation_signing_strategy = :standard
|
599
613
|
|
614
|
+
# rubocop:disable Style/NegatedIf
|
600
615
|
# Query Params
|
601
616
|
query_params = {}
|
602
617
|
|
@@ -605,6 +620,7 @@ module OCI
|
|
605
620
|
header_params['accept'] = 'application/json'
|
606
621
|
header_params['content-type'] = 'application/json'
|
607
622
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
623
|
+
# rubocop:enable Style/NegatedIf
|
608
624
|
|
609
625
|
post_body = nil
|
610
626
|
|
@@ -642,7 +658,7 @@ module OCI
|
|
642
658
|
#
|
643
659
|
# @param [Hash] opts the optional parameters
|
644
660
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
645
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
661
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
646
662
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
647
663
|
# particular request, please provide the request ID.
|
648
664
|
# (default to )
|
@@ -658,6 +674,7 @@ module OCI
|
|
658
674
|
path = '/loadBalancers/{loadBalancerId}/backendSets/{backendSetName}'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{backendSetName}', backend_set_name.to_s)
|
659
675
|
operation_signing_strategy = :standard
|
660
676
|
|
677
|
+
# rubocop:disable Style/NegatedIf
|
661
678
|
# Query Params
|
662
679
|
query_params = {}
|
663
680
|
|
@@ -666,6 +683,7 @@ module OCI
|
|
666
683
|
header_params['accept'] = 'application/json'
|
667
684
|
header_params['content-type'] = 'application/json'
|
668
685
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
686
|
+
# rubocop:enable Style/NegatedIf
|
669
687
|
|
670
688
|
post_body = nil
|
671
689
|
|
@@ -702,7 +720,7 @@ module OCI
|
|
702
720
|
#
|
703
721
|
# @param [Hash] opts the optional parameters
|
704
722
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
705
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
723
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
706
724
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
707
725
|
# particular request, please provide the request ID.
|
708
726
|
# (default to )
|
@@ -718,6 +736,7 @@ module OCI
|
|
718
736
|
path = '/loadBalancers/{loadBalancerId}/certificates/{certificateName}'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{certificateName}', certificate_name.to_s)
|
719
737
|
operation_signing_strategy = :standard
|
720
738
|
|
739
|
+
# rubocop:disable Style/NegatedIf
|
721
740
|
# Query Params
|
722
741
|
query_params = {}
|
723
742
|
|
@@ -726,6 +745,7 @@ module OCI
|
|
726
745
|
header_params['accept'] = 'application/json'
|
727
746
|
header_params['content-type'] = 'application/json'
|
728
747
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
748
|
+
# rubocop:enable Style/NegatedIf
|
729
749
|
|
730
750
|
post_body = nil
|
731
751
|
|
@@ -761,7 +781,7 @@ module OCI
|
|
761
781
|
#
|
762
782
|
# @param [Hash] opts the optional parameters
|
763
783
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
764
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
784
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
765
785
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
766
786
|
# particular request, please provide the request ID.
|
767
787
|
# (default to )
|
@@ -777,6 +797,7 @@ module OCI
|
|
777
797
|
path = '/loadBalancers/{loadBalancerId}/hostnames/{name}'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{name}', name.to_s)
|
778
798
|
operation_signing_strategy = :standard
|
779
799
|
|
800
|
+
# rubocop:disable Style/NegatedIf
|
780
801
|
# Query Params
|
781
802
|
query_params = {}
|
782
803
|
|
@@ -785,6 +806,7 @@ module OCI
|
|
785
806
|
header_params['accept'] = 'application/json'
|
786
807
|
header_params['content-type'] = 'application/json'
|
787
808
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
809
|
+
# rubocop:enable Style/NegatedIf
|
788
810
|
|
789
811
|
post_body = nil
|
790
812
|
|
@@ -819,7 +841,7 @@ module OCI
|
|
819
841
|
#
|
820
842
|
# @param [Hash] opts the optional parameters
|
821
843
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
822
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
844
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
823
845
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
824
846
|
# particular request, please provide the request ID.
|
825
847
|
# (default to )
|
@@ -835,6 +857,7 @@ module OCI
|
|
835
857
|
path = '/loadBalancers/{loadBalancerId}/listeners/{listenerName}'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{listenerName}', listener_name.to_s)
|
836
858
|
operation_signing_strategy = :standard
|
837
859
|
|
860
|
+
# rubocop:disable Style/NegatedIf
|
838
861
|
# Query Params
|
839
862
|
query_params = {}
|
840
863
|
|
@@ -843,6 +866,7 @@ module OCI
|
|
843
866
|
header_params['accept'] = 'application/json'
|
844
867
|
header_params['content-type'] = 'application/json'
|
845
868
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
869
|
+
# rubocop:enable Style/NegatedIf
|
846
870
|
|
847
871
|
post_body = nil
|
848
872
|
|
@@ -873,7 +897,7 @@ module OCI
|
|
873
897
|
# @param [String] load_balancer_id The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the load balancer to delete.
|
874
898
|
# @param [Hash] opts the optional parameters
|
875
899
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
876
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
900
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
877
901
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
878
902
|
# particular request, please provide the request ID.
|
879
903
|
# (default to )
|
@@ -887,6 +911,7 @@ module OCI
|
|
887
911
|
path = '/loadBalancers/{loadBalancerId}'.sub('{loadBalancerId}', load_balancer_id.to_s)
|
888
912
|
operation_signing_strategy = :standard
|
889
913
|
|
914
|
+
# rubocop:disable Style/NegatedIf
|
890
915
|
# Query Params
|
891
916
|
query_params = {}
|
892
917
|
|
@@ -895,6 +920,7 @@ module OCI
|
|
895
920
|
header_params['accept'] = 'application/json'
|
896
921
|
header_params['content-type'] = 'application/json'
|
897
922
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
923
|
+
# rubocop:enable Style/NegatedIf
|
898
924
|
|
899
925
|
post_body = nil
|
900
926
|
|
@@ -933,7 +959,7 @@ module OCI
|
|
933
959
|
#
|
934
960
|
# @param [Hash] opts the optional parameters
|
935
961
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
936
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
962
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
937
963
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
938
964
|
# particular request, please provide the request ID.
|
939
965
|
# (default to )
|
@@ -949,6 +975,7 @@ module OCI
|
|
949
975
|
path = '/loadBalancers/{loadBalancerId}/pathRouteSets/{pathRouteSetName}'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{pathRouteSetName}', path_route_set_name.to_s)
|
950
976
|
operation_signing_strategy = :standard
|
951
977
|
|
978
|
+
# rubocop:disable Style/NegatedIf
|
952
979
|
# Query Params
|
953
980
|
query_params = {}
|
954
981
|
|
@@ -957,6 +984,7 @@ module OCI
|
|
957
984
|
header_params['accept'] = 'application/json'
|
958
985
|
header_params['content-type'] = 'application/json'
|
959
986
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
987
|
+
# rubocop:enable Style/NegatedIf
|
960
988
|
|
961
989
|
post_body = nil
|
962
990
|
|
@@ -995,7 +1023,7 @@ module OCI
|
|
995
1023
|
#
|
996
1024
|
# @param [Hash] opts the optional parameters
|
997
1025
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
998
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
1026
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
999
1027
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
1000
1028
|
# particular request, please provide the request ID.
|
1001
1029
|
# (default to )
|
@@ -1013,6 +1041,7 @@ module OCI
|
|
1013
1041
|
path = '/loadBalancers/{loadBalancerId}/backendSets/{backendSetName}/backends/{backendName}'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{backendSetName}', backend_set_name.to_s).sub('{backendName}', backend_name.to_s)
|
1014
1042
|
operation_signing_strategy = :standard
|
1015
1043
|
|
1044
|
+
# rubocop:disable Style/NegatedIf
|
1016
1045
|
# Query Params
|
1017
1046
|
query_params = {}
|
1018
1047
|
|
@@ -1021,6 +1050,7 @@ module OCI
|
|
1021
1050
|
header_params['accept'] = 'application/json'
|
1022
1051
|
header_params['content-type'] = 'application/json'
|
1023
1052
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
1053
|
+
# rubocop:enable Style/NegatedIf
|
1024
1054
|
|
1025
1055
|
post_body = nil
|
1026
1056
|
|
@@ -1060,7 +1090,7 @@ module OCI
|
|
1060
1090
|
#
|
1061
1091
|
# @param [Hash] opts the optional parameters
|
1062
1092
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
1063
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
1093
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
1064
1094
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
1065
1095
|
# particular request, please provide the request ID.
|
1066
1096
|
# (default to )
|
@@ -1078,6 +1108,7 @@ module OCI
|
|
1078
1108
|
path = '/loadBalancers/{loadBalancerId}/backendSets/{backendSetName}/backends/{backendName}/health'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{backendSetName}', backend_set_name.to_s).sub('{backendName}', backend_name.to_s)
|
1079
1109
|
operation_signing_strategy = :standard
|
1080
1110
|
|
1111
|
+
# rubocop:disable Style/NegatedIf
|
1081
1112
|
# Query Params
|
1082
1113
|
query_params = {}
|
1083
1114
|
|
@@ -1086,6 +1117,7 @@ module OCI
|
|
1086
1117
|
header_params['accept'] = 'application/json'
|
1087
1118
|
header_params['content-type'] = 'application/json'
|
1088
1119
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
1120
|
+
# rubocop:enable Style/NegatedIf
|
1089
1121
|
|
1090
1122
|
post_body = nil
|
1091
1123
|
|
@@ -1121,7 +1153,7 @@ module OCI
|
|
1121
1153
|
#
|
1122
1154
|
# @param [Hash] opts the optional parameters
|
1123
1155
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
1124
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
1156
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
1125
1157
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
1126
1158
|
# particular request, please provide the request ID.
|
1127
1159
|
# (default to )
|
@@ -1137,6 +1169,7 @@ module OCI
|
|
1137
1169
|
path = '/loadBalancers/{loadBalancerId}/backendSets/{backendSetName}'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{backendSetName}', backend_set_name.to_s)
|
1138
1170
|
operation_signing_strategy = :standard
|
1139
1171
|
|
1172
|
+
# rubocop:disable Style/NegatedIf
|
1140
1173
|
# Query Params
|
1141
1174
|
query_params = {}
|
1142
1175
|
|
@@ -1145,6 +1178,7 @@ module OCI
|
|
1145
1178
|
header_params['accept'] = 'application/json'
|
1146
1179
|
header_params['content-type'] = 'application/json'
|
1147
1180
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
1181
|
+
# rubocop:enable Style/NegatedIf
|
1148
1182
|
|
1149
1183
|
post_body = nil
|
1150
1184
|
|
@@ -1180,7 +1214,7 @@ module OCI
|
|
1180
1214
|
#
|
1181
1215
|
# @param [Hash] opts the optional parameters
|
1182
1216
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
1183
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
1217
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
1184
1218
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
1185
1219
|
# particular request, please provide the request ID.
|
1186
1220
|
# (default to )
|
@@ -1196,6 +1230,7 @@ module OCI
|
|
1196
1230
|
path = '/loadBalancers/{loadBalancerId}/backendSets/{backendSetName}/health'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{backendSetName}', backend_set_name.to_s)
|
1197
1231
|
operation_signing_strategy = :standard
|
1198
1232
|
|
1233
|
+
# rubocop:disable Style/NegatedIf
|
1199
1234
|
# Query Params
|
1200
1235
|
query_params = {}
|
1201
1236
|
|
@@ -1204,6 +1239,7 @@ module OCI
|
|
1204
1239
|
header_params['accept'] = 'application/json'
|
1205
1240
|
header_params['content-type'] = 'application/json'
|
1206
1241
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
1242
|
+
# rubocop:enable Style/NegatedIf
|
1207
1243
|
|
1208
1244
|
post_body = nil
|
1209
1245
|
|
@@ -1239,7 +1275,7 @@ module OCI
|
|
1239
1275
|
#
|
1240
1276
|
# @param [Hash] opts the optional parameters
|
1241
1277
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
1242
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
1278
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
1243
1279
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
1244
1280
|
# particular request, please provide the request ID.
|
1245
1281
|
# (default to )
|
@@ -1255,6 +1291,7 @@ module OCI
|
|
1255
1291
|
path = '/loadBalancers/{loadBalancerId}/backendSets/{backendSetName}/healthChecker'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{backendSetName}', backend_set_name.to_s)
|
1256
1292
|
operation_signing_strategy = :standard
|
1257
1293
|
|
1294
|
+
# rubocop:disable Style/NegatedIf
|
1258
1295
|
# Query Params
|
1259
1296
|
query_params = {}
|
1260
1297
|
|
@@ -1263,6 +1300,7 @@ module OCI
|
|
1263
1300
|
header_params['accept'] = 'application/json'
|
1264
1301
|
header_params['content-type'] = 'application/json'
|
1265
1302
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
1303
|
+
# rubocop:enable Style/NegatedIf
|
1266
1304
|
|
1267
1305
|
post_body = nil
|
1268
1306
|
|
@@ -1298,7 +1336,7 @@ module OCI
|
|
1298
1336
|
#
|
1299
1337
|
# @param [Hash] opts the optional parameters
|
1300
1338
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
1301
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
1339
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
1302
1340
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
1303
1341
|
# particular request, please provide the request ID.
|
1304
1342
|
# (default to )
|
@@ -1314,6 +1352,7 @@ module OCI
|
|
1314
1352
|
path = '/loadBalancers/{loadBalancerId}/hostnames/{name}'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{name}', name.to_s)
|
1315
1353
|
operation_signing_strategy = :standard
|
1316
1354
|
|
1355
|
+
# rubocop:disable Style/NegatedIf
|
1317
1356
|
# Query Params
|
1318
1357
|
query_params = {}
|
1319
1358
|
|
@@ -1322,6 +1361,7 @@ module OCI
|
|
1322
1361
|
header_params['accept'] = 'application/json'
|
1323
1362
|
header_params['content-type'] = 'application/json'
|
1324
1363
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
1364
|
+
# rubocop:enable Style/NegatedIf
|
1325
1365
|
|
1326
1366
|
post_body = nil
|
1327
1367
|
|
@@ -1353,7 +1393,7 @@ module OCI
|
|
1353
1393
|
# @param [String] load_balancer_id The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the load balancer to retrieve.
|
1354
1394
|
# @param [Hash] opts the optional parameters
|
1355
1395
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
1356
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
1396
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
1357
1397
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
1358
1398
|
# particular request, please provide the request ID.
|
1359
1399
|
# (default to )
|
@@ -1367,6 +1407,7 @@ module OCI
|
|
1367
1407
|
path = '/loadBalancers/{loadBalancerId}'.sub('{loadBalancerId}', load_balancer_id.to_s)
|
1368
1408
|
operation_signing_strategy = :standard
|
1369
1409
|
|
1410
|
+
# rubocop:disable Style/NegatedIf
|
1370
1411
|
# Query Params
|
1371
1412
|
query_params = {}
|
1372
1413
|
|
@@ -1375,6 +1416,7 @@ module OCI
|
|
1375
1416
|
header_params['accept'] = 'application/json'
|
1376
1417
|
header_params['content-type'] = 'application/json'
|
1377
1418
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
1419
|
+
# rubocop:enable Style/NegatedIf
|
1378
1420
|
|
1379
1421
|
post_body = nil
|
1380
1422
|
|
@@ -1406,7 +1448,7 @@ module OCI
|
|
1406
1448
|
# @param [String] load_balancer_id The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the load balancer to return health status for.
|
1407
1449
|
# @param [Hash] opts the optional parameters
|
1408
1450
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
1409
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
1451
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
1410
1452
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
1411
1453
|
# particular request, please provide the request ID.
|
1412
1454
|
# (default to )
|
@@ -1420,6 +1462,7 @@ module OCI
|
|
1420
1462
|
path = '/loadBalancers/{loadBalancerId}/health'.sub('{loadBalancerId}', load_balancer_id.to_s)
|
1421
1463
|
operation_signing_strategy = :standard
|
1422
1464
|
|
1465
|
+
# rubocop:disable Style/NegatedIf
|
1423
1466
|
# Query Params
|
1424
1467
|
query_params = {}
|
1425
1468
|
|
@@ -1428,6 +1471,7 @@ module OCI
|
|
1428
1471
|
header_params['accept'] = 'application/json'
|
1429
1472
|
header_params['content-type'] = 'application/json'
|
1430
1473
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
1474
|
+
# rubocop:enable Style/NegatedIf
|
1431
1475
|
|
1432
1476
|
post_body = nil
|
1433
1477
|
|
@@ -1463,7 +1507,7 @@ module OCI
|
|
1463
1507
|
#
|
1464
1508
|
# @param [Hash] opts the optional parameters
|
1465
1509
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
1466
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
1510
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
1467
1511
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
1468
1512
|
# particular request, please provide the request ID.
|
1469
1513
|
# (default to )
|
@@ -1479,6 +1523,7 @@ module OCI
|
|
1479
1523
|
path = '/loadBalancers/{loadBalancerId}/pathRouteSets/{pathRouteSetName}'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{pathRouteSetName}', path_route_set_name.to_s)
|
1480
1524
|
operation_signing_strategy = :standard
|
1481
1525
|
|
1526
|
+
# rubocop:disable Style/NegatedIf
|
1482
1527
|
# Query Params
|
1483
1528
|
query_params = {}
|
1484
1529
|
|
@@ -1487,6 +1532,7 @@ module OCI
|
|
1487
1532
|
header_params['accept'] = 'application/json'
|
1488
1533
|
header_params['content-type'] = 'application/json'
|
1489
1534
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
1535
|
+
# rubocop:enable Style/NegatedIf
|
1490
1536
|
|
1491
1537
|
post_body = nil
|
1492
1538
|
|
@@ -1518,7 +1564,7 @@ module OCI
|
|
1518
1564
|
# @param [String] work_request_id The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the work request to retrieve.
|
1519
1565
|
# @param [Hash] opts the optional parameters
|
1520
1566
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
1521
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
1567
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
1522
1568
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
1523
1569
|
# particular request, please provide the request ID.
|
1524
1570
|
# (default to )
|
@@ -1532,6 +1578,7 @@ module OCI
|
|
1532
1578
|
path = '/loadBalancerWorkRequests/{workRequestId}'.sub('{workRequestId}', work_request_id.to_s)
|
1533
1579
|
operation_signing_strategy = :standard
|
1534
1580
|
|
1581
|
+
# rubocop:disable Style/NegatedIf
|
1535
1582
|
# Query Params
|
1536
1583
|
query_params = {}
|
1537
1584
|
|
@@ -1540,6 +1587,7 @@ module OCI
|
|
1540
1587
|
header_params['accept'] = 'application/json'
|
1541
1588
|
header_params['content-type'] = 'application/json'
|
1542
1589
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
1590
|
+
# rubocop:enable Style/NegatedIf
|
1543
1591
|
|
1544
1592
|
post_body = nil
|
1545
1593
|
|
@@ -1571,7 +1619,7 @@ module OCI
|
|
1571
1619
|
# @param [String] load_balancer_id The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the load balancer associated with the backend sets to retrieve.
|
1572
1620
|
# @param [Hash] opts the optional parameters
|
1573
1621
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
1574
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
1622
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
1575
1623
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
1576
1624
|
# particular request, please provide the request ID.
|
1577
1625
|
# (default to )
|
@@ -1585,6 +1633,7 @@ module OCI
|
|
1585
1633
|
path = '/loadBalancers/{loadBalancerId}/backendSets'.sub('{loadBalancerId}', load_balancer_id.to_s)
|
1586
1634
|
operation_signing_strategy = :standard
|
1587
1635
|
|
1636
|
+
# rubocop:disable Style/NegatedIf
|
1588
1637
|
# Query Params
|
1589
1638
|
query_params = {}
|
1590
1639
|
|
@@ -1593,6 +1642,7 @@ module OCI
|
|
1593
1642
|
header_params['accept'] = 'application/json'
|
1594
1643
|
header_params['content-type'] = 'application/json'
|
1595
1644
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
1645
|
+
# rubocop:enable Style/NegatedIf
|
1596
1646
|
|
1597
1647
|
post_body = nil
|
1598
1648
|
|
@@ -1628,7 +1678,7 @@ module OCI
|
|
1628
1678
|
#
|
1629
1679
|
# @param [Hash] opts the optional parameters
|
1630
1680
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
1631
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
1681
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
1632
1682
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
1633
1683
|
# particular request, please provide the request ID.
|
1634
1684
|
# (default to )
|
@@ -1644,6 +1694,7 @@ module OCI
|
|
1644
1694
|
path = '/loadBalancers/{loadBalancerId}/backendSets/{backendSetName}/backends'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{backendSetName}', backend_set_name.to_s)
|
1645
1695
|
operation_signing_strategy = :standard
|
1646
1696
|
|
1697
|
+
# rubocop:disable Style/NegatedIf
|
1647
1698
|
# Query Params
|
1648
1699
|
query_params = {}
|
1649
1700
|
|
@@ -1652,6 +1703,7 @@ module OCI
|
|
1652
1703
|
header_params['accept'] = 'application/json'
|
1653
1704
|
header_params['content-type'] = 'application/json'
|
1654
1705
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
1706
|
+
# rubocop:enable Style/NegatedIf
|
1655
1707
|
|
1656
1708
|
post_body = nil
|
1657
1709
|
|
@@ -1685,7 +1737,7 @@ module OCI
|
|
1685
1737
|
#
|
1686
1738
|
# @param [Hash] opts the optional parameters
|
1687
1739
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
1688
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
1740
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
1689
1741
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
1690
1742
|
# particular request, please provide the request ID.
|
1691
1743
|
# (default to )
|
@@ -1699,6 +1751,7 @@ module OCI
|
|
1699
1751
|
path = '/loadBalancers/{loadBalancerId}/certificates'.sub('{loadBalancerId}', load_balancer_id.to_s)
|
1700
1752
|
operation_signing_strategy = :standard
|
1701
1753
|
|
1754
|
+
# rubocop:disable Style/NegatedIf
|
1702
1755
|
# Query Params
|
1703
1756
|
query_params = {}
|
1704
1757
|
|
@@ -1707,6 +1760,7 @@ module OCI
|
|
1707
1760
|
header_params['accept'] = 'application/json'
|
1708
1761
|
header_params['content-type'] = 'application/json'
|
1709
1762
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
1763
|
+
# rubocop:enable Style/NegatedIf
|
1710
1764
|
|
1711
1765
|
post_body = nil
|
1712
1766
|
|
@@ -1740,7 +1794,7 @@ module OCI
|
|
1740
1794
|
#
|
1741
1795
|
# @param [Hash] opts the optional parameters
|
1742
1796
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
1743
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
1797
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
1744
1798
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
1745
1799
|
# particular request, please provide the request ID.
|
1746
1800
|
# (default to )
|
@@ -1754,6 +1808,7 @@ module OCI
|
|
1754
1808
|
path = '/loadBalancers/{loadBalancerId}/hostnames'.sub('{loadBalancerId}', load_balancer_id.to_s)
|
1755
1809
|
operation_signing_strategy = :standard
|
1756
1810
|
|
1811
|
+
# rubocop:disable Style/NegatedIf
|
1757
1812
|
# Query Params
|
1758
1813
|
query_params = {}
|
1759
1814
|
|
@@ -1762,6 +1817,7 @@ module OCI
|
|
1762
1817
|
header_params['accept'] = 'application/json'
|
1763
1818
|
header_params['content-type'] = 'application/json'
|
1764
1819
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
1820
|
+
# rubocop:enable Style/NegatedIf
|
1765
1821
|
|
1766
1822
|
post_body = nil
|
1767
1823
|
|
@@ -1793,7 +1849,7 @@ module OCI
|
|
1793
1849
|
# @param [String] compartment_id The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the compartment containing the load balancers to return health status information for.
|
1794
1850
|
# @param [Hash] opts the optional parameters
|
1795
1851
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
1796
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
1852
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
1797
1853
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
1798
1854
|
# particular request, please provide the request ID.
|
1799
1855
|
# (default to )
|
@@ -1814,6 +1870,7 @@ module OCI
|
|
1814
1870
|
path = '/loadBalancerHealths'
|
1815
1871
|
operation_signing_strategy = :standard
|
1816
1872
|
|
1873
|
+
# rubocop:disable Style/NegatedIf
|
1817
1874
|
# Query Params
|
1818
1875
|
query_params = {}
|
1819
1876
|
query_params[:compartmentId] = compartment_id
|
@@ -1825,6 +1882,7 @@ module OCI
|
|
1825
1882
|
header_params['accept'] = 'application/json'
|
1826
1883
|
header_params['content-type'] = 'application/json'
|
1827
1884
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
1885
|
+
# rubocop:enable Style/NegatedIf
|
1828
1886
|
|
1829
1887
|
post_body = nil
|
1830
1888
|
|
@@ -1856,7 +1914,7 @@ module OCI
|
|
1856
1914
|
# @param [String] compartment_id The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the compartment containing the load balancers to list.
|
1857
1915
|
# @param [Hash] opts the optional parameters
|
1858
1916
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
1859
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
1917
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
1860
1918
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
1861
1919
|
# particular request, please provide the request ID.
|
1862
1920
|
# (default to )
|
@@ -1908,6 +1966,7 @@ module OCI
|
|
1908
1966
|
path = '/loadBalancers'
|
1909
1967
|
operation_signing_strategy = :standard
|
1910
1968
|
|
1969
|
+
# rubocop:disable Style/NegatedIf
|
1911
1970
|
# Query Params
|
1912
1971
|
query_params = {}
|
1913
1972
|
query_params[:compartmentId] = compartment_id
|
@@ -1924,6 +1983,7 @@ module OCI
|
|
1924
1983
|
header_params['accept'] = 'application/json'
|
1925
1984
|
header_params['content-type'] = 'application/json'
|
1926
1985
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
1986
|
+
# rubocop:enable Style/NegatedIf
|
1927
1987
|
|
1928
1988
|
post_body = nil
|
1929
1989
|
|
@@ -1957,7 +2017,7 @@ module OCI
|
|
1957
2017
|
#
|
1958
2018
|
# @param [Hash] opts the optional parameters
|
1959
2019
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
1960
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
2020
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
1961
2021
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
1962
2022
|
# particular request, please provide the request ID.
|
1963
2023
|
# (default to )
|
@@ -1971,6 +2031,7 @@ module OCI
|
|
1971
2031
|
path = '/loadBalancers/{loadBalancerId}/pathRouteSets'.sub('{loadBalancerId}', load_balancer_id.to_s)
|
1972
2032
|
operation_signing_strategy = :standard
|
1973
2033
|
|
2034
|
+
# rubocop:disable Style/NegatedIf
|
1974
2035
|
# Query Params
|
1975
2036
|
query_params = {}
|
1976
2037
|
|
@@ -1979,6 +2040,7 @@ module OCI
|
|
1979
2040
|
header_params['accept'] = 'application/json'
|
1980
2041
|
header_params['content-type'] = 'application/json'
|
1981
2042
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
2043
|
+
# rubocop:enable Style/NegatedIf
|
1982
2044
|
|
1983
2045
|
post_body = nil
|
1984
2046
|
|
@@ -2010,7 +2072,7 @@ module OCI
|
|
2010
2072
|
# @param [String] compartment_id The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the compartment containing the load balancer policies to list.
|
2011
2073
|
# @param [Hash] opts the optional parameters
|
2012
2074
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
2013
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
2075
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
2014
2076
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
2015
2077
|
# particular request, please provide the request ID.
|
2016
2078
|
# (default to )
|
@@ -2031,6 +2093,7 @@ module OCI
|
|
2031
2093
|
path = '/loadBalancerPolicies'
|
2032
2094
|
operation_signing_strategy = :standard
|
2033
2095
|
|
2096
|
+
# rubocop:disable Style/NegatedIf
|
2034
2097
|
# Query Params
|
2035
2098
|
query_params = {}
|
2036
2099
|
query_params[:compartmentId] = compartment_id
|
@@ -2042,6 +2105,7 @@ module OCI
|
|
2042
2105
|
header_params['accept'] = 'application/json'
|
2043
2106
|
header_params['content-type'] = 'application/json'
|
2044
2107
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
2108
|
+
# rubocop:enable Style/NegatedIf
|
2045
2109
|
|
2046
2110
|
post_body = nil
|
2047
2111
|
|
@@ -2073,7 +2137,7 @@ module OCI
|
|
2073
2137
|
# @param [String] compartment_id The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the compartment containing the load balancer protocols to list.
|
2074
2138
|
# @param [Hash] opts the optional parameters
|
2075
2139
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
2076
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
2140
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
2077
2141
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
2078
2142
|
# particular request, please provide the request ID.
|
2079
2143
|
# (default to )
|
@@ -2094,6 +2158,7 @@ module OCI
|
|
2094
2158
|
path = '/loadBalancerProtocols'
|
2095
2159
|
operation_signing_strategy = :standard
|
2096
2160
|
|
2161
|
+
# rubocop:disable Style/NegatedIf
|
2097
2162
|
# Query Params
|
2098
2163
|
query_params = {}
|
2099
2164
|
query_params[:compartmentId] = compartment_id
|
@@ -2105,6 +2170,7 @@ module OCI
|
|
2105
2170
|
header_params['accept'] = 'application/json'
|
2106
2171
|
header_params['content-type'] = 'application/json'
|
2107
2172
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
2173
|
+
# rubocop:enable Style/NegatedIf
|
2108
2174
|
|
2109
2175
|
post_body = nil
|
2110
2176
|
|
@@ -2136,7 +2202,7 @@ module OCI
|
|
2136
2202
|
# @param [String] compartment_id The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the compartment containing the load balancer shapes to list.
|
2137
2203
|
# @param [Hash] opts the optional parameters
|
2138
2204
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
2139
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
2205
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
2140
2206
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
2141
2207
|
# particular request, please provide the request ID.
|
2142
2208
|
# (default to )
|
@@ -2157,6 +2223,7 @@ module OCI
|
|
2157
2223
|
path = '/loadBalancerShapes'
|
2158
2224
|
operation_signing_strategy = :standard
|
2159
2225
|
|
2226
|
+
# rubocop:disable Style/NegatedIf
|
2160
2227
|
# Query Params
|
2161
2228
|
query_params = {}
|
2162
2229
|
query_params[:compartmentId] = compartment_id
|
@@ -2168,6 +2235,7 @@ module OCI
|
|
2168
2235
|
header_params['accept'] = 'application/json'
|
2169
2236
|
header_params['content-type'] = 'application/json'
|
2170
2237
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
2238
|
+
# rubocop:enable Style/NegatedIf
|
2171
2239
|
|
2172
2240
|
post_body = nil
|
2173
2241
|
|
@@ -2199,7 +2267,7 @@ module OCI
|
|
2199
2267
|
# @param [String] load_balancer_id The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the load balancer associated with the work requests to retrieve.
|
2200
2268
|
# @param [Hash] opts the optional parameters
|
2201
2269
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
2202
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
2270
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
2203
2271
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
2204
2272
|
# particular request, please provide the request ID.
|
2205
2273
|
# (default to )
|
@@ -2221,6 +2289,7 @@ module OCI
|
|
2221
2289
|
path = '/loadBalancers/{loadBalancerId}/workRequests'.sub('{loadBalancerId}', load_balancer_id.to_s)
|
2222
2290
|
operation_signing_strategy = :standard
|
2223
2291
|
|
2292
|
+
# rubocop:disable Style/NegatedIf
|
2224
2293
|
# Query Params
|
2225
2294
|
query_params = {}
|
2226
2295
|
query_params[:limit] = opts[:limit] if opts[:limit]
|
@@ -2231,6 +2300,7 @@ module OCI
|
|
2231
2300
|
header_params['accept'] = 'application/json'
|
2232
2301
|
header_params['content-type'] = 'application/json'
|
2233
2302
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
2303
|
+
# rubocop:enable Style/NegatedIf
|
2234
2304
|
|
2235
2305
|
post_body = nil
|
2236
2306
|
|
@@ -2271,7 +2341,7 @@ module OCI
|
|
2271
2341
|
#
|
2272
2342
|
# @param [Hash] opts the optional parameters
|
2273
2343
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
2274
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
2344
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
2275
2345
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
2276
2346
|
# particular request, please provide the request ID.
|
2277
2347
|
# (default to )
|
@@ -2296,6 +2366,7 @@ module OCI
|
|
2296
2366
|
path = '/loadBalancers/{loadBalancerId}/backendSets/{backendSetName}/backends/{backendName}'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{backendSetName}', backend_set_name.to_s).sub('{backendName}', backend_name.to_s)
|
2297
2367
|
operation_signing_strategy = :standard
|
2298
2368
|
|
2369
|
+
# rubocop:disable Style/NegatedIf
|
2299
2370
|
# Query Params
|
2300
2371
|
query_params = {}
|
2301
2372
|
|
@@ -2305,6 +2376,7 @@ module OCI
|
|
2305
2376
|
header_params['content-type'] = 'application/json'
|
2306
2377
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
2307
2378
|
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
2379
|
+
# rubocop:enable Style/NegatedIf
|
2308
2380
|
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
2309
2381
|
|
2310
2382
|
post_body = @api_client.object_to_http_body(update_backend_details)
|
@@ -2341,7 +2413,7 @@ module OCI
|
|
2341
2413
|
#
|
2342
2414
|
# @param [Hash] opts the optional parameters
|
2343
2415
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
2344
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
2416
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
2345
2417
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
2346
2418
|
# particular request, please provide the request ID.
|
2347
2419
|
# (default to )
|
@@ -2364,6 +2436,7 @@ module OCI
|
|
2364
2436
|
path = '/loadBalancers/{loadBalancerId}/backendSets/{backendSetName}'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{backendSetName}', backend_set_name.to_s)
|
2365
2437
|
operation_signing_strategy = :standard
|
2366
2438
|
|
2439
|
+
# rubocop:disable Style/NegatedIf
|
2367
2440
|
# Query Params
|
2368
2441
|
query_params = {}
|
2369
2442
|
|
@@ -2373,6 +2446,7 @@ module OCI
|
|
2373
2446
|
header_params['content-type'] = 'application/json'
|
2374
2447
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
2375
2448
|
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
2449
|
+
# rubocop:enable Style/NegatedIf
|
2376
2450
|
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
2377
2451
|
|
2378
2452
|
post_body = @api_client.object_to_http_body(update_backend_set_details)
|
@@ -2409,7 +2483,7 @@ module OCI
|
|
2409
2483
|
#
|
2410
2484
|
# @param [Hash] opts the optional parameters
|
2411
2485
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
2412
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
2486
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
2413
2487
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
2414
2488
|
# particular request, please provide the request ID.
|
2415
2489
|
# (default to )
|
@@ -2432,6 +2506,7 @@ module OCI
|
|
2432
2506
|
path = '/loadBalancers/{loadBalancerId}/backendSets/{backendSetName}/healthChecker'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{backendSetName}', backend_set_name.to_s)
|
2433
2507
|
operation_signing_strategy = :standard
|
2434
2508
|
|
2509
|
+
# rubocop:disable Style/NegatedIf
|
2435
2510
|
# Query Params
|
2436
2511
|
query_params = {}
|
2437
2512
|
|
@@ -2441,6 +2516,7 @@ module OCI
|
|
2441
2516
|
header_params['content-type'] = 'application/json'
|
2442
2517
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
2443
2518
|
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
2519
|
+
# rubocop:enable Style/NegatedIf
|
2444
2520
|
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
2445
2521
|
|
2446
2522
|
post_body = @api_client.object_to_http_body(health_checker)
|
@@ -2481,7 +2557,7 @@ module OCI
|
|
2481
2557
|
#
|
2482
2558
|
# @param [Hash] opts the optional parameters
|
2483
2559
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
2484
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
2560
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
2485
2561
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
2486
2562
|
# particular request, please provide the request ID.
|
2487
2563
|
# (default to )
|
@@ -2498,6 +2574,7 @@ module OCI
|
|
2498
2574
|
path = '/loadBalancers/{loadBalancerId}/hostnames/{name}'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{name}', name.to_s)
|
2499
2575
|
operation_signing_strategy = :standard
|
2500
2576
|
|
2577
|
+
# rubocop:disable Style/NegatedIf
|
2501
2578
|
# Query Params
|
2502
2579
|
query_params = {}
|
2503
2580
|
|
@@ -2506,6 +2583,7 @@ module OCI
|
|
2506
2583
|
header_params['accept'] = 'application/json'
|
2507
2584
|
header_params['content-type'] = 'application/json'
|
2508
2585
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
2586
|
+
# rubocop:enable Style/NegatedIf
|
2509
2587
|
|
2510
2588
|
post_body = @api_client.object_to_http_body(update_hostname_details)
|
2511
2589
|
|
@@ -2541,7 +2619,7 @@ module OCI
|
|
2541
2619
|
#
|
2542
2620
|
# @param [Hash] opts the optional parameters
|
2543
2621
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
2544
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
2622
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
2545
2623
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
2546
2624
|
# particular request, please provide the request ID.
|
2547
2625
|
# (default to )
|
@@ -2564,6 +2642,7 @@ module OCI
|
|
2564
2642
|
path = '/loadBalancers/{loadBalancerId}/listeners/{listenerName}'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{listenerName}', listener_name.to_s)
|
2565
2643
|
operation_signing_strategy = :standard
|
2566
2644
|
|
2645
|
+
# rubocop:disable Style/NegatedIf
|
2567
2646
|
# Query Params
|
2568
2647
|
query_params = {}
|
2569
2648
|
|
@@ -2573,6 +2652,7 @@ module OCI
|
|
2573
2652
|
header_params['content-type'] = 'application/json'
|
2574
2653
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
2575
2654
|
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
2655
|
+
# rubocop:enable Style/NegatedIf
|
2576
2656
|
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
2577
2657
|
|
2578
2658
|
post_body = @api_client.object_to_http_body(update_listener_details)
|
@@ -2605,7 +2685,7 @@ module OCI
|
|
2605
2685
|
# @param [String] load_balancer_id The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the load balancer to update.
|
2606
2686
|
# @param [Hash] opts the optional parameters
|
2607
2687
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
2608
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
2688
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
2609
2689
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
2610
2690
|
# particular request, please provide the request ID.
|
2611
2691
|
# (default to )
|
@@ -2626,6 +2706,7 @@ module OCI
|
|
2626
2706
|
path = '/loadBalancers/{loadBalancerId}'.sub('{loadBalancerId}', load_balancer_id.to_s)
|
2627
2707
|
operation_signing_strategy = :standard
|
2628
2708
|
|
2709
|
+
# rubocop:disable Style/NegatedIf
|
2629
2710
|
# Query Params
|
2630
2711
|
query_params = {}
|
2631
2712
|
|
@@ -2635,6 +2716,7 @@ module OCI
|
|
2635
2716
|
header_params['content-type'] = 'application/json'
|
2636
2717
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
2637
2718
|
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
2719
|
+
# rubocop:enable Style/NegatedIf
|
2638
2720
|
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
2639
2721
|
|
2640
2722
|
post_body = @api_client.object_to_http_body(update_load_balancer_details)
|
@@ -2677,7 +2759,7 @@ module OCI
|
|
2677
2759
|
#
|
2678
2760
|
# @param [Hash] opts the optional parameters
|
2679
2761
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
2680
|
-
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then
|
2762
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
2681
2763
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
2682
2764
|
# particular request, please provide the request ID.
|
2683
2765
|
# (default to )
|
@@ -2700,6 +2782,7 @@ module OCI
|
|
2700
2782
|
path = '/loadBalancers/{loadBalancerId}/pathRouteSets/{pathRouteSetName}'.sub('{loadBalancerId}', load_balancer_id.to_s).sub('{pathRouteSetName}', path_route_set_name.to_s)
|
2701
2783
|
operation_signing_strategy = :standard
|
2702
2784
|
|
2785
|
+
# rubocop:disable Style/NegatedIf
|
2703
2786
|
# Query Params
|
2704
2787
|
query_params = {}
|
2705
2788
|
|
@@ -2709,6 +2792,7 @@ module OCI
|
|
2709
2792
|
header_params['content-type'] = 'application/json'
|
2710
2793
|
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
2711
2794
|
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
2795
|
+
# rubocop:enable Style/NegatedIf
|
2712
2796
|
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
2713
2797
|
|
2714
2798
|
post_body = @api_client.object_to_http_body(update_path_route_set_details)
|