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,145 @@
|
|
|
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::CreateCpeDetails
|
|
7
|
+
# The OCID of the compartment to contain the CPE.
|
|
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 public IP address of the on-premises router.
|
|
16
|
+
#
|
|
17
|
+
# Example: `143.19.23.16`
|
|
18
|
+
#
|
|
19
|
+
# @return [String]
|
|
20
|
+
attr_accessor :ip_address
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
# Initializes the object
|
|
24
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
25
|
+
def initialize(attributes = {})
|
|
26
|
+
return unless attributes.is_a?(Hash)
|
|
27
|
+
|
|
28
|
+
# convert string to symbol for hash key
|
|
29
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
30
|
+
|
|
31
|
+
if attributes[:'compartmentId']
|
|
32
|
+
self.compartment_id = attributes[:'compartmentId']
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
if attributes[:'displayName']
|
|
36
|
+
self.display_name = attributes[:'displayName']
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
if attributes[:'ipAddress']
|
|
40
|
+
self.ip_address = attributes[:'ipAddress']
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
# Checks equality by comparing each attribute.
|
|
46
|
+
# @param [Object] other_object to be compared
|
|
47
|
+
def ==(other_object)
|
|
48
|
+
return true if self.equal?(other_object)
|
|
49
|
+
self.class == other_object.class &&
|
|
50
|
+
compartment_id == other_object.compartment_id &&
|
|
51
|
+
display_name == other_object.display_name &&
|
|
52
|
+
ip_address == other_object.ip_address
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
# @see the `==` method
|
|
56
|
+
# @param [Object] other_object to be compared
|
|
57
|
+
def eql?(other_object)
|
|
58
|
+
self == other_object
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# Calculates hash code according to all attributes.
|
|
62
|
+
# @return [Fixnum] Hash code
|
|
63
|
+
def hash
|
|
64
|
+
[compartment_id, display_name, ip_address].hash
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
# Builds the object from hash
|
|
68
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
69
|
+
# @return [Object] Returns the model itself
|
|
70
|
+
def build_from_hash(attributes)
|
|
71
|
+
return nil unless attributes.is_a?(Hash)
|
|
72
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
73
|
+
if type =~ /^Array<(.*)>/i
|
|
74
|
+
# check to ensure the input is an array given that the the attribute
|
|
75
|
+
# is documented as an array but the input is not
|
|
76
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
77
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
78
|
+
end
|
|
79
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
80
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
81
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
self
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
# Returns the string representation of the object
|
|
88
|
+
# @return [String] String presentation of the object
|
|
89
|
+
def to_s
|
|
90
|
+
to_hash.to_s
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
# Returns the object in the form of hash
|
|
94
|
+
# @return [Hash] Returns the object in the form of hash
|
|
95
|
+
def to_hash
|
|
96
|
+
hash = {}
|
|
97
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
98
|
+
value = self.send(attr)
|
|
99
|
+
next if value.nil?
|
|
100
|
+
hash[param] = _to_hash(value)
|
|
101
|
+
end
|
|
102
|
+
hash
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
private
|
|
106
|
+
|
|
107
|
+
# Outputs non-array value in the form of hash
|
|
108
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
109
|
+
# @param [Object] value Any valid value
|
|
110
|
+
# @return [Hash] Returns the value in the form of hash
|
|
111
|
+
def _to_hash(value)
|
|
112
|
+
if value.is_a?(Array)
|
|
113
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
114
|
+
elsif value.is_a?(Hash)
|
|
115
|
+
{}.tap do |hash|
|
|
116
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
117
|
+
end
|
|
118
|
+
elsif value.respond_to? :to_hash
|
|
119
|
+
value.to_hash
|
|
120
|
+
else
|
|
121
|
+
value
|
|
122
|
+
end
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
128
|
+
def self.attribute_map
|
|
129
|
+
{
|
|
130
|
+
:'compartment_id' => :'compartmentId',
|
|
131
|
+
:'display_name' => :'displayName',
|
|
132
|
+
:'ip_address' => :'ipAddress'
|
|
133
|
+
}
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
# Attribute type mapping.
|
|
137
|
+
def self.swagger_types
|
|
138
|
+
{
|
|
139
|
+
:'compartment_id' => :'String',
|
|
140
|
+
:'display_name' => :'String',
|
|
141
|
+
:'ip_address' => :'String'
|
|
142
|
+
}
|
|
143
|
+
end
|
|
144
|
+
end
|
|
145
|
+
end
|
|
@@ -0,0 +1,204 @@
|
|
|
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::CreateCrossConnectDetails
|
|
7
|
+
# The OCID of the compartment to contain the cross-connect.
|
|
8
|
+
# @return [String]
|
|
9
|
+
attr_accessor :compartment_id
|
|
10
|
+
|
|
11
|
+
# The OCID of the cross-connect group to put this cross-connect in.
|
|
12
|
+
# @return [String]
|
|
13
|
+
attr_accessor :cross_connect_group_id
|
|
14
|
+
|
|
15
|
+
# A user-friendly name. Does not have to be unique, and it's changeable.
|
|
16
|
+
# Avoid entering confidential information.
|
|
17
|
+
#
|
|
18
|
+
# @return [String]
|
|
19
|
+
attr_accessor :display_name
|
|
20
|
+
|
|
21
|
+
# If you already have an existing cross-connect or cross-connect group at this FastConnect
|
|
22
|
+
# location, and you want this new cross-connect to be on a different router (for the
|
|
23
|
+
# purposes of redundancy), provide the OCID of that existing cross-connect or
|
|
24
|
+
# cross-connect group.
|
|
25
|
+
#
|
|
26
|
+
# @return [String]
|
|
27
|
+
attr_accessor :far_cross_connect_or_cross_connect_group_id
|
|
28
|
+
|
|
29
|
+
# The name of the FastConnect location where this cross-connect will be installed.
|
|
30
|
+
# To get a list of the available locations, see
|
|
31
|
+
# {#list_cross_connect_locations list_cross_connect_locations}.
|
|
32
|
+
#
|
|
33
|
+
# Example: `CyrusOne, Chandler, AZ`
|
|
34
|
+
#
|
|
35
|
+
# @return [String]
|
|
36
|
+
attr_accessor :location_name
|
|
37
|
+
|
|
38
|
+
# If you already have an existing cross-connect or cross-connect group at this FastConnect
|
|
39
|
+
# location, and you want this new cross-connect to be on the same router, provide the
|
|
40
|
+
# OCID of that existing cross-connect or cross-connect group.
|
|
41
|
+
#
|
|
42
|
+
# @return [String]
|
|
43
|
+
attr_accessor :near_cross_connect_or_cross_connect_group_id
|
|
44
|
+
|
|
45
|
+
# The port speed for this cross-connect. To get a list of the available port speeds, see
|
|
46
|
+
# {#list_crossconnect_port_speed_shapes list_crossconnect_port_speed_shapes}.
|
|
47
|
+
#
|
|
48
|
+
# Example: `10 Gbps`
|
|
49
|
+
#
|
|
50
|
+
# @return [String]
|
|
51
|
+
attr_accessor :port_speed_shape_name
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
# Initializes the object
|
|
55
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
56
|
+
def initialize(attributes = {})
|
|
57
|
+
return unless attributes.is_a?(Hash)
|
|
58
|
+
|
|
59
|
+
# convert string to symbol for hash key
|
|
60
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
61
|
+
|
|
62
|
+
if attributes[:'compartmentId']
|
|
63
|
+
self.compartment_id = attributes[:'compartmentId']
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
if attributes[:'crossConnectGroupId']
|
|
67
|
+
self.cross_connect_group_id = attributes[:'crossConnectGroupId']
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
if attributes[:'displayName']
|
|
71
|
+
self.display_name = attributes[:'displayName']
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
if attributes[:'farCrossConnectOrCrossConnectGroupId']
|
|
75
|
+
self.far_cross_connect_or_cross_connect_group_id = attributes[:'farCrossConnectOrCrossConnectGroupId']
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
if attributes[:'locationName']
|
|
79
|
+
self.location_name = attributes[:'locationName']
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
if attributes[:'nearCrossConnectOrCrossConnectGroupId']
|
|
83
|
+
self.near_cross_connect_or_cross_connect_group_id = attributes[:'nearCrossConnectOrCrossConnectGroupId']
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
if attributes[:'portSpeedShapeName']
|
|
87
|
+
self.port_speed_shape_name = attributes[:'portSpeedShapeName']
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
# Checks equality by comparing each attribute.
|
|
93
|
+
# @param [Object] other_object to be compared
|
|
94
|
+
def ==(other_object)
|
|
95
|
+
return true if self.equal?(other_object)
|
|
96
|
+
self.class == other_object.class &&
|
|
97
|
+
compartment_id == other_object.compartment_id &&
|
|
98
|
+
cross_connect_group_id == other_object.cross_connect_group_id &&
|
|
99
|
+
display_name == other_object.display_name &&
|
|
100
|
+
far_cross_connect_or_cross_connect_group_id == other_object.far_cross_connect_or_cross_connect_group_id &&
|
|
101
|
+
location_name == other_object.location_name &&
|
|
102
|
+
near_cross_connect_or_cross_connect_group_id == other_object.near_cross_connect_or_cross_connect_group_id &&
|
|
103
|
+
port_speed_shape_name == other_object.port_speed_shape_name
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
# @see the `==` method
|
|
107
|
+
# @param [Object] other_object to be compared
|
|
108
|
+
def eql?(other_object)
|
|
109
|
+
self == other_object
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
# Calculates hash code according to all attributes.
|
|
113
|
+
# @return [Fixnum] Hash code
|
|
114
|
+
def hash
|
|
115
|
+
[compartment_id, cross_connect_group_id, display_name, far_cross_connect_or_cross_connect_group_id, location_name, near_cross_connect_or_cross_connect_group_id, port_speed_shape_name].hash
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
# Builds the object from hash
|
|
119
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
120
|
+
# @return [Object] Returns the model itself
|
|
121
|
+
def build_from_hash(attributes)
|
|
122
|
+
return nil unless attributes.is_a?(Hash)
|
|
123
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
124
|
+
if type =~ /^Array<(.*)>/i
|
|
125
|
+
# check to ensure the input is an array given that the the attribute
|
|
126
|
+
# is documented as an array but the input is not
|
|
127
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
128
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
129
|
+
end
|
|
130
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
131
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
132
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
self
|
|
136
|
+
end
|
|
137
|
+
|
|
138
|
+
# Returns the string representation of the object
|
|
139
|
+
# @return [String] String presentation of the object
|
|
140
|
+
def to_s
|
|
141
|
+
to_hash.to_s
|
|
142
|
+
end
|
|
143
|
+
|
|
144
|
+
# Returns the object in the form of hash
|
|
145
|
+
# @return [Hash] Returns the object in the form of hash
|
|
146
|
+
def to_hash
|
|
147
|
+
hash = {}
|
|
148
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
149
|
+
value = self.send(attr)
|
|
150
|
+
next if value.nil?
|
|
151
|
+
hash[param] = _to_hash(value)
|
|
152
|
+
end
|
|
153
|
+
hash
|
|
154
|
+
end
|
|
155
|
+
|
|
156
|
+
private
|
|
157
|
+
|
|
158
|
+
# Outputs non-array value in the form of hash
|
|
159
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
160
|
+
# @param [Object] value Any valid value
|
|
161
|
+
# @return [Hash] Returns the value in the form of hash
|
|
162
|
+
def _to_hash(value)
|
|
163
|
+
if value.is_a?(Array)
|
|
164
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
165
|
+
elsif value.is_a?(Hash)
|
|
166
|
+
{}.tap do |hash|
|
|
167
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
168
|
+
end
|
|
169
|
+
elsif value.respond_to? :to_hash
|
|
170
|
+
value.to_hash
|
|
171
|
+
else
|
|
172
|
+
value
|
|
173
|
+
end
|
|
174
|
+
end
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
179
|
+
def self.attribute_map
|
|
180
|
+
{
|
|
181
|
+
:'compartment_id' => :'compartmentId',
|
|
182
|
+
:'cross_connect_group_id' => :'crossConnectGroupId',
|
|
183
|
+
:'display_name' => :'displayName',
|
|
184
|
+
:'far_cross_connect_or_cross_connect_group_id' => :'farCrossConnectOrCrossConnectGroupId',
|
|
185
|
+
:'location_name' => :'locationName',
|
|
186
|
+
:'near_cross_connect_or_cross_connect_group_id' => :'nearCrossConnectOrCrossConnectGroupId',
|
|
187
|
+
:'port_speed_shape_name' => :'portSpeedShapeName'
|
|
188
|
+
}
|
|
189
|
+
end
|
|
190
|
+
|
|
191
|
+
# Attribute type mapping.
|
|
192
|
+
def self.swagger_types
|
|
193
|
+
{
|
|
194
|
+
:'compartment_id' => :'String',
|
|
195
|
+
:'cross_connect_group_id' => :'String',
|
|
196
|
+
:'display_name' => :'String',
|
|
197
|
+
:'far_cross_connect_or_cross_connect_group_id' => :'String',
|
|
198
|
+
:'location_name' => :'String',
|
|
199
|
+
:'near_cross_connect_or_cross_connect_group_id' => :'String',
|
|
200
|
+
:'port_speed_shape_name' => :'String'
|
|
201
|
+
}
|
|
202
|
+
end
|
|
203
|
+
end
|
|
204
|
+
end
|
|
@@ -0,0 +1,133 @@
|
|
|
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::CreateCrossConnectGroupDetails
|
|
7
|
+
# The OCID of the compartment to contain the cross-connect group.
|
|
8
|
+
# @return [String]
|
|
9
|
+
attr_accessor :compartment_id
|
|
10
|
+
|
|
11
|
+
# A user-friendly name. Does not have to be unique, and it's changeable.
|
|
12
|
+
# Avoid entering confidential information.
|
|
13
|
+
#
|
|
14
|
+
# @return [String]
|
|
15
|
+
attr_accessor :display_name
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# Initializes the object
|
|
19
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
20
|
+
def initialize(attributes = {})
|
|
21
|
+
return unless attributes.is_a?(Hash)
|
|
22
|
+
|
|
23
|
+
# convert string to symbol for hash key
|
|
24
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
25
|
+
|
|
26
|
+
if attributes[:'compartmentId']
|
|
27
|
+
self.compartment_id = attributes[:'compartmentId']
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
if attributes[:'displayName']
|
|
31
|
+
self.display_name = attributes[:'displayName']
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
# Checks equality by comparing each attribute.
|
|
37
|
+
# @param [Object] other_object to be compared
|
|
38
|
+
def ==(other_object)
|
|
39
|
+
return true if self.equal?(other_object)
|
|
40
|
+
self.class == other_object.class &&
|
|
41
|
+
compartment_id == other_object.compartment_id &&
|
|
42
|
+
display_name == other_object.display_name
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
# @see the `==` method
|
|
46
|
+
# @param [Object] other_object to be compared
|
|
47
|
+
def eql?(other_object)
|
|
48
|
+
self == other_object
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
# Calculates hash code according to all attributes.
|
|
52
|
+
# @return [Fixnum] Hash code
|
|
53
|
+
def hash
|
|
54
|
+
[compartment_id, display_name].hash
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
# Builds the object from hash
|
|
58
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
59
|
+
# @return [Object] Returns the model itself
|
|
60
|
+
def build_from_hash(attributes)
|
|
61
|
+
return nil unless attributes.is_a?(Hash)
|
|
62
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
63
|
+
if type =~ /^Array<(.*)>/i
|
|
64
|
+
# check to ensure the input is an array given that the the attribute
|
|
65
|
+
# is documented as an array but the input is not
|
|
66
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
67
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
68
|
+
end
|
|
69
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
70
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
71
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
self
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
# Returns the string representation of the object
|
|
78
|
+
# @return [String] String presentation of the object
|
|
79
|
+
def to_s
|
|
80
|
+
to_hash.to_s
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
# Returns the object in the form of hash
|
|
84
|
+
# @return [Hash] Returns the object in the form of hash
|
|
85
|
+
def to_hash
|
|
86
|
+
hash = {}
|
|
87
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
88
|
+
value = self.send(attr)
|
|
89
|
+
next if value.nil?
|
|
90
|
+
hash[param] = _to_hash(value)
|
|
91
|
+
end
|
|
92
|
+
hash
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
private
|
|
96
|
+
|
|
97
|
+
# Outputs non-array value in the form of hash
|
|
98
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
99
|
+
# @param [Object] value Any valid value
|
|
100
|
+
# @return [Hash] Returns the value in the form of hash
|
|
101
|
+
def _to_hash(value)
|
|
102
|
+
if value.is_a?(Array)
|
|
103
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
104
|
+
elsif value.is_a?(Hash)
|
|
105
|
+
{}.tap do |hash|
|
|
106
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
107
|
+
end
|
|
108
|
+
elsif value.respond_to? :to_hash
|
|
109
|
+
value.to_hash
|
|
110
|
+
else
|
|
111
|
+
value
|
|
112
|
+
end
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
118
|
+
def self.attribute_map
|
|
119
|
+
{
|
|
120
|
+
:'compartment_id' => :'compartmentId',
|
|
121
|
+
:'display_name' => :'displayName'
|
|
122
|
+
}
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
# Attribute type mapping.
|
|
126
|
+
def self.swagger_types
|
|
127
|
+
{
|
|
128
|
+
:'compartment_id' => :'String',
|
|
129
|
+
:'display_name' => :'String'
|
|
130
|
+
}
|
|
131
|
+
end
|
|
132
|
+
end
|
|
133
|
+
end
|