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,169 @@
|
|
|
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::Certificate
|
|
7
|
+
# The Certificate Authority certificate, or any interim certificate, that you received from your SSL certificate provider.
|
|
8
|
+
#
|
|
9
|
+
# Example:
|
|
10
|
+
#
|
|
11
|
+
# -----BEGIN CERTIFICATE-----
|
|
12
|
+
# MIIEczCCA1ugAwIBAgIBADANBgkqhkiG9w0BAQQFAD..AkGA1UEBhMCR0Ix
|
|
13
|
+
# EzARBgNVBAgTClNvbWUtU3RhdGUxFDASBgNVBAoTC0..0EgTHRkMTcwNQYD
|
|
14
|
+
# VQQLEy5DbGFzcyAxIFB1YmxpYyBQcmltYXJ5IENlcn..XRpb24gQXV0aG9y
|
|
15
|
+
# aXR5MRQwEgYDVQQDEwtCZXN0IENBIEx0ZDAeFw0wMD..TUwMTZaFw0wMTAy
|
|
16
|
+
# ...
|
|
17
|
+
# -----END CERTIFICATE-----
|
|
18
|
+
#
|
|
19
|
+
# @return [String]
|
|
20
|
+
attr_accessor :ca_certificate
|
|
21
|
+
|
|
22
|
+
# A friendly name for the certificate bundle. It must be unique and it cannot be changed.
|
|
23
|
+
# Valid certificate bundle names include only alphanumeric characters, dashes, and underscores.
|
|
24
|
+
# Certificate bundle names cannot contain spaces. Avoid entering confidential information.
|
|
25
|
+
#
|
|
26
|
+
# Example: `My_certificate_bundle`
|
|
27
|
+
#
|
|
28
|
+
# @return [String]
|
|
29
|
+
attr_accessor :certificate_name
|
|
30
|
+
|
|
31
|
+
# The public certificate, in PEM format, that you received from your SSL certificate provider.
|
|
32
|
+
#
|
|
33
|
+
# Example:
|
|
34
|
+
#
|
|
35
|
+
# -----BEGIN CERTIFICATE-----
|
|
36
|
+
# MIIC2jCCAkMCAg38MA0GCSqGSIb3DQEBBQUAMIGbMQswCQYDVQQGEwJKUDEOMAwG
|
|
37
|
+
# A1UECBMFVG9reW8xEDAOBgNVBAcTB0NodW8ta3UxETAPBgNVBAoTCEZyYW5rNERE
|
|
38
|
+
# MRgwFgYDVQQLEw9XZWJDZXJ0IFN1cHBvcnQxGDAWBgNVBAMTD0ZyYW5rNEREIFdl
|
|
39
|
+
# YiBDQTEjMCEGCSqGSIb3DQEJARYUc3VwcG9ydEBmcmFuazRkZC5jb20wHhcNMTIw
|
|
40
|
+
# ...
|
|
41
|
+
# -----END CERTIFICATE-----
|
|
42
|
+
#
|
|
43
|
+
# @return [String]
|
|
44
|
+
attr_accessor :public_certificate
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
# Initializes the object
|
|
48
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
49
|
+
def initialize(attributes = {})
|
|
50
|
+
return unless attributes.is_a?(Hash)
|
|
51
|
+
|
|
52
|
+
# convert string to symbol for hash key
|
|
53
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
54
|
+
|
|
55
|
+
if attributes[:'caCertificate']
|
|
56
|
+
self.ca_certificate = attributes[:'caCertificate']
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
if attributes[:'certificateName']
|
|
60
|
+
self.certificate_name = attributes[:'certificateName']
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
if attributes[:'publicCertificate']
|
|
64
|
+
self.public_certificate = attributes[:'publicCertificate']
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
# Checks equality by comparing each attribute.
|
|
70
|
+
# @param [Object] other_object to be compared
|
|
71
|
+
def ==(other_object)
|
|
72
|
+
return true if self.equal?(other_object)
|
|
73
|
+
self.class == other_object.class &&
|
|
74
|
+
ca_certificate == other_object.ca_certificate &&
|
|
75
|
+
certificate_name == other_object.certificate_name &&
|
|
76
|
+
public_certificate == other_object.public_certificate
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
# @see the `==` method
|
|
80
|
+
# @param [Object] other_object to be compared
|
|
81
|
+
def eql?(other_object)
|
|
82
|
+
self == other_object
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
# Calculates hash code according to all attributes.
|
|
86
|
+
# @return [Fixnum] Hash code
|
|
87
|
+
def hash
|
|
88
|
+
[ca_certificate, certificate_name, public_certificate].hash
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
# Builds the object from hash
|
|
92
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
93
|
+
# @return [Object] Returns the model itself
|
|
94
|
+
def build_from_hash(attributes)
|
|
95
|
+
return nil unless attributes.is_a?(Hash)
|
|
96
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
97
|
+
if type =~ /^Array<(.*)>/i
|
|
98
|
+
# check to ensure the input is an array given that the the attribute
|
|
99
|
+
# is documented as an array but the input is not
|
|
100
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
101
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
102
|
+
end
|
|
103
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
104
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
105
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
self
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
# Returns the string representation of the object
|
|
112
|
+
# @return [String] String presentation of the object
|
|
113
|
+
def to_s
|
|
114
|
+
to_hash.to_s
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
# Returns the object in the form of hash
|
|
118
|
+
# @return [Hash] Returns the object in the form of hash
|
|
119
|
+
def to_hash
|
|
120
|
+
hash = {}
|
|
121
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
122
|
+
value = self.send(attr)
|
|
123
|
+
next if value.nil?
|
|
124
|
+
hash[param] = _to_hash(value)
|
|
125
|
+
end
|
|
126
|
+
hash
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
private
|
|
130
|
+
|
|
131
|
+
# Outputs non-array value in the form of hash
|
|
132
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
133
|
+
# @param [Object] value Any valid value
|
|
134
|
+
# @return [Hash] Returns the value in the form of hash
|
|
135
|
+
def _to_hash(value)
|
|
136
|
+
if value.is_a?(Array)
|
|
137
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
138
|
+
elsif value.is_a?(Hash)
|
|
139
|
+
{}.tap do |hash|
|
|
140
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
141
|
+
end
|
|
142
|
+
elsif value.respond_to? :to_hash
|
|
143
|
+
value.to_hash
|
|
144
|
+
else
|
|
145
|
+
value
|
|
146
|
+
end
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
152
|
+
def self.attribute_map
|
|
153
|
+
{
|
|
154
|
+
:'ca_certificate' => :'caCertificate',
|
|
155
|
+
:'certificate_name' => :'certificateName',
|
|
156
|
+
:'public_certificate' => :'publicCertificate'
|
|
157
|
+
}
|
|
158
|
+
end
|
|
159
|
+
|
|
160
|
+
# Attribute type mapping.
|
|
161
|
+
def self.swagger_types
|
|
162
|
+
{
|
|
163
|
+
:'ca_certificate' => :'String',
|
|
164
|
+
:'certificate_name' => :'String',
|
|
165
|
+
:'public_certificate' => :'String'
|
|
166
|
+
}
|
|
167
|
+
end
|
|
168
|
+
end
|
|
169
|
+
end
|
|
@@ -0,0 +1,205 @@
|
|
|
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::CertificateDetails
|
|
7
|
+
# The Certificate Authority certificate, or any interim certificate, that you received from your SSL certificate provider.
|
|
8
|
+
#
|
|
9
|
+
# Example:
|
|
10
|
+
#
|
|
11
|
+
# -----BEGIN CERTIFICATE-----
|
|
12
|
+
# MIIEczCCA1ugAwIBAgIBADANBgkqhkiG9w0BAQQFAD..AkGA1UEBhMCR0Ix
|
|
13
|
+
# EzARBgNVBAgTClNvbWUtU3RhdGUxFDASBgNVBAoTC0..0EgTHRkMTcwNQYD
|
|
14
|
+
# VQQLEy5DbGFzcyAxIFB1YmxpYyBQcmltYXJ5IENlcn..XRpb24gQXV0aG9y
|
|
15
|
+
# aXR5MRQwEgYDVQQDEwtCZXN0IENBIEx0ZDAeFw0wMD..TUwMTZaFw0wMTAy
|
|
16
|
+
# ...
|
|
17
|
+
# -----END CERTIFICATE-----
|
|
18
|
+
#
|
|
19
|
+
# @return [String]
|
|
20
|
+
attr_accessor :ca_certificate
|
|
21
|
+
|
|
22
|
+
# A friendly name for the certificate bundle. It must be unique and it cannot be changed.
|
|
23
|
+
# Valid certificate bundle names include only alphanumeric characters, dashes, and underscores.
|
|
24
|
+
# Certificate bundle names cannot contain spaces. Avoid entering confidential information.
|
|
25
|
+
#
|
|
26
|
+
# Example: `My_certificate_bundle`
|
|
27
|
+
#
|
|
28
|
+
# @return [String]
|
|
29
|
+
attr_accessor :certificate_name
|
|
30
|
+
|
|
31
|
+
# A passphrase for encrypted private keys. This is needed only if you created your certificate with a passphrase.
|
|
32
|
+
#
|
|
33
|
+
# Example: `Mysecretunlockingcode42!1!`
|
|
34
|
+
#
|
|
35
|
+
# @return [String]
|
|
36
|
+
attr_accessor :passphrase
|
|
37
|
+
|
|
38
|
+
# The SSL private key for your certificate, in PEM format.
|
|
39
|
+
#
|
|
40
|
+
# Example:
|
|
41
|
+
#
|
|
42
|
+
# -----BEGIN RSA PRIVATE KEY-----
|
|
43
|
+
# jO1O1v2ftXMsawM90tnXwc6xhOAT1gDBC9S8DKeca..JZNUgYYwNS0dP2UK
|
|
44
|
+
# tmyN+XqVcAKw4HqVmChXy5b5msu8eIq3uc2NqNVtR..2ksSLukP8pxXcHyb
|
|
45
|
+
# +sEwvM4uf8qbnHAqwnOnP9+KV9vds6BaH1eRA4CHz..n+NVZlzBsTxTlS16
|
|
46
|
+
# /Umr7wJzVrMqK5sDiSu4WuaaBdqMGfL5hLsTjcBFD..Da2iyQmSKuVD4lIZ
|
|
47
|
+
# ...
|
|
48
|
+
# -----END RSA PRIVATE KEY-----
|
|
49
|
+
#
|
|
50
|
+
# @return [String]
|
|
51
|
+
attr_accessor :private_key
|
|
52
|
+
|
|
53
|
+
# The public certificate, in PEM format, that you received from your SSL certificate provider.
|
|
54
|
+
#
|
|
55
|
+
# Example:
|
|
56
|
+
#
|
|
57
|
+
# -----BEGIN CERTIFICATE-----
|
|
58
|
+
# MIIC2jCCAkMCAg38MA0GCSqGSIb3DQEBBQUAMIGbMQswCQYDVQQGEwJKUDEOMAwG
|
|
59
|
+
# A1UECBMFVG9reW8xEDAOBgNVBAcTB0NodW8ta3UxETAPBgNVBAoTCEZyYW5rNERE
|
|
60
|
+
# MRgwFgYDVQQLEw9XZWJDZXJ0IFN1cHBvcnQxGDAWBgNVBAMTD0ZyYW5rNEREIFdl
|
|
61
|
+
# YiBDQTEjMCEGCSqGSIb3DQEJARYUc3VwcG9ydEBmcmFuazRkZC5jb20wHhcNMTIw
|
|
62
|
+
# ...
|
|
63
|
+
# -----END CERTIFICATE-----
|
|
64
|
+
#
|
|
65
|
+
# @return [String]
|
|
66
|
+
attr_accessor :public_certificate
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
# Initializes the object
|
|
70
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
71
|
+
def initialize(attributes = {})
|
|
72
|
+
return unless attributes.is_a?(Hash)
|
|
73
|
+
|
|
74
|
+
# convert string to symbol for hash key
|
|
75
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
76
|
+
|
|
77
|
+
if attributes[:'caCertificate']
|
|
78
|
+
self.ca_certificate = attributes[:'caCertificate']
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
if attributes[:'certificateName']
|
|
82
|
+
self.certificate_name = attributes[:'certificateName']
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
if attributes[:'passphrase']
|
|
86
|
+
self.passphrase = attributes[:'passphrase']
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
if attributes[:'privateKey']
|
|
90
|
+
self.private_key = attributes[:'privateKey']
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
if attributes[:'publicCertificate']
|
|
94
|
+
self.public_certificate = attributes[:'publicCertificate']
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
# Checks equality by comparing each attribute.
|
|
100
|
+
# @param [Object] other_object to be compared
|
|
101
|
+
def ==(other_object)
|
|
102
|
+
return true if self.equal?(other_object)
|
|
103
|
+
self.class == other_object.class &&
|
|
104
|
+
ca_certificate == other_object.ca_certificate &&
|
|
105
|
+
certificate_name == other_object.certificate_name &&
|
|
106
|
+
passphrase == other_object.passphrase &&
|
|
107
|
+
private_key == other_object.private_key &&
|
|
108
|
+
public_certificate == other_object.public_certificate
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
# @see the `==` method
|
|
112
|
+
# @param [Object] other_object to be compared
|
|
113
|
+
def eql?(other_object)
|
|
114
|
+
self == other_object
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
# Calculates hash code according to all attributes.
|
|
118
|
+
# @return [Fixnum] Hash code
|
|
119
|
+
def hash
|
|
120
|
+
[ca_certificate, certificate_name, passphrase, private_key, public_certificate].hash
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
# Builds the object from hash
|
|
124
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
125
|
+
# @return [Object] Returns the model itself
|
|
126
|
+
def build_from_hash(attributes)
|
|
127
|
+
return nil unless attributes.is_a?(Hash)
|
|
128
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
129
|
+
if type =~ /^Array<(.*)>/i
|
|
130
|
+
# check to ensure the input is an array given that the the attribute
|
|
131
|
+
# is documented as an array but the input is not
|
|
132
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
133
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
134
|
+
end
|
|
135
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
136
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
137
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
self
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
# Returns the string representation of the object
|
|
144
|
+
# @return [String] String presentation of the object
|
|
145
|
+
def to_s
|
|
146
|
+
to_hash.to_s
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
# Returns the object in the form of hash
|
|
150
|
+
# @return [Hash] Returns the object in the form of hash
|
|
151
|
+
def to_hash
|
|
152
|
+
hash = {}
|
|
153
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
154
|
+
value = self.send(attr)
|
|
155
|
+
next if value.nil?
|
|
156
|
+
hash[param] = _to_hash(value)
|
|
157
|
+
end
|
|
158
|
+
hash
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
private
|
|
162
|
+
|
|
163
|
+
# Outputs non-array value in the form of hash
|
|
164
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
165
|
+
# @param [Object] value Any valid value
|
|
166
|
+
# @return [Hash] Returns the value in the form of hash
|
|
167
|
+
def _to_hash(value)
|
|
168
|
+
if value.is_a?(Array)
|
|
169
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
170
|
+
elsif value.is_a?(Hash)
|
|
171
|
+
{}.tap do |hash|
|
|
172
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
173
|
+
end
|
|
174
|
+
elsif value.respond_to? :to_hash
|
|
175
|
+
value.to_hash
|
|
176
|
+
else
|
|
177
|
+
value
|
|
178
|
+
end
|
|
179
|
+
end
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
184
|
+
def self.attribute_map
|
|
185
|
+
{
|
|
186
|
+
:'ca_certificate' => :'caCertificate',
|
|
187
|
+
:'certificate_name' => :'certificateName',
|
|
188
|
+
:'passphrase' => :'passphrase',
|
|
189
|
+
:'private_key' => :'privateKey',
|
|
190
|
+
:'public_certificate' => :'publicCertificate'
|
|
191
|
+
}
|
|
192
|
+
end
|
|
193
|
+
|
|
194
|
+
# Attribute type mapping.
|
|
195
|
+
def self.swagger_types
|
|
196
|
+
{
|
|
197
|
+
:'ca_certificate' => :'String',
|
|
198
|
+
:'certificate_name' => :'String',
|
|
199
|
+
:'passphrase' => :'String',
|
|
200
|
+
:'private_key' => :'String',
|
|
201
|
+
:'public_certificate' => :'String'
|
|
202
|
+
}
|
|
203
|
+
end
|
|
204
|
+
end
|
|
205
|
+
end
|
|
@@ -0,0 +1,206 @@
|
|
|
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::CreateBackendDetails
|
|
7
|
+
# Whether the load balancer should treat this server as a backup unit. If `true`, the load balancer forwards no ingress
|
|
8
|
+
# traffic to this backend server unless all other backend servers not marked as \"backup\" fail the health check policy.
|
|
9
|
+
#
|
|
10
|
+
# Example: `true`
|
|
11
|
+
#
|
|
12
|
+
# @return [BOOLEAN]
|
|
13
|
+
attr_accessor :backup
|
|
14
|
+
|
|
15
|
+
# Whether the load balancer should drain this server. Servers marked \"drain\" receive no new
|
|
16
|
+
# incoming traffic.
|
|
17
|
+
#
|
|
18
|
+
# Example: `true`
|
|
19
|
+
#
|
|
20
|
+
# @return [BOOLEAN]
|
|
21
|
+
attr_accessor :drain
|
|
22
|
+
|
|
23
|
+
# The IP address of the backend server.
|
|
24
|
+
#
|
|
25
|
+
# Example: `10.10.10.4`
|
|
26
|
+
#
|
|
27
|
+
# @return [String]
|
|
28
|
+
attr_accessor :ip_address
|
|
29
|
+
|
|
30
|
+
# Whether the load balancer should treat this server as offline. Offline servers receive no incoming
|
|
31
|
+
# traffic.
|
|
32
|
+
#
|
|
33
|
+
# Example: `true`
|
|
34
|
+
#
|
|
35
|
+
# @return [BOOLEAN]
|
|
36
|
+
attr_accessor :offline
|
|
37
|
+
|
|
38
|
+
# The communication port for the backend server.
|
|
39
|
+
#
|
|
40
|
+
# Example: `8080`
|
|
41
|
+
#
|
|
42
|
+
# @return [Integer]
|
|
43
|
+
attr_accessor :port
|
|
44
|
+
|
|
45
|
+
# The load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger
|
|
46
|
+
# proportion of incoming traffic. For example, a server weighted '3' receives 3 times the number of new connections
|
|
47
|
+
# as a server weighted '1'.
|
|
48
|
+
# For more information on load balancing policies, see
|
|
49
|
+
# [How Load Balancing Policies Work](https://docs.us-phoenix-1.oraclecloud.com/Content/Balance/Reference/lbpolicies.htm).
|
|
50
|
+
#
|
|
51
|
+
# Example: `3`
|
|
52
|
+
#
|
|
53
|
+
# @return [Integer]
|
|
54
|
+
attr_accessor :weight
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
# Initializes the object
|
|
58
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
59
|
+
def initialize(attributes = {})
|
|
60
|
+
return unless attributes.is_a?(Hash)
|
|
61
|
+
|
|
62
|
+
# convert string to symbol for hash key
|
|
63
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
64
|
+
|
|
65
|
+
if attributes[:'backup']
|
|
66
|
+
self.backup = attributes[:'backup']
|
|
67
|
+
else
|
|
68
|
+
self.backup = false
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
if attributes[:'drain']
|
|
72
|
+
self.drain = attributes[:'drain']
|
|
73
|
+
else
|
|
74
|
+
self.drain = false
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
if attributes[:'ipAddress']
|
|
78
|
+
self.ip_address = attributes[:'ipAddress']
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
if attributes[:'offline']
|
|
82
|
+
self.offline = attributes[:'offline']
|
|
83
|
+
else
|
|
84
|
+
self.offline = false
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
if attributes[:'port']
|
|
88
|
+
self.port = attributes[:'port']
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
if attributes[:'weight']
|
|
92
|
+
self.weight = attributes[:'weight']
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
# Checks equality by comparing each attribute.
|
|
98
|
+
# @param [Object] other_object to be compared
|
|
99
|
+
def ==(other_object)
|
|
100
|
+
return true if self.equal?(other_object)
|
|
101
|
+
self.class == other_object.class &&
|
|
102
|
+
backup == other_object.backup &&
|
|
103
|
+
drain == other_object.drain &&
|
|
104
|
+
ip_address == other_object.ip_address &&
|
|
105
|
+
offline == other_object.offline &&
|
|
106
|
+
port == other_object.port &&
|
|
107
|
+
weight == other_object.weight
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
# @see the `==` method
|
|
111
|
+
# @param [Object] other_object to be compared
|
|
112
|
+
def eql?(other_object)
|
|
113
|
+
self == other_object
|
|
114
|
+
end
|
|
115
|
+
|
|
116
|
+
# Calculates hash code according to all attributes.
|
|
117
|
+
# @return [Fixnum] Hash code
|
|
118
|
+
def hash
|
|
119
|
+
[backup, drain, ip_address, offline, port, weight].hash
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
# Builds the object from hash
|
|
123
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
124
|
+
# @return [Object] Returns the model itself
|
|
125
|
+
def build_from_hash(attributes)
|
|
126
|
+
return nil unless attributes.is_a?(Hash)
|
|
127
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
128
|
+
if type =~ /^Array<(.*)>/i
|
|
129
|
+
# check to ensure the input is an array given that the the attribute
|
|
130
|
+
# is documented as an array but the input is not
|
|
131
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
132
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
133
|
+
end
|
|
134
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
135
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
136
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
self
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
# Returns the string representation of the object
|
|
143
|
+
# @return [String] String presentation of the object
|
|
144
|
+
def to_s
|
|
145
|
+
to_hash.to_s
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
# Returns the object in the form of hash
|
|
149
|
+
# @return [Hash] Returns the object in the form of hash
|
|
150
|
+
def to_hash
|
|
151
|
+
hash = {}
|
|
152
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
153
|
+
value = self.send(attr)
|
|
154
|
+
next if value.nil?
|
|
155
|
+
hash[param] = _to_hash(value)
|
|
156
|
+
end
|
|
157
|
+
hash
|
|
158
|
+
end
|
|
159
|
+
|
|
160
|
+
private
|
|
161
|
+
|
|
162
|
+
# Outputs non-array value in the form of hash
|
|
163
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
164
|
+
# @param [Object] value Any valid value
|
|
165
|
+
# @return [Hash] Returns the value in the form of hash
|
|
166
|
+
def _to_hash(value)
|
|
167
|
+
if value.is_a?(Array)
|
|
168
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
169
|
+
elsif value.is_a?(Hash)
|
|
170
|
+
{}.tap do |hash|
|
|
171
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
172
|
+
end
|
|
173
|
+
elsif value.respond_to? :to_hash
|
|
174
|
+
value.to_hash
|
|
175
|
+
else
|
|
176
|
+
value
|
|
177
|
+
end
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
183
|
+
def self.attribute_map
|
|
184
|
+
{
|
|
185
|
+
:'backup' => :'backup',
|
|
186
|
+
:'drain' => :'drain',
|
|
187
|
+
:'ip_address' => :'ipAddress',
|
|
188
|
+
:'offline' => :'offline',
|
|
189
|
+
:'port' => :'port',
|
|
190
|
+
:'weight' => :'weight'
|
|
191
|
+
}
|
|
192
|
+
end
|
|
193
|
+
|
|
194
|
+
# Attribute type mapping.
|
|
195
|
+
def self.swagger_types
|
|
196
|
+
{
|
|
197
|
+
:'backup' => :'BOOLEAN',
|
|
198
|
+
:'drain' => :'BOOLEAN',
|
|
199
|
+
:'ip_address' => :'String',
|
|
200
|
+
:'offline' => :'BOOLEAN',
|
|
201
|
+
:'port' => :'Integer',
|
|
202
|
+
:'weight' => :'Integer'
|
|
203
|
+
}
|
|
204
|
+
end
|
|
205
|
+
end
|
|
206
|
+
end
|