oci 2.3.6 → 2.3.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -10
  3. data/lib/oci.rb +1 -0
  4. data/lib/oci/api_client.rb +2 -2
  5. data/lib/oci/audit/audit_client.rb +11 -9
  6. data/lib/oci/base_signer.rb +13 -13
  7. data/lib/oci/container_engine/container_engine_client.rb +43 -39
  8. data/lib/oci/container_engine/models/node_error.rb +1 -1
  9. data/lib/oci/container_engine/models/work_request_error.rb +1 -1
  10. data/lib/oci/core/blockstorage_client.rb +421 -75
  11. data/lib/oci/core/compute_client.rb +77 -75
  12. data/lib/oci/core/compute_client_composite_operations.rb +40 -0
  13. data/lib/oci/core/core.rb +4 -0
  14. data/lib/oci/core/models/boot_volume.rb +18 -4
  15. data/lib/oci/core/models/boot_volume_kms_key.rb +152 -0
  16. data/lib/oci/core/models/create_boot_volume_details.rb +15 -1
  17. data/lib/oci/core/models/create_image_details.rb +2 -0
  18. data/lib/oci/core/models/create_volume_details.rb +15 -1
  19. data/lib/oci/core/models/fast_connect_provider_service.rb +1 -1
  20. data/lib/oci/core/models/image.rb +2 -0
  21. data/lib/oci/core/models/instance.rb +2 -0
  22. data/lib/oci/core/models/instance_source_via_image_details.rb +18 -4
  23. data/lib/oci/core/models/launch_options.rb +2 -0
  24. data/lib/oci/core/models/update_boot_volume_kms_key_details.rb +154 -0
  25. data/lib/oci/core/models/update_volume_kms_key_details.rb +154 -0
  26. data/lib/oci/core/models/volume.rb +15 -1
  27. data/lib/oci/core/models/volume_kms_key.rb +152 -0
  28. data/lib/oci/core/virtual_network_client.rb +233 -231
  29. data/lib/oci/core/virtual_network_client_composite_operations.rb +80 -0
  30. data/lib/oci/database/database_client.rb +123 -121
  31. data/lib/oci/database/database_client_composite_operations.rb +399 -0
  32. data/lib/oci/database/models/patch.rb +1 -1
  33. data/lib/oci/database/models/patch_summary.rb +1 -1
  34. data/lib/oci/dns/dns_client.rb +38 -36
  35. data/lib/oci/email/email_client.rb +21 -19
  36. data/lib/oci/email/models/sender.rb +1 -1
  37. data/lib/oci/email/models/suppression.rb +1 -1
  38. data/lib/oci/file_storage/file_storage_client.rb +49 -47
  39. data/lib/oci/identity/identity_client.rb +151 -149
  40. data/lib/oci/identity/identity_client_composite_operations.rb +40 -0
  41. data/lib/oci/key_management/key_management.rb +40 -0
  42. data/lib/oci/key_management/kms_crypto_client.rb +258 -0
  43. data/lib/oci/key_management/kms_crypto_client_composite_operations.rb +24 -0
  44. data/lib/oci/key_management/kms_management_client.rb +716 -0
  45. data/lib/oci/key_management/kms_management_client_composite_operations.rb +181 -0
  46. data/lib/oci/key_management/kms_vault_client.rb +533 -0
  47. data/lib/oci/key_management/kms_vault_client_composite_operations.rb +182 -0
  48. data/lib/oci/key_management/models/create_key_details.rb +180 -0
  49. data/lib/oci/key_management/models/create_vault_details.rb +194 -0
  50. data/lib/oci/key_management/models/decrypt_data_details.rb +177 -0
  51. data/lib/oci/key_management/models/decrypted_data.rb +160 -0
  52. data/lib/oci/key_management/models/encrypt_data_details.rb +177 -0
  53. data/lib/oci/key_management/models/encrypted_data.rb +146 -0
  54. data/lib/oci/key_management/models/generate_key_details.rb +195 -0
  55. data/lib/oci/key_management/models/generated_key.rb +177 -0
  56. data/lib/oci/key_management/models/key.rb +318 -0
  57. data/lib/oci/key_management/models/key_shape.rb +178 -0
  58. data/lib/oci/key_management/models/key_summary.rb +287 -0
  59. data/lib/oci/key_management/models/key_version.rb +205 -0
  60. data/lib/oci/key_management/models/key_version_summary.rb +205 -0
  61. data/lib/oci/key_management/models/schedule_vault_deletion_details.rb +153 -0
  62. data/lib/oci/key_management/models/update_key_details.rb +152 -0
  63. data/lib/oci/key_management/models/update_vault_details.rb +152 -0
  64. data/lib/oci/key_management/models/vault.rb +350 -0
  65. data/lib/oci/key_management/models/vault_summary.rb +334 -0
  66. data/lib/oci/key_management/util.rb +2 -0
  67. data/lib/oci/load_balancer/load_balancer_client.rb +89 -87
  68. data/lib/oci/object_storage/models/bucket.rb +18 -4
  69. data/lib/oci/object_storage/models/create_bucket_details.rb +18 -4
  70. data/lib/oci/object_storage/models/multipart_upload.rb +1 -1
  71. data/lib/oci/object_storage/models/preauthenticated_request.rb +1 -1
  72. data/lib/oci/object_storage/models/update_bucket_details.rb +22 -4
  73. data/lib/oci/object_storage/object_storage_client.rb +63 -58
  74. data/lib/oci/resource_search/resource_search_client.rb +11 -9
  75. data/lib/oci/version.rb +1 -1
  76. metadata +32 -2
@@ -29,10 +29,12 @@ module OCI
29
29
 
30
30
 
31
31
  # Creates a new EmailClient.
32
- # If a config is not specified, then the global OCI.config will be used.
32
+ # Notes:
33
+ # If a config is not specified, then the global OCI.config will be used.
34
+ # This client is not thread-safe
33
35
  #
34
- # A region must be specified in either the config or the region parameter. If specified
35
- # in both, then the region parameter will be used.
36
+ # A region must be specified in either the config or the region parameter. If specified in both,
37
+ # then the region parameter will be used.
36
38
  #
37
39
  # @param [Config] config A Config object.
38
40
  # @param [String] region A region used to determine the service endpoint. This will usually
@@ -120,8 +122,8 @@ module OCI
120
122
 
121
123
  # Header Params
122
124
  header_params = {}
123
- header_params['accept'] = 'application/json'
124
- header_params['content-type'] = 'application/json'
125
+ header_params[:accept] = 'application/json'
126
+ header_params[:'content-type'] = 'application/json'
125
127
  # rubocop:enable Style/NegatedIf
126
128
 
127
129
  post_body = @api_client.object_to_http_body(create_sender_details)
@@ -174,8 +176,8 @@ module OCI
174
176
 
175
177
  # Header Params
176
178
  header_params = {}
177
- header_params['accept'] = 'application/json'
178
- header_params['content-type'] = 'application/json'
179
+ header_params[:accept] = 'application/json'
180
+ header_params[:'content-type'] = 'application/json'
179
181
  # rubocop:enable Style/NegatedIf
180
182
 
181
183
  post_body = @api_client.object_to_http_body(create_suppression_details)
@@ -229,8 +231,8 @@ module OCI
229
231
 
230
232
  # Header Params
231
233
  header_params = {}
232
- header_params['accept'] = 'application/json'
233
- header_params['content-type'] = 'application/json'
234
+ header_params[:accept] = 'application/json'
235
+ header_params[:'content-type'] = 'application/json'
234
236
  # rubocop:enable Style/NegatedIf
235
237
 
236
238
  post_body = nil
@@ -283,8 +285,8 @@ module OCI
283
285
 
284
286
  # Header Params
285
287
  header_params = {}
286
- header_params['accept'] = 'application/json'
287
- header_params['content-type'] = 'application/json'
288
+ header_params[:accept] = 'application/json'
289
+ header_params[:'content-type'] = 'application/json'
288
290
  # rubocop:enable Style/NegatedIf
289
291
 
290
292
  post_body = nil
@@ -335,8 +337,8 @@ module OCI
335
337
 
336
338
  # Header Params
337
339
  header_params = {}
338
- header_params['accept'] = 'application/json'
339
- header_params['content-type'] = 'application/json'
340
+ header_params[:accept] = 'application/json'
341
+ header_params[:'content-type'] = 'application/json'
340
342
  # rubocop:enable Style/NegatedIf
341
343
 
342
344
  post_body = nil
@@ -390,8 +392,8 @@ module OCI
390
392
 
391
393
  # Header Params
392
394
  header_params = {}
393
- header_params['accept'] = 'application/json'
394
- header_params['content-type'] = 'application/json'
395
+ header_params[:accept] = 'application/json'
396
+ header_params[:'content-type'] = 'application/json'
395
397
  # rubocop:enable Style/NegatedIf
396
398
 
397
399
  post_body = nil
@@ -477,8 +479,8 @@ module OCI
477
479
 
478
480
  # Header Params
479
481
  header_params = {}
480
- header_params['accept'] = 'application/json'
481
- header_params['content-type'] = 'application/json'
482
+ header_params[:accept] = 'application/json'
483
+ header_params[:'content-type'] = 'application/json'
482
484
  # rubocop:enable Style/NegatedIf
483
485
 
484
486
  post_body = nil
@@ -579,8 +581,8 @@ module OCI
579
581
 
580
582
  # Header Params
581
583
  header_params = {}
582
- header_params['accept'] = 'application/json'
583
- header_params['content-type'] = 'application/json'
584
+ header_params[:accept] = 'application/json'
585
+ header_params[:'content-type'] = 'application/json'
584
586
  # rubocop:enable Style/NegatedIf
585
587
 
586
588
  post_body = nil
@@ -24,7 +24,7 @@ module OCI
24
24
  attr_accessor :id
25
25
 
26
26
  # Value of the SPF field. For more information about SPF, please see
27
- # [SPF Authentication](https://docs.us-phoenix-1.oraclecloud.com/Content/Email/Concepts/emaildeliveryoverview.htm#spf).
27
+ # [SPF Authentication](https://docs.cloud.oracle.com/Content/Email/Concepts/emaildeliveryoverview.htm#spf).
28
28
  #
29
29
  # @return [BOOLEAN]
30
30
  attr_accessor :is_spf
@@ -25,7 +25,7 @@ module OCI
25
25
  # @return [String]
26
26
  attr_accessor :id
27
27
 
28
- # The reason that the email address was suppressed. For more information on the types of bounces, see [Suppresion List](https://docs.us-phoenix-1.oraclecloud.com/Content/Email/Concepts/emaildeliveryoverview.htm#suppressionlist).
28
+ # The reason that the email address was suppressed. For more information on the types of bounces, see [Suppresion List](https://docs.cloud.oracle.com/Content/Email/Concepts/emaildeliveryoverview.htm#suppressionlist).
29
29
  # @return [String]
30
30
  attr_reader :reason
31
31
 
@@ -29,10 +29,12 @@ module OCI
29
29
 
30
30
 
31
31
  # Creates a new FileStorageClient.
32
- # If a config is not specified, then the global OCI.config will be used.
32
+ # Notes:
33
+ # If a config is not specified, then the global OCI.config will be used.
34
+ # This client is not thread-safe
33
35
  #
34
- # A region must be specified in either the config or the region parameter. If specified
35
- # in both, then the region parameter will be used.
36
+ # A region must be specified in either the config or the region parameter. If specified in both,
37
+ # then the region parameter will be used.
36
38
  #
37
39
  # @param [Config] config A Config object.
38
40
  # @param [String] region A region used to determine the service endpoint. This will usually
@@ -127,8 +129,8 @@ module OCI
127
129
 
128
130
  # Header Params
129
131
  header_params = {}
130
- header_params['accept'] = 'application/json'
131
- header_params['content-type'] = 'application/json'
132
+ header_params[:accept] = 'application/json'
133
+ header_params[:'content-type'] = 'application/json'
132
134
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
133
135
  # rubocop:enable Style/NegatedIf
134
136
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -211,8 +213,8 @@ module OCI
211
213
 
212
214
  # Header Params
213
215
  header_params = {}
214
- header_params['accept'] = 'application/json'
215
- header_params['content-type'] = 'application/json'
216
+ header_params[:accept] = 'application/json'
217
+ header_params[:'content-type'] = 'application/json'
216
218
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
217
219
  # rubocop:enable Style/NegatedIf
218
220
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -301,8 +303,8 @@ module OCI
301
303
 
302
304
  # Header Params
303
305
  header_params = {}
304
- header_params['accept'] = 'application/json'
305
- header_params['content-type'] = 'application/json'
306
+ header_params[:accept] = 'application/json'
307
+ header_params[:'content-type'] = 'application/json'
306
308
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
307
309
  # rubocop:enable Style/NegatedIf
308
310
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -361,8 +363,8 @@ module OCI
361
363
 
362
364
  # Header Params
363
365
  header_params = {}
364
- header_params['accept'] = 'application/json'
365
- header_params['content-type'] = 'application/json'
366
+ header_params[:accept] = 'application/json'
367
+ header_params[:'content-type'] = 'application/json'
366
368
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
367
369
  # rubocop:enable Style/NegatedIf
368
370
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -421,8 +423,8 @@ module OCI
421
423
 
422
424
  # Header Params
423
425
  header_params = {}
424
- header_params['accept'] = 'application/json'
425
- header_params['content-type'] = 'application/json'
426
+ header_params[:accept] = 'application/json'
427
+ header_params[:'content-type'] = 'application/json'
426
428
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
427
429
  # rubocop:enable Style/NegatedIf
428
430
 
@@ -481,8 +483,8 @@ module OCI
481
483
 
482
484
  # Header Params
483
485
  header_params = {}
484
- header_params['accept'] = 'application/json'
485
- header_params['content-type'] = 'application/json'
486
+ header_params[:accept] = 'application/json'
487
+ header_params[:'content-type'] = 'application/json'
486
488
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
487
489
  # rubocop:enable Style/NegatedIf
488
490
 
@@ -540,8 +542,8 @@ module OCI
540
542
 
541
543
  # Header Params
542
544
  header_params = {}
543
- header_params['accept'] = 'application/json'
544
- header_params['content-type'] = 'application/json'
545
+ header_params[:accept] = 'application/json'
546
+ header_params[:'content-type'] = 'application/json'
545
547
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
546
548
  # rubocop:enable Style/NegatedIf
547
549
 
@@ -598,8 +600,8 @@ module OCI
598
600
 
599
601
  # Header Params
600
602
  header_params = {}
601
- header_params['accept'] = 'application/json'
602
- header_params['content-type'] = 'application/json'
603
+ header_params[:accept] = 'application/json'
604
+ header_params[:'content-type'] = 'application/json'
603
605
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
604
606
  # rubocop:enable Style/NegatedIf
605
607
 
@@ -650,8 +652,8 @@ module OCI
650
652
 
651
653
  # Header Params
652
654
  header_params = {}
653
- header_params['accept'] = 'application/json'
654
- header_params['content-type'] = 'application/json'
655
+ header_params[:accept] = 'application/json'
656
+ header_params[:'content-type'] = 'application/json'
655
657
  # rubocop:enable Style/NegatedIf
656
658
 
657
659
  post_body = nil
@@ -703,8 +705,8 @@ module OCI
703
705
 
704
706
  # Header Params
705
707
  header_params = {}
706
- header_params['accept'] = 'application/json'
707
- header_params['content-type'] = 'application/json'
708
+ header_params[:accept] = 'application/json'
709
+ header_params[:'content-type'] = 'application/json'
708
710
  # rubocop:enable Style/NegatedIf
709
711
 
710
712
  post_body = nil
@@ -756,8 +758,8 @@ module OCI
756
758
 
757
759
  # Header Params
758
760
  header_params = {}
759
- header_params['accept'] = 'application/json'
760
- header_params['content-type'] = 'application/json'
761
+ header_params[:accept] = 'application/json'
762
+ header_params[:'content-type'] = 'application/json'
761
763
  # rubocop:enable Style/NegatedIf
762
764
 
763
765
  post_body = nil
@@ -809,8 +811,8 @@ module OCI
809
811
 
810
812
  # Header Params
811
813
  header_params = {}
812
- header_params['accept'] = 'application/json'
813
- header_params['content-type'] = 'application/json'
814
+ header_params[:accept] = 'application/json'
815
+ header_params[:'content-type'] = 'application/json'
814
816
  # rubocop:enable Style/NegatedIf
815
817
 
816
818
  post_body = nil
@@ -862,8 +864,8 @@ module OCI
862
864
 
863
865
  # Header Params
864
866
  header_params = {}
865
- header_params['accept'] = 'application/json'
866
- header_params['content-type'] = 'application/json'
867
+ header_params[:accept] = 'application/json'
868
+ header_params[:'content-type'] = 'application/json'
867
869
  # rubocop:enable Style/NegatedIf
868
870
 
869
871
  post_body = nil
@@ -967,8 +969,8 @@ module OCI
967
969
 
968
970
  # Header Params
969
971
  header_params = {}
970
- header_params['accept'] = 'application/json'
971
- header_params['content-type'] = 'application/json'
972
+ header_params[:accept] = 'application/json'
973
+ header_params[:'content-type'] = 'application/json'
972
974
  # rubocop:enable Style/NegatedIf
973
975
 
974
976
  post_body = nil
@@ -1065,8 +1067,8 @@ module OCI
1065
1067
 
1066
1068
  # Header Params
1067
1069
  header_params = {}
1068
- header_params['accept'] = 'application/json'
1069
- header_params['content-type'] = 'application/json'
1070
+ header_params[:accept] = 'application/json'
1071
+ header_params[:'content-type'] = 'application/json'
1070
1072
  # rubocop:enable Style/NegatedIf
1071
1073
 
1072
1074
  post_body = nil
@@ -1169,8 +1171,8 @@ module OCI
1169
1171
 
1170
1172
  # Header Params
1171
1173
  header_params = {}
1172
- header_params['accept'] = 'application/json'
1173
- header_params['content-type'] = 'application/json'
1174
+ header_params[:accept] = 'application/json'
1175
+ header_params[:'content-type'] = 'application/json'
1174
1176
  # rubocop:enable Style/NegatedIf
1175
1177
 
1176
1178
  post_body = nil
@@ -1275,8 +1277,8 @@ module OCI
1275
1277
 
1276
1278
  # Header Params
1277
1279
  header_params = {}
1278
- header_params['accept'] = 'application/json'
1279
- header_params['content-type'] = 'application/json'
1280
+ header_params[:accept] = 'application/json'
1281
+ header_params[:'content-type'] = 'application/json'
1280
1282
  # rubocop:enable Style/NegatedIf
1281
1283
 
1282
1284
  post_body = nil
@@ -1357,8 +1359,8 @@ module OCI
1357
1359
 
1358
1360
  # Header Params
1359
1361
  header_params = {}
1360
- header_params['accept'] = 'application/json'
1361
- header_params['content-type'] = 'application/json'
1362
+ header_params[:accept] = 'application/json'
1363
+ header_params[:'content-type'] = 'application/json'
1362
1364
  # rubocop:enable Style/NegatedIf
1363
1365
 
1364
1366
  post_body = nil
@@ -1416,8 +1418,8 @@ module OCI
1416
1418
 
1417
1419
  # Header Params
1418
1420
  header_params = {}
1419
- header_params['accept'] = 'application/json'
1420
- header_params['content-type'] = 'application/json'
1421
+ header_params[:accept] = 'application/json'
1422
+ header_params[:'content-type'] = 'application/json'
1421
1423
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
1422
1424
  # rubocop:enable Style/NegatedIf
1423
1425
 
@@ -1476,8 +1478,8 @@ module OCI
1476
1478
 
1477
1479
  # Header Params
1478
1480
  header_params = {}
1479
- header_params['accept'] = 'application/json'
1480
- header_params['content-type'] = 'application/json'
1481
+ header_params[:accept] = 'application/json'
1482
+ header_params[:'content-type'] = 'application/json'
1481
1483
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
1482
1484
  # rubocop:enable Style/NegatedIf
1483
1485
 
@@ -1538,8 +1540,8 @@ module OCI
1538
1540
 
1539
1541
  # Header Params
1540
1542
  header_params = {}
1541
- header_params['accept'] = 'application/json'
1542
- header_params['content-type'] = 'application/json'
1543
+ header_params[:accept] = 'application/json'
1544
+ header_params[:'content-type'] = 'application/json'
1543
1545
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
1544
1546
  # rubocop:enable Style/NegatedIf
1545
1547
 
@@ -1598,8 +1600,8 @@ module OCI
1598
1600
 
1599
1601
  # Header Params
1600
1602
  header_params = {}
1601
- header_params['accept'] = 'application/json'
1602
- header_params['content-type'] = 'application/json'
1603
+ header_params[:accept] = 'application/json'
1604
+ header_params[:'content-type'] = 'application/json'
1603
1605
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
1604
1606
  # rubocop:enable Style/NegatedIf
1605
1607
 
@@ -29,10 +29,12 @@ module OCI
29
29
 
30
30
 
31
31
  # Creates a new IdentityClient.
32
- # If a config is not specified, then the global OCI.config will be used.
32
+ # Notes:
33
+ # If a config is not specified, then the global OCI.config will be used.
34
+ # This client is not thread-safe
33
35
  #
34
- # A region must be specified in either the config or the region parameter. If specified
35
- # in both, then the region parameter will be used.
36
+ # A region must be specified in either the config or the region parameter. If specified in both,
37
+ # then the region parameter will be used.
36
38
  #
37
39
  # @param [Config] config A Config object.
38
40
  # @param [String] region A region used to determine the service endpoint. This will usually
@@ -129,8 +131,8 @@ module OCI
129
131
 
130
132
  # Header Params
131
133
  header_params = {}
132
- header_params['accept'] = 'application/json'
133
- header_params['content-type'] = 'application/json'
134
+ header_params[:accept] = 'application/json'
135
+ header_params[:'content-type'] = 'application/json'
134
136
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
135
137
  # rubocop:enable Style/NegatedIf
136
138
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -200,8 +202,8 @@ module OCI
200
202
 
201
203
  # Header Params
202
204
  header_params = {}
203
- header_params['accept'] = 'application/json'
204
- header_params['content-type'] = 'application/json'
205
+ header_params[:accept] = 'application/json'
206
+ header_params[:'content-type'] = 'application/json'
205
207
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
206
208
  # rubocop:enable Style/NegatedIf
207
209
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -277,8 +279,8 @@ module OCI
277
279
 
278
280
  # Header Params
279
281
  header_params = {}
280
- header_params['accept'] = 'application/json'
281
- header_params['content-type'] = 'application/json'
282
+ header_params[:accept] = 'application/json'
283
+ header_params[:'content-type'] = 'application/json'
282
284
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
283
285
  # rubocop:enable Style/NegatedIf
284
286
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -349,8 +351,8 @@ module OCI
349
351
 
350
352
  # Header Params
351
353
  header_params = {}
352
- header_params['accept'] = 'application/json'
353
- header_params['content-type'] = 'application/json'
354
+ header_params[:accept] = 'application/json'
355
+ header_params[:'content-type'] = 'application/json'
354
356
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
355
357
  # rubocop:enable Style/NegatedIf
356
358
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -425,8 +427,8 @@ module OCI
425
427
 
426
428
  # Header Params
427
429
  header_params = {}
428
- header_params['accept'] = 'application/json'
429
- header_params['content-type'] = 'application/json'
430
+ header_params[:accept] = 'application/json'
431
+ header_params[:'content-type'] = 'application/json'
430
432
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
431
433
  # rubocop:enable Style/NegatedIf
432
434
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -504,8 +506,8 @@ module OCI
504
506
 
505
507
  # Header Params
506
508
  header_params = {}
507
- header_params['accept'] = 'application/json'
508
- header_params['content-type'] = 'application/json'
509
+ header_params[:accept] = 'application/json'
510
+ header_params[:'content-type'] = 'application/json'
509
511
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
510
512
  # rubocop:enable Style/NegatedIf
511
513
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -580,8 +582,8 @@ module OCI
580
582
 
581
583
  # Header Params
582
584
  header_params = {}
583
- header_params['accept'] = 'application/json'
584
- header_params['content-type'] = 'application/json'
585
+ header_params[:accept] = 'application/json'
586
+ header_params[:'content-type'] = 'application/json'
585
587
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
586
588
  # rubocop:enable Style/NegatedIf
587
589
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -643,8 +645,8 @@ module OCI
643
645
 
644
646
  # Header Params
645
647
  header_params = {}
646
- header_params['accept'] = 'application/json'
647
- header_params['content-type'] = 'application/json'
648
+ header_params[:accept] = 'application/json'
649
+ header_params[:'content-type'] = 'application/json'
648
650
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
649
651
  # rubocop:enable Style/NegatedIf
650
652
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -713,8 +715,8 @@ module OCI
713
715
 
714
716
  # Header Params
715
717
  header_params = {}
716
- header_params['accept'] = 'application/json'
717
- header_params['content-type'] = 'application/json'
718
+ header_params[:accept] = 'application/json'
719
+ header_params[:'content-type'] = 'application/json'
718
720
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
719
721
  # rubocop:enable Style/NegatedIf
720
722
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -788,8 +790,8 @@ module OCI
788
790
 
789
791
  # Header Params
790
792
  header_params = {}
791
- header_params['accept'] = 'application/json'
792
- header_params['content-type'] = 'application/json'
793
+ header_params[:accept] = 'application/json'
794
+ header_params[:'content-type'] = 'application/json'
793
795
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
794
796
  # rubocop:enable Style/NegatedIf
795
797
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -850,8 +852,8 @@ module OCI
850
852
 
851
853
  # Header Params
852
854
  header_params = {}
853
- header_params['accept'] = 'application/json'
854
- header_params['content-type'] = 'application/json'
855
+ header_params[:accept] = 'application/json'
856
+ header_params[:'content-type'] = 'application/json'
855
857
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
856
858
  # rubocop:enable Style/NegatedIf
857
859
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -915,8 +917,8 @@ module OCI
915
917
 
916
918
  # Header Params
917
919
  header_params = {}
918
- header_params['accept'] = 'application/json'
919
- header_params['content-type'] = 'application/json'
920
+ header_params[:accept] = 'application/json'
921
+ header_params[:'content-type'] = 'application/json'
920
922
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
921
923
  # rubocop:enable Style/NegatedIf
922
924
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -988,8 +990,8 @@ module OCI
988
990
 
989
991
  # Header Params
990
992
  header_params = {}
991
- header_params['accept'] = 'application/json'
992
- header_params['content-type'] = 'application/json'
993
+ header_params[:accept] = 'application/json'
994
+ header_params[:'content-type'] = 'application/json'
993
995
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
994
996
  # rubocop:enable Style/NegatedIf
995
997
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -1062,8 +1064,8 @@ module OCI
1062
1064
 
1063
1065
  # Header Params
1064
1066
  header_params = {}
1065
- header_params['accept'] = 'application/json'
1066
- header_params['content-type'] = 'application/json'
1067
+ header_params[:accept] = 'application/json'
1068
+ header_params[:'content-type'] = 'application/json'
1067
1069
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
1068
1070
  # rubocop:enable Style/NegatedIf
1069
1071
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -1137,8 +1139,8 @@ module OCI
1137
1139
 
1138
1140
  # Header Params
1139
1141
  header_params = {}
1140
- header_params['accept'] = 'application/json'
1141
- header_params['content-type'] = 'application/json'
1142
+ header_params[:accept] = 'application/json'
1143
+ header_params[:'content-type'] = 'application/json'
1142
1144
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
1143
1145
  # rubocop:enable Style/NegatedIf
1144
1146
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -1230,8 +1232,8 @@ module OCI
1230
1232
 
1231
1233
  # Header Params
1232
1234
  header_params = {}
1233
- header_params['accept'] = 'application/json'
1234
- header_params['content-type'] = 'application/json'
1235
+ header_params[:accept] = 'application/json'
1236
+ header_params[:'content-type'] = 'application/json'
1235
1237
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
1236
1238
  # rubocop:enable Style/NegatedIf
1237
1239
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
@@ -1296,8 +1298,8 @@ module OCI
1296
1298
 
1297
1299
  # Header Params
1298
1300
  header_params = {}
1299
- header_params['accept'] = 'application/json'
1300
- header_params['content-type'] = 'application/json'
1301
+ header_params[:accept] = 'application/json'
1302
+ header_params[:'content-type'] = 'application/json'
1301
1303
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
1302
1304
  # rubocop:enable Style/NegatedIf
1303
1305
 
@@ -1355,8 +1357,8 @@ module OCI
1355
1357
 
1356
1358
  # Header Params
1357
1359
  header_params = {}
1358
- header_params['accept'] = 'application/json'
1359
- header_params['content-type'] = 'application/json'
1360
+ header_params[:accept] = 'application/json'
1361
+ header_params[:'content-type'] = 'application/json'
1360
1362
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
1361
1363
  # rubocop:enable Style/NegatedIf
1362
1364
 
@@ -1414,8 +1416,8 @@ module OCI
1414
1416
 
1415
1417
  # Header Params
1416
1418
  header_params = {}
1417
- header_params['accept'] = 'application/json'
1418
- header_params['content-type'] = 'application/json'
1419
+ header_params[:accept] = 'application/json'
1420
+ header_params[:'content-type'] = 'application/json'
1419
1421
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
1420
1422
  # rubocop:enable Style/NegatedIf
1421
1423
 
@@ -1470,8 +1472,8 @@ module OCI
1470
1472
 
1471
1473
  # Header Params
1472
1474
  header_params = {}
1473
- header_params['accept'] = 'application/json'
1474
- header_params['content-type'] = 'application/json'
1475
+ header_params[:accept] = 'application/json'
1476
+ header_params[:'content-type'] = 'application/json'
1475
1477
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
1476
1478
  # rubocop:enable Style/NegatedIf
1477
1479
 
@@ -1526,8 +1528,8 @@ module OCI
1526
1528
 
1527
1529
  # Header Params
1528
1530
  header_params = {}
1529
- header_params['accept'] = 'application/json'
1530
- header_params['content-type'] = 'application/json'
1531
+ header_params[:accept] = 'application/json'
1532
+ header_params[:'content-type'] = 'application/json'
1531
1533
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
1532
1534
  # rubocop:enable Style/NegatedIf
1533
1535
 
@@ -1583,8 +1585,8 @@ module OCI
1583
1585
 
1584
1586
  # Header Params
1585
1587
  header_params = {}
1586
- header_params['accept'] = 'application/json'
1587
- header_params['content-type'] = 'application/json'
1588
+ header_params[:accept] = 'application/json'
1589
+ header_params[:'content-type'] = 'application/json'
1588
1590
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
1589
1591
  # rubocop:enable Style/NegatedIf
1590
1592
 
@@ -1641,8 +1643,8 @@ module OCI
1641
1643
 
1642
1644
  # Header Params
1643
1645
  header_params = {}
1644
- header_params['accept'] = 'application/json'
1645
- header_params['content-type'] = 'application/json'
1646
+ header_params[:accept] = 'application/json'
1647
+ header_params[:'content-type'] = 'application/json'
1646
1648
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
1647
1649
  # rubocop:enable Style/NegatedIf
1648
1650
 
@@ -1696,8 +1698,8 @@ module OCI
1696
1698
 
1697
1699
  # Header Params
1698
1700
  header_params = {}
1699
- header_params['accept'] = 'application/json'
1700
- header_params['content-type'] = 'application/json'
1701
+ header_params[:accept] = 'application/json'
1702
+ header_params[:'content-type'] = 'application/json'
1701
1703
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
1702
1704
  # rubocop:enable Style/NegatedIf
1703
1705
 
@@ -1755,8 +1757,8 @@ module OCI
1755
1757
 
1756
1758
  # Header Params
1757
1759
  header_params = {}
1758
- header_params['accept'] = 'application/json'
1759
- header_params['content-type'] = 'application/json'
1760
+ header_params[:accept] = 'application/json'
1761
+ header_params[:'content-type'] = 'application/json'
1760
1762
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
1761
1763
  # rubocop:enable Style/NegatedIf
1762
1764
 
@@ -1816,8 +1818,8 @@ module OCI
1816
1818
 
1817
1819
  # Header Params
1818
1820
  header_params = {}
1819
- header_params['accept'] = 'application/json'
1820
- header_params['content-type'] = 'application/json'
1821
+ header_params[:accept] = 'application/json'
1822
+ header_params[:'content-type'] = 'application/json'
1821
1823
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
1822
1824
  # rubocop:enable Style/NegatedIf
1823
1825
 
@@ -1871,8 +1873,8 @@ module OCI
1871
1873
 
1872
1874
  # Header Params
1873
1875
  header_params = {}
1874
- header_params['accept'] = 'application/json'
1875
- header_params['content-type'] = 'application/json'
1876
+ header_params[:accept] = 'application/json'
1877
+ header_params[:'content-type'] = 'application/json'
1876
1878
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
1877
1879
  # rubocop:enable Style/NegatedIf
1878
1880
 
@@ -1931,8 +1933,8 @@ module OCI
1931
1933
 
1932
1934
  # Header Params
1933
1935
  header_params = {}
1934
- header_params['accept'] = 'application/json'
1935
- header_params['content-type'] = 'application/json'
1936
+ header_params[:accept] = 'application/json'
1937
+ header_params[:'content-type'] = 'application/json'
1936
1938
  # rubocop:enable Style/NegatedIf
1937
1939
 
1938
1940
  post_body = nil
@@ -1985,8 +1987,8 @@ module OCI
1985
1987
 
1986
1988
  # Header Params
1987
1989
  header_params = {}
1988
- header_params['accept'] = 'application/json'
1989
- header_params['content-type'] = 'application/json'
1990
+ header_params[:accept] = 'application/json'
1991
+ header_params[:'content-type'] = 'application/json'
1990
1992
  # rubocop:enable Style/NegatedIf
1991
1993
 
1992
1994
  post_body = nil
@@ -2043,8 +2045,8 @@ module OCI
2043
2045
 
2044
2046
  # Header Params
2045
2047
  header_params = {}
2046
- header_params['accept'] = 'application/json'
2047
- header_params['content-type'] = 'application/json'
2048
+ header_params[:accept] = 'application/json'
2049
+ header_params[:'content-type'] = 'application/json'
2048
2050
  # rubocop:enable Style/NegatedIf
2049
2051
 
2050
2052
  post_body = nil
@@ -2096,8 +2098,8 @@ module OCI
2096
2098
 
2097
2099
  # Header Params
2098
2100
  header_params = {}
2099
- header_params['accept'] = 'application/json'
2100
- header_params['content-type'] = 'application/json'
2101
+ header_params[:accept] = 'application/json'
2102
+ header_params[:'content-type'] = 'application/json'
2101
2103
  # rubocop:enable Style/NegatedIf
2102
2104
 
2103
2105
  post_body = nil
@@ -2152,8 +2154,8 @@ module OCI
2152
2154
 
2153
2155
  # Header Params
2154
2156
  header_params = {}
2155
- header_params['accept'] = 'application/json'
2156
- header_params['content-type'] = 'application/json'
2157
+ header_params[:accept] = 'application/json'
2158
+ header_params[:'content-type'] = 'application/json'
2157
2159
  # rubocop:enable Style/NegatedIf
2158
2160
 
2159
2161
  post_body = nil
@@ -2205,8 +2207,8 @@ module OCI
2205
2207
 
2206
2208
  # Header Params
2207
2209
  header_params = {}
2208
- header_params['accept'] = 'application/json'
2209
- header_params['content-type'] = 'application/json'
2210
+ header_params[:accept] = 'application/json'
2211
+ header_params[:'content-type'] = 'application/json'
2210
2212
  # rubocop:enable Style/NegatedIf
2211
2213
 
2212
2214
  post_body = nil
@@ -2263,8 +2265,8 @@ module OCI
2263
2265
 
2264
2266
  # Header Params
2265
2267
  header_params = {}
2266
- header_params['accept'] = 'application/json'
2267
- header_params['content-type'] = 'application/json'
2268
+ header_params[:accept] = 'application/json'
2269
+ header_params[:'content-type'] = 'application/json'
2268
2270
  # rubocop:enable Style/NegatedIf
2269
2271
 
2270
2272
  post_body = nil
@@ -2318,8 +2320,8 @@ module OCI
2318
2320
 
2319
2321
  # Header Params
2320
2322
  header_params = {}
2321
- header_params['accept'] = 'application/json'
2322
- header_params['content-type'] = 'application/json'
2323
+ header_params[:accept] = 'application/json'
2324
+ header_params[:'content-type'] = 'application/json'
2323
2325
  # rubocop:enable Style/NegatedIf
2324
2326
 
2325
2327
  post_body = nil
@@ -2371,8 +2373,8 @@ module OCI
2371
2373
 
2372
2374
  # Header Params
2373
2375
  header_params = {}
2374
- header_params['accept'] = 'application/json'
2375
- header_params['content-type'] = 'application/json'
2376
+ header_params[:accept] = 'application/json'
2377
+ header_params[:'content-type'] = 'application/json'
2376
2378
  # rubocop:enable Style/NegatedIf
2377
2379
 
2378
2380
  post_body = nil
@@ -2424,8 +2426,8 @@ module OCI
2424
2426
 
2425
2427
  # Header Params
2426
2428
  header_params = {}
2427
- header_params['accept'] = 'application/json'
2428
- header_params['content-type'] = 'application/json'
2429
+ header_params[:accept] = 'application/json'
2430
+ header_params[:'content-type'] = 'application/json'
2429
2431
  # rubocop:enable Style/NegatedIf
2430
2432
 
2431
2433
  post_body = nil
@@ -2477,8 +2479,8 @@ module OCI
2477
2479
 
2478
2480
  # Header Params
2479
2481
  header_params = {}
2480
- header_params['accept'] = 'application/json'
2481
- header_params['content-type'] = 'application/json'
2482
+ header_params[:accept] = 'application/json'
2483
+ header_params[:'content-type'] = 'application/json'
2482
2484
  # rubocop:enable Style/NegatedIf
2483
2485
 
2484
2486
  post_body = nil
@@ -2534,8 +2536,8 @@ module OCI
2534
2536
 
2535
2537
  # Header Params
2536
2538
  header_params = {}
2537
- header_params['accept'] = 'application/json'
2538
- header_params['content-type'] = 'application/json'
2539
+ header_params[:accept] = 'application/json'
2540
+ header_params[:'content-type'] = 'application/json'
2539
2541
  # rubocop:enable Style/NegatedIf
2540
2542
 
2541
2543
  post_body = nil
@@ -2589,8 +2591,8 @@ module OCI
2589
2591
 
2590
2592
  # Header Params
2591
2593
  header_params = {}
2592
- header_params['accept'] = 'application/json'
2593
- header_params['content-type'] = 'application/json'
2594
+ header_params[:accept] = 'application/json'
2595
+ header_params[:'content-type'] = 'application/json'
2594
2596
  # rubocop:enable Style/NegatedIf
2595
2597
 
2596
2598
  post_body = nil
@@ -2648,8 +2650,8 @@ module OCI
2648
2650
 
2649
2651
  # Header Params
2650
2652
  header_params = {}
2651
- header_params['accept'] = 'application/json'
2652
- header_params['content-type'] = 'application/json'
2653
+ header_params[:accept] = 'application/json'
2654
+ header_params[:'content-type'] = 'application/json'
2653
2655
  # rubocop:enable Style/NegatedIf
2654
2656
 
2655
2657
  post_body = nil
@@ -2710,8 +2712,8 @@ module OCI
2710
2712
 
2711
2713
  # Header Params
2712
2714
  header_params = {}
2713
- header_params['accept'] = 'application/json'
2714
- header_params['content-type'] = 'application/json'
2715
+ header_params[:accept] = 'application/json'
2716
+ header_params[:'content-type'] = 'application/json'
2715
2717
  # rubocop:enable Style/NegatedIf
2716
2718
 
2717
2719
  post_body = nil
@@ -2764,8 +2766,8 @@ module OCI
2764
2766
 
2765
2767
  # Header Params
2766
2768
  header_params = {}
2767
- header_params['accept'] = 'application/json'
2768
- header_params['content-type'] = 'application/json'
2769
+ header_params[:accept] = 'application/json'
2770
+ header_params[:'content-type'] = 'application/json'
2769
2771
  # rubocop:enable Style/NegatedIf
2770
2772
 
2771
2773
  post_body = nil
@@ -2826,8 +2828,8 @@ module OCI
2826
2828
 
2827
2829
  # Header Params
2828
2830
  header_params = {}
2829
- header_params['accept'] = 'application/json'
2830
- header_params['content-type'] = 'application/json'
2831
+ header_params[:accept] = 'application/json'
2832
+ header_params[:'content-type'] = 'application/json'
2831
2833
  # rubocop:enable Style/NegatedIf
2832
2834
 
2833
2835
  post_body = nil
@@ -2886,8 +2888,8 @@ module OCI
2886
2888
 
2887
2889
  # Header Params
2888
2890
  header_params = {}
2889
- header_params['accept'] = 'application/json'
2890
- header_params['content-type'] = 'application/json'
2891
+ header_params[:accept] = 'application/json'
2892
+ header_params[:'content-type'] = 'application/json'
2891
2893
  # rubocop:enable Style/NegatedIf
2892
2894
 
2893
2895
  post_body = nil
@@ -2948,8 +2950,8 @@ module OCI
2948
2950
 
2949
2951
  # Header Params
2950
2952
  header_params = {}
2951
- header_params['accept'] = 'application/json'
2952
- header_params['content-type'] = 'application/json'
2953
+ header_params[:accept] = 'application/json'
2954
+ header_params[:'content-type'] = 'application/json'
2953
2955
  # rubocop:enable Style/NegatedIf
2954
2956
 
2955
2957
  post_body = nil
@@ -3017,8 +3019,8 @@ module OCI
3017
3019
 
3018
3020
  # Header Params
3019
3021
  header_params = {}
3020
- header_params['accept'] = 'application/json'
3021
- header_params['content-type'] = 'application/json'
3022
+ header_params[:accept] = 'application/json'
3023
+ header_params[:'content-type'] = 'application/json'
3022
3024
  # rubocop:enable Style/NegatedIf
3023
3025
 
3024
3026
  post_body = nil
@@ -3075,8 +3077,8 @@ module OCI
3075
3077
 
3076
3078
  # Header Params
3077
3079
  header_params = {}
3078
- header_params['accept'] = 'application/json'
3079
- header_params['content-type'] = 'application/json'
3080
+ header_params[:accept] = 'application/json'
3081
+ header_params[:'content-type'] = 'application/json'
3080
3082
  # rubocop:enable Style/NegatedIf
3081
3083
 
3082
3084
  post_body = nil
@@ -3138,8 +3140,8 @@ module OCI
3138
3140
 
3139
3141
  # Header Params
3140
3142
  header_params = {}
3141
- header_params['accept'] = 'application/json'
3142
- header_params['content-type'] = 'application/json'
3143
+ header_params[:accept] = 'application/json'
3144
+ header_params[:'content-type'] = 'application/json'
3143
3145
  # rubocop:enable Style/NegatedIf
3144
3146
 
3145
3147
  post_body = nil
@@ -3190,8 +3192,8 @@ module OCI
3190
3192
 
3191
3193
  # Header Params
3192
3194
  header_params = {}
3193
- header_params['accept'] = 'application/json'
3194
- header_params['content-type'] = 'application/json'
3195
+ header_params[:accept] = 'application/json'
3196
+ header_params[:'content-type'] = 'application/json'
3195
3197
  # rubocop:enable Style/NegatedIf
3196
3198
 
3197
3199
  post_body = nil
@@ -3240,8 +3242,8 @@ module OCI
3240
3242
 
3241
3243
  # Header Params
3242
3244
  header_params = {}
3243
- header_params['accept'] = 'application/json'
3244
- header_params['content-type'] = 'application/json'
3245
+ header_params[:accept] = 'application/json'
3246
+ header_params[:'content-type'] = 'application/json'
3245
3247
  # rubocop:enable Style/NegatedIf
3246
3248
 
3247
3249
  post_body = nil
@@ -3295,8 +3297,8 @@ module OCI
3295
3297
 
3296
3298
  # Header Params
3297
3299
  header_params = {}
3298
- header_params['accept'] = 'application/json'
3299
- header_params['content-type'] = 'application/json'
3300
+ header_params[:accept] = 'application/json'
3301
+ header_params[:'content-type'] = 'application/json'
3300
3302
  # rubocop:enable Style/NegatedIf
3301
3303
 
3302
3304
  post_body = nil
@@ -3352,8 +3354,8 @@ module OCI
3352
3354
 
3353
3355
  # Header Params
3354
3356
  header_params = {}
3355
- header_params['accept'] = 'application/json'
3356
- header_params['content-type'] = 'application/json'
3357
+ header_params[:accept] = 'application/json'
3358
+ header_params[:'content-type'] = 'application/json'
3357
3359
  # rubocop:enable Style/NegatedIf
3358
3360
 
3359
3361
  post_body = nil
@@ -3416,8 +3418,8 @@ module OCI
3416
3418
 
3417
3419
  # Header Params
3418
3420
  header_params = {}
3419
- header_params['accept'] = 'application/json'
3420
- header_params['content-type'] = 'application/json'
3421
+ header_params[:accept] = 'application/json'
3422
+ header_params[:'content-type'] = 'application/json'
3421
3423
  # rubocop:enable Style/NegatedIf
3422
3424
 
3423
3425
  post_body = nil
@@ -3475,8 +3477,8 @@ module OCI
3475
3477
 
3476
3478
  # Header Params
3477
3479
  header_params = {}
3478
- header_params['accept'] = 'application/json'
3479
- header_params['content-type'] = 'application/json'
3480
+ header_params[:accept] = 'application/json'
3481
+ header_params[:'content-type'] = 'application/json'
3480
3482
  # rubocop:enable Style/NegatedIf
3481
3483
 
3482
3484
  post_body = nil
@@ -3547,8 +3549,8 @@ module OCI
3547
3549
 
3548
3550
  # Header Params
3549
3551
  header_params = {}
3550
- header_params['accept'] = 'application/json'
3551
- header_params['content-type'] = 'application/json'
3552
+ header_params[:accept] = 'application/json'
3553
+ header_params[:'content-type'] = 'application/json'
3552
3554
  # rubocop:enable Style/NegatedIf
3553
3555
 
3554
3556
  post_body = nil
@@ -3608,8 +3610,8 @@ module OCI
3608
3610
 
3609
3611
  # Header Params
3610
3612
  header_params = {}
3611
- header_params['accept'] = 'application/json'
3612
- header_params['content-type'] = 'application/json'
3613
+ header_params[:accept] = 'application/json'
3614
+ header_params[:'content-type'] = 'application/json'
3613
3615
  # rubocop:enable Style/NegatedIf
3614
3616
 
3615
3617
  post_body = nil
@@ -3663,8 +3665,8 @@ module OCI
3663
3665
 
3664
3666
  # Header Params
3665
3667
  header_params = {}
3666
- header_params['accept'] = 'application/json'
3667
- header_params['content-type'] = 'application/json'
3668
+ header_params[:accept] = 'application/json'
3669
+ header_params[:'content-type'] = 'application/json'
3668
3670
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
3669
3671
  # rubocop:enable Style/NegatedIf
3670
3672
 
@@ -3724,8 +3726,8 @@ module OCI
3724
3726
 
3725
3727
  # Header Params
3726
3728
  header_params = {}
3727
- header_params['accept'] = 'application/json'
3728
- header_params['content-type'] = 'application/json'
3729
+ header_params[:accept] = 'application/json'
3730
+ header_params[:'content-type'] = 'application/json'
3729
3731
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
3730
3732
  # rubocop:enable Style/NegatedIf
3731
3733
 
@@ -3782,8 +3784,8 @@ module OCI
3782
3784
 
3783
3785
  # Header Params
3784
3786
  header_params = {}
3785
- header_params['accept'] = 'application/json'
3786
- header_params['content-type'] = 'application/json'
3787
+ header_params[:accept] = 'application/json'
3788
+ header_params[:'content-type'] = 'application/json'
3787
3789
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
3788
3790
  # rubocop:enable Style/NegatedIf
3789
3791
 
@@ -3844,8 +3846,8 @@ module OCI
3844
3846
 
3845
3847
  # Header Params
3846
3848
  header_params = {}
3847
- header_params['accept'] = 'application/json'
3848
- header_params['content-type'] = 'application/json'
3849
+ header_params[:accept] = 'application/json'
3850
+ header_params[:'content-type'] = 'application/json'
3849
3851
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
3850
3852
  # rubocop:enable Style/NegatedIf
3851
3853
 
@@ -3902,8 +3904,8 @@ module OCI
3902
3904
 
3903
3905
  # Header Params
3904
3906
  header_params = {}
3905
- header_params['accept'] = 'application/json'
3906
- header_params['content-type'] = 'application/json'
3907
+ header_params[:accept] = 'application/json'
3908
+ header_params[:'content-type'] = 'application/json'
3907
3909
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
3908
3910
  # rubocop:enable Style/NegatedIf
3909
3911
 
@@ -3960,8 +3962,8 @@ module OCI
3960
3962
 
3961
3963
  # Header Params
3962
3964
  header_params = {}
3963
- header_params['accept'] = 'application/json'
3964
- header_params['content-type'] = 'application/json'
3965
+ header_params[:accept] = 'application/json'
3966
+ header_params[:'content-type'] = 'application/json'
3965
3967
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
3966
3968
  # rubocop:enable Style/NegatedIf
3967
3969
 
@@ -4018,8 +4020,8 @@ module OCI
4018
4020
 
4019
4021
  # Header Params
4020
4022
  header_params = {}
4021
- header_params['accept'] = 'application/json'
4022
- header_params['content-type'] = 'application/json'
4023
+ header_params[:accept] = 'application/json'
4024
+ header_params[:'content-type'] = 'application/json'
4023
4025
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
4024
4026
  # rubocop:enable Style/NegatedIf
4025
4027
 
@@ -4079,8 +4081,8 @@ module OCI
4079
4081
 
4080
4082
  # Header Params
4081
4083
  header_params = {}
4082
- header_params['accept'] = 'application/json'
4083
- header_params['content-type'] = 'application/json'
4084
+ header_params[:accept] = 'application/json'
4085
+ header_params[:'content-type'] = 'application/json'
4084
4086
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
4085
4087
  # rubocop:enable Style/NegatedIf
4086
4088
 
@@ -4140,8 +4142,8 @@ module OCI
4140
4142
 
4141
4143
  # Header Params
4142
4144
  header_params = {}
4143
- header_params['accept'] = 'application/json'
4144
- header_params['content-type'] = 'application/json'
4145
+ header_params[:accept] = 'application/json'
4146
+ header_params[:'content-type'] = 'application/json'
4145
4147
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
4146
4148
  # rubocop:enable Style/NegatedIf
4147
4149
 
@@ -4202,8 +4204,8 @@ module OCI
4202
4204
 
4203
4205
  # Header Params
4204
4206
  header_params = {}
4205
- header_params['accept'] = 'application/json'
4206
- header_params['content-type'] = 'application/json'
4207
+ header_params[:accept] = 'application/json'
4208
+ header_params[:'content-type'] = 'application/json'
4207
4209
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
4208
4210
  # rubocop:enable Style/NegatedIf
4209
4211
 
@@ -4266,8 +4268,8 @@ module OCI
4266
4268
 
4267
4269
  # Header Params
4268
4270
  header_params = {}
4269
- header_params['accept'] = 'application/json'
4270
- header_params['content-type'] = 'application/json'
4271
+ header_params[:accept] = 'application/json'
4272
+ header_params[:'content-type'] = 'application/json'
4271
4273
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
4272
4274
  # rubocop:enable Style/NegatedIf
4273
4275
 
@@ -4327,8 +4329,8 @@ module OCI
4327
4329
 
4328
4330
  # Header Params
4329
4331
  header_params = {}
4330
- header_params['accept'] = 'application/json'
4331
- header_params['content-type'] = 'application/json'
4332
+ header_params[:accept] = 'application/json'
4333
+ header_params[:'content-type'] = 'application/json'
4332
4334
  # rubocop:enable Style/NegatedIf
4333
4335
 
4334
4336
  post_body = @api_client.object_to_http_body(update_tag_details)
@@ -4392,8 +4394,8 @@ module OCI
4392
4394
 
4393
4395
  # Header Params
4394
4396
  header_params = {}
4395
- header_params['accept'] = 'application/json'
4396
- header_params['content-type'] = 'application/json'
4397
+ header_params[:accept] = 'application/json'
4398
+ header_params[:'content-type'] = 'application/json'
4397
4399
  # rubocop:enable Style/NegatedIf
4398
4400
 
4399
4401
  post_body = @api_client.object_to_http_body(update_tag_namespace_details)
@@ -4450,8 +4452,8 @@ module OCI
4450
4452
 
4451
4453
  # Header Params
4452
4454
  header_params = {}
4453
- header_params['accept'] = 'application/json'
4454
- header_params['content-type'] = 'application/json'
4455
+ header_params[:accept] = 'application/json'
4456
+ header_params[:'content-type'] = 'application/json'
4455
4457
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
4456
4458
  # rubocop:enable Style/NegatedIf
4457
4459
 
@@ -4509,8 +4511,8 @@ module OCI
4509
4511
 
4510
4512
  # Header Params
4511
4513
  header_params = {}
4512
- header_params['accept'] = 'application/json'
4513
- header_params['content-type'] = 'application/json'
4514
+ header_params[:accept] = 'application/json'
4515
+ header_params[:'content-type'] = 'application/json'
4514
4516
  header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
4515
4517
  # rubocop:enable Style/NegatedIf
4516
4518
 
@@ -4584,8 +4586,8 @@ module OCI
4584
4586
 
4585
4587
  # Header Params
4586
4588
  header_params = {}
4587
- header_params['accept'] = 'application/json'
4588
- header_params['content-type'] = 'application/json'
4589
+ header_params[:accept] = 'application/json'
4590
+ header_params[:'content-type'] = 'application/json'
4589
4591
  header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
4590
4592
  # rubocop:enable Style/NegatedIf
4591
4593
  header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token