Skip to content

Commit 0fc4015

Browse files
authored
Releasing version 1.3.5 (#24)
1 parent 40977ac commit 0fc4015

File tree

75 files changed

+2410
-154
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+2410
-154
lines changed

CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on `Keep a Changelog <http://keepachangelog.com/>`_.
66

7+
====================
8+
1.3.5 - 2017-07-20
9+
====================
10+
11+
Added
12+
-------
13+
* Support for VCN multi-VNIC operations.
14+
* Support for VCN secondary IP operations.
15+
* Support for compute image import/export operations.
16+
717
====================
818
1.3.4 - 2017-06-16
919
====================

src/oraclebmc/core/blockstorage_client.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ def __init__(self, config):
2929
def create_volume(self, create_volume_details, **kwargs):
3030
"""
3131
CreateVolume
32-
Creates a new volume in the specified compartment. The size of a volume can be either 256 GB or 2 TB.
32+
Creates a new volume in the specified compartment. Volumes can be created in sizes ranging from
33+
50 GB (51200 MB) to 2 TB (2097152 MB), in 1 GB (1024 MB) increments. By default, volumes are 1 TB (1048576 MB).
3334
For general information about block volumes, see
3435
`Overview of Block Volume Service`__.
3536
@@ -41,7 +42,7 @@ def create_volume(self, create_volume_details, **kwargs):
4142
in the Identity and Access Management Service API.
4243
4344
You may optionally specify a *display name* for the volume, which is simply a friendly name or
44-
description. It does not have to be unique, and you can change it.
45+
description. It does not have to be unique, and you can change it. Avoid entering confidential information.
4546
4647
__ https://docs.us-phoenix-1.oraclecloud.com/Content/Block/Concepts/overview.htm
4748
__ https://docs.us-phoenix-1.oraclecloud.com/Content/Identity/Concepts/overview.htm
@@ -430,13 +431,14 @@ def update_volume(self, volume_id, update_volume_details, **kwargs):
430431
"""
431432
UpdateVolume
432433
Updates the specified volume's display name.
434+
Avoid entering confidential information.
433435
434436
435437
:param str volume_id: (required)
436438
The OCID of the volume.
437439
438440
:param UpdateVolumeDetails update_volume_details: (required)
439-
Update volume's display name.
441+
Update volume's display name. Avoid entering confidential information.
440442
441443
:param str if_match: (optional)
442444
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -482,6 +484,7 @@ def update_volume_backup(self, volume_backup_id, update_volume_backup_details, *
482484
"""
483485
UpdateVolumeBackup
484486
Updates the display name for the specified volume backup.
487+
Avoid entering confidential information.
485488
486489
487490
:param str volume_backup_id: (required)

0 commit comments

Comments
 (0)