oraclebmc 2.0.6 → 2.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README_BMCS.md +23 -1
  3. data/lib/oraclebmc.rb +1 -1
  4. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c97d63bac99d8d95076383ce032958f73b35a0bb
4
- data.tar.gz: 31e5d165de0edbafed10e802db5733fef8f45581
3
+ metadata.gz: b2bb90bf01dee58ba6e8c7b83ad04683d9fd8a94
4
+ data.tar.gz: ba7044dcdab0646cfb9b51ac721f9459cdffbc91
5
5
  SHA512:
6
- metadata.gz: 27e3950a6e001fecbec524a3c1df4221f6f813d2ad8d4b33d5372fc0c039532d2dfe71d11ef935d71e4746ada6fa04fd55c99dbd057db5fcaafe01c37ee3a129
7
- data.tar.gz: 28a2c04cd54b9f64068f119615635263bd7a906615a20c452e6ae58c703f5bbd70f5826305ca6aac3bb1cf5fb14fef2f0602076cf6f61abde9653842780f59c5
6
+ metadata.gz: 513517bb3d05abd2c7f0745f3be4d1e78f2b282ec60401fa8c6508734b35f2fa17be91d0f7bd2d20fed3ca94f620fdc5ac1805b5430dba32f3737c626e085a67
7
+ data.tar.gz: 5949776fc3acc4e8678d0b9d740d8add3dc49a42683b7a37732a335dac95f336fafd16dfb448f9da651cd41e36cdbebbae4e4d29cae55fdf48b8193c23b0a249
@@ -1,5 +1,5 @@
1
1
  # Oracle Cloud Infrastructure Ruby SDK
2
- **Version 2.0.6**
2
+ **Version 2.0.7**
3
3
 
4
4
  This topic describes how to install, configure, and use the Oracle Cloud Infrastructure Ruby SDK.
5
5
 
@@ -16,6 +16,7 @@ The Ruby SDK supports the following services:
16
16
  * Identity and Access Management Service
17
17
  * Load Balancing Service
18
18
  * Object Storage Service
19
+ * Domain Name System Service
19
20
 
20
21
  **Licensing:** This SDK and sample is dual licensed under the Universal Permissive License 1.0 and the Apache License.
21
22
 
@@ -57,6 +58,27 @@ The following table provides details about some of the attributes of the SDK.
57
58
  <td>The Ruby SDK uses Net::HTTP for HTTP requests, if needed, options may be passed to each Net::HTTP by specifying them in {OracleBMC::ApiClient#request_option_overrides ApiClient.request_option_overrides}.</br>
58
59
  Please check http://ruby-doc.org/stdlib-2.4.1/libdoc/net/http/rdoc/Net/HTTP.html#method-c-start for the supported options.</td>
59
60
  </tr>
61
+ <tr>
62
+ <td>Instance Principals Authentication</td>
63
+ <td>
64
+ The Ruby SDK supports <a href="">Instance Principals</a> authentication via the use of the {OracleBMC::Auth::Signers::InstancePrincipalsSecurityTokenSigner} class. An example of using Instance Principals authentication can be found in the examples folder of the Ruby SDK <a href="https://docs.us-phoenix-1.oraclecloud.com/tools/ruby/latest/download/oci-ruby-sdk.zip">download</a>
65
+ </td>
66
+ </tr>
67
+ <tr>
68
+ <td>Upload Manager</td>
69
+ <td>
70
+ The Object Storage service supports multipart uploads to make large object uploads easier by splitting the large object into parts. The Ruby SDK supports raw multipart upload operations for advanced use cases, as well as a higher-level upload class that uses the multipart upload APIs.
71
+ <p>
72
+ <a href="https://docs.us-phoenix-1.oraclecloud.com/Content/Object/Tasks/managingmultipartuploads.htm">Managing Multipart Uploads</a> provides links to the APIs used for raw multipart upload operations. Higher-level uploads can be performed using the {OracleBMC::ObjectStorage::Transfer::UploadManager}.
73
+ </p>
74
+ <p>
75
+ The UploadManager simplifies interaction with the Object Storage service by abstracting away the method used to upload objects and can handle uploading an entire object at once, or in multiple parts if it is of sufficient size (which is configurable via a {OracleBMC::ObjectStorage::Transfer::UploadManagerConfig} object). In the latter case, the UploadManager will split a large object into parts for you, upload the parts in parallel, and then recombine and commit the parts as a single object in Object Storage.
76
+ </p>
77
+ <p>
78
+ Examples of using the Upload Manager can be found in the examples folder of the Ruby SDK <a href="https://docs.us-phoenix-1.oraclecloud.com/tools/ruby/latest/download/oci-ruby-sdk.zip">download</a>
79
+ </p>
80
+ </td>
81
+ </tr>
60
82
  </tbody>
61
83
  </table>
62
84
 
@@ -2,4 +2,4 @@
2
2
 
3
3
  require 'oci'
4
4
 
5
- OCI.sdk_name = 'BMC'
5
+ OCI.sdk_name = 'BMC'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oraclebmc
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.6
4
+ version: 2.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oracle
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-25 00:00:00.000000000 Z
11
+ date: 2018-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: oci
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 2.0.6
19
+ version: 2.0.7
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 2.0.6
26
+ version: 2.0.7
27
27
  description: "Ruby SDK for Oracle Cloud Infrastructure. \n \n This gem is deprecated
28
28
  and will no longer be maintained starting March 2018. Please move to 'oci' (https://rubygems.org/gems/oci)
29
29
  instead to avoid interruption."