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,168 @@
|
|
|
1
|
+
# Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
require 'date'
|
|
4
|
+
|
|
5
|
+
module OCI
|
|
6
|
+
class LoadBalancer::Models::LoadBalancerHealthSummary
|
|
7
|
+
|
|
8
|
+
STATUS_ENUM = [STATUS_OK = 'OK',
|
|
9
|
+
STATUS_WARNING = 'WARNING',
|
|
10
|
+
STATUS_CRITICAL = 'CRITICAL',
|
|
11
|
+
STATUS_UNKNOWN = 'UNKNOWN',
|
|
12
|
+
STATUS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE']
|
|
13
|
+
|
|
14
|
+
# The [OCID](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the load balancer the health status is associated with.
|
|
15
|
+
#
|
|
16
|
+
# @return [String]
|
|
17
|
+
attr_accessor :load_balancer_id
|
|
18
|
+
|
|
19
|
+
# The overall health status of the load balancer.
|
|
20
|
+
#
|
|
21
|
+
# * **OK:** All backend sets associated with the load balancer return a status of `OK`.
|
|
22
|
+
#
|
|
23
|
+
# * **WARNING:** At least one of the backend sets associated with the load balancer returns a status of `WARNING`,
|
|
24
|
+
# no backend sets return a status of `CRITICAL`, and the load balancer life cycle state is `ACTIVE`.
|
|
25
|
+
#
|
|
26
|
+
# * **CRITICAL:** One or more of the backend sets associated with the load balancer return a status of `CRITICAL`.
|
|
27
|
+
#
|
|
28
|
+
# * **UNKNOWN:** If any one of the following conditions is true:
|
|
29
|
+
#
|
|
30
|
+
# * The load balancer life cycle state is not `ACTIVE`.
|
|
31
|
+
#
|
|
32
|
+
# * No backend sets are defined for the load balancer.
|
|
33
|
+
#
|
|
34
|
+
# * More than half of the backend sets associated with the load balancer return a status of `UNKNOWN`, none of the backend
|
|
35
|
+
# sets return a status of `WARNING` or `CRITICAL`, and the load balancer life cycle state is `ACTIVE`.
|
|
36
|
+
#
|
|
37
|
+
# * The system could not retrieve metrics for any reason.
|
|
38
|
+
#
|
|
39
|
+
# @return [String]
|
|
40
|
+
attr_accessor :status
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
# Initializes the object
|
|
44
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
45
|
+
def initialize(attributes = {})
|
|
46
|
+
return unless attributes.is_a?(Hash)
|
|
47
|
+
|
|
48
|
+
# convert string to symbol for hash key
|
|
49
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
50
|
+
|
|
51
|
+
if attributes[:'loadBalancerId']
|
|
52
|
+
self.load_balancer_id = attributes[:'loadBalancerId']
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
if attributes[:'status']
|
|
56
|
+
self.status = attributes[:'status']
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# Custom attribute writer method checking allowed values (enum).
|
|
62
|
+
# @param [Object] status Object to be assigned
|
|
63
|
+
def status=(status)
|
|
64
|
+
if status && !STATUS_ENUM.include?(status)
|
|
65
|
+
@status = STATUS_UNKNOWN_ENUM_VALUE
|
|
66
|
+
else
|
|
67
|
+
@status = status
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
# Checks equality by comparing each attribute.
|
|
72
|
+
# @param [Object] other_object to be compared
|
|
73
|
+
def ==(other_object)
|
|
74
|
+
return true if self.equal?(other_object)
|
|
75
|
+
self.class == other_object.class &&
|
|
76
|
+
load_balancer_id == other_object.load_balancer_id &&
|
|
77
|
+
status == other_object.status
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
# @see the `==` method
|
|
81
|
+
# @param [Object] other_object to be compared
|
|
82
|
+
def eql?(other_object)
|
|
83
|
+
self == other_object
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
# Calculates hash code according to all attributes.
|
|
87
|
+
# @return [Fixnum] Hash code
|
|
88
|
+
def hash
|
|
89
|
+
[load_balancer_id, status].hash
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
# Builds the object from hash
|
|
93
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
94
|
+
# @return [Object] Returns the model itself
|
|
95
|
+
def build_from_hash(attributes)
|
|
96
|
+
return nil unless attributes.is_a?(Hash)
|
|
97
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
98
|
+
if type =~ /^Array<(.*)>/i
|
|
99
|
+
# check to ensure the input is an array given that the the attribute
|
|
100
|
+
# is documented as an array but the input is not
|
|
101
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
102
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
103
|
+
end
|
|
104
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
105
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
106
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
self
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
# Returns the string representation of the object
|
|
113
|
+
# @return [String] String presentation of the object
|
|
114
|
+
def to_s
|
|
115
|
+
to_hash.to_s
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
# Returns the object in the form of hash
|
|
119
|
+
# @return [Hash] Returns the object in the form of hash
|
|
120
|
+
def to_hash
|
|
121
|
+
hash = {}
|
|
122
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
123
|
+
value = self.send(attr)
|
|
124
|
+
next if value.nil?
|
|
125
|
+
hash[param] = _to_hash(value)
|
|
126
|
+
end
|
|
127
|
+
hash
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
private
|
|
131
|
+
|
|
132
|
+
# Outputs non-array value in the form of hash
|
|
133
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
134
|
+
# @param [Object] value Any valid value
|
|
135
|
+
# @return [Hash] Returns the value in the form of hash
|
|
136
|
+
def _to_hash(value)
|
|
137
|
+
if value.is_a?(Array)
|
|
138
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
139
|
+
elsif value.is_a?(Hash)
|
|
140
|
+
{}.tap do |hash|
|
|
141
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
142
|
+
end
|
|
143
|
+
elsif value.respond_to? :to_hash
|
|
144
|
+
value.to_hash
|
|
145
|
+
else
|
|
146
|
+
value
|
|
147
|
+
end
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
153
|
+
def self.attribute_map
|
|
154
|
+
{
|
|
155
|
+
:'load_balancer_id' => :'loadBalancerId',
|
|
156
|
+
:'status' => :'status'
|
|
157
|
+
}
|
|
158
|
+
end
|
|
159
|
+
|
|
160
|
+
# Attribute type mapping.
|
|
161
|
+
def self.swagger_types
|
|
162
|
+
{
|
|
163
|
+
:'load_balancer_id' => :'String',
|
|
164
|
+
:'status' => :'String'
|
|
165
|
+
}
|
|
166
|
+
end
|
|
167
|
+
end
|
|
168
|
+
end
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
# Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
require 'date'
|
|
4
|
+
|
|
5
|
+
module OCI
|
|
6
|
+
class LoadBalancer::Models::LoadBalancerPolicy
|
|
7
|
+
# The name of the load balancing policy.
|
|
8
|
+
# @return [String]
|
|
9
|
+
attr_accessor :name
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
# Initializes the object
|
|
13
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
14
|
+
def initialize(attributes = {})
|
|
15
|
+
return unless attributes.is_a?(Hash)
|
|
16
|
+
|
|
17
|
+
# convert string to symbol for hash key
|
|
18
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
19
|
+
|
|
20
|
+
if attributes[:'name']
|
|
21
|
+
self.name = attributes[:'name']
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
# Checks equality by comparing each attribute.
|
|
27
|
+
# @param [Object] other_object to be compared
|
|
28
|
+
def ==(other_object)
|
|
29
|
+
return true if self.equal?(other_object)
|
|
30
|
+
self.class == other_object.class &&
|
|
31
|
+
name == other_object.name
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
# @see the `==` method
|
|
35
|
+
# @param [Object] other_object to be compared
|
|
36
|
+
def eql?(other_object)
|
|
37
|
+
self == other_object
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
# Calculates hash code according to all attributes.
|
|
41
|
+
# @return [Fixnum] Hash code
|
|
42
|
+
def hash
|
|
43
|
+
[name].hash
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# Builds the object from hash
|
|
47
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
48
|
+
# @return [Object] Returns the model itself
|
|
49
|
+
def build_from_hash(attributes)
|
|
50
|
+
return nil unless attributes.is_a?(Hash)
|
|
51
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
52
|
+
if type =~ /^Array<(.*)>/i
|
|
53
|
+
# check to ensure the input is an array given that the the attribute
|
|
54
|
+
# is documented as an array but the input is not
|
|
55
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
56
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
57
|
+
end
|
|
58
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
59
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
60
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
self
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
# Returns the string representation of the object
|
|
67
|
+
# @return [String] String presentation of the object
|
|
68
|
+
def to_s
|
|
69
|
+
to_hash.to_s
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
# Returns the object in the form of hash
|
|
73
|
+
# @return [Hash] Returns the object in the form of hash
|
|
74
|
+
def to_hash
|
|
75
|
+
hash = {}
|
|
76
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
77
|
+
value = self.send(attr)
|
|
78
|
+
next if value.nil?
|
|
79
|
+
hash[param] = _to_hash(value)
|
|
80
|
+
end
|
|
81
|
+
hash
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
private
|
|
85
|
+
|
|
86
|
+
# Outputs non-array value in the form of hash
|
|
87
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
88
|
+
# @param [Object] value Any valid value
|
|
89
|
+
# @return [Hash] Returns the value in the form of hash
|
|
90
|
+
def _to_hash(value)
|
|
91
|
+
if value.is_a?(Array)
|
|
92
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
93
|
+
elsif value.is_a?(Hash)
|
|
94
|
+
{}.tap do |hash|
|
|
95
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
96
|
+
end
|
|
97
|
+
elsif value.respond_to? :to_hash
|
|
98
|
+
value.to_hash
|
|
99
|
+
else
|
|
100
|
+
value
|
|
101
|
+
end
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
107
|
+
def self.attribute_map
|
|
108
|
+
{
|
|
109
|
+
:'name' => :'name'
|
|
110
|
+
}
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
# Attribute type mapping.
|
|
114
|
+
def self.swagger_types
|
|
115
|
+
{
|
|
116
|
+
:'name' => :'String'
|
|
117
|
+
}
|
|
118
|
+
end
|
|
119
|
+
end
|
|
120
|
+
end
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
# Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
require 'date'
|
|
4
|
+
|
|
5
|
+
module OCI
|
|
6
|
+
class LoadBalancer::Models::LoadBalancerProtocol
|
|
7
|
+
# The name of the protocol.
|
|
8
|
+
# @return [String]
|
|
9
|
+
attr_accessor :name
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
# Initializes the object
|
|
13
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
14
|
+
def initialize(attributes = {})
|
|
15
|
+
return unless attributes.is_a?(Hash)
|
|
16
|
+
|
|
17
|
+
# convert string to symbol for hash key
|
|
18
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
19
|
+
|
|
20
|
+
if attributes[:'name']
|
|
21
|
+
self.name = attributes[:'name']
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
# Checks equality by comparing each attribute.
|
|
27
|
+
# @param [Object] other_object to be compared
|
|
28
|
+
def ==(other_object)
|
|
29
|
+
return true if self.equal?(other_object)
|
|
30
|
+
self.class == other_object.class &&
|
|
31
|
+
name == other_object.name
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
# @see the `==` method
|
|
35
|
+
# @param [Object] other_object to be compared
|
|
36
|
+
def eql?(other_object)
|
|
37
|
+
self == other_object
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
# Calculates hash code according to all attributes.
|
|
41
|
+
# @return [Fixnum] Hash code
|
|
42
|
+
def hash
|
|
43
|
+
[name].hash
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# Builds the object from hash
|
|
47
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
48
|
+
# @return [Object] Returns the model itself
|
|
49
|
+
def build_from_hash(attributes)
|
|
50
|
+
return nil unless attributes.is_a?(Hash)
|
|
51
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
52
|
+
if type =~ /^Array<(.*)>/i
|
|
53
|
+
# check to ensure the input is an array given that the the attribute
|
|
54
|
+
# is documented as an array but the input is not
|
|
55
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
56
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
57
|
+
end
|
|
58
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
59
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
60
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
self
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
# Returns the string representation of the object
|
|
67
|
+
# @return [String] String presentation of the object
|
|
68
|
+
def to_s
|
|
69
|
+
to_hash.to_s
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
# Returns the object in the form of hash
|
|
73
|
+
# @return [Hash] Returns the object in the form of hash
|
|
74
|
+
def to_hash
|
|
75
|
+
hash = {}
|
|
76
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
77
|
+
value = self.send(attr)
|
|
78
|
+
next if value.nil?
|
|
79
|
+
hash[param] = _to_hash(value)
|
|
80
|
+
end
|
|
81
|
+
hash
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
private
|
|
85
|
+
|
|
86
|
+
# Outputs non-array value in the form of hash
|
|
87
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
88
|
+
# @param [Object] value Any valid value
|
|
89
|
+
# @return [Hash] Returns the value in the form of hash
|
|
90
|
+
def _to_hash(value)
|
|
91
|
+
if value.is_a?(Array)
|
|
92
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
93
|
+
elsif value.is_a?(Hash)
|
|
94
|
+
{}.tap do |hash|
|
|
95
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
96
|
+
end
|
|
97
|
+
elsif value.respond_to? :to_hash
|
|
98
|
+
value.to_hash
|
|
99
|
+
else
|
|
100
|
+
value
|
|
101
|
+
end
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
107
|
+
def self.attribute_map
|
|
108
|
+
{
|
|
109
|
+
:'name' => :'name'
|
|
110
|
+
}
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
# Attribute type mapping.
|
|
114
|
+
def self.swagger_types
|
|
115
|
+
{
|
|
116
|
+
:'name' => :'String'
|
|
117
|
+
}
|
|
118
|
+
end
|
|
119
|
+
end
|
|
120
|
+
end
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
# Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
require 'date'
|
|
4
|
+
|
|
5
|
+
module OCI
|
|
6
|
+
class LoadBalancer::Models::LoadBalancerShape
|
|
7
|
+
# The name of the shape.
|
|
8
|
+
# @return [String]
|
|
9
|
+
attr_accessor :name
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
# Initializes the object
|
|
13
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
14
|
+
def initialize(attributes = {})
|
|
15
|
+
return unless attributes.is_a?(Hash)
|
|
16
|
+
|
|
17
|
+
# convert string to symbol for hash key
|
|
18
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
19
|
+
|
|
20
|
+
if attributes[:'name']
|
|
21
|
+
self.name = attributes[:'name']
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
# Checks equality by comparing each attribute.
|
|
27
|
+
# @param [Object] other_object to be compared
|
|
28
|
+
def ==(other_object)
|
|
29
|
+
return true if self.equal?(other_object)
|
|
30
|
+
self.class == other_object.class &&
|
|
31
|
+
name == other_object.name
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
# @see the `==` method
|
|
35
|
+
# @param [Object] other_object to be compared
|
|
36
|
+
def eql?(other_object)
|
|
37
|
+
self == other_object
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
# Calculates hash code according to all attributes.
|
|
41
|
+
# @return [Fixnum] Hash code
|
|
42
|
+
def hash
|
|
43
|
+
[name].hash
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# Builds the object from hash
|
|
47
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
48
|
+
# @return [Object] Returns the model itself
|
|
49
|
+
def build_from_hash(attributes)
|
|
50
|
+
return nil unless attributes.is_a?(Hash)
|
|
51
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
52
|
+
if type =~ /^Array<(.*)>/i
|
|
53
|
+
# check to ensure the input is an array given that the the attribute
|
|
54
|
+
# is documented as an array but the input is not
|
|
55
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
56
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
57
|
+
end
|
|
58
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
59
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
60
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
self
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
# Returns the string representation of the object
|
|
67
|
+
# @return [String] String presentation of the object
|
|
68
|
+
def to_s
|
|
69
|
+
to_hash.to_s
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
# Returns the object in the form of hash
|
|
73
|
+
# @return [Hash] Returns the object in the form of hash
|
|
74
|
+
def to_hash
|
|
75
|
+
hash = {}
|
|
76
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
77
|
+
value = self.send(attr)
|
|
78
|
+
next if value.nil?
|
|
79
|
+
hash[param] = _to_hash(value)
|
|
80
|
+
end
|
|
81
|
+
hash
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
private
|
|
85
|
+
|
|
86
|
+
# Outputs non-array value in the form of hash
|
|
87
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
88
|
+
# @param [Object] value Any valid value
|
|
89
|
+
# @return [Hash] Returns the value in the form of hash
|
|
90
|
+
def _to_hash(value)
|
|
91
|
+
if value.is_a?(Array)
|
|
92
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
93
|
+
elsif value.is_a?(Hash)
|
|
94
|
+
{}.tap do |hash|
|
|
95
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
96
|
+
end
|
|
97
|
+
elsif value.respond_to? :to_hash
|
|
98
|
+
value.to_hash
|
|
99
|
+
else
|
|
100
|
+
value
|
|
101
|
+
end
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
107
|
+
def self.attribute_map
|
|
108
|
+
{
|
|
109
|
+
:'name' => :'name'
|
|
110
|
+
}
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
# Attribute type mapping.
|
|
114
|
+
def self.swagger_types
|
|
115
|
+
{
|
|
116
|
+
:'name' => :'String'
|
|
117
|
+
}
|
|
118
|
+
end
|
|
119
|
+
end
|
|
120
|
+
end
|