oci 2.5.4 → 2.5.5

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.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/oci/core/compute_client.rb +2 -2
  4. data/lib/oci/core/core.rb +1 -0
  5. data/lib/oci/core/models/attach_paravirtualized_volume_details.rb +1 -1
  6. data/lib/oci/core/models/boot_volume_attachment.rb +1 -1
  7. data/lib/oci/core/models/create_cross_connect_details.rb +20 -4
  8. data/lib/oci/core/models/create_cross_connect_group_details.rb +20 -4
  9. data/lib/oci/core/models/create_image_details.rb +1 -1
  10. data/lib/oci/core/models/create_virtual_circuit_details.rb +16 -1
  11. data/lib/oci/core/models/cross_connect.rb +17 -1
  12. data/lib/oci/core/models/cross_connect_group.rb +17 -1
  13. data/lib/oci/core/models/export_image_via_object_storage_tuple_details.rb +3 -3
  14. data/lib/oci/core/models/export_image_via_object_storage_uri_details.rb +1 -1
  15. data/lib/oci/core/models/fast_connect_provider_service.rb +128 -1
  16. data/lib/oci/core/models/fast_connect_provider_service_key.rb +185 -0
  17. data/lib/oci/core/models/image_source_details.rb +2 -2
  18. data/lib/oci/core/models/launch_instance_details.rb +1 -1
  19. data/lib/oci/core/models/launch_options.rb +1 -1
  20. data/lib/oci/core/models/update_cross_connect_details.rb +20 -4
  21. data/lib/oci/core/models/update_cross_connect_group_details.rb +20 -4
  22. data/lib/oci/core/models/update_virtual_circuit_details.rb +16 -1
  23. data/lib/oci/core/models/virtual_circuit.rb +18 -2
  24. data/lib/oci/core/models/volume_attachment.rb +1 -1
  25. data/lib/oci/core/virtual_network_client.rb +57 -0
  26. data/lib/oci/key_management/kms_crypto_client.rb +4 -4
  27. data/lib/oci/key_management/kms_management_client.rb +13 -13
  28. data/lib/oci/key_management/kms_vault_client.rb +16 -16
  29. data/lib/oci/key_management/models/decrypted_data.rb +1 -1
  30. data/lib/oci/key_management/models/key.rb +3 -3
  31. data/lib/oci/key_management/models/schedule_vault_deletion_details.rb +4 -4
  32. data/lib/oci/key_management/models/vault.rb +1 -1
  33. data/lib/oci/key_management/models/vault_summary.rb +1 -1
  34. data/lib/oci/version.rb +1 -1
  35. metadata +3 -2
@@ -79,7 +79,7 @@ module OCI
79
79
  # @return [String]
80
80
  attr_accessor :volume_id
81
81
 
82
- # Whether the enable encryption in transit for the PV volume attachment is on or not.
82
+ # Whether in-transit encryption for the data volume's paravirtualized attachment is enabled or not.
83
83
  # @return [BOOLEAN]
84
84
  attr_accessor :is_pv_encryption_in_transit_enabled
85
85
 
@@ -3488,6 +3488,63 @@ module OCI
3488
3488
  # rubocop:disable Lint/UnusedMethodArgument
3489
3489
 
3490
3490
 
3491
+ # Gets the specified provider service key's information.
3492
+ #
3493
+ # @param [String] provider_service_id The OCID of the provider service.
3494
+ # @param [String] provider_service_key_name The provider service key name.
3495
+ # @param [Hash] opts the optional parameters
3496
+ # @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
3497
+ # retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
3498
+ # @return [Response] A Response object with data of type {OCI::Core::Models::FastConnectProviderServiceKey FastConnectProviderServiceKey}
3499
+ def get_fast_connect_provider_service_key(provider_service_id, provider_service_key_name, opts = {})
3500
+ logger.debug 'Calling operation VirtualNetworkClient#get_fast_connect_provider_service_key.' if logger
3501
+
3502
+ raise "Missing the required parameter 'provider_service_id' when calling get_fast_connect_provider_service_key." if provider_service_id.nil?
3503
+ raise "Missing the required parameter 'provider_service_key_name' when calling get_fast_connect_provider_service_key." if provider_service_key_name.nil?
3504
+ raise "Parameter value for 'provider_service_id' must not be blank" if OCI::Internal::Util.blank_string?(provider_service_id)
3505
+ raise "Parameter value for 'provider_service_key_name' must not be blank" if OCI::Internal::Util.blank_string?(provider_service_key_name)
3506
+
3507
+ path = '/fastConnectProviderServices/{providerServiceId}/providerServiceKeys/{providerServiceKeyName}'.sub('{providerServiceId}', provider_service_id.to_s).sub('{providerServiceKeyName}', provider_service_key_name.to_s)
3508
+ operation_signing_strategy = :standard
3509
+
3510
+ # rubocop:disable Style/NegatedIf
3511
+ # Query Params
3512
+ query_params = {}
3513
+
3514
+ # Header Params
3515
+ header_params = {}
3516
+ header_params[:accept] = 'application/json'
3517
+ header_params[:'content-type'] = 'application/json'
3518
+ # rubocop:enable Style/NegatedIf
3519
+
3520
+ post_body = nil
3521
+
3522
+ # rubocop:disable Metrics/BlockLength
3523
+ OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'VirtualNetworkClient#get_fast_connect_provider_service_key') do
3524
+ @api_client.call_api(
3525
+ :GET,
3526
+ path,
3527
+ endpoint,
3528
+ header_params: header_params,
3529
+ query_params: query_params,
3530
+ operation_signing_strategy: operation_signing_strategy,
3531
+ body: post_body,
3532
+ return_type: 'OCI::Core::Models::FastConnectProviderServiceKey'
3533
+ )
3534
+ end
3535
+ # rubocop:enable Metrics/BlockLength
3536
+ end
3537
+ # rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
3538
+ # rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
3539
+ # rubocop:enable Metrics/MethodLength, Layout/EmptyLines
3540
+ # rubocop:enable Lint/UnusedMethodArgument
3541
+
3542
+ # rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
3543
+ # rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
3544
+ # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
3545
+ # rubocop:disable Lint/UnusedMethodArgument
3546
+
3547
+
3491
3548
  # Gets the specified internet gateway's information.
3492
3549
  # @param [String] ig_id The OCID of the internet gateway.
3493
3550
  # @param [Hash] opts the optional parameters
@@ -42,7 +42,7 @@ module OCI
42
42
  def initialize(config: nil, endpoint: nil, signer: nil, proxy_settings: nil, retry_config: nil)
43
43
  raise 'A fully qualified endpoint URL must be defined' unless endpoint
44
44
 
45
- @endpoint = endpoint + '/20180608'
45
+ @endpoint = endpoint + '/'
46
46
 
47
47
  # If the signer is an InstancePrincipalsSecurityTokenSigner and no config was supplied (which is valid for instance principals)
48
48
  # then create a dummy config to pass to the ApiClient constructor. If customers wish to create a client which uses instance principals
@@ -98,7 +98,7 @@ module OCI
98
98
 
99
99
  raise "Missing the required parameter 'decrypt_data_details' when calling decrypt." if decrypt_data_details.nil?
100
100
 
101
- path = '/decrypt'
101
+ path = '/20180608/decrypt'
102
102
  operation_signing_strategy = :standard
103
103
 
104
104
  # rubocop:disable Style/NegatedIf
@@ -156,7 +156,7 @@ module OCI
156
156
 
157
157
  raise "Missing the required parameter 'encrypt_data_details' when calling encrypt." if encrypt_data_details.nil?
158
158
 
159
- path = '/encrypt'
159
+ path = '/20180608/encrypt'
160
160
  operation_signing_strategy = :standard
161
161
 
162
162
  # rubocop:disable Style/NegatedIf
@@ -212,7 +212,7 @@ module OCI
212
212
 
213
213
  raise "Missing the required parameter 'generate_key_details' when calling generate_data_encryption_key." if generate_key_details.nil?
214
214
 
215
- path = '/generateDataEncryptionKey'
215
+ path = '/20180608/generateDataEncryptionKey'
216
216
  operation_signing_strategy = :standard
217
217
 
218
218
  # rubocop:disable Style/NegatedIf
@@ -42,7 +42,7 @@ module OCI
42
42
  def initialize(config: nil, endpoint: nil, signer: nil, proxy_settings: nil, retry_config: nil)
43
43
  raise 'A fully qualified endpoint URL must be defined' unless endpoint
44
44
 
45
- @endpoint = endpoint + '/20180608'
45
+ @endpoint = endpoint + '/'
46
46
 
47
47
  # If the signer is an InstancePrincipalsSecurityTokenSigner and no config was supplied (which is valid for instance principals)
48
48
  # then create a dummy config to pass to the ApiClient constructor. If customers wish to create a client which uses instance principals
@@ -104,7 +104,7 @@ module OCI
104
104
 
105
105
  raise "Missing the required parameter 'create_key_details' when calling create_key." if create_key_details.nil?
106
106
 
107
- path = '/keys'
107
+ path = '/20180608/keys'
108
108
  operation_signing_strategy = :standard
109
109
 
110
110
  # rubocop:disable Style/NegatedIf
@@ -146,7 +146,7 @@ module OCI
146
146
  # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
147
147
 
148
148
 
149
- # Generates new cryptographic material for a key. Key must be in an `ENABLED` state to be
149
+ # Generates new cryptographic material for a key. The key must be in an `ENABLED` state to be
150
150
  # rotated.
151
151
  #
152
152
  # @param [String] key_id The OCID of the key.
@@ -171,7 +171,7 @@ module OCI
171
171
  raise "Missing the required parameter 'key_id' when calling create_key_version." if key_id.nil?
172
172
  raise "Parameter value for 'key_id' must not be blank" if OCI::Internal::Util.blank_string?(key_id)
173
173
 
174
- path = '/keys/{keyId}/keyVersions'.sub('{keyId}', key_id.to_s)
174
+ path = '/20180608/keys/{keyId}/keyVersions'.sub('{keyId}', key_id.to_s)
175
175
  operation_signing_strategy = :standard
176
176
 
177
177
  # rubocop:disable Style/NegatedIf
@@ -244,7 +244,7 @@ module OCI
244
244
  raise "Missing the required parameter 'key_id' when calling disable_key." if key_id.nil?
245
245
  raise "Parameter value for 'key_id' must not be blank" if OCI::Internal::Util.blank_string?(key_id)
246
246
 
247
- path = '/keys/{keyId}/actions/disable'.sub('{keyId}', key_id.to_s)
247
+ path = '/20180608/keys/{keyId}/actions/disable'.sub('{keyId}', key_id.to_s)
248
248
  operation_signing_strategy = :standard
249
249
 
250
250
  # rubocop:disable Style/NegatedIf
@@ -318,7 +318,7 @@ module OCI
318
318
  raise "Missing the required parameter 'key_id' when calling enable_key." if key_id.nil?
319
319
  raise "Parameter value for 'key_id' must not be blank" if OCI::Internal::Util.blank_string?(key_id)
320
320
 
321
- path = '/keys/{keyId}/actions/enable'.sub('{keyId}', key_id.to_s)
321
+ path = '/20180608/keys/{keyId}/actions/enable'.sub('{keyId}', key_id.to_s)
322
322
  operation_signing_strategy = :standard
323
323
 
324
324
  # rubocop:disable Style/NegatedIf
@@ -378,7 +378,7 @@ module OCI
378
378
  raise "Missing the required parameter 'key_id' when calling get_key." if key_id.nil?
379
379
  raise "Parameter value for 'key_id' must not be blank" if OCI::Internal::Util.blank_string?(key_id)
380
380
 
381
- path = '/keys/{keyId}'.sub('{keyId}', key_id.to_s)
381
+ path = '/20180608/keys/{keyId}'.sub('{keyId}', key_id.to_s)
382
382
  operation_signing_strategy = :standard
383
383
 
384
384
  # rubocop:disable Style/NegatedIf
@@ -438,7 +438,7 @@ module OCI
438
438
  raise "Parameter value for 'key_id' must not be blank" if OCI::Internal::Util.blank_string?(key_id)
439
439
  raise "Parameter value for 'key_version_id' must not be blank" if OCI::Internal::Util.blank_string?(key_version_id)
440
440
 
441
- path = '/keys/{keyId}/keyVersions/{keyVersionId}'.sub('{keyId}', key_id.to_s).sub('{keyVersionId}', key_version_id.to_s)
441
+ path = '/20180608/keys/{keyId}/keyVersions/{keyVersionId}'.sub('{keyId}', key_id.to_s).sub('{keyVersionId}', key_version_id.to_s)
442
442
  operation_signing_strategy = :standard
443
443
 
444
444
  # rubocop:disable Style/NegatedIf
@@ -516,7 +516,7 @@ module OCI
516
516
  end
517
517
  raise "Parameter value for 'key_id' must not be blank" if OCI::Internal::Util.blank_string?(key_id)
518
518
 
519
- path = '/keys/{keyId}/keyVersions'.sub('{keyId}', key_id.to_s)
519
+ path = '/20180608/keys/{keyId}/keyVersions'.sub('{keyId}', key_id.to_s)
520
520
  operation_signing_strategy = :standard
521
521
 
522
522
  # rubocop:disable Style/NegatedIf
@@ -597,7 +597,7 @@ module OCI
597
597
  raise 'Invalid value for "sort_order", must be one of ASC, DESC.'
598
598
  end
599
599
 
600
- path = '/keys'
600
+ path = '/20180608/keys'
601
601
  operation_signing_strategy = :standard
602
602
 
603
603
  # rubocop:disable Style/NegatedIf
@@ -643,8 +643,8 @@ module OCI
643
643
 
644
644
 
645
645
  # Updates the properties of a key. Specifically, you can update the
646
- # `displayName` , `freeformTags`, and `definedTags` properties. Furthermore,
647
- # the key must in an `ACTIVE` or `CREATING` state.
646
+ # `displayName`, `freeformTags`, and `definedTags` properties. Furthermore,
647
+ # the key must in an `ACTIVE` or `CREATING` state to be updated.
648
648
  #
649
649
  # @param [String] key_id The OCID of the key.
650
650
  # @param [OCI::KeyManagement::Models::UpdateKeyDetails] update_key_details UpdateKeyDetails
@@ -669,7 +669,7 @@ module OCI
669
669
  raise "Missing the required parameter 'update_key_details' when calling update_key." if update_key_details.nil?
670
670
  raise "Parameter value for 'key_id' must not be blank" if OCI::Internal::Util.blank_string?(key_id)
671
671
 
672
- path = '/keys/{keyId}'.sub('{keyId}', key_id.to_s)
672
+ path = '/20180608/keys/{keyId}'.sub('{keyId}', key_id.to_s)
673
673
  operation_signing_strategy = :standard
674
674
 
675
675
  # rubocop:disable Style/NegatedIf
@@ -76,7 +76,7 @@ module OCI
76
76
  @retry_config = retry_config
77
77
 
78
78
  if endpoint
79
- @endpoint = endpoint + '/20180608'
79
+ @endpoint = endpoint + '/'
80
80
  else
81
81
  region ||= config.region
82
82
  region ||= signer.region if signer.respond_to?(:region)
@@ -94,7 +94,7 @@ module OCI
94
94
 
95
95
  raise 'A region must be specified.' unless @region
96
96
 
97
- @endpoint = OCI::Regions.get_service_endpoint(@region, :KmsVaultClient) + '/20180608'
97
+ @endpoint = OCI::Regions.get_service_endpoint(@region, :KmsVaultClient) + '/'
98
98
  logger.info "KmsVaultClient endpoint set to '#{@endpoint} from region #{@region}'." if logger
99
99
  end
100
100
 
@@ -108,8 +108,8 @@ module OCI
108
108
  # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
109
109
 
110
110
 
111
- # Cancels the scheduled deletion of the specified Vault, which must be in PendingDeletion
112
- # state. The Vault and all Keys in it will be moved back to their previous states before
111
+ # Cancels the scheduled deletion of the specified vault. Canceling a scheduled deletion
112
+ # restores the vault and all keys in it to the respective states they were in before
113
113
  # the deletion was scheduled.
114
114
  #
115
115
  # @param [String] vault_id The OCID of the vault.
@@ -140,7 +140,7 @@ module OCI
140
140
  raise "Missing the required parameter 'vault_id' when calling cancel_vault_deletion." if vault_id.nil?
141
141
  raise "Parameter value for 'vault_id' must not be blank" if OCI::Internal::Util.blank_string?(vault_id)
142
142
 
143
- path = '/vaults/{vaultId}/actions/cancelDeletion'.sub('{vaultId}', vault_id.to_s)
143
+ path = '/20180608/vaults/{vaultId}/actions/cancelDeletion'.sub('{vaultId}', vault_id.to_s)
144
144
  operation_signing_strategy = :standard
145
145
 
146
146
  # rubocop:disable Style/NegatedIf
@@ -186,7 +186,7 @@ module OCI
186
186
  # Creates a new vault. The type of vault you create determines key
187
187
  # placement, pricing, and available options. Options include storage
188
188
  # isolation, a dedicated service endpoint instead of a shared service
189
- # endpoint for API calls, and a dedicated HSM or a multitenant HSM.
189
+ # endpoint for API calls, and a dedicated hardware security module (HSM) or a multitenant HSM.
190
190
  #
191
191
  # @param [OCI::KeyManagement::Models::CreateVaultDetails] create_vault_details CreateVaultDetails
192
192
  # @param [Hash] opts the optional parameters
@@ -209,7 +209,7 @@ module OCI
209
209
 
210
210
  raise "Missing the required parameter 'create_vault_details' when calling create_vault." if create_vault_details.nil?
211
211
 
212
- path = '/vaults'
212
+ path = '/20180608/vaults'
213
213
  operation_signing_strategy = :standard
214
214
 
215
215
  # rubocop:disable Style/NegatedIf
@@ -268,7 +268,7 @@ module OCI
268
268
  raise "Missing the required parameter 'vault_id' when calling get_vault." if vault_id.nil?
269
269
  raise "Parameter value for 'vault_id' must not be blank" if OCI::Internal::Util.blank_string?(vault_id)
270
270
 
271
- path = '/vaults/{vaultId}'.sub('{vaultId}', vault_id.to_s)
271
+ path = '/20180608/vaults/{vaultId}'.sub('{vaultId}', vault_id.to_s)
272
272
  operation_signing_strategy = :standard
273
273
 
274
274
  # rubocop:disable Style/NegatedIf
@@ -308,7 +308,7 @@ module OCI
308
308
  # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
309
309
 
310
310
 
311
- # Lists vaults in the specified compartment.
311
+ # Lists the vaults in the specified compartment.
312
312
  #
313
313
  # @param [String] compartment_id The OCID of the compartment.
314
314
  # @param [Hash] opts the optional parameters
@@ -345,7 +345,7 @@ module OCI
345
345
  raise 'Invalid value for "sort_order", must be one of ASC, DESC.'
346
346
  end
347
347
 
348
- path = '/vaults'
348
+ path = '/20180608/vaults'
349
349
  operation_signing_strategy = :standard
350
350
 
351
351
  # rubocop:disable Style/NegatedIf
@@ -390,8 +390,8 @@ module OCI
390
390
  # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
391
391
 
392
392
 
393
- # Schedules the deletion of the specified Vault. The Vault and all Keys in it
394
- # will be moved to PendingDeletion state and deleted after the retention period.
393
+ # Schedules the deletion of the specified vault. This sets the state of the vault and all keys in it
394
+ # to `PENDING_DELETION` and then deletes them after the retention period ends.
395
395
  #
396
396
  # @param [String] vault_id The OCID of the vault.
397
397
  # @param [OCI::KeyManagement::Models::ScheduleVaultDeletionDetails] schedule_vault_deletion_details ScheduleVaultDeletionDetails
@@ -423,7 +423,7 @@ module OCI
423
423
  raise "Missing the required parameter 'schedule_vault_deletion_details' when calling schedule_vault_deletion." if schedule_vault_deletion_details.nil?
424
424
  raise "Parameter value for 'vault_id' must not be blank" if OCI::Internal::Util.blank_string?(vault_id)
425
425
 
426
- path = '/vaults/{vaultId}/actions/scheduleDeletion'.sub('{vaultId}', vault_id.to_s)
426
+ path = '/20180608/vaults/{vaultId}/actions/scheduleDeletion'.sub('{vaultId}', vault_id.to_s)
427
427
  operation_signing_strategy = :standard
428
428
 
429
429
  # rubocop:disable Style/NegatedIf
@@ -467,8 +467,8 @@ module OCI
467
467
 
468
468
 
469
469
  # Updates the properties of a vault. Specifically, you can update the
470
- # `displayName` , `freeformTags`, and `definedTags` properties. Furthermore,
471
- # the vault must be in an `ACTIVE` or `CREATING` state.
470
+ # `displayName`, `freeformTags`, and `definedTags` properties. Furthermore,
471
+ # the vault must be in an `ACTIVE` or `CREATING` state to be updated.
472
472
  #
473
473
  # @param [String] vault_id The OCID of the vault.
474
474
  # @param [OCI::KeyManagement::Models::UpdateVaultDetails] update_vault_details UpdateVaultDetails
@@ -493,7 +493,7 @@ module OCI
493
493
  raise "Missing the required parameter 'update_vault_details' when calling update_vault." if update_vault_details.nil?
494
494
  raise "Parameter value for 'vault_id' must not be blank" if OCI::Internal::Util.blank_string?(vault_id)
495
495
 
496
- path = '/vaults/{vaultId}'.sub('{vaultId}', vault_id.to_s)
496
+ path = '/20180608/vaults/{vaultId}'.sub('{vaultId}', vault_id.to_s)
497
497
  operation_signing_strategy = :standard
498
498
 
499
499
  # rubocop:disable Style/NegatedIf
@@ -6,7 +6,7 @@ require 'date'
6
6
  module OCI
7
7
  # DecryptedData model.
8
8
  class KeyManagement::Models::DecryptedData # rubocop:disable Metrics/LineLength
9
- # **[Required]** The decrypted data, in the form of a base64-encoded value.
9
+ # **[Required]** The decrypted data, expressed as a base64-encoded value.
10
10
  # @return [String]
11
11
  attr_accessor :plaintext
12
12
 
@@ -25,9 +25,9 @@ module OCI
25
25
  # @return [String]
26
26
  attr_accessor :compartment_id
27
27
 
28
- # **[Required]** The OCID of the KeyVersion resource used in cryptographic operations. During key rotation, service may be in transitional state
29
- # where this or a newer KeyVersion are used intermittently, and currentKeyVersion field is updated once service is guaranteed to
30
- # use new KeyVersion for all consequent encrypt operations.
28
+ # **[Required]** The OCID of the KeyVersion resource used in cryptographic operations. During key rotation, service might be in a transitional state
29
+ # where this or a newer KeyVersion are used intermittently. The currentKeyVersion field is updated when the service is guaranteed to
30
+ # use the new KeyVersion for all subsequent encryption operations.
31
31
  #
32
32
  # @return [String]
33
33
  attr_accessor :current_key_version
@@ -4,11 +4,11 @@ require 'date'
4
4
 
5
5
  # rubocop:disable Lint/UnneededCopDisableDirective
6
6
  module OCI
7
- # Details for scheduling Vault deletion
7
+ # Details for scheduling vault deletion
8
8
  class KeyManagement::Models::ScheduleVaultDeletionDetails # rubocop:disable Metrics/LineLength
9
- # An optional property to indicate the deletion time of the Vault.
10
- # The time format should comply with RFC-3339 standards. This time must be between 7 to 30 days from the time
11
- # when the request is received. If the property is missing, it will be set to 30 days from request time by default.
9
+ # An optional property to indicate the deletion time of the vault, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339)
10
+ # timestamp format. The specified time must be between 7 and 30 days from the time
11
+ # when the request is received. If this property is missing, it will be set to 30 days from the time of the request by default.
12
12
  #
13
13
  # @return [DateTime]
14
14
  attr_accessor :time_of_deletion
@@ -74,7 +74,7 @@ module OCI
74
74
  # @return [DateTime]
75
75
  attr_accessor :time_created
76
76
 
77
- # An optional property for the deletion time of the Vault expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format.
77
+ # An optional property for the deletion time of the vault, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format.
78
78
  # Example: `2018-04-03T21:10:29.600Z`
79
79
  #
80
80
  # @return [DateTime]
@@ -23,7 +23,7 @@ module OCI
23
23
  VAULT_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
24
24
  ].freeze
25
25
 
26
- # **[Required]** The OCID of the compartment that contains this vault.
26
+ # **[Required]** The OCID of the compartment that contains a particular vault.
27
27
  # @return [String]
28
28
  attr_accessor :compartment_id
29
29
 
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
2
2
 
3
3
  module OCI
4
- VERSION = '2.5.4'.freeze
4
+ VERSION = '2.5.5'.freeze
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oci
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.4
4
+ version: 2.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oracle
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-25 00:00:00.000000000 Z
11
+ date: 2019-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -412,6 +412,7 @@ files:
412
412
  - "./lib/oci/core/models/export_image_via_object_storage_tuple_details.rb"
413
413
  - "./lib/oci/core/models/export_image_via_object_storage_uri_details.rb"
414
414
  - "./lib/oci/core/models/fast_connect_provider_service.rb"
415
+ - "./lib/oci/core/models/fast_connect_provider_service_key.rb"
415
416
  - "./lib/oci/core/models/get_public_ip_by_ip_address_details.rb"
416
417
  - "./lib/oci/core/models/get_public_ip_by_private_ip_id_details.rb"
417
418
  - "./lib/oci/core/models/i_scsi_volume_attachment.rb"