oci 2.0.0 → 2.0.1
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.
- checksums.yaml +4 -4
- data/README.md +2 -1
- data/lib/oci.rb +8 -0
- data/lib/oci/api_client.rb +11 -5
- data/lib/oci/config.rb +3 -2
- data/lib/oci/config_file_loader.rb +5 -5
- data/lib/oci/core/blockstorage_client.rb +1 -1
- data/lib/oci/core/compute_client.rb +58 -4
- data/lib/oci/core/core.rb +1 -0
- data/lib/oci/core/models/capture_console_history_details.rb +13 -1
- data/lib/oci/core/models/create_instance_console_connection_details.rb +2 -2
- data/lib/oci/core/models/create_vnic_details.rb +18 -1
- data/lib/oci/core/models/create_volume_details.rb +14 -1
- data/lib/oci/core/models/instance_console_connection.rb +6 -6
- data/lib/oci/core/models/route_rule.rb +4 -1
- data/lib/oci/core/models/update_console_history_details.rb +121 -0
- data/lib/oci/core/models/update_vnic_details.rb +21 -4
- data/lib/oci/core/models/vnic.rb +18 -1
- data/lib/oci/core/models/volume.rb +13 -2
- data/lib/oci/core/models/volume_backup.rb +29 -2
- data/lib/oci/core/virtual_network_client.rb +7 -1
- data/lib/oci/database/database.rb +43 -0
- data/lib/oci/database/database_client.rb +1246 -0
- data/lib/oci/database/models/create_data_guard_association_details.rb +225 -0
- data/lib/oci/database/models/create_data_guard_association_to_existing_db_system_details.rb +138 -0
- data/lib/oci/database/models/create_database_details.rb +194 -0
- data/lib/oci/database/models/create_db_home_details.rb +141 -0
- data/lib/oci/database/models/create_db_home_with_db_system_id_details.rb +152 -0
- data/lib/oci/database/models/data_guard_association.rb +374 -0
- data/lib/oci/database/models/database.rb +261 -0
- data/lib/oci/database/models/database_summary.rb +261 -0
- data/lib/oci/database/models/db_home.rb +216 -0
- data/lib/oci/database/models/db_home_summary.rb +216 -0
- data/lib/oci/database/models/db_node.rb +220 -0
- data/lib/oci/database/models/db_node_summary.rb +220 -0
- data/lib/oci/database/models/db_system.rb +518 -0
- data/lib/oci/database/models/db_system_shape_summary.rb +142 -0
- data/lib/oci/database/models/db_system_summary.rb +518 -0
- data/lib/oci/database/models/db_version_summary.rb +131 -0
- data/lib/oci/database/models/failover_data_guard_association_details.rb +120 -0
- data/lib/oci/database/models/launch_db_system_details.rb +394 -0
- data/lib/oci/database/models/patch.rb +247 -0
- data/lib/oci/database/models/patch_details.rb +144 -0
- data/lib/oci/database/models/patch_history_entry.rb +218 -0
- data/lib/oci/database/models/patch_history_entry_summary.rb +218 -0
- data/lib/oci/database/models/patch_summary.rb +247 -0
- data/lib/oci/database/models/reinstate_data_guard_association_details.rb +120 -0
- data/lib/oci/database/models/switchover_data_guard_association_details.rb +120 -0
- data/lib/oci/database/models/update_db_home_details.rb +119 -0
- data/lib/oci/database/models/update_db_system_details.rb +153 -0
- data/lib/oci/database/util.rb +1 -0
- data/lib/oci/errors.rb +3 -4
- data/lib/oci/regions.rb +4 -2
- data/lib/oci/response_headers.rb +0 -1
- data/lib/oci/signer.rb +8 -7
- data/lib/oci/version.rb +1 -1
- data/lib/oraclebmc.rb +3 -1
- metadata +33 -2
@@ -12,7 +12,10 @@ module OCI
|
|
12
12
|
# @return [String]
|
13
13
|
attr_accessor :cidr_block
|
14
14
|
|
15
|
-
# The OCID for the route rule's target.
|
15
|
+
# The OCID for the route rule's target. For information about the type of
|
16
|
+
# targets you can specify, see
|
17
|
+
# [Route Tables](https://docs.us-phoenix-1.oraclecloud.com/Content/Network/Tasks/managingroutetables.htm).
|
18
|
+
#
|
16
19
|
# @return [String]
|
17
20
|
attr_accessor :network_entity_id
|
18
21
|
|
@@ -0,0 +1,121 @@
|
|
1
|
+
# Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
|
2
|
+
|
3
|
+
require 'date'
|
4
|
+
|
5
|
+
module OCI
|
6
|
+
class Core::Models::UpdateConsoleHistoryDetails
|
7
|
+
# A user-friendly name. Does not have to be unique, and it's changeable.
|
8
|
+
#
|
9
|
+
# @return [String]
|
10
|
+
attr_accessor :display_name
|
11
|
+
|
12
|
+
|
13
|
+
# Initializes the object
|
14
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
15
|
+
def initialize(attributes = {})
|
16
|
+
return unless attributes.is_a?(Hash)
|
17
|
+
|
18
|
+
# convert string to symbol for hash key
|
19
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
20
|
+
|
21
|
+
if attributes[:'displayName']
|
22
|
+
self.display_name = attributes[:'displayName']
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
26
|
+
|
27
|
+
# Checks equality by comparing each attribute.
|
28
|
+
# @param [Object] other_object to be compared
|
29
|
+
def ==(other_object)
|
30
|
+
return true if self.equal?(other_object)
|
31
|
+
self.class == other_object.class &&
|
32
|
+
display_name == other_object.display_name
|
33
|
+
end
|
34
|
+
|
35
|
+
# @see the `==` method
|
36
|
+
# @param [Object] other_object to be compared
|
37
|
+
def eql?(other_object)
|
38
|
+
self == other_object
|
39
|
+
end
|
40
|
+
|
41
|
+
# Calculates hash code according to all attributes.
|
42
|
+
# @return [Fixnum] Hash code
|
43
|
+
def hash
|
44
|
+
[display_name].hash
|
45
|
+
end
|
46
|
+
|
47
|
+
# Builds the object from hash
|
48
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
49
|
+
# @return [Object] Returns the model itself
|
50
|
+
def build_from_hash(attributes)
|
51
|
+
return nil unless attributes.is_a?(Hash)
|
52
|
+
self.class.swagger_types.each_pair do |key, type|
|
53
|
+
if type =~ /^Array<(.*)>/i
|
54
|
+
# check to ensure the input is an array given that the the attribute
|
55
|
+
# is documented as an array but the input is not
|
56
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
57
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
58
|
+
end
|
59
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
60
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
61
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
62
|
+
end
|
63
|
+
|
64
|
+
self
|
65
|
+
end
|
66
|
+
|
67
|
+
# Returns the string representation of the object
|
68
|
+
# @return [String] String presentation of the object
|
69
|
+
def to_s
|
70
|
+
to_hash.to_s
|
71
|
+
end
|
72
|
+
|
73
|
+
# Returns the object in the form of hash
|
74
|
+
# @return [Hash] Returns the object in the form of hash
|
75
|
+
def to_hash
|
76
|
+
hash = {}
|
77
|
+
self.class.attribute_map.each_pair do |attr, param|
|
78
|
+
value = self.send(attr)
|
79
|
+
next if value.nil?
|
80
|
+
hash[param] = _to_hash(value)
|
81
|
+
end
|
82
|
+
hash
|
83
|
+
end
|
84
|
+
|
85
|
+
private
|
86
|
+
|
87
|
+
# Outputs non-array value in the form of hash
|
88
|
+
# For object, use to_hash. Otherwise, just return the value
|
89
|
+
# @param [Object] value Any valid value
|
90
|
+
# @return [Hash] Returns the value in the form of hash
|
91
|
+
def _to_hash(value)
|
92
|
+
if value.is_a?(Array)
|
93
|
+
value.compact.map{ |v| _to_hash(v) }
|
94
|
+
elsif value.is_a?(Hash)
|
95
|
+
{}.tap do |hash|
|
96
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
97
|
+
end
|
98
|
+
elsif value.respond_to? :to_hash
|
99
|
+
value.to_hash
|
100
|
+
else
|
101
|
+
value
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
108
|
+
def self.attribute_map
|
109
|
+
{
|
110
|
+
:'display_name' => :'displayName'
|
111
|
+
}
|
112
|
+
end
|
113
|
+
|
114
|
+
# Attribute type mapping.
|
115
|
+
def self.swagger_types
|
116
|
+
{
|
117
|
+
:'display_name' => :'String'
|
118
|
+
}
|
119
|
+
end
|
120
|
+
end
|
121
|
+
end
|
@@ -25,6 +25,16 @@ module OCI
|
|
25
25
|
# @return [String]
|
26
26
|
attr_accessor :hostname_label
|
27
27
|
|
28
|
+
# Whether the source/destination check is disabled on the VNIC.
|
29
|
+
# Defaults to `false`, which means the check is performed. For information
|
30
|
+
# about why you would skip the source/destination check, see
|
31
|
+
# [Using a Private IP as a Route Target](https://docs.us-phoenix-1.oraclecloud.com/Content/Network/Tasks/managingroutetables.htm#privateip).
|
32
|
+
#
|
33
|
+
# Example: `true`
|
34
|
+
#
|
35
|
+
# @return [BOOLEAN]
|
36
|
+
attr_accessor :skip_source_dest_check
|
37
|
+
|
28
38
|
|
29
39
|
# Initializes the object
|
30
40
|
# @param [Hash] attributes Model attributes in the form of hash
|
@@ -42,6 +52,10 @@ module OCI
|
|
42
52
|
self.hostname_label = attributes[:'hostnameLabel']
|
43
53
|
end
|
44
54
|
|
55
|
+
if attributes[:'skipSourceDestCheck']
|
56
|
+
self.skip_source_dest_check = attributes[:'skipSourceDestCheck']
|
57
|
+
end
|
58
|
+
|
45
59
|
end
|
46
60
|
|
47
61
|
# Checks equality by comparing each attribute.
|
@@ -50,7 +64,8 @@ module OCI
|
|
50
64
|
return true if self.equal?(other_object)
|
51
65
|
self.class == other_object.class &&
|
52
66
|
display_name == other_object.display_name &&
|
53
|
-
hostname_label == other_object.hostname_label
|
67
|
+
hostname_label == other_object.hostname_label &&
|
68
|
+
skip_source_dest_check == other_object.skip_source_dest_check
|
54
69
|
end
|
55
70
|
|
56
71
|
# @see the `==` method
|
@@ -62,7 +77,7 @@ module OCI
|
|
62
77
|
# Calculates hash code according to all attributes.
|
63
78
|
# @return [Fixnum] Hash code
|
64
79
|
def hash
|
65
|
-
[display_name, hostname_label].hash
|
80
|
+
[display_name, hostname_label, skip_source_dest_check].hash
|
66
81
|
end
|
67
82
|
|
68
83
|
# Builds the object from hash
|
@@ -129,7 +144,8 @@ module OCI
|
|
129
144
|
def self.attribute_map
|
130
145
|
{
|
131
146
|
:'display_name' => :'displayName',
|
132
|
-
:'hostname_label' => :'hostnameLabel'
|
147
|
+
:'hostname_label' => :'hostnameLabel',
|
148
|
+
:'skip_source_dest_check' => :'skipSourceDestCheck'
|
133
149
|
}
|
134
150
|
end
|
135
151
|
|
@@ -137,7 +153,8 @@ module OCI
|
|
137
153
|
def self.swagger_types
|
138
154
|
{
|
139
155
|
:'display_name' => :'String',
|
140
|
-
:'hostname_label' => :'String'
|
156
|
+
:'hostname_label' => :'String',
|
157
|
+
:'skip_source_dest_check' => :'BOOLEAN'
|
141
158
|
}
|
142
159
|
end
|
143
160
|
end
|
data/lib/oci/core/models/vnic.rb
CHANGED
@@ -77,6 +77,16 @@ module OCI
|
|
77
77
|
# @return [String]
|
78
78
|
attr_accessor :public_ip
|
79
79
|
|
80
|
+
# Whether the source/destination check is disabled on the VNIC.
|
81
|
+
# Defaults to `false`, which means the check is performed. For information
|
82
|
+
# about why you would skip the source/destination check, see
|
83
|
+
# [Using a Private IP as a Route Target](https://docs.us-phoenix-1.oraclecloud.com/Content/Network/Tasks/managingroutetables.htm#privateip).
|
84
|
+
#
|
85
|
+
# Example: `true`
|
86
|
+
#
|
87
|
+
# @return [BOOLEAN]
|
88
|
+
attr_accessor :skip_source_dest_check
|
89
|
+
|
80
90
|
# The OCID of the subnet the VNIC is in.
|
81
91
|
# @return [String]
|
82
92
|
attr_accessor :subnet_id
|
@@ -137,6 +147,10 @@ module OCI
|
|
137
147
|
self.public_ip = attributes[:'publicIp']
|
138
148
|
end
|
139
149
|
|
150
|
+
if attributes[:'skipSourceDestCheck']
|
151
|
+
self.skip_source_dest_check = attributes[:'skipSourceDestCheck']
|
152
|
+
end
|
153
|
+
|
140
154
|
if attributes[:'subnetId']
|
141
155
|
self.subnet_id = attributes[:'subnetId']
|
142
156
|
end
|
@@ -172,6 +186,7 @@ module OCI
|
|
172
186
|
mac_address == other_object.mac_address &&
|
173
187
|
private_ip == other_object.private_ip &&
|
174
188
|
public_ip == other_object.public_ip &&
|
189
|
+
skip_source_dest_check == other_object.skip_source_dest_check &&
|
175
190
|
subnet_id == other_object.subnet_id &&
|
176
191
|
time_created == other_object.time_created
|
177
192
|
end
|
@@ -185,7 +200,7 @@ module OCI
|
|
185
200
|
# Calculates hash code according to all attributes.
|
186
201
|
# @return [Fixnum] Hash code
|
187
202
|
def hash
|
188
|
-
[availability_domain, compartment_id, display_name, hostname_label, id, is_primary, lifecycle_state, mac_address, private_ip, public_ip, subnet_id, time_created].hash
|
203
|
+
[availability_domain, compartment_id, display_name, hostname_label, id, is_primary, lifecycle_state, mac_address, private_ip, public_ip, skip_source_dest_check, subnet_id, time_created].hash
|
189
204
|
end
|
190
205
|
|
191
206
|
# Builds the object from hash
|
@@ -261,6 +276,7 @@ module OCI
|
|
261
276
|
:'mac_address' => :'macAddress',
|
262
277
|
:'private_ip' => :'privateIp',
|
263
278
|
:'public_ip' => :'publicIp',
|
279
|
+
:'skip_source_dest_check' => :'skipSourceDestCheck',
|
264
280
|
:'subnet_id' => :'subnetId',
|
265
281
|
:'time_created' => :'timeCreated'
|
266
282
|
}
|
@@ -279,6 +295,7 @@ module OCI
|
|
279
295
|
:'mac_address' => :'String',
|
280
296
|
:'private_ip' => :'String',
|
281
297
|
:'public_ip' => :'String',
|
298
|
+
:'skip_source_dest_check' => :'BOOLEAN',
|
282
299
|
:'subnet_id' => :'String',
|
283
300
|
:'time_created' => :'DateTime'
|
284
301
|
}
|
@@ -38,7 +38,11 @@ module OCI
|
|
38
38
|
# @return [String]
|
39
39
|
attr_accessor :lifecycle_state
|
40
40
|
|
41
|
-
# The size of the volume in
|
41
|
+
# The size of the volume in GBs.
|
42
|
+
# @return [Integer]
|
43
|
+
attr_accessor :size_in_gbs
|
44
|
+
|
45
|
+
# The size of the volume in MBs. This field is deprecated. Please use sizeInGBs.
|
42
46
|
# @return [Integer]
|
43
47
|
attr_accessor :size_in_mbs
|
44
48
|
|
@@ -75,6 +79,10 @@ module OCI
|
|
75
79
|
self.lifecycle_state = attributes[:'lifecycleState']
|
76
80
|
end
|
77
81
|
|
82
|
+
if attributes[:'sizeInGBs']
|
83
|
+
self.size_in_gbs = attributes[:'sizeInGBs']
|
84
|
+
end
|
85
|
+
|
78
86
|
if attributes[:'sizeInMBs']
|
79
87
|
self.size_in_mbs = attributes[:'sizeInMBs']
|
80
88
|
end
|
@@ -105,6 +113,7 @@ module OCI
|
|
105
113
|
display_name == other_object.display_name &&
|
106
114
|
id == other_object.id &&
|
107
115
|
lifecycle_state == other_object.lifecycle_state &&
|
116
|
+
size_in_gbs == other_object.size_in_gbs &&
|
108
117
|
size_in_mbs == other_object.size_in_mbs &&
|
109
118
|
time_created == other_object.time_created
|
110
119
|
end
|
@@ -118,7 +127,7 @@ module OCI
|
|
118
127
|
# Calculates hash code according to all attributes.
|
119
128
|
# @return [Fixnum] Hash code
|
120
129
|
def hash
|
121
|
-
[availability_domain, compartment_id, display_name, id, lifecycle_state, size_in_mbs, time_created].hash
|
130
|
+
[availability_domain, compartment_id, display_name, id, lifecycle_state, size_in_gbs, size_in_mbs, time_created].hash
|
122
131
|
end
|
123
132
|
|
124
133
|
# Builds the object from hash
|
@@ -189,6 +198,7 @@ module OCI
|
|
189
198
|
:'display_name' => :'displayName',
|
190
199
|
:'id' => :'id',
|
191
200
|
:'lifecycle_state' => :'lifecycleState',
|
201
|
+
:'size_in_gbs' => :'sizeInGBs',
|
192
202
|
:'size_in_mbs' => :'sizeInMBs',
|
193
203
|
:'time_created' => :'timeCreated'
|
194
204
|
}
|
@@ -202,6 +212,7 @@ module OCI
|
|
202
212
|
:'display_name' => :'String',
|
203
213
|
:'id' => :'String',
|
204
214
|
:'lifecycle_state' => :'String',
|
215
|
+
:'size_in_gbs' => :'Integer',
|
205
216
|
:'size_in_mbs' => :'Integer',
|
206
217
|
:'time_created' => :'DateTime'
|
207
218
|
}
|
@@ -31,7 +31,13 @@ module OCI
|
|
31
31
|
# @return [String]
|
32
32
|
attr_accessor :lifecycle_state
|
33
33
|
|
34
|
-
# The size of the volume, in
|
34
|
+
# The size of the volume, in GBs.
|
35
|
+
#
|
36
|
+
# @return [Integer]
|
37
|
+
attr_accessor :size_in_gbs
|
38
|
+
|
39
|
+
# The size of the volume in MBs. The value must be a multiple of 1024.
|
40
|
+
# This field is deprecated. Please use sizeInGBs.
|
35
41
|
#
|
36
42
|
# @return [Integer]
|
37
43
|
attr_accessor :size_in_mbs
|
@@ -47,8 +53,15 @@ module OCI
|
|
47
53
|
# @return [DateTime]
|
48
54
|
attr_accessor :time_request_received
|
49
55
|
|
56
|
+
# The size used by the backup, in GBs. It is typically smaller than sizeInGBs, depending on the space
|
57
|
+
# consumed on the volume and whether the backup is full or incremental.
|
58
|
+
#
|
59
|
+
# @return [Integer]
|
60
|
+
attr_accessor :unique_size_in_gbs
|
61
|
+
|
50
62
|
# The size used by the backup, in MBs. It is typically smaller than sizeInMBs, depending on the space
|
51
63
|
# consumed on the volume and whether the backup is full or incremental.
|
64
|
+
# This field is deprecated. Please use uniqueSizeInGBs.
|
52
65
|
#
|
53
66
|
# @return [Integer]
|
54
67
|
attr_accessor :unique_size_in_mbs
|
@@ -82,6 +95,10 @@ module OCI
|
|
82
95
|
self.lifecycle_state = attributes[:'lifecycleState']
|
83
96
|
end
|
84
97
|
|
98
|
+
if attributes[:'sizeInGBs']
|
99
|
+
self.size_in_gbs = attributes[:'sizeInGBs']
|
100
|
+
end
|
101
|
+
|
85
102
|
if attributes[:'sizeInMBs']
|
86
103
|
self.size_in_mbs = attributes[:'sizeInMBs']
|
87
104
|
end
|
@@ -94,6 +111,10 @@ module OCI
|
|
94
111
|
self.time_request_received = attributes[:'timeRequestReceived']
|
95
112
|
end
|
96
113
|
|
114
|
+
if attributes[:'uniqueSizeInGBs']
|
115
|
+
self.unique_size_in_gbs = attributes[:'uniqueSizeInGBs']
|
116
|
+
end
|
117
|
+
|
97
118
|
if attributes[:'uniqueSizeInMbs']
|
98
119
|
self.unique_size_in_mbs = attributes[:'uniqueSizeInMbs']
|
99
120
|
end
|
@@ -123,9 +144,11 @@ module OCI
|
|
123
144
|
display_name == other_object.display_name &&
|
124
145
|
id == other_object.id &&
|
125
146
|
lifecycle_state == other_object.lifecycle_state &&
|
147
|
+
size_in_gbs == other_object.size_in_gbs &&
|
126
148
|
size_in_mbs == other_object.size_in_mbs &&
|
127
149
|
time_created == other_object.time_created &&
|
128
150
|
time_request_received == other_object.time_request_received &&
|
151
|
+
unique_size_in_gbs == other_object.unique_size_in_gbs &&
|
129
152
|
unique_size_in_mbs == other_object.unique_size_in_mbs &&
|
130
153
|
volume_id == other_object.volume_id
|
131
154
|
end
|
@@ -139,7 +162,7 @@ module OCI
|
|
139
162
|
# Calculates hash code according to all attributes.
|
140
163
|
# @return [Fixnum] Hash code
|
141
164
|
def hash
|
142
|
-
[compartment_id, display_name, id, lifecycle_state, size_in_mbs, time_created, time_request_received, unique_size_in_mbs, volume_id].hash
|
165
|
+
[compartment_id, display_name, id, lifecycle_state, size_in_gbs, size_in_mbs, time_created, time_request_received, unique_size_in_gbs, unique_size_in_mbs, volume_id].hash
|
143
166
|
end
|
144
167
|
|
145
168
|
# Builds the object from hash
|
@@ -209,9 +232,11 @@ module OCI
|
|
209
232
|
:'display_name' => :'displayName',
|
210
233
|
:'id' => :'id',
|
211
234
|
:'lifecycle_state' => :'lifecycleState',
|
235
|
+
:'size_in_gbs' => :'sizeInGBs',
|
212
236
|
:'size_in_mbs' => :'sizeInMBs',
|
213
237
|
:'time_created' => :'timeCreated',
|
214
238
|
:'time_request_received' => :'timeRequestReceived',
|
239
|
+
:'unique_size_in_gbs' => :'uniqueSizeInGBs',
|
215
240
|
:'unique_size_in_mbs' => :'uniqueSizeInMbs',
|
216
241
|
:'volume_id' => :'volumeId'
|
217
242
|
}
|
@@ -224,9 +249,11 @@ module OCI
|
|
224
249
|
:'display_name' => :'String',
|
225
250
|
:'id' => :'String',
|
226
251
|
:'lifecycle_state' => :'String',
|
252
|
+
:'size_in_gbs' => :'Integer',
|
227
253
|
:'size_in_mbs' => :'Integer',
|
228
254
|
:'time_created' => :'DateTime',
|
229
255
|
:'time_request_received' => :'DateTime',
|
256
|
+
:'unique_size_in_gbs' => :'Integer',
|
230
257
|
:'unique_size_in_mbs' => :'Integer',
|
231
258
|
:'volume_id' => :'String'
|
232
259
|
}
|
@@ -537,7 +537,8 @@ module OCI
|
|
537
537
|
# Creates a new route table for the specified VCN. In the request you must also include at least one route
|
538
538
|
# rule for the new route table. For information on the number of rules you can have in a route table, see
|
539
539
|
# [Service Limits](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/servicelimits.htm). For general information about route
|
540
|
-
# tables in your VCN
|
540
|
+
# tables in your VCN and the types of targets you can use in route rules,
|
541
|
+
# see [Route Tables](https://docs.us-phoenix-1.oraclecloud.com/Content/Network/Tasks/managingroutetables.htm).
|
541
542
|
#
|
542
543
|
# For the purposes of access control, you must provide the OCID of the compartment where you want the route
|
543
544
|
# table to reside. Notice that the route table doesn't have to be in the same compartment as the VCN, subnets,
|
@@ -1153,6 +1154,11 @@ module OCI
|
|
1153
1154
|
# This operation cannot be used with primary private IPs, which are
|
1154
1155
|
# automatically unassigned and deleted when the VNIC is terminated.
|
1155
1156
|
#
|
1157
|
+
# **Important:** If a secondary private IP is the
|
1158
|
+
# [target of a route rule](https://docs.us-phoenix-1.oraclecloud.com/Content/Network/Tasks/managingroutetables.htm#privateip),
|
1159
|
+
# unassigning it from the VNIC causes that route rule to blackhole and the traffic
|
1160
|
+
# will be dropped.
|
1161
|
+
#
|
1156
1162
|
# @param [String] private_ip_id The private IP's OCID.
|
1157
1163
|
# @param [Hash] opts the optional parameters
|
1158
1164
|
# @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
|
2
|
+
|
3
|
+
module OCI
|
4
|
+
module Database
|
5
|
+
module Models
|
6
|
+
end
|
7
|
+
end
|
8
|
+
end
|
9
|
+
|
10
|
+
# Require models
|
11
|
+
require 'oci/database/models/create_data_guard_association_details'
|
12
|
+
require 'oci/database/models/create_data_guard_association_to_existing_db_system_details'
|
13
|
+
require 'oci/database/models/create_database_details'
|
14
|
+
require 'oci/database/models/create_db_home_details'
|
15
|
+
require 'oci/database/models/create_db_home_with_db_system_id_details'
|
16
|
+
require 'oci/database/models/data_guard_association'
|
17
|
+
require 'oci/database/models/database'
|
18
|
+
require 'oci/database/models/database_summary'
|
19
|
+
require 'oci/database/models/db_home'
|
20
|
+
require 'oci/database/models/db_home_summary'
|
21
|
+
require 'oci/database/models/db_node'
|
22
|
+
require 'oci/database/models/db_node_summary'
|
23
|
+
require 'oci/database/models/db_system'
|
24
|
+
require 'oci/database/models/db_system_shape_summary'
|
25
|
+
require 'oci/database/models/db_system_summary'
|
26
|
+
require 'oci/database/models/db_version_summary'
|
27
|
+
require 'oci/database/models/failover_data_guard_association_details'
|
28
|
+
require 'oci/database/models/launch_db_system_details'
|
29
|
+
require 'oci/database/models/patch'
|
30
|
+
require 'oci/database/models/patch_details'
|
31
|
+
require 'oci/database/models/patch_history_entry'
|
32
|
+
require 'oci/database/models/patch_history_entry_summary'
|
33
|
+
require 'oci/database/models/patch_summary'
|
34
|
+
require 'oci/database/models/reinstate_data_guard_association_details'
|
35
|
+
require 'oci/database/models/switchover_data_guard_association_details'
|
36
|
+
require 'oci/database/models/update_db_home_details'
|
37
|
+
require 'oci/database/models/update_db_system_details'
|
38
|
+
|
39
|
+
# Require generated clients
|
40
|
+
require 'oci/database/database_client'
|
41
|
+
|
42
|
+
# Require service utilities
|
43
|
+
require 'oci/database/util'
|