Skip to content

Commit

Permalink
Releasing version 1.3.5 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
mross22 authored Jul 20, 2017
1 parent 40977ac commit 0fc4015
Show file tree
Hide file tree
Showing 75 changed files with 2,410 additions and 154 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.

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

====================
1.3.5 - 2017-07-20
====================

Added
-------
* Support for VCN multi-VNIC operations.
* Support for VCN secondary IP operations.
* Support for compute image import/export operations.

====================
1.3.4 - 2017-06-16
====================
Expand Down
9 changes: 6 additions & 3 deletions src/oraclebmc/core/blockstorage_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ def __init__(self, config):
def create_volume(self, create_volume_details, **kwargs):
"""
CreateVolume
Creates a new volume in the specified compartment. The size of a volume can be either 256 GB or 2 TB.
Creates a new volume in the specified compartment. Volumes can be created in sizes ranging from
50 GB (51200 MB) to 2 TB (2097152 MB), in 1 GB (1024 MB) increments. By default, volumes are 1 TB (1048576 MB).
For general information about block volumes, see
`Overview of Block Volume Service`__.
Expand All @@ -41,7 +42,7 @@ def create_volume(self, create_volume_details, **kwargs):
in the Identity and Access Management Service API.
You may optionally specify a *display name* for the volume, which is simply a friendly name or
description. It does not have to be unique, and you can change it.
description. It does not have to be unique, and you can change it. Avoid entering confidential information.
__ https://docs.us-phoenix-1.oraclecloud.com/Content/Block/Concepts/overview.htm
__ https://docs.us-phoenix-1.oraclecloud.com/Content/Identity/Concepts/overview.htm
Expand Down Expand Up @@ -430,13 +431,14 @@ def update_volume(self, volume_id, update_volume_details, **kwargs):
"""
UpdateVolume
Updates the specified volume's display name.
Avoid entering confidential information.
:param str volume_id: (required)
The OCID of the volume.
:param UpdateVolumeDetails update_volume_details: (required)
Update volume's display name.
Update volume's display name. Avoid entering confidential information.
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
Expand Down Expand Up @@ -482,6 +484,7 @@ def update_volume_backup(self, volume_backup_id, update_volume_backup_details, *
"""
UpdateVolumeBackup
Updates the display name for the specified volume backup.
Avoid entering confidential information.
:param str volume_backup_id: (required)
Expand Down
Loading

0 comments on commit 0fc4015

Please sign in to comment.