oci 2.0.0
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 +7 -0
- data/LICENSE.txt +82 -0
- data/README.md +262 -0
- data/lib/oci.rb +25 -0
- data/lib/oci/api_client.rb +389 -0
- data/lib/oci/config.rb +118 -0
- data/lib/oci/config_file_loader.rb +96 -0
- data/lib/oci/core/blockstorage_client.rb +462 -0
- data/lib/oci/core/compute_client.rb +1415 -0
- data/lib/oci/core/core.rb +114 -0
- data/lib/oci/core/models/attach_i_scsi_volume_details.rb +137 -0
- data/lib/oci/core/models/attach_vnic_details.rb +144 -0
- data/lib/oci/core/models/attach_volume_details.rb +165 -0
- data/lib/oci/core/models/capture_console_history_details.rb +120 -0
- data/lib/oci/core/models/console_history.rb +213 -0
- data/lib/oci/core/models/cpe.rb +169 -0
- data/lib/oci/core/models/create_cpe_details.rb +145 -0
- data/lib/oci/core/models/create_cross_connect_details.rb +204 -0
- data/lib/oci/core/models/create_cross_connect_group_details.rb +133 -0
- data/lib/oci/core/models/create_dhcp_details.rb +153 -0
- data/lib/oci/core/models/create_drg_attachment_details.rb +142 -0
- data/lib/oci/core/models/create_drg_details.rb +131 -0
- data/lib/oci/core/models/create_image_details.rb +159 -0
- data/lib/oci/core/models/create_instance_console_connection_details.rb +131 -0
- data/lib/oci/core/models/create_internet_gateway_details.rb +153 -0
- data/lib/oci/core/models/create_ip_sec_connection_details.rb +168 -0
- data/lib/oci/core/models/create_private_ip_details.rb +173 -0
- data/lib/oci/core/models/create_route_table_details.rb +153 -0
- data/lib/oci/core/models/create_security_list_details.rb +164 -0
- data/lib/oci/core/models/create_subnet_details.rb +257 -0
- data/lib/oci/core/models/create_vcn_details.rb +171 -0
- data/lib/oci/core/models/create_virtual_circuit_details.rb +260 -0
- data/lib/oci/core/models/create_vnic_details.rb +214 -0
- data/lib/oci/core/models/create_volume_backup_details.rb +133 -0
- data/lib/oci/core/models/create_volume_details.rb +170 -0
- data/lib/oci/core/models/cross_connect.rb +235 -0
- data/lib/oci/core/models/cross_connect_group.rb +187 -0
- data/lib/oci/core/models/cross_connect_location.rb +134 -0
- data/lib/oci/core/models/cross_connect_mapping.rb +190 -0
- data/lib/oci/core/models/cross_connect_port_speed_shape.rb +137 -0
- data/lib/oci/core/models/cross_connect_status.rb +200 -0
- data/lib/oci/core/models/dhcp_dns_option.rb +171 -0
- data/lib/oci/core/models/dhcp_option.rb +135 -0
- data/lib/oci/core/models/dhcp_options.rb +208 -0
- data/lib/oci/core/models/dhcp_search_domain_option.rb +141 -0
- data/lib/oci/core/models/drg.rb +186 -0
- data/lib/oci/core/models/drg_attachment.rb +208 -0
- data/lib/oci/core/models/egress_security_rule.rb +198 -0
- data/lib/oci/core/models/export_image_details.rb +134 -0
- data/lib/oci/core/models/export_image_via_object_storage_tuple_details.rb +150 -0
- data/lib/oci/core/models/export_image_via_object_storage_uri_details.rb +130 -0
- data/lib/oci/core/models/fast_connect_provider_service.rb +145 -0
- data/lib/oci/core/models/i_scsi_volume_attachment.rb +212 -0
- data/lib/oci/core/models/icmp_options.rb +131 -0
- data/lib/oci/core/models/image.rb +245 -0
- data/lib/oci/core/models/image_source_details.rb +134 -0
- data/lib/oci/core/models/image_source_via_object_storage_tuple_details.rb +150 -0
- data/lib/oci/core/models/image_source_via_object_storage_uri_details.rb +128 -0
- data/lib/oci/core/models/ingress_security_rule.rb +198 -0
- data/lib/oci/core/models/instance.rb +307 -0
- data/lib/oci/core/models/instance_console_connection.rb +193 -0
- data/lib/oci/core/models/instance_credentials.rb +131 -0
- data/lib/oci/core/models/internet_gateway.rb +210 -0
- data/lib/oci/core/models/ip_sec_connection.rb +223 -0
- data/lib/oci/core/models/ip_sec_connection_device_config.rb +153 -0
- data/lib/oci/core/models/ip_sec_connection_device_status.rb +156 -0
- data/lib/oci/core/models/launch_instance_details.rb +336 -0
- data/lib/oci/core/models/letter_of_authority.rb +194 -0
- data/lib/oci/core/models/port_range.rb +133 -0
- data/lib/oci/core/models/private_ip.rb +248 -0
- data/lib/oci/core/models/route_rule.rb +135 -0
- data/lib/oci/core/models/route_table.rb +208 -0
- data/lib/oci/core/models/security_list.rb +219 -0
- data/lib/oci/core/models/shape.rb +122 -0
- data/lib/oci/core/models/subnet.rb +351 -0
- data/lib/oci/core/models/tcp_options.rb +135 -0
- data/lib/oci/core/models/tunnel_config.rb +151 -0
- data/lib/oci/core/models/tunnel_status.rb +178 -0
- data/lib/oci/core/models/udp_options.rb +135 -0
- data/lib/oci/core/models/update_cpe_details.rb +122 -0
- data/lib/oci/core/models/update_cross_connect_details.rb +138 -0
- data/lib/oci/core/models/update_cross_connect_group_details.rb +122 -0
- data/lib/oci/core/models/update_dhcp_details.rb +132 -0
- data/lib/oci/core/models/update_drg_attachment_details.rb +122 -0
- data/lib/oci/core/models/update_drg_details.rb +122 -0
- data/lib/oci/core/models/update_image_details.rb +124 -0
- data/lib/oci/core/models/update_instance_details.rb +124 -0
- data/lib/oci/core/models/update_internet_gateway_details.rb +133 -0
- data/lib/oci/core/models/update_ip_sec_connection_details.rb +122 -0
- data/lib/oci/core/models/update_private_ip_details.rb +157 -0
- data/lib/oci/core/models/update_route_table_details.rb +133 -0
- data/lib/oci/core/models/update_security_list_details.rb +144 -0
- data/lib/oci/core/models/update_subnet_details.rb +122 -0
- data/lib/oci/core/models/update_vcn_details.rb +122 -0
- data/lib/oci/core/models/update_virtual_circuit_details.rb +240 -0
- data/lib/oci/core/models/update_vnic_details.rb +144 -0
- data/lib/oci/core/models/update_volume_backup_details.rb +122 -0
- data/lib/oci/core/models/update_volume_details.rb +122 -0
- data/lib/oci/core/models/vcn.rb +276 -0
- data/lib/oci/core/models/virtual_circuit.rb +395 -0
- data/lib/oci/core/models/virtual_circuit_bandwidth_shape.rb +137 -0
- data/lib/oci/core/models/vnic.rb +287 -0
- data/lib/oci/core/models/vnic_attachment.rb +250 -0
- data/lib/oci/core/models/volume.rb +210 -0
- data/lib/oci/core/models/volume_attachment.rb +246 -0
- data/lib/oci/core/models/volume_backup.rb +235 -0
- data/lib/oci/core/util.rb +1 -0
- data/lib/oci/core/virtual_network_client.rb +3421 -0
- data/lib/oci/errors.rb +78 -0
- data/lib/oci/global_context.rb +20 -0
- data/lib/oci/identity/identity.rb +55 -0
- data/lib/oci/identity/identity_client.rb +2148 -0
- data/lib/oci/identity/models/add_user_to_group_details.rb +131 -0
- data/lib/oci/identity/models/api_key.rb +211 -0
- data/lib/oci/identity/models/availability_domain.rb +131 -0
- data/lib/oci/identity/models/compartment.rb +211 -0
- data/lib/oci/identity/models/create_api_key_details.rb +120 -0
- data/lib/oci/identity/models/create_compartment_details.rb +145 -0
- data/lib/oci/identity/models/create_customer_secret_key_details.rb +121 -0
- data/lib/oci/identity/models/create_group_details.rb +144 -0
- data/lib/oci/identity/models/create_identity_provider_details.rb +215 -0
- data/lib/oci/identity/models/create_idp_group_mapping_details.rb +133 -0
- data/lib/oci/identity/models/create_policy_details.rb +173 -0
- data/lib/oci/identity/models/create_region_subscription_details.rb +128 -0
- data/lib/oci/identity/models/create_saml2_identity_provider_details.rb +154 -0
- data/lib/oci/identity/models/create_swift_password_details.rb +121 -0
- data/lib/oci/identity/models/create_user_details.rb +144 -0
- data/lib/oci/identity/models/customer_secret_key.rb +225 -0
- data/lib/oci/identity/models/customer_secret_key_summary.rb +213 -0
- data/lib/oci/identity/models/group.rb +211 -0
- data/lib/oci/identity/models/identity_provider.rb +261 -0
- data/lib/oci/identity/models/idp_group_mapping.rb +220 -0
- data/lib/oci/identity/models/policy.rb +237 -0
- data/lib/oci/identity/models/region.rb +143 -0
- data/lib/oci/identity/models/region_subscription.rb +180 -0
- data/lib/oci/identity/models/saml2_identity_provider.rb +180 -0
- data/lib/oci/identity/models/swift_password.rb +226 -0
- data/lib/oci/identity/models/tenancy.rb +159 -0
- data/lib/oci/identity/models/ui_password.rb +187 -0
- data/lib/oci/identity/models/update_compartment_details.rb +132 -0
- data/lib/oci/identity/models/update_customer_secret_key_details.rb +120 -0
- data/lib/oci/identity/models/update_group_details.rb +120 -0
- data/lib/oci/identity/models/update_identity_provider_details.rb +160 -0
- data/lib/oci/identity/models/update_idp_group_mapping_details.rb +131 -0
- data/lib/oci/identity/models/update_policy_details.rb +148 -0
- data/lib/oci/identity/models/update_saml2_identity_provider_details.rb +145 -0
- data/lib/oci/identity/models/update_state_details.rb +121 -0
- data/lib/oci/identity/models/update_swift_password_details.rb +120 -0
- data/lib/oci/identity/models/update_user_details.rb +120 -0
- data/lib/oci/identity/models/user.rb +217 -0
- data/lib/oci/identity/models/user_group_membership.rb +209 -0
- data/lib/oci/identity/util.rb +1 -0
- data/lib/oci/internal/internal.rb +10 -0
- data/lib/oci/internal/util.rb +69 -0
- data/lib/oci/load_balancer/load_balancer.rb +51 -0
- data/lib/oci/load_balancer/load_balancer_client.rb +1449 -0
- data/lib/oci/load_balancer/models/backend.rb +220 -0
- data/lib/oci/load_balancer/models/backend_details.rb +206 -0
- data/lib/oci/load_balancer/models/backend_health.rb +158 -0
- data/lib/oci/load_balancer/models/backend_set.rb +182 -0
- data/lib/oci/load_balancer/models/backend_set_details.rb +165 -0
- data/lib/oci/load_balancer/models/backend_set_health.rb +207 -0
- data/lib/oci/load_balancer/models/certificate.rb +169 -0
- data/lib/oci/load_balancer/models/certificate_details.rb +205 -0
- data/lib/oci/load_balancer/models/create_backend_details.rb +206 -0
- data/lib/oci/load_balancer/models/create_backend_set_details.rb +181 -0
- data/lib/oci/load_balancer/models/create_certificate_details.rb +205 -0
- data/lib/oci/load_balancer/models/create_listener_details.rb +175 -0
- data/lib/oci/load_balancer/models/create_load_balancer_details.rb +220 -0
- data/lib/oci/load_balancer/models/health_check_result.rb +183 -0
- data/lib/oci/load_balancer/models/health_checker.rb +224 -0
- data/lib/oci/load_balancer/models/health_checker_details.rb +223 -0
- data/lib/oci/load_balancer/models/ip_address.rb +139 -0
- data/lib/oci/load_balancer/models/listener.rb +174 -0
- data/lib/oci/load_balancer/models/listener_details.rb +160 -0
- data/lib/oci/load_balancer/models/load_balancer.rb +280 -0
- data/lib/oci/load_balancer/models/load_balancer_health.rb +215 -0
- data/lib/oci/load_balancer/models/load_balancer_health_summary.rb +168 -0
- data/lib/oci/load_balancer/models/load_balancer_policy.rb +120 -0
- data/lib/oci/load_balancer/models/load_balancer_protocol.rb +120 -0
- data/lib/oci/load_balancer/models/load_balancer_shape.rb +120 -0
- data/lib/oci/load_balancer/models/session_persistence_configuration_details.rb +141 -0
- data/lib/oci/load_balancer/models/ssl_configuration.rb +155 -0
- data/lib/oci/load_balancer/models/ssl_configuration_details.rb +155 -0
- data/lib/oci/load_balancer/models/update_backend_details.rb +178 -0
- data/lib/oci/load_balancer/models/update_backend_set_details.rb +165 -0
- data/lib/oci/load_balancer/models/update_health_checker_details.rb +222 -0
- data/lib/oci/load_balancer/models/update_listener_details.rb +160 -0
- data/lib/oci/load_balancer/models/update_load_balancer_details.rb +124 -0
- data/lib/oci/load_balancer/models/work_request.rb +229 -0
- data/lib/oci/load_balancer/models/work_request_error.rb +145 -0
- data/lib/oci/load_balancer/util.rb +58 -0
- data/lib/oci/object_storage/models/bucket.rb +216 -0
- data/lib/oci/object_storage/models/bucket_summary.rb +175 -0
- data/lib/oci/object_storage/models/commit_multipart_upload_details.rb +133 -0
- data/lib/oci/object_storage/models/commit_multipart_upload_part_details.rb +131 -0
- data/lib/oci/object_storage/models/create_bucket_details.rb +173 -0
- data/lib/oci/object_storage/models/create_multipart_upload_details.rb +166 -0
- data/lib/oci/object_storage/models/create_preauthenticated_request_details.rb +171 -0
- data/lib/oci/object_storage/models/list_objects.rb +146 -0
- data/lib/oci/object_storage/models/multipart_upload.rb +164 -0
- data/lib/oci/object_storage/models/multipart_upload_part_summary.rb +153 -0
- data/lib/oci/object_storage/models/object_summary.rb +153 -0
- data/lib/oci/object_storage/models/preauthenticated_request.rb +207 -0
- data/lib/oci/object_storage/models/preauthenticated_request_summary.rb +196 -0
- data/lib/oci/object_storage/models/update_bucket_details.rb +171 -0
- data/lib/oci/object_storage/object_storage.rb +30 -0
- data/lib/oci/object_storage/object_storage_client.rb +1185 -0
- data/lib/oci/object_storage/util.rb +1 -0
- data/lib/oci/regions.rb +43 -0
- data/lib/oci/response.rb +80 -0
- data/lib/oci/response_headers.rb +144 -0
- data/lib/oci/signer.rb +157 -0
- data/lib/oci/version.rb +5 -0
- data/lib/oci/waiter.rb +101 -0
- data/lib/oraclebmc.rb +3 -0
- metadata +375 -0
|
@@ -0,0 +1,173 @@
|
|
|
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::CreatePrivateIpDetails
|
|
7
|
+
# A user-friendly name. Does not have to be unique, and it's changeable. Avoid
|
|
8
|
+
# entering confidential information.
|
|
9
|
+
#
|
|
10
|
+
# @return [String]
|
|
11
|
+
attr_accessor :display_name
|
|
12
|
+
|
|
13
|
+
# The hostname for the private IP. Used for DNS. The value
|
|
14
|
+
# is the hostname portion of the private IP's fully qualified domain name (FQDN)
|
|
15
|
+
# (for example, `bminstance-1` in FQDN `bminstance-1.subnet123.vcn1.oraclevcn.com`).
|
|
16
|
+
# Must be unique across all VNICs in the subnet and comply with
|
|
17
|
+
# [RFC 952](https://tools.ietf.org/html/rfc952) and
|
|
18
|
+
# [RFC 1123](https://tools.ietf.org/html/rfc1123).
|
|
19
|
+
#
|
|
20
|
+
# For more information, see
|
|
21
|
+
# [DNS in Your Virtual Cloud Network](https://docs.us-phoenix-1.oraclecloud.com/Content/Network/Concepts/dns.htm).
|
|
22
|
+
#
|
|
23
|
+
# Example: `bminstance-1`
|
|
24
|
+
#
|
|
25
|
+
# @return [String]
|
|
26
|
+
attr_accessor :hostname_label
|
|
27
|
+
|
|
28
|
+
# A private IP address of your choice. Must be an available IP address within
|
|
29
|
+
# the subnet's CIDR. If you don't specify a value, Oracle automatically
|
|
30
|
+
# assigns a private IP address from the subnet.
|
|
31
|
+
#
|
|
32
|
+
# Example: `10.0.3.3`
|
|
33
|
+
#
|
|
34
|
+
# @return [String]
|
|
35
|
+
attr_accessor :ip_address
|
|
36
|
+
|
|
37
|
+
# The OCID of the VNIC to assign the private IP to. The VNIC and private IP
|
|
38
|
+
# must be in the same subnet.
|
|
39
|
+
#
|
|
40
|
+
# @return [String]
|
|
41
|
+
attr_accessor :vnic_id
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
# Initializes the object
|
|
45
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
46
|
+
def initialize(attributes = {})
|
|
47
|
+
return unless attributes.is_a?(Hash)
|
|
48
|
+
|
|
49
|
+
# convert string to symbol for hash key
|
|
50
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
51
|
+
|
|
52
|
+
if attributes[:'displayName']
|
|
53
|
+
self.display_name = attributes[:'displayName']
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
if attributes[:'hostnameLabel']
|
|
57
|
+
self.hostname_label = attributes[:'hostnameLabel']
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
if attributes[:'ipAddress']
|
|
61
|
+
self.ip_address = attributes[:'ipAddress']
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
if attributes[:'vnicId']
|
|
65
|
+
self.vnic_id = attributes[:'vnicId']
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
# Checks equality by comparing each attribute.
|
|
71
|
+
# @param [Object] other_object to be compared
|
|
72
|
+
def ==(other_object)
|
|
73
|
+
return true if self.equal?(other_object)
|
|
74
|
+
self.class == other_object.class &&
|
|
75
|
+
display_name == other_object.display_name &&
|
|
76
|
+
hostname_label == other_object.hostname_label &&
|
|
77
|
+
ip_address == other_object.ip_address &&
|
|
78
|
+
vnic_id == other_object.vnic_id
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
# @see the `==` method
|
|
82
|
+
# @param [Object] other_object to be compared
|
|
83
|
+
def eql?(other_object)
|
|
84
|
+
self == other_object
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
# Calculates hash code according to all attributes.
|
|
88
|
+
# @return [Fixnum] Hash code
|
|
89
|
+
def hash
|
|
90
|
+
[display_name, hostname_label, ip_address, vnic_id].hash
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
# Builds the object from hash
|
|
94
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
95
|
+
# @return [Object] Returns the model itself
|
|
96
|
+
def build_from_hash(attributes)
|
|
97
|
+
return nil unless attributes.is_a?(Hash)
|
|
98
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
99
|
+
if type =~ /^Array<(.*)>/i
|
|
100
|
+
# check to ensure the input is an array given that the the attribute
|
|
101
|
+
# is documented as an array but the input is not
|
|
102
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
103
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
104
|
+
end
|
|
105
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
106
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
107
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
self
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
# Returns the string representation of the object
|
|
114
|
+
# @return [String] String presentation of the object
|
|
115
|
+
def to_s
|
|
116
|
+
to_hash.to_s
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
# Returns the object in the form of hash
|
|
120
|
+
# @return [Hash] Returns the object in the form of hash
|
|
121
|
+
def to_hash
|
|
122
|
+
hash = {}
|
|
123
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
124
|
+
value = self.send(attr)
|
|
125
|
+
next if value.nil?
|
|
126
|
+
hash[param] = _to_hash(value)
|
|
127
|
+
end
|
|
128
|
+
hash
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
private
|
|
132
|
+
|
|
133
|
+
# Outputs non-array value in the form of hash
|
|
134
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
135
|
+
# @param [Object] value Any valid value
|
|
136
|
+
# @return [Hash] Returns the value in the form of hash
|
|
137
|
+
def _to_hash(value)
|
|
138
|
+
if value.is_a?(Array)
|
|
139
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
140
|
+
elsif value.is_a?(Hash)
|
|
141
|
+
{}.tap do |hash|
|
|
142
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
143
|
+
end
|
|
144
|
+
elsif value.respond_to? :to_hash
|
|
145
|
+
value.to_hash
|
|
146
|
+
else
|
|
147
|
+
value
|
|
148
|
+
end
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
154
|
+
def self.attribute_map
|
|
155
|
+
{
|
|
156
|
+
:'display_name' => :'displayName',
|
|
157
|
+
:'hostname_label' => :'hostnameLabel',
|
|
158
|
+
:'ip_address' => :'ipAddress',
|
|
159
|
+
:'vnic_id' => :'vnicId'
|
|
160
|
+
}
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
# Attribute type mapping.
|
|
164
|
+
def self.swagger_types
|
|
165
|
+
{
|
|
166
|
+
:'display_name' => :'String',
|
|
167
|
+
:'hostname_label' => :'String',
|
|
168
|
+
:'ip_address' => :'String',
|
|
169
|
+
:'vnic_id' => :'String'
|
|
170
|
+
}
|
|
171
|
+
end
|
|
172
|
+
end
|
|
173
|
+
end
|
|
@@ -0,0 +1,153 @@
|
|
|
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::CreateRouteTableDetails
|
|
7
|
+
# The OCID of the compartment to contain the route table.
|
|
8
|
+
# @return [String]
|
|
9
|
+
attr_accessor :compartment_id
|
|
10
|
+
|
|
11
|
+
# A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
|
12
|
+
# @return [String]
|
|
13
|
+
attr_accessor :display_name
|
|
14
|
+
|
|
15
|
+
# The collection of rules used for routing destination IPs to network devices.
|
|
16
|
+
# @return [Array<OCI::Core::Models::RouteRule>]
|
|
17
|
+
attr_accessor :route_rules
|
|
18
|
+
|
|
19
|
+
# The OCID of the VCN the route table belongs to.
|
|
20
|
+
# @return [String]
|
|
21
|
+
attr_accessor :vcn_id
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
# Initializes the object
|
|
25
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
26
|
+
def initialize(attributes = {})
|
|
27
|
+
return unless attributes.is_a?(Hash)
|
|
28
|
+
|
|
29
|
+
# convert string to symbol for hash key
|
|
30
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
31
|
+
|
|
32
|
+
if attributes[:'compartmentId']
|
|
33
|
+
self.compartment_id = attributes[:'compartmentId']
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
if attributes[:'displayName']
|
|
37
|
+
self.display_name = attributes[:'displayName']
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
if attributes[:'routeRules']
|
|
41
|
+
self.route_rules = attributes[:'routeRules']
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
if attributes[:'vcnId']
|
|
45
|
+
self.vcn_id = attributes[:'vcnId']
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
# Checks equality by comparing each attribute.
|
|
51
|
+
# @param [Object] other_object to be compared
|
|
52
|
+
def ==(other_object)
|
|
53
|
+
return true if self.equal?(other_object)
|
|
54
|
+
self.class == other_object.class &&
|
|
55
|
+
compartment_id == other_object.compartment_id &&
|
|
56
|
+
display_name == other_object.display_name &&
|
|
57
|
+
route_rules == other_object.route_rules &&
|
|
58
|
+
vcn_id == other_object.vcn_id
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# @see the `==` method
|
|
62
|
+
# @param [Object] other_object to be compared
|
|
63
|
+
def eql?(other_object)
|
|
64
|
+
self == other_object
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
# Calculates hash code according to all attributes.
|
|
68
|
+
# @return [Fixnum] Hash code
|
|
69
|
+
def hash
|
|
70
|
+
[compartment_id, display_name, route_rules, vcn_id].hash
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
# Builds the object from hash
|
|
74
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
75
|
+
# @return [Object] Returns the model itself
|
|
76
|
+
def build_from_hash(attributes)
|
|
77
|
+
return nil unless attributes.is_a?(Hash)
|
|
78
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
79
|
+
if type =~ /^Array<(.*)>/i
|
|
80
|
+
# check to ensure the input is an array given that the the attribute
|
|
81
|
+
# is documented as an array but the input is not
|
|
82
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
83
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
84
|
+
end
|
|
85
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
86
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
87
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
self
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
# Returns the string representation of the object
|
|
94
|
+
# @return [String] String presentation of the object
|
|
95
|
+
def to_s
|
|
96
|
+
to_hash.to_s
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
# Returns the object in the form of hash
|
|
100
|
+
# @return [Hash] Returns the object in the form of hash
|
|
101
|
+
def to_hash
|
|
102
|
+
hash = {}
|
|
103
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
104
|
+
value = self.send(attr)
|
|
105
|
+
next if value.nil?
|
|
106
|
+
hash[param] = _to_hash(value)
|
|
107
|
+
end
|
|
108
|
+
hash
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
private
|
|
112
|
+
|
|
113
|
+
# Outputs non-array value in the form of hash
|
|
114
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
115
|
+
# @param [Object] value Any valid value
|
|
116
|
+
# @return [Hash] Returns the value in the form of hash
|
|
117
|
+
def _to_hash(value)
|
|
118
|
+
if value.is_a?(Array)
|
|
119
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
120
|
+
elsif value.is_a?(Hash)
|
|
121
|
+
{}.tap do |hash|
|
|
122
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
123
|
+
end
|
|
124
|
+
elsif value.respond_to? :to_hash
|
|
125
|
+
value.to_hash
|
|
126
|
+
else
|
|
127
|
+
value
|
|
128
|
+
end
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
134
|
+
def self.attribute_map
|
|
135
|
+
{
|
|
136
|
+
:'compartment_id' => :'compartmentId',
|
|
137
|
+
:'display_name' => :'displayName',
|
|
138
|
+
:'route_rules' => :'routeRules',
|
|
139
|
+
:'vcn_id' => :'vcnId'
|
|
140
|
+
}
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
# Attribute type mapping.
|
|
144
|
+
def self.swagger_types
|
|
145
|
+
{
|
|
146
|
+
:'compartment_id' => :'String',
|
|
147
|
+
:'display_name' => :'String',
|
|
148
|
+
:'route_rules' => :'Array<OCI::Core::Models::RouteRule>',
|
|
149
|
+
:'vcn_id' => :'String'
|
|
150
|
+
}
|
|
151
|
+
end
|
|
152
|
+
end
|
|
153
|
+
end
|
|
@@ -0,0 +1,164 @@
|
|
|
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::CreateSecurityListDetails
|
|
7
|
+
# The OCID of the compartment to contain the security list.
|
|
8
|
+
# @return [String]
|
|
9
|
+
attr_accessor :compartment_id
|
|
10
|
+
|
|
11
|
+
# A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
|
12
|
+
# @return [String]
|
|
13
|
+
attr_accessor :display_name
|
|
14
|
+
|
|
15
|
+
# Rules for allowing egress IP packets.
|
|
16
|
+
# @return [Array<OCI::Core::Models::EgressSecurityRule>]
|
|
17
|
+
attr_accessor :egress_security_rules
|
|
18
|
+
|
|
19
|
+
# Rules for allowing ingress IP packets.
|
|
20
|
+
# @return [Array<OCI::Core::Models::IngressSecurityRule>]
|
|
21
|
+
attr_accessor :ingress_security_rules
|
|
22
|
+
|
|
23
|
+
# The OCID of the VCN the security list belongs to.
|
|
24
|
+
# @return [String]
|
|
25
|
+
attr_accessor :vcn_id
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# Initializes the object
|
|
29
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
30
|
+
def initialize(attributes = {})
|
|
31
|
+
return unless attributes.is_a?(Hash)
|
|
32
|
+
|
|
33
|
+
# convert string to symbol for hash key
|
|
34
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
35
|
+
|
|
36
|
+
if attributes[:'compartmentId']
|
|
37
|
+
self.compartment_id = attributes[:'compartmentId']
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
if attributes[:'displayName']
|
|
41
|
+
self.display_name = attributes[:'displayName']
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
if attributes[:'egressSecurityRules']
|
|
45
|
+
self.egress_security_rules = attributes[:'egressSecurityRules']
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
if attributes[:'ingressSecurityRules']
|
|
49
|
+
self.ingress_security_rules = attributes[:'ingressSecurityRules']
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
if attributes[:'vcnId']
|
|
53
|
+
self.vcn_id = attributes[:'vcnId']
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# Checks equality by comparing each attribute.
|
|
59
|
+
# @param [Object] other_object to be compared
|
|
60
|
+
def ==(other_object)
|
|
61
|
+
return true if self.equal?(other_object)
|
|
62
|
+
self.class == other_object.class &&
|
|
63
|
+
compartment_id == other_object.compartment_id &&
|
|
64
|
+
display_name == other_object.display_name &&
|
|
65
|
+
egress_security_rules == other_object.egress_security_rules &&
|
|
66
|
+
ingress_security_rules == other_object.ingress_security_rules &&
|
|
67
|
+
vcn_id == other_object.vcn_id
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
# @see the `==` method
|
|
71
|
+
# @param [Object] other_object to be compared
|
|
72
|
+
def eql?(other_object)
|
|
73
|
+
self == other_object
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
# Calculates hash code according to all attributes.
|
|
77
|
+
# @return [Fixnum] Hash code
|
|
78
|
+
def hash
|
|
79
|
+
[compartment_id, display_name, egress_security_rules, ingress_security_rules, vcn_id].hash
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
# Builds the object from hash
|
|
83
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
84
|
+
# @return [Object] Returns the model itself
|
|
85
|
+
def build_from_hash(attributes)
|
|
86
|
+
return nil unless attributes.is_a?(Hash)
|
|
87
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
88
|
+
if type =~ /^Array<(.*)>/i
|
|
89
|
+
# check to ensure the input is an array given that the the attribute
|
|
90
|
+
# is documented as an array but the input is not
|
|
91
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
92
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
93
|
+
end
|
|
94
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
95
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
96
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
self
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
# Returns the string representation of the object
|
|
103
|
+
# @return [String] String presentation of the object
|
|
104
|
+
def to_s
|
|
105
|
+
to_hash.to_s
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
# Returns the object in the form of hash
|
|
109
|
+
# @return [Hash] Returns the object in the form of hash
|
|
110
|
+
def to_hash
|
|
111
|
+
hash = {}
|
|
112
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
113
|
+
value = self.send(attr)
|
|
114
|
+
next if value.nil?
|
|
115
|
+
hash[param] = _to_hash(value)
|
|
116
|
+
end
|
|
117
|
+
hash
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
private
|
|
121
|
+
|
|
122
|
+
# Outputs non-array value in the form of hash
|
|
123
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
124
|
+
# @param [Object] value Any valid value
|
|
125
|
+
# @return [Hash] Returns the value in the form of hash
|
|
126
|
+
def _to_hash(value)
|
|
127
|
+
if value.is_a?(Array)
|
|
128
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
129
|
+
elsif value.is_a?(Hash)
|
|
130
|
+
{}.tap do |hash|
|
|
131
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
132
|
+
end
|
|
133
|
+
elsif value.respond_to? :to_hash
|
|
134
|
+
value.to_hash
|
|
135
|
+
else
|
|
136
|
+
value
|
|
137
|
+
end
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
143
|
+
def self.attribute_map
|
|
144
|
+
{
|
|
145
|
+
:'compartment_id' => :'compartmentId',
|
|
146
|
+
:'display_name' => :'displayName',
|
|
147
|
+
:'egress_security_rules' => :'egressSecurityRules',
|
|
148
|
+
:'ingress_security_rules' => :'ingressSecurityRules',
|
|
149
|
+
:'vcn_id' => :'vcnId'
|
|
150
|
+
}
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
# Attribute type mapping.
|
|
154
|
+
def self.swagger_types
|
|
155
|
+
{
|
|
156
|
+
:'compartment_id' => :'String',
|
|
157
|
+
:'display_name' => :'String',
|
|
158
|
+
:'egress_security_rules' => :'Array<OCI::Core::Models::EgressSecurityRule>',
|
|
159
|
+
:'ingress_security_rules' => :'Array<OCI::Core::Models::IngressSecurityRule>',
|
|
160
|
+
:'vcn_id' => :'String'
|
|
161
|
+
}
|
|
162
|
+
end
|
|
163
|
+
end
|
|
164
|
+
end
|