You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,20 @@ All notable changes to this project will be documented in this file.
7
7
The format is based on `Keep a
8
8
Changelog <http://keepachangelog.com/>`__.
9
9
10
+
2.4.17 - 2018-02-22
11
+
---------------------
12
+
Added
13
+
~~~~~~~~~~
14
+
* Added support for the File Storage Service. (``oci fs``)
15
+
* Added support for Path Route Sets in the Load Balancer Service. An example can be found on `Github <https://github.com/oracle/oci-cli/blob/master/scripts/create_load_balancer.sh>`_ (``oci lb path-route-set``)
16
+
* Added tagging support for *Bucket* resources in the Object Storage Service
17
+
* Create a bucket with tags: ``oci os bucket create --defined-tags --freeform-tags``
18
+
* Update a bucket with tags: ``oci os bucket update --defined-tags --freeform-tags``
19
+
* List buckets and display defined and freeform tags in the results: ``oci os bucket list --fields tags``
20
+
* Added support for specifying a restore period for archived objects in the *RestoreObjects* operation of the Object Storage service. (``oci os object restore --hours``)
21
+
* Added support for filtering by *backupId* in *ListDbSystems* operation in the Database Service (``oci db system list --backup-id``)
22
+
* Added support for getting plink (the `PuTTY <https://www.putty.org/>`_ command line interface) compatible instance console connection string for Windows users (``oci compute instance-console-connection get-plink-connection-string``)
Copy file name to clipboardExpand all lines: scripts/create_load_balancer.sh
+25-8Lines changed: 25 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
#
4
4
# - Creating a load balancer by providing all options at create time (e.g. certificates, listeners, backend sets)
5
5
# - We also show two sub-variants: providing each option as an individual parameter (e.g. --certificiates, --listeners) and how to provide a consolidated
6
-
# set of options using --from-json
6
+
# set of options using --from-json
7
7
# - Creating a load balancer by providing the minimum options at create time and then adding related resources (e.g. certificates, listeners, backend sets)
# This also provides each complex type as an individual option (e.g. --certificates, --listeners). It is also possible to provide these in a consolidated format, which is demonstrated
44
44
# by the function create_lb_with_all_options_using_from_json
# certificates_with_comments.json contains a description of the parameter. Since valid JSON cannot contain comments, we use jsonlint (which was installed
46
+
# certificates_with_comments.json contains a description of the parameter. Since valid JSON cannot contain comments, we use jsonlint (which was installed
47
47
# via our demjson dependency) to remove the comments and allow the CLI to use it.
48
48
#
49
49
# You should replace the values in certificates_with_comments.json with those appropriate for your use case (e.g. your own PEM-formatted strings)
echo"Create Load Balancer Work Request ID: $WORK_REQUEST_ID"
73
77
@@ -96,7 +100,7 @@ function create_lb_with_all_options_as_individual_options() {
96
100
sleep 120
97
101
}
98
102
99
-
# We've seen in the create_lb_with_all_options_as_individual_options function that we can create a load balancer and provide complex parameters, such as --backend-sets,
103
+
# We've seen in the create_lb_with_all_options_as_individual_options function that we can create a load balancer and provide complex parameters, such as --backend-sets,
100
104
# as separate options. However, rather than specifying complex parameters individually, we can supply them in a consolidated format - in this case by passing it in
101
105
# as a single file to the --from-json option.
102
106
#
@@ -189,7 +193,19 @@ function create_lb_with_minimum_then_add_related_resources() {
# Now that we have our certificates, backend set and path route set, we can add a listener. We need to specify a backend set which exists (e.g. the one we made)
193
209
#
194
210
# The valid values for --protocol can be found via "oci lb protocol list"
195
211
#
@@ -201,7 +217,8 @@ function create_lb_with_minimum_then_add_related_resources() {
201
217
--protocol HTTP \
202
218
--ssl-certificate-name my_cert_bundle \
203
219
--ssl-verify-depth 3 \
204
-
--ssl-verify-peer-certificate false
220
+
--ssl-verify-peer-certificate false \
221
+
--path-route-set-name PathRouteSetName
205
222
206
223
# Print out information about the load balancer
207
224
oci lb load-balancer get --load-balancer-id $LB_ID
0 commit comments