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,135 @@
|
|
|
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::UdpOptions
|
|
7
|
+
# An inclusive range of allowed destination ports. Use the same number for the min and max
|
|
8
|
+
# to indicate a single port. Defaults to all ports if not specified.
|
|
9
|
+
#
|
|
10
|
+
# @return [OCI::Core::Models::PortRange]
|
|
11
|
+
attr_accessor :destination_port_range
|
|
12
|
+
|
|
13
|
+
# An inclusive range of allowed source ports. Use the same number for the min and max to
|
|
14
|
+
# indicate a single port. Defaults to all ports if not specified.
|
|
15
|
+
#
|
|
16
|
+
# @return [OCI::Core::Models::PortRange]
|
|
17
|
+
attr_accessor :source_port_range
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# Initializes the object
|
|
21
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
22
|
+
def initialize(attributes = {})
|
|
23
|
+
return unless attributes.is_a?(Hash)
|
|
24
|
+
|
|
25
|
+
# convert string to symbol for hash key
|
|
26
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
27
|
+
|
|
28
|
+
if attributes[:'destinationPortRange']
|
|
29
|
+
self.destination_port_range = attributes[:'destinationPortRange']
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
if attributes[:'sourcePortRange']
|
|
33
|
+
self.source_port_range = attributes[:'sourcePortRange']
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
# Checks equality by comparing each attribute.
|
|
39
|
+
# @param [Object] other_object to be compared
|
|
40
|
+
def ==(other_object)
|
|
41
|
+
return true if self.equal?(other_object)
|
|
42
|
+
self.class == other_object.class &&
|
|
43
|
+
destination_port_range == other_object.destination_port_range &&
|
|
44
|
+
source_port_range == other_object.source_port_range
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
# @see the `==` method
|
|
48
|
+
# @param [Object] other_object to be compared
|
|
49
|
+
def eql?(other_object)
|
|
50
|
+
self == other_object
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
# Calculates hash code according to all attributes.
|
|
54
|
+
# @return [Fixnum] Hash code
|
|
55
|
+
def hash
|
|
56
|
+
[destination_port_range, source_port_range].hash
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
# Builds the object from hash
|
|
60
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
61
|
+
# @return [Object] Returns the model itself
|
|
62
|
+
def build_from_hash(attributes)
|
|
63
|
+
return nil unless attributes.is_a?(Hash)
|
|
64
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
65
|
+
if type =~ /^Array<(.*)>/i
|
|
66
|
+
# check to ensure the input is an array given that the the attribute
|
|
67
|
+
# is documented as an array but the input is not
|
|
68
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
69
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
70
|
+
end
|
|
71
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
72
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
73
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
self
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
# Returns the string representation of the object
|
|
80
|
+
# @return [String] String presentation of the object
|
|
81
|
+
def to_s
|
|
82
|
+
to_hash.to_s
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
# Returns the object in the form of hash
|
|
86
|
+
# @return [Hash] Returns the object in the form of hash
|
|
87
|
+
def to_hash
|
|
88
|
+
hash = {}
|
|
89
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
90
|
+
value = self.send(attr)
|
|
91
|
+
next if value.nil?
|
|
92
|
+
hash[param] = _to_hash(value)
|
|
93
|
+
end
|
|
94
|
+
hash
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
private
|
|
98
|
+
|
|
99
|
+
# Outputs non-array value in the form of hash
|
|
100
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
101
|
+
# @param [Object] value Any valid value
|
|
102
|
+
# @return [Hash] Returns the value in the form of hash
|
|
103
|
+
def _to_hash(value)
|
|
104
|
+
if value.is_a?(Array)
|
|
105
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
106
|
+
elsif value.is_a?(Hash)
|
|
107
|
+
{}.tap do |hash|
|
|
108
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
109
|
+
end
|
|
110
|
+
elsif value.respond_to? :to_hash
|
|
111
|
+
value.to_hash
|
|
112
|
+
else
|
|
113
|
+
value
|
|
114
|
+
end
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
120
|
+
def self.attribute_map
|
|
121
|
+
{
|
|
122
|
+
:'destination_port_range' => :'destinationPortRange',
|
|
123
|
+
:'source_port_range' => :'sourcePortRange'
|
|
124
|
+
}
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
# Attribute type mapping.
|
|
128
|
+
def self.swagger_types
|
|
129
|
+
{
|
|
130
|
+
:'destination_port_range' => :'OCI::Core::Models::PortRange',
|
|
131
|
+
:'source_port_range' => :'OCI::Core::Models::PortRange'
|
|
132
|
+
}
|
|
133
|
+
end
|
|
134
|
+
end
|
|
135
|
+
end
|
|
@@ -0,0 +1,122 @@
|
|
|
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::UpdateCpeDetails
|
|
7
|
+
# A user-friendly name. Does not have to be unique, and it's changeable.
|
|
8
|
+
# Avoid entering confidential information.
|
|
9
|
+
#
|
|
10
|
+
# @return [String]
|
|
11
|
+
attr_accessor :display_name
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# Initializes the object
|
|
15
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
16
|
+
def initialize(attributes = {})
|
|
17
|
+
return unless attributes.is_a?(Hash)
|
|
18
|
+
|
|
19
|
+
# convert string to symbol for hash key
|
|
20
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
21
|
+
|
|
22
|
+
if attributes[:'displayName']
|
|
23
|
+
self.display_name = attributes[:'displayName']
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
# Checks equality by comparing each attribute.
|
|
29
|
+
# @param [Object] other_object to be compared
|
|
30
|
+
def ==(other_object)
|
|
31
|
+
return true if self.equal?(other_object)
|
|
32
|
+
self.class == other_object.class &&
|
|
33
|
+
display_name == other_object.display_name
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
# @see the `==` method
|
|
37
|
+
# @param [Object] other_object to be compared
|
|
38
|
+
def eql?(other_object)
|
|
39
|
+
self == other_object
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
# Calculates hash code according to all attributes.
|
|
43
|
+
# @return [Fixnum] Hash code
|
|
44
|
+
def hash
|
|
45
|
+
[display_name].hash
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
# Builds the object from hash
|
|
49
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
50
|
+
# @return [Object] Returns the model itself
|
|
51
|
+
def build_from_hash(attributes)
|
|
52
|
+
return nil unless attributes.is_a?(Hash)
|
|
53
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
54
|
+
if type =~ /^Array<(.*)>/i
|
|
55
|
+
# check to ensure the input is an array given that the the attribute
|
|
56
|
+
# is documented as an array but the input is not
|
|
57
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
58
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
59
|
+
end
|
|
60
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
61
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
62
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
self
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
# Returns the string representation of the object
|
|
69
|
+
# @return [String] String presentation of the object
|
|
70
|
+
def to_s
|
|
71
|
+
to_hash.to_s
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
# Returns the object in the form of hash
|
|
75
|
+
# @return [Hash] Returns the object in the form of hash
|
|
76
|
+
def to_hash
|
|
77
|
+
hash = {}
|
|
78
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
79
|
+
value = self.send(attr)
|
|
80
|
+
next if value.nil?
|
|
81
|
+
hash[param] = _to_hash(value)
|
|
82
|
+
end
|
|
83
|
+
hash
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
private
|
|
87
|
+
|
|
88
|
+
# Outputs non-array value in the form of hash
|
|
89
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
90
|
+
# @param [Object] value Any valid value
|
|
91
|
+
# @return [Hash] Returns the value in the form of hash
|
|
92
|
+
def _to_hash(value)
|
|
93
|
+
if value.is_a?(Array)
|
|
94
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
95
|
+
elsif value.is_a?(Hash)
|
|
96
|
+
{}.tap do |hash|
|
|
97
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
98
|
+
end
|
|
99
|
+
elsif value.respond_to? :to_hash
|
|
100
|
+
value.to_hash
|
|
101
|
+
else
|
|
102
|
+
value
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
109
|
+
def self.attribute_map
|
|
110
|
+
{
|
|
111
|
+
:'display_name' => :'displayName'
|
|
112
|
+
}
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
# Attribute type mapping.
|
|
116
|
+
def self.swagger_types
|
|
117
|
+
{
|
|
118
|
+
:'display_name' => :'String'
|
|
119
|
+
}
|
|
120
|
+
end
|
|
121
|
+
end
|
|
122
|
+
end
|
|
@@ -0,0 +1,138 @@
|
|
|
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::UpdateCrossConnectDetails
|
|
7
|
+
# A user-friendly name. Does not have to be unique, and it's changeable.
|
|
8
|
+
# Avoid entering confidential information.
|
|
9
|
+
#
|
|
10
|
+
# @return [String]
|
|
11
|
+
attr_accessor :display_name
|
|
12
|
+
|
|
13
|
+
# Set to true to activate the cross-connect. You activate it after the physical cabling
|
|
14
|
+
# is complete, and you've confirmed the cross-connect's light levels are good and your side
|
|
15
|
+
# of the interface is up. Activation indicates to Oracle that the physical connection is ready.
|
|
16
|
+
#
|
|
17
|
+
# Example: `true`
|
|
18
|
+
#
|
|
19
|
+
# @return [BOOLEAN]
|
|
20
|
+
attr_accessor :is_active
|
|
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[:'displayName']
|
|
32
|
+
self.display_name = attributes[:'displayName']
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
if attributes[:'isActive']
|
|
36
|
+
self.is_active = attributes[:'isActive']
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
# Checks equality by comparing each attribute.
|
|
42
|
+
# @param [Object] other_object to be compared
|
|
43
|
+
def ==(other_object)
|
|
44
|
+
return true if self.equal?(other_object)
|
|
45
|
+
self.class == other_object.class &&
|
|
46
|
+
display_name == other_object.display_name &&
|
|
47
|
+
is_active == other_object.is_active
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
# @see the `==` method
|
|
51
|
+
# @param [Object] other_object to be compared
|
|
52
|
+
def eql?(other_object)
|
|
53
|
+
self == other_object
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# Calculates hash code according to all attributes.
|
|
57
|
+
# @return [Fixnum] Hash code
|
|
58
|
+
def hash
|
|
59
|
+
[display_name, is_active].hash
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
# Builds the object from hash
|
|
63
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
64
|
+
# @return [Object] Returns the model itself
|
|
65
|
+
def build_from_hash(attributes)
|
|
66
|
+
return nil unless attributes.is_a?(Hash)
|
|
67
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
68
|
+
if type =~ /^Array<(.*)>/i
|
|
69
|
+
# check to ensure the input is an array given that the the attribute
|
|
70
|
+
# is documented as an array but the input is not
|
|
71
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
72
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
73
|
+
end
|
|
74
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
75
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
76
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
self
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
# Returns the string representation of the object
|
|
83
|
+
# @return [String] String presentation of the object
|
|
84
|
+
def to_s
|
|
85
|
+
to_hash.to_s
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
# Returns the object in the form of hash
|
|
89
|
+
# @return [Hash] Returns the object in the form of hash
|
|
90
|
+
def to_hash
|
|
91
|
+
hash = {}
|
|
92
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
93
|
+
value = self.send(attr)
|
|
94
|
+
next if value.nil?
|
|
95
|
+
hash[param] = _to_hash(value)
|
|
96
|
+
end
|
|
97
|
+
hash
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
private
|
|
101
|
+
|
|
102
|
+
# Outputs non-array value in the form of hash
|
|
103
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
104
|
+
# @param [Object] value Any valid value
|
|
105
|
+
# @return [Hash] Returns the value in the form of hash
|
|
106
|
+
def _to_hash(value)
|
|
107
|
+
if value.is_a?(Array)
|
|
108
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
109
|
+
elsif value.is_a?(Hash)
|
|
110
|
+
{}.tap do |hash|
|
|
111
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
112
|
+
end
|
|
113
|
+
elsif value.respond_to? :to_hash
|
|
114
|
+
value.to_hash
|
|
115
|
+
else
|
|
116
|
+
value
|
|
117
|
+
end
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
123
|
+
def self.attribute_map
|
|
124
|
+
{
|
|
125
|
+
:'display_name' => :'displayName',
|
|
126
|
+
:'is_active' => :'isActive'
|
|
127
|
+
}
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
# Attribute type mapping.
|
|
131
|
+
def self.swagger_types
|
|
132
|
+
{
|
|
133
|
+
:'display_name' => :'String',
|
|
134
|
+
:'is_active' => :'BOOLEAN'
|
|
135
|
+
}
|
|
136
|
+
end
|
|
137
|
+
end
|
|
138
|
+
end
|
|
@@ -0,0 +1,122 @@
|
|
|
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::UpdateCrossConnectGroupDetails
|
|
7
|
+
# A user-friendly name. Does not have to be unique, and it's changeable.
|
|
8
|
+
# Avoid entering confidential information.
|
|
9
|
+
#
|
|
10
|
+
# @return [String]
|
|
11
|
+
attr_accessor :display_name
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# Initializes the object
|
|
15
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
16
|
+
def initialize(attributes = {})
|
|
17
|
+
return unless attributes.is_a?(Hash)
|
|
18
|
+
|
|
19
|
+
# convert string to symbol for hash key
|
|
20
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
21
|
+
|
|
22
|
+
if attributes[:'displayName']
|
|
23
|
+
self.display_name = attributes[:'displayName']
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
# Checks equality by comparing each attribute.
|
|
29
|
+
# @param [Object] other_object to be compared
|
|
30
|
+
def ==(other_object)
|
|
31
|
+
return true if self.equal?(other_object)
|
|
32
|
+
self.class == other_object.class &&
|
|
33
|
+
display_name == other_object.display_name
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
# @see the `==` method
|
|
37
|
+
# @param [Object] other_object to be compared
|
|
38
|
+
def eql?(other_object)
|
|
39
|
+
self == other_object
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
# Calculates hash code according to all attributes.
|
|
43
|
+
# @return [Fixnum] Hash code
|
|
44
|
+
def hash
|
|
45
|
+
[display_name].hash
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
# Builds the object from hash
|
|
49
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
50
|
+
# @return [Object] Returns the model itself
|
|
51
|
+
def build_from_hash(attributes)
|
|
52
|
+
return nil unless attributes.is_a?(Hash)
|
|
53
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
54
|
+
if type =~ /^Array<(.*)>/i
|
|
55
|
+
# check to ensure the input is an array given that the the attribute
|
|
56
|
+
# is documented as an array but the input is not
|
|
57
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
58
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
59
|
+
end
|
|
60
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
61
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
62
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
self
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
# Returns the string representation of the object
|
|
69
|
+
# @return [String] String presentation of the object
|
|
70
|
+
def to_s
|
|
71
|
+
to_hash.to_s
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
# Returns the object in the form of hash
|
|
75
|
+
# @return [Hash] Returns the object in the form of hash
|
|
76
|
+
def to_hash
|
|
77
|
+
hash = {}
|
|
78
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
79
|
+
value = self.send(attr)
|
|
80
|
+
next if value.nil?
|
|
81
|
+
hash[param] = _to_hash(value)
|
|
82
|
+
end
|
|
83
|
+
hash
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
private
|
|
87
|
+
|
|
88
|
+
# Outputs non-array value in the form of hash
|
|
89
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
90
|
+
# @param [Object] value Any valid value
|
|
91
|
+
# @return [Hash] Returns the value in the form of hash
|
|
92
|
+
def _to_hash(value)
|
|
93
|
+
if value.is_a?(Array)
|
|
94
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
95
|
+
elsif value.is_a?(Hash)
|
|
96
|
+
{}.tap do |hash|
|
|
97
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
98
|
+
end
|
|
99
|
+
elsif value.respond_to? :to_hash
|
|
100
|
+
value.to_hash
|
|
101
|
+
else
|
|
102
|
+
value
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
109
|
+
def self.attribute_map
|
|
110
|
+
{
|
|
111
|
+
:'display_name' => :'displayName'
|
|
112
|
+
}
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
# Attribute type mapping.
|
|
116
|
+
def self.swagger_types
|
|
117
|
+
{
|
|
118
|
+
:'display_name' => :'String'
|
|
119
|
+
}
|
|
120
|
+
end
|
|
121
|
+
end
|
|
122
|
+
end
|