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,240 @@
|
|
|
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::UpdateVirtualCircuitDetails
|
|
7
|
+
|
|
8
|
+
PROVIDER_STATE_ENUM = [PROVIDER_STATE_ACTIVE = 'ACTIVE',
|
|
9
|
+
PROVIDER_STATE_INACTIVE = 'INACTIVE']
|
|
10
|
+
|
|
11
|
+
# The provisioned data rate of the connection. To get a list of the
|
|
12
|
+
# available bandwidth levels (that is, shapes), see
|
|
13
|
+
# {#list_virtual_circuit_bandwidth_shapes list_virtual_circuit_bandwidth_shapes}.
|
|
14
|
+
#
|
|
15
|
+
# To be updated only by the customer who owns the virtual circuit.
|
|
16
|
+
#
|
|
17
|
+
# @return [String]
|
|
18
|
+
attr_accessor :bandwidth_shape_name
|
|
19
|
+
|
|
20
|
+
# An array of mappings, each containing properties for a cross-connect or
|
|
21
|
+
# cross-connect group associated with this virtual circuit.
|
|
22
|
+
#
|
|
23
|
+
# The customer and provider can update different properties in the mapping
|
|
24
|
+
# depending on the situation. See the description of the
|
|
25
|
+
# {CrossConnectMapping}.
|
|
26
|
+
#
|
|
27
|
+
# @return [Array<OCI::Core::Models::CrossConnectMapping>]
|
|
28
|
+
attr_accessor :cross_connect_mappings
|
|
29
|
+
|
|
30
|
+
# The BGP ASN of the network at the other end of the BGP
|
|
31
|
+
# session from Oracle.
|
|
32
|
+
#
|
|
33
|
+
# If the BGP session is from the customer's edge router to Oracle, the
|
|
34
|
+
# required value is the customer's ASN, and it can be updated only
|
|
35
|
+
# by the customer.
|
|
36
|
+
#
|
|
37
|
+
# If the BGP session is from the provider's edge router to Oracle, the
|
|
38
|
+
# required value is the provider's ASN, and it can be updated only
|
|
39
|
+
# by the provider.
|
|
40
|
+
#
|
|
41
|
+
# @return [Integer]
|
|
42
|
+
attr_accessor :customer_bgp_asn
|
|
43
|
+
|
|
44
|
+
# A user-friendly name. Does not have to be unique.
|
|
45
|
+
# Avoid entering confidential information.
|
|
46
|
+
#
|
|
47
|
+
# To be updated only by the customer who owns the virtual circuit.
|
|
48
|
+
#
|
|
49
|
+
# @return [String]
|
|
50
|
+
attr_accessor :display_name
|
|
51
|
+
|
|
52
|
+
# The OCID of the {Drg}
|
|
53
|
+
# that this virtual circuit uses.
|
|
54
|
+
#
|
|
55
|
+
# To be updated only by the customer who owns the virtual circuit.
|
|
56
|
+
#
|
|
57
|
+
# @return [String]
|
|
58
|
+
attr_accessor :gateway_id
|
|
59
|
+
|
|
60
|
+
# The provider's state in relation to this virtual circuit. Relevant only
|
|
61
|
+
# if the customer is using FastConnect via a provider. ACTIVE
|
|
62
|
+
# means the provider has provisioned the virtual circuit from their
|
|
63
|
+
# end. INACTIVE means the provider has not yet provisioned the virtual
|
|
64
|
+
# circuit, or has de-provisioned it.
|
|
65
|
+
#
|
|
66
|
+
# To be updated only by the provider.
|
|
67
|
+
#
|
|
68
|
+
# @return [String]
|
|
69
|
+
attr_accessor :provider_state
|
|
70
|
+
|
|
71
|
+
# Provider-supplied reference information about this virtual circuit.
|
|
72
|
+
# Relevant only if the customer is using FastConnect via a provider.
|
|
73
|
+
#
|
|
74
|
+
# To be updated only by the provider.
|
|
75
|
+
#
|
|
76
|
+
# @return [String]
|
|
77
|
+
attr_accessor :reference_comment
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
# Initializes the object
|
|
81
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
82
|
+
def initialize(attributes = {})
|
|
83
|
+
return unless attributes.is_a?(Hash)
|
|
84
|
+
|
|
85
|
+
# convert string to symbol for hash key
|
|
86
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
87
|
+
|
|
88
|
+
if attributes[:'bandwidthShapeName']
|
|
89
|
+
self.bandwidth_shape_name = attributes[:'bandwidthShapeName']
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
if attributes[:'crossConnectMappings']
|
|
93
|
+
self.cross_connect_mappings = attributes[:'crossConnectMappings']
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
if attributes[:'customerBgpAsn']
|
|
97
|
+
self.customer_bgp_asn = attributes[:'customerBgpAsn']
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
if attributes[:'displayName']
|
|
101
|
+
self.display_name = attributes[:'displayName']
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
if attributes[:'gatewayId']
|
|
105
|
+
self.gateway_id = attributes[:'gatewayId']
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
if attributes[:'providerState']
|
|
109
|
+
self.provider_state = attributes[:'providerState']
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
if attributes[:'referenceComment']
|
|
113
|
+
self.reference_comment = attributes[:'referenceComment']
|
|
114
|
+
end
|
|
115
|
+
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
# Custom attribute writer method checking allowed values (enum).
|
|
119
|
+
# @param [Object] provider_state Object to be assigned
|
|
120
|
+
def provider_state=(provider_state)
|
|
121
|
+
if provider_state && !PROVIDER_STATE_ENUM.include?(provider_state)
|
|
122
|
+
fail "Invalid value for 'provider_state': this must be one of the values in PROVIDER_STATE_ENUM."
|
|
123
|
+
else
|
|
124
|
+
@provider_state = provider_state
|
|
125
|
+
end
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
# Checks equality by comparing each attribute.
|
|
129
|
+
# @param [Object] other_object to be compared
|
|
130
|
+
def ==(other_object)
|
|
131
|
+
return true if self.equal?(other_object)
|
|
132
|
+
self.class == other_object.class &&
|
|
133
|
+
bandwidth_shape_name == other_object.bandwidth_shape_name &&
|
|
134
|
+
cross_connect_mappings == other_object.cross_connect_mappings &&
|
|
135
|
+
customer_bgp_asn == other_object.customer_bgp_asn &&
|
|
136
|
+
display_name == other_object.display_name &&
|
|
137
|
+
gateway_id == other_object.gateway_id &&
|
|
138
|
+
provider_state == other_object.provider_state &&
|
|
139
|
+
reference_comment == other_object.reference_comment
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
# @see the `==` method
|
|
143
|
+
# @param [Object] other_object to be compared
|
|
144
|
+
def eql?(other_object)
|
|
145
|
+
self == other_object
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
# Calculates hash code according to all attributes.
|
|
149
|
+
# @return [Fixnum] Hash code
|
|
150
|
+
def hash
|
|
151
|
+
[bandwidth_shape_name, cross_connect_mappings, customer_bgp_asn, display_name, gateway_id, provider_state, reference_comment].hash
|
|
152
|
+
end
|
|
153
|
+
|
|
154
|
+
# Builds the object from hash
|
|
155
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
156
|
+
# @return [Object] Returns the model itself
|
|
157
|
+
def build_from_hash(attributes)
|
|
158
|
+
return nil unless attributes.is_a?(Hash)
|
|
159
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
160
|
+
if type =~ /^Array<(.*)>/i
|
|
161
|
+
# check to ensure the input is an array given that the the attribute
|
|
162
|
+
# is documented as an array but the input is not
|
|
163
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
164
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
165
|
+
end
|
|
166
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
167
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
168
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
169
|
+
end
|
|
170
|
+
|
|
171
|
+
self
|
|
172
|
+
end
|
|
173
|
+
|
|
174
|
+
# Returns the string representation of the object
|
|
175
|
+
# @return [String] String presentation of the object
|
|
176
|
+
def to_s
|
|
177
|
+
to_hash.to_s
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
# Returns the object in the form of hash
|
|
181
|
+
# @return [Hash] Returns the object in the form of hash
|
|
182
|
+
def to_hash
|
|
183
|
+
hash = {}
|
|
184
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
185
|
+
value = self.send(attr)
|
|
186
|
+
next if value.nil?
|
|
187
|
+
hash[param] = _to_hash(value)
|
|
188
|
+
end
|
|
189
|
+
hash
|
|
190
|
+
end
|
|
191
|
+
|
|
192
|
+
private
|
|
193
|
+
|
|
194
|
+
# Outputs non-array value in the form of hash
|
|
195
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
196
|
+
# @param [Object] value Any valid value
|
|
197
|
+
# @return [Hash] Returns the value in the form of hash
|
|
198
|
+
def _to_hash(value)
|
|
199
|
+
if value.is_a?(Array)
|
|
200
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
201
|
+
elsif value.is_a?(Hash)
|
|
202
|
+
{}.tap do |hash|
|
|
203
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
204
|
+
end
|
|
205
|
+
elsif value.respond_to? :to_hash
|
|
206
|
+
value.to_hash
|
|
207
|
+
else
|
|
208
|
+
value
|
|
209
|
+
end
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
215
|
+
def self.attribute_map
|
|
216
|
+
{
|
|
217
|
+
:'bandwidth_shape_name' => :'bandwidthShapeName',
|
|
218
|
+
:'cross_connect_mappings' => :'crossConnectMappings',
|
|
219
|
+
:'customer_bgp_asn' => :'customerBgpAsn',
|
|
220
|
+
:'display_name' => :'displayName',
|
|
221
|
+
:'gateway_id' => :'gatewayId',
|
|
222
|
+
:'provider_state' => :'providerState',
|
|
223
|
+
:'reference_comment' => :'referenceComment'
|
|
224
|
+
}
|
|
225
|
+
end
|
|
226
|
+
|
|
227
|
+
# Attribute type mapping.
|
|
228
|
+
def self.swagger_types
|
|
229
|
+
{
|
|
230
|
+
:'bandwidth_shape_name' => :'String',
|
|
231
|
+
:'cross_connect_mappings' => :'Array<OCI::Core::Models::CrossConnectMapping>',
|
|
232
|
+
:'customer_bgp_asn' => :'Integer',
|
|
233
|
+
:'display_name' => :'String',
|
|
234
|
+
:'gateway_id' => :'String',
|
|
235
|
+
:'provider_state' => :'String',
|
|
236
|
+
:'reference_comment' => :'String'
|
|
237
|
+
}
|
|
238
|
+
end
|
|
239
|
+
end
|
|
240
|
+
end
|
|
@@ -0,0 +1,144 @@
|
|
|
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::UpdateVnicDetails
|
|
7
|
+
# A user-friendly name. Does not have to be unique, and it's changeable.
|
|
8
|
+
# @return [String]
|
|
9
|
+
attr_accessor :display_name
|
|
10
|
+
|
|
11
|
+
# The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname
|
|
12
|
+
# portion of the primary private IP's fully qualified domain name (FQDN)
|
|
13
|
+
# (for example, `bminstance-1` in FQDN `bminstance-1.subnet123.vcn1.oraclevcn.com`).
|
|
14
|
+
# Must be unique across all VNICs in the subnet and comply with
|
|
15
|
+
# [RFC 952](https://tools.ietf.org/html/rfc952) and
|
|
16
|
+
# [RFC 1123](https://tools.ietf.org/html/rfc1123).
|
|
17
|
+
# The value appears in the {Vnic} object and also the
|
|
18
|
+
# {PrivateIp} object returned by
|
|
19
|
+
# {#list_private_ips list_private_ips} and
|
|
20
|
+
# {#get_private_ip get_private_ip}.
|
|
21
|
+
#
|
|
22
|
+
# For more information, see
|
|
23
|
+
# [DNS in Your Virtual Cloud Network](https://docs.us-phoenix-1.oraclecloud.com/Content/Network/Concepts/dns.htm).
|
|
24
|
+
#
|
|
25
|
+
# @return [String]
|
|
26
|
+
attr_accessor :hostname_label
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
# Initializes the object
|
|
30
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
31
|
+
def initialize(attributes = {})
|
|
32
|
+
return unless attributes.is_a?(Hash)
|
|
33
|
+
|
|
34
|
+
# convert string to symbol for hash key
|
|
35
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
36
|
+
|
|
37
|
+
if attributes[:'displayName']
|
|
38
|
+
self.display_name = attributes[:'displayName']
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
if attributes[:'hostnameLabel']
|
|
42
|
+
self.hostname_label = attributes[:'hostnameLabel']
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
# Checks equality by comparing each attribute.
|
|
48
|
+
# @param [Object] other_object to be compared
|
|
49
|
+
def ==(other_object)
|
|
50
|
+
return true if self.equal?(other_object)
|
|
51
|
+
self.class == other_object.class &&
|
|
52
|
+
display_name == other_object.display_name &&
|
|
53
|
+
hostname_label == other_object.hostname_label
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# @see the `==` method
|
|
57
|
+
# @param [Object] other_object to be compared
|
|
58
|
+
def eql?(other_object)
|
|
59
|
+
self == other_object
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
# Calculates hash code according to all attributes.
|
|
63
|
+
# @return [Fixnum] Hash code
|
|
64
|
+
def hash
|
|
65
|
+
[display_name, hostname_label].hash
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
# Builds the object from hash
|
|
69
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
70
|
+
# @return [Object] Returns the model itself
|
|
71
|
+
def build_from_hash(attributes)
|
|
72
|
+
return nil unless attributes.is_a?(Hash)
|
|
73
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
74
|
+
if type =~ /^Array<(.*)>/i
|
|
75
|
+
# check to ensure the input is an array given that the the attribute
|
|
76
|
+
# is documented as an array but the input is not
|
|
77
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
78
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
|
|
79
|
+
end
|
|
80
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
81
|
+
self.send("#{key}=", OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
|
|
82
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
self
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
# Returns the string representation of the object
|
|
89
|
+
# @return [String] String presentation of the object
|
|
90
|
+
def to_s
|
|
91
|
+
to_hash.to_s
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
# Returns the object in the form of hash
|
|
95
|
+
# @return [Hash] Returns the object in the form of hash
|
|
96
|
+
def to_hash
|
|
97
|
+
hash = {}
|
|
98
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
99
|
+
value = self.send(attr)
|
|
100
|
+
next if value.nil?
|
|
101
|
+
hash[param] = _to_hash(value)
|
|
102
|
+
end
|
|
103
|
+
hash
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
private
|
|
107
|
+
|
|
108
|
+
# Outputs non-array value in the form of hash
|
|
109
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
110
|
+
# @param [Object] value Any valid value
|
|
111
|
+
# @return [Hash] Returns the value in the form of hash
|
|
112
|
+
def _to_hash(value)
|
|
113
|
+
if value.is_a?(Array)
|
|
114
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
115
|
+
elsif value.is_a?(Hash)
|
|
116
|
+
{}.tap do |hash|
|
|
117
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
118
|
+
end
|
|
119
|
+
elsif value.respond_to? :to_hash
|
|
120
|
+
value.to_hash
|
|
121
|
+
else
|
|
122
|
+
value
|
|
123
|
+
end
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
129
|
+
def self.attribute_map
|
|
130
|
+
{
|
|
131
|
+
:'display_name' => :'displayName',
|
|
132
|
+
:'hostname_label' => :'hostnameLabel'
|
|
133
|
+
}
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
# Attribute type mapping.
|
|
137
|
+
def self.swagger_types
|
|
138
|
+
{
|
|
139
|
+
:'display_name' => :'String',
|
|
140
|
+
:'hostname_label' => :'String'
|
|
141
|
+
}
|
|
142
|
+
end
|
|
143
|
+
end
|
|
144
|
+
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::UpdateVolumeBackupDetails
|
|
7
|
+
# A friendly user-specified name for the volume backup.
|
|
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
|