oraclebmc 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +82 -0
- data/README.md +220 -0
- data/lib/oraclebmc/api_client.rb +349 -0
- data/lib/oraclebmc/config.rb +80 -0
- data/lib/oraclebmc/config_file_loader.rb +85 -0
- data/lib/oraclebmc/core/blockstorage_client.rb +459 -0
- data/lib/oraclebmc/core/compute_client.rb +1053 -0
- data/lib/oraclebmc/core/core.rb +82 -0
- data/lib/oraclebmc/core/models/attach_i_scsi_volume_details.rb +179 -0
- data/lib/oraclebmc/core/models/attach_volume_details.rb +206 -0
- data/lib/oraclebmc/core/models/capture_console_history_details.rb +162 -0
- data/lib/oraclebmc/core/models/console_history.rb +252 -0
- data/lib/oraclebmc/core/models/cpe.rb +209 -0
- data/lib/oraclebmc/core/models/create_cpe_details.rb +187 -0
- data/lib/oraclebmc/core/models/create_dhcp_details.rb +195 -0
- data/lib/oraclebmc/core/models/create_drg_attachment_details.rb +184 -0
- data/lib/oraclebmc/core/models/create_drg_details.rb +173 -0
- data/lib/oraclebmc/core/models/create_image_details.rb +188 -0
- data/lib/oraclebmc/core/models/create_internet_gateway_details.rb +195 -0
- data/lib/oraclebmc/core/models/create_ip_sec_connection_details.rb +210 -0
- data/lib/oraclebmc/core/models/create_route_table_details.rb +195 -0
- data/lib/oraclebmc/core/models/create_security_list_details.rb +206 -0
- data/lib/oraclebmc/core/models/create_subnet_details.rb +253 -0
- data/lib/oraclebmc/core/models/create_vcn_details.rb +187 -0
- data/lib/oraclebmc/core/models/create_volume_backup_details.rb +173 -0
- data/lib/oraclebmc/core/models/create_volume_details.rb +211 -0
- data/lib/oraclebmc/core/models/dhcp_dns_option.rb +203 -0
- data/lib/oraclebmc/core/models/dhcp_option.rb +171 -0
- data/lib/oraclebmc/core/models/dhcp_options.rb +246 -0
- data/lib/oraclebmc/core/models/drg.rb +224 -0
- data/lib/oraclebmc/core/models/drg_attachment.rb +246 -0
- data/lib/oraclebmc/core/models/egress_security_rule.rb +240 -0
- data/lib/oraclebmc/core/models/i_scsi_volume_attachment.rb +254 -0
- data/lib/oraclebmc/core/models/icmp_options.rb +173 -0
- data/lib/oraclebmc/core/models/image.rb +282 -0
- data/lib/oraclebmc/core/models/ingress_security_rule.rb +240 -0
- data/lib/oraclebmc/core/models/instance.rb +326 -0
- data/lib/oraclebmc/core/models/internet_gateway.rb +248 -0
- data/lib/oraclebmc/core/models/ip_sec_connection.rb +261 -0
- data/lib/oraclebmc/core/models/ip_sec_connection_device_config.rb +195 -0
- data/lib/oraclebmc/core/models/ip_sec_connection_device_status.rb +198 -0
- data/lib/oraclebmc/core/models/launch_instance_details.rb +327 -0
- data/lib/oraclebmc/core/models/port_range.rb +175 -0
- data/lib/oraclebmc/core/models/route_rule.rb +177 -0
- data/lib/oraclebmc/core/models/route_table.rb +246 -0
- data/lib/oraclebmc/core/models/security_list.rb +257 -0
- data/lib/oraclebmc/core/models/shape.rb +164 -0
- data/lib/oraclebmc/core/models/subnet.rb +325 -0
- data/lib/oraclebmc/core/models/tcp_options.rb +177 -0
- data/lib/oraclebmc/core/models/tunnel_config.rb +193 -0
- data/lib/oraclebmc/core/models/tunnel_status.rb +218 -0
- data/lib/oraclebmc/core/models/udp_options.rb +177 -0
- data/lib/oraclebmc/core/models/update_cpe_details.rb +162 -0
- data/lib/oraclebmc/core/models/update_dhcp_details.rb +172 -0
- data/lib/oraclebmc/core/models/update_drg_attachment_details.rb +162 -0
- data/lib/oraclebmc/core/models/update_drg_details.rb +162 -0
- data/lib/oraclebmc/core/models/update_image_details.rb +165 -0
- data/lib/oraclebmc/core/models/update_instance_details.rb +165 -0
- data/lib/oraclebmc/core/models/update_internet_gateway_details.rb +173 -0
- data/lib/oraclebmc/core/models/update_ip_sec_connection_details.rb +162 -0
- data/lib/oraclebmc/core/models/update_route_table_details.rb +173 -0
- data/lib/oraclebmc/core/models/update_security_list_details.rb +184 -0
- data/lib/oraclebmc/core/models/update_subnet_details.rb +162 -0
- data/lib/oraclebmc/core/models/update_vcn_details.rb +162 -0
- data/lib/oraclebmc/core/models/update_volume_backup_details.rb +162 -0
- data/lib/oraclebmc/core/models/update_volume_details.rb +163 -0
- data/lib/oraclebmc/core/models/vcn.rb +272 -0
- data/lib/oraclebmc/core/models/vnic.rb +274 -0
- data/lib/oraclebmc/core/models/vnic_attachment.rb +271 -0
- data/lib/oraclebmc/core/models/volume.rb +249 -0
- data/lib/oraclebmc/core/models/volume_attachment.rb +284 -0
- data/lib/oraclebmc/core/models/volume_backup.rb +273 -0
- data/lib/oraclebmc/core/util.rb +1 -0
- data/lib/oraclebmc/core/virtual_network_client.rb +2263 -0
- data/lib/oraclebmc/errors.rb +62 -0
- data/lib/oraclebmc/global_context.rb +21 -0
- data/lib/oraclebmc/identity/identity.rb +38 -0
- data/lib/oraclebmc/identity/identity_client.rb +1462 -0
- data/lib/oraclebmc/identity/models/add_user_to_group_details.rb +173 -0
- data/lib/oraclebmc/identity/models/api_key.rb +251 -0
- data/lib/oraclebmc/identity/models/availability_domain.rb +173 -0
- data/lib/oraclebmc/identity/models/compartment.rb +251 -0
- data/lib/oraclebmc/identity/models/create_api_key_details.rb +162 -0
- data/lib/oraclebmc/identity/models/create_compartment_details.rb +187 -0
- data/lib/oraclebmc/identity/models/create_group_details.rb +186 -0
- data/lib/oraclebmc/identity/models/create_policy_details.rb +215 -0
- data/lib/oraclebmc/identity/models/create_swift_password_details.rb +163 -0
- data/lib/oraclebmc/identity/models/create_user_details.rb +186 -0
- data/lib/oraclebmc/identity/models/group.rb +251 -0
- data/lib/oraclebmc/identity/models/policy.rb +277 -0
- data/lib/oraclebmc/identity/models/swift_password.rb +266 -0
- data/lib/oraclebmc/identity/models/ui_password.rb +227 -0
- data/lib/oraclebmc/identity/models/update_compartment_details.rb +162 -0
- data/lib/oraclebmc/identity/models/update_group_details.rb +162 -0
- data/lib/oraclebmc/identity/models/update_policy_details.rb +190 -0
- data/lib/oraclebmc/identity/models/update_state_details.rb +163 -0
- data/lib/oraclebmc/identity/models/update_swift_password_details.rb +162 -0
- data/lib/oraclebmc/identity/models/update_user_details.rb +162 -0
- data/lib/oraclebmc/identity/models/user.rb +257 -0
- data/lib/oraclebmc/identity/models/user_group_membership.rb +249 -0
- data/lib/oraclebmc/identity/util.rb +1 -0
- data/lib/oraclebmc/load_balancer/load_balancer.rb +45 -0
- data/lib/oraclebmc/load_balancer/load_balancer_client.rb +1218 -0
- data/lib/oraclebmc/load_balancer/models/backend.rb +262 -0
- data/lib/oraclebmc/load_balancer/models/backend_details.rb +248 -0
- data/lib/oraclebmc/load_balancer/models/backend_set.rb +211 -0
- data/lib/oraclebmc/load_balancer/models/backend_set_details.rb +197 -0
- data/lib/oraclebmc/load_balancer/models/certificate.rb +209 -0
- data/lib/oraclebmc/load_balancer/models/certificate_details.rb +245 -0
- data/lib/oraclebmc/load_balancer/models/create_backend_details.rb +248 -0
- data/lib/oraclebmc/load_balancer/models/create_backend_set_details.rb +210 -0
- data/lib/oraclebmc/load_balancer/models/create_certificate_details.rb +245 -0
- data/lib/oraclebmc/load_balancer/models/create_listener_details.rb +216 -0
- data/lib/oraclebmc/load_balancer/models/create_load_balancer_details.rb +233 -0
- data/lib/oraclebmc/load_balancer/models/health_checker.rb +265 -0
- data/lib/oraclebmc/load_balancer/models/health_checker_details.rb +264 -0
- data/lib/oraclebmc/load_balancer/models/ip_address.rb +165 -0
- data/lib/oraclebmc/load_balancer/models/listener.rb +216 -0
- data/lib/oraclebmc/load_balancer/models/listener_details.rb +202 -0
- data/lib/oraclebmc/load_balancer/models/load_balancer.rb +296 -0
- data/lib/oraclebmc/load_balancer/models/load_balancer_policy.rb +162 -0
- data/lib/oraclebmc/load_balancer/models/load_balancer_protocol.rb +162 -0
- data/lib/oraclebmc/load_balancer/models/load_balancer_shape.rb +162 -0
- data/lib/oraclebmc/load_balancer/models/ssl_configuration.rb +195 -0
- data/lib/oraclebmc/load_balancer/models/ssl_configuration_details.rb +195 -0
- data/lib/oraclebmc/load_balancer/models/update_backend_details.rb +220 -0
- data/lib/oraclebmc/load_balancer/models/update_backend_set_details.rb +197 -0
- data/lib/oraclebmc/load_balancer/models/update_health_checker_details.rb +263 -0
- data/lib/oraclebmc/load_balancer/models/update_listener_details.rb +202 -0
- data/lib/oraclebmc/load_balancer/models/update_load_balancer_details.rb +165 -0
- data/lib/oraclebmc/load_balancer/models/work_request.rb +269 -0
- data/lib/oraclebmc/load_balancer/models/work_request_error.rb +185 -0
- data/lib/oraclebmc/load_balancer/util.rb +55 -0
- data/lib/oraclebmc/regions.rb +41 -0
- data/lib/oraclebmc/response.rb +86 -0
- data/lib/oraclebmc/signer.rb +119 -0
- data/lib/oraclebmc/version.rb +5 -0
- data/lib/oraclebmc/waiter.rb +111 -0
- data/lib/oraclebmc.rb +20 -0
- metadata +265 -0
@@ -0,0 +1,82 @@
|
|
1
|
+
# Copyright (c) 2016 Oracle and/or its affiliates. All rights reserved.
|
2
|
+
|
3
|
+
module OracleBMC
|
4
|
+
module Core
|
5
|
+
module Models
|
6
|
+
end
|
7
|
+
end
|
8
|
+
end
|
9
|
+
|
10
|
+
# Require models
|
11
|
+
require 'oraclebmc/core/models/attach_i_scsi_volume_details'
|
12
|
+
require 'oraclebmc/core/models/attach_volume_details'
|
13
|
+
require 'oraclebmc/core/models/capture_console_history_details'
|
14
|
+
require 'oraclebmc/core/models/console_history'
|
15
|
+
require 'oraclebmc/core/models/cpe'
|
16
|
+
require 'oraclebmc/core/models/create_cpe_details'
|
17
|
+
require 'oraclebmc/core/models/create_dhcp_details'
|
18
|
+
require 'oraclebmc/core/models/create_drg_attachment_details'
|
19
|
+
require 'oraclebmc/core/models/create_drg_details'
|
20
|
+
require 'oraclebmc/core/models/create_ip_sec_connection_details'
|
21
|
+
require 'oraclebmc/core/models/create_image_details'
|
22
|
+
require 'oraclebmc/core/models/create_internet_gateway_details'
|
23
|
+
require 'oraclebmc/core/models/create_route_table_details'
|
24
|
+
require 'oraclebmc/core/models/create_security_list_details'
|
25
|
+
require 'oraclebmc/core/models/create_subnet_details'
|
26
|
+
require 'oraclebmc/core/models/create_vcn_details'
|
27
|
+
require 'oraclebmc/core/models/create_volume_backup_details'
|
28
|
+
require 'oraclebmc/core/models/create_volume_details'
|
29
|
+
require 'oraclebmc/core/models/dhcp_dns_option'
|
30
|
+
require 'oraclebmc/core/models/dhcp_option'
|
31
|
+
require 'oraclebmc/core/models/dhcp_options'
|
32
|
+
require 'oraclebmc/core/models/drg'
|
33
|
+
require 'oraclebmc/core/models/drg_attachment'
|
34
|
+
require 'oraclebmc/core/models/egress_security_rule'
|
35
|
+
require 'oraclebmc/core/models/ip_sec_connection'
|
36
|
+
require 'oraclebmc/core/models/ip_sec_connection_device_config'
|
37
|
+
require 'oraclebmc/core/models/ip_sec_connection_device_status'
|
38
|
+
require 'oraclebmc/core/models/i_scsi_volume_attachment'
|
39
|
+
require 'oraclebmc/core/models/icmp_options'
|
40
|
+
require 'oraclebmc/core/models/image'
|
41
|
+
require 'oraclebmc/core/models/ingress_security_rule'
|
42
|
+
require 'oraclebmc/core/models/instance'
|
43
|
+
require 'oraclebmc/core/models/internet_gateway'
|
44
|
+
require 'oraclebmc/core/models/launch_instance_details'
|
45
|
+
require 'oraclebmc/core/models/port_range'
|
46
|
+
require 'oraclebmc/core/models/route_rule'
|
47
|
+
require 'oraclebmc/core/models/route_table'
|
48
|
+
require 'oraclebmc/core/models/security_list'
|
49
|
+
require 'oraclebmc/core/models/shape'
|
50
|
+
require 'oraclebmc/core/models/subnet'
|
51
|
+
require 'oraclebmc/core/models/tcp_options'
|
52
|
+
require 'oraclebmc/core/models/tunnel_config'
|
53
|
+
require 'oraclebmc/core/models/tunnel_status'
|
54
|
+
require 'oraclebmc/core/models/udp_options'
|
55
|
+
require 'oraclebmc/core/models/update_cpe_details'
|
56
|
+
require 'oraclebmc/core/models/update_dhcp_details'
|
57
|
+
require 'oraclebmc/core/models/update_drg_attachment_details'
|
58
|
+
require 'oraclebmc/core/models/update_drg_details'
|
59
|
+
require 'oraclebmc/core/models/update_ip_sec_connection_details'
|
60
|
+
require 'oraclebmc/core/models/update_image_details'
|
61
|
+
require 'oraclebmc/core/models/update_instance_details'
|
62
|
+
require 'oraclebmc/core/models/update_internet_gateway_details'
|
63
|
+
require 'oraclebmc/core/models/update_route_table_details'
|
64
|
+
require 'oraclebmc/core/models/update_security_list_details'
|
65
|
+
require 'oraclebmc/core/models/update_subnet_details'
|
66
|
+
require 'oraclebmc/core/models/update_vcn_details'
|
67
|
+
require 'oraclebmc/core/models/update_volume_backup_details'
|
68
|
+
require 'oraclebmc/core/models/update_volume_details'
|
69
|
+
require 'oraclebmc/core/models/vcn'
|
70
|
+
require 'oraclebmc/core/models/vnic'
|
71
|
+
require 'oraclebmc/core/models/vnic_attachment'
|
72
|
+
require 'oraclebmc/core/models/volume'
|
73
|
+
require 'oraclebmc/core/models/volume_attachment'
|
74
|
+
require 'oraclebmc/core/models/volume_backup'
|
75
|
+
|
76
|
+
# Require generated clients
|
77
|
+
require 'oraclebmc/core/blockstorage_client'
|
78
|
+
require 'oraclebmc/core/compute_client'
|
79
|
+
require 'oraclebmc/core/virtual_network_client'
|
80
|
+
|
81
|
+
# Require service utilities
|
82
|
+
require 'oraclebmc/core/util'
|
@@ -0,0 +1,179 @@
|
|
1
|
+
# Copyright (c) 2016 Oracle and/or its affiliates. All rights reserved.
|
2
|
+
|
3
|
+
require 'date'
|
4
|
+
require_relative 'attach_volume_details'
|
5
|
+
|
6
|
+
module OracleBMC
|
7
|
+
class Core::Models::AttachIScsiVolumeDetails < Core::Models::AttachVolumeDetails
|
8
|
+
# Whether to use CHAP authentication for the volume attachment. Defaults to false.
|
9
|
+
# @return [BOOLEAN]
|
10
|
+
attr_accessor :use_chap
|
11
|
+
|
12
|
+
|
13
|
+
# Initializes the object
|
14
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
15
|
+
def initialize(attributes = {})
|
16
|
+
return unless attributes.is_a?(Hash)
|
17
|
+
|
18
|
+
attributes['type'] = 'iscsi'
|
19
|
+
|
20
|
+
super(attributes)
|
21
|
+
|
22
|
+
# convert string to symbol for hash key
|
23
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
24
|
+
|
25
|
+
|
26
|
+
if attributes[:'useChap']
|
27
|
+
self.use_chap = attributes[:'useChap']
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
31
|
+
|
32
|
+
# Checks equality by comparing each attribute.
|
33
|
+
# @param [Object] other_object to be compared
|
34
|
+
def ==(other_object)
|
35
|
+
return true if self.equal?(other_object)
|
36
|
+
self.class == other_object.class &&
|
37
|
+
display_name == other_object.display_name &&
|
38
|
+
instance_id == other_object.instance_id &&
|
39
|
+
type == other_object.type &&
|
40
|
+
volume_id == other_object.volume_id &&
|
41
|
+
use_chap == other_object.use_chap
|
42
|
+
end
|
43
|
+
|
44
|
+
# @see the `==` method
|
45
|
+
# @param [Object] other_object to be compared
|
46
|
+
def eql?(other_object)
|
47
|
+
self == other_object
|
48
|
+
end
|
49
|
+
|
50
|
+
# Calculates hash code according to all attributes.
|
51
|
+
# @return [Fixnum] Hash code
|
52
|
+
def hash
|
53
|
+
[display_name, instance_id, type, volume_id, use_chap].hash
|
54
|
+
end
|
55
|
+
|
56
|
+
# Builds the object from hash
|
57
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
58
|
+
# @return [Object] Returns the model itself
|
59
|
+
def build_from_hash(attributes)
|
60
|
+
return nil unless attributes.is_a?(Hash)
|
61
|
+
self.class.swagger_types.each_pair do |key, type|
|
62
|
+
if type =~ /^Array<(.*)>/i
|
63
|
+
# check to ensure the input is an array given that the the attribute
|
64
|
+
# is documented as an array but the input is not
|
65
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
66
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
67
|
+
end
|
68
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
69
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
70
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
71
|
+
end
|
72
|
+
|
73
|
+
self
|
74
|
+
end
|
75
|
+
|
76
|
+
# Returns the string representation of the object
|
77
|
+
# @return [String] String presentation of the object
|
78
|
+
def to_s
|
79
|
+
to_hash.to_s
|
80
|
+
end
|
81
|
+
|
82
|
+
# Returns the object in the form of hash
|
83
|
+
# @return [Hash] Returns the object in the form of hash
|
84
|
+
def to_hash
|
85
|
+
hash = {}
|
86
|
+
self.class.attribute_map.each_pair do |attr, param|
|
87
|
+
value = self.send(attr)
|
88
|
+
next if value.nil?
|
89
|
+
hash[param] = _to_hash(value)
|
90
|
+
end
|
91
|
+
hash
|
92
|
+
end
|
93
|
+
|
94
|
+
private
|
95
|
+
|
96
|
+
# Outputs non-array value in the form of hash
|
97
|
+
# For object, use to_hash. Otherwise, just return the value
|
98
|
+
# @param [Object] value Any valid value
|
99
|
+
# @return [Hash] Returns the value in the form of hash
|
100
|
+
def _to_hash(value)
|
101
|
+
if value.is_a?(Array)
|
102
|
+
value.compact.map{ |v| _to_hash(v) }
|
103
|
+
elsif value.is_a?(Hash)
|
104
|
+
{}.tap do |hash|
|
105
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
106
|
+
end
|
107
|
+
elsif value.respond_to? :to_hash
|
108
|
+
value.to_hash
|
109
|
+
else
|
110
|
+
value
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
# Deserializes the data based on type
|
115
|
+
# @param [String] type Data type
|
116
|
+
# @param [String] value Value to be deserialized
|
117
|
+
# @return [Object] Deserialized data
|
118
|
+
def _deserialize(type, value)
|
119
|
+
case type.to_sym
|
120
|
+
when :DateTime
|
121
|
+
DateTime.parse(value)
|
122
|
+
when :Date
|
123
|
+
Date.parse(value)
|
124
|
+
when :String
|
125
|
+
value.to_s
|
126
|
+
when :Integer
|
127
|
+
value.to_i
|
128
|
+
when :Float
|
129
|
+
value.to_f
|
130
|
+
when :BOOLEAN
|
131
|
+
if value.to_s =~ /^(true|t|yes|y|1)$/i
|
132
|
+
true
|
133
|
+
else
|
134
|
+
false
|
135
|
+
end
|
136
|
+
when :Object
|
137
|
+
# generic object (usually a Hash), return directly
|
138
|
+
value
|
139
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
140
|
+
inner_type = Regexp.last_match[:inner_type]
|
141
|
+
value.map { |v| _deserialize(inner_type, v) }
|
142
|
+
when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
|
143
|
+
k_type = Regexp.last_match[:k_type]
|
144
|
+
v_type = Regexp.last_match[:v_type]
|
145
|
+
{}.tap do |hash|
|
146
|
+
value.each do |k, v|
|
147
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
148
|
+
end
|
149
|
+
end
|
150
|
+
else # model
|
151
|
+
temp_model = OracleBMC.const_get(type.to_s).new
|
152
|
+
temp_model.build_from_hash(value)
|
153
|
+
end
|
154
|
+
end
|
155
|
+
|
156
|
+
|
157
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
158
|
+
def self.attribute_map
|
159
|
+
{
|
160
|
+
:'display_name' => :'displayName',
|
161
|
+
:'instance_id' => :'instanceId',
|
162
|
+
:'type' => :'type',
|
163
|
+
:'volume_id' => :'volumeId',
|
164
|
+
:'use_chap' => :'useChap'
|
165
|
+
}
|
166
|
+
end
|
167
|
+
|
168
|
+
# Attribute type mapping.
|
169
|
+
def self.swagger_types
|
170
|
+
{
|
171
|
+
:'display_name' => :'String',
|
172
|
+
:'instance_id' => :'String',
|
173
|
+
:'type' => :'String',
|
174
|
+
:'volume_id' => :'String',
|
175
|
+
:'use_chap' => :'BOOLEAN'
|
176
|
+
}
|
177
|
+
end
|
178
|
+
end
|
179
|
+
end
|
@@ -0,0 +1,206 @@
|
|
1
|
+
# Copyright (c) 2016 Oracle and/or its affiliates. All rights reserved.
|
2
|
+
|
3
|
+
require 'date'
|
4
|
+
|
5
|
+
module OracleBMC
|
6
|
+
class Core::Models::AttachVolumeDetails
|
7
|
+
# A user-friendly name. Does not have to be unique, and it cannot be changed.
|
8
|
+
#
|
9
|
+
# @return [String]
|
10
|
+
attr_accessor :display_name
|
11
|
+
|
12
|
+
# The OCID of the instance.
|
13
|
+
# @return [String]
|
14
|
+
attr_accessor :instance_id
|
15
|
+
|
16
|
+
# The type of volume. The only supported value is \"iscsi\".
|
17
|
+
# @return [String]
|
18
|
+
attr_accessor :type
|
19
|
+
|
20
|
+
# The OCID of the volume.
|
21
|
+
# @return [String]
|
22
|
+
attr_accessor :volume_id
|
23
|
+
|
24
|
+
|
25
|
+
# Given the hash representation of a subtype of this class,
|
26
|
+
# use the info in the hash to return the class of the subtype.
|
27
|
+
def self.get_subtype(object_hash)
|
28
|
+
type = object_hash[:'type']
|
29
|
+
|
30
|
+
return 'OracleBMC::Core::Models::AttachIScsiVolumeDetails' if not type or type == 'iscsi'
|
31
|
+
|
32
|
+
fail 'Could not resolve subtype type based on the object hash.'
|
33
|
+
end
|
34
|
+
|
35
|
+
# Initializes the object
|
36
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
37
|
+
def initialize(attributes = {})
|
38
|
+
return unless attributes.is_a?(Hash)
|
39
|
+
|
40
|
+
# convert string to symbol for hash key
|
41
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
42
|
+
|
43
|
+
|
44
|
+
if attributes[:'displayName']
|
45
|
+
self.display_name = attributes[:'displayName']
|
46
|
+
end
|
47
|
+
|
48
|
+
if attributes[:'instanceId']
|
49
|
+
self.instance_id = attributes[:'instanceId']
|
50
|
+
end
|
51
|
+
|
52
|
+
if attributes[:'type']
|
53
|
+
self.type = attributes[:'type']
|
54
|
+
end
|
55
|
+
|
56
|
+
if attributes[:'volumeId']
|
57
|
+
self.volume_id = attributes[:'volumeId']
|
58
|
+
end
|
59
|
+
|
60
|
+
end
|
61
|
+
|
62
|
+
# Checks equality by comparing each attribute.
|
63
|
+
# @param [Object] other_object to be compared
|
64
|
+
def ==(other_object)
|
65
|
+
return true if self.equal?(other_object)
|
66
|
+
self.class == other_object.class &&
|
67
|
+
display_name == other_object.display_name &&
|
68
|
+
instance_id == other_object.instance_id &&
|
69
|
+
type == other_object.type &&
|
70
|
+
volume_id == other_object.volume_id
|
71
|
+
end
|
72
|
+
|
73
|
+
# @see the `==` method
|
74
|
+
# @param [Object] other_object to be compared
|
75
|
+
def eql?(other_object)
|
76
|
+
self == other_object
|
77
|
+
end
|
78
|
+
|
79
|
+
# Calculates hash code according to all attributes.
|
80
|
+
# @return [Fixnum] Hash code
|
81
|
+
def hash
|
82
|
+
[display_name, instance_id, type, volume_id].hash
|
83
|
+
end
|
84
|
+
|
85
|
+
# Builds the object from hash
|
86
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
87
|
+
# @return [Object] Returns the model itself
|
88
|
+
def build_from_hash(attributes)
|
89
|
+
return nil unless attributes.is_a?(Hash)
|
90
|
+
self.class.swagger_types.each_pair do |key, type|
|
91
|
+
if type =~ /^Array<(.*)>/i
|
92
|
+
# check to ensure the input is an array given that the the attribute
|
93
|
+
# is documented as an array but the input is not
|
94
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
95
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
96
|
+
end
|
97
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
98
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
99
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
100
|
+
end
|
101
|
+
|
102
|
+
self
|
103
|
+
end
|
104
|
+
|
105
|
+
# Returns the string representation of the object
|
106
|
+
# @return [String] String presentation of the object
|
107
|
+
def to_s
|
108
|
+
to_hash.to_s
|
109
|
+
end
|
110
|
+
|
111
|
+
# Returns the object in the form of hash
|
112
|
+
# @return [Hash] Returns the object in the form of hash
|
113
|
+
def to_hash
|
114
|
+
hash = {}
|
115
|
+
self.class.attribute_map.each_pair do |attr, param|
|
116
|
+
value = self.send(attr)
|
117
|
+
next if value.nil?
|
118
|
+
hash[param] = _to_hash(value)
|
119
|
+
end
|
120
|
+
hash
|
121
|
+
end
|
122
|
+
|
123
|
+
private
|
124
|
+
|
125
|
+
# Outputs non-array value in the form of hash
|
126
|
+
# For object, use to_hash. Otherwise, just return the value
|
127
|
+
# @param [Object] value Any valid value
|
128
|
+
# @return [Hash] Returns the value in the form of hash
|
129
|
+
def _to_hash(value)
|
130
|
+
if value.is_a?(Array)
|
131
|
+
value.compact.map{ |v| _to_hash(v) }
|
132
|
+
elsif value.is_a?(Hash)
|
133
|
+
{}.tap do |hash|
|
134
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
135
|
+
end
|
136
|
+
elsif value.respond_to? :to_hash
|
137
|
+
value.to_hash
|
138
|
+
else
|
139
|
+
value
|
140
|
+
end
|
141
|
+
end
|
142
|
+
|
143
|
+
# Deserializes the data based on type
|
144
|
+
# @param [String] type Data type
|
145
|
+
# @param [String] value Value to be deserialized
|
146
|
+
# @return [Object] Deserialized data
|
147
|
+
def _deserialize(type, value)
|
148
|
+
case type.to_sym
|
149
|
+
when :DateTime
|
150
|
+
DateTime.parse(value)
|
151
|
+
when :Date
|
152
|
+
Date.parse(value)
|
153
|
+
when :String
|
154
|
+
value.to_s
|
155
|
+
when :Integer
|
156
|
+
value.to_i
|
157
|
+
when :Float
|
158
|
+
value.to_f
|
159
|
+
when :BOOLEAN
|
160
|
+
if value.to_s =~ /^(true|t|yes|y|1)$/i
|
161
|
+
true
|
162
|
+
else
|
163
|
+
false
|
164
|
+
end
|
165
|
+
when :Object
|
166
|
+
# generic object (usually a Hash), return directly
|
167
|
+
value
|
168
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
169
|
+
inner_type = Regexp.last_match[:inner_type]
|
170
|
+
value.map { |v| _deserialize(inner_type, v) }
|
171
|
+
when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
|
172
|
+
k_type = Regexp.last_match[:k_type]
|
173
|
+
v_type = Regexp.last_match[:v_type]
|
174
|
+
{}.tap do |hash|
|
175
|
+
value.each do |k, v|
|
176
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
177
|
+
end
|
178
|
+
end
|
179
|
+
else # model
|
180
|
+
temp_model = OracleBMC.const_get(type.to_s).new
|
181
|
+
temp_model.build_from_hash(value)
|
182
|
+
end
|
183
|
+
end
|
184
|
+
|
185
|
+
|
186
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
187
|
+
def self.attribute_map
|
188
|
+
{
|
189
|
+
:'display_name' => :'displayName',
|
190
|
+
:'instance_id' => :'instanceId',
|
191
|
+
:'type' => :'type',
|
192
|
+
:'volume_id' => :'volumeId'
|
193
|
+
}
|
194
|
+
end
|
195
|
+
|
196
|
+
# Attribute type mapping.
|
197
|
+
def self.swagger_types
|
198
|
+
{
|
199
|
+
:'display_name' => :'String',
|
200
|
+
:'instance_id' => :'String',
|
201
|
+
:'type' => :'String',
|
202
|
+
:'volume_id' => :'String'
|
203
|
+
}
|
204
|
+
end
|
205
|
+
end
|
206
|
+
end
|
@@ -0,0 +1,162 @@
|
|
1
|
+
# Copyright (c) 2016 Oracle and/or its affiliates. All rights reserved.
|
2
|
+
|
3
|
+
require 'date'
|
4
|
+
|
5
|
+
module OracleBMC
|
6
|
+
class Core::Models::CaptureConsoleHistoryDetails
|
7
|
+
# The OCID of the instance to get the console history from.
|
8
|
+
# @return [String]
|
9
|
+
attr_accessor :instance_id
|
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
|
+
|
21
|
+
if attributes[:'instanceId']
|
22
|
+
self.instance_id = attributes[:'instanceId']
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
26
|
+
|
27
|
+
# Checks equality by comparing each attribute.
|
28
|
+
# @param [Object] other_object to be compared
|
29
|
+
def ==(other_object)
|
30
|
+
return true if self.equal?(other_object)
|
31
|
+
self.class == other_object.class &&
|
32
|
+
instance_id == other_object.instance_id
|
33
|
+
end
|
34
|
+
|
35
|
+
# @see the `==` method
|
36
|
+
# @param [Object] other_object to be compared
|
37
|
+
def eql?(other_object)
|
38
|
+
self == other_object
|
39
|
+
end
|
40
|
+
|
41
|
+
# Calculates hash code according to all attributes.
|
42
|
+
# @return [Fixnum] Hash code
|
43
|
+
def hash
|
44
|
+
[instance_id].hash
|
45
|
+
end
|
46
|
+
|
47
|
+
# Builds the object from hash
|
48
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
49
|
+
# @return [Object] Returns the model itself
|
50
|
+
def build_from_hash(attributes)
|
51
|
+
return nil unless attributes.is_a?(Hash)
|
52
|
+
self.class.swagger_types.each_pair do |key, type|
|
53
|
+
if type =~ /^Array<(.*)>/i
|
54
|
+
# check to ensure the input is an array given that the the attribute
|
55
|
+
# is documented as an array but the input is not
|
56
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
57
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
58
|
+
end
|
59
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
60
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
61
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
62
|
+
end
|
63
|
+
|
64
|
+
self
|
65
|
+
end
|
66
|
+
|
67
|
+
# Returns the string representation of the object
|
68
|
+
# @return [String] String presentation of the object
|
69
|
+
def to_s
|
70
|
+
to_hash.to_s
|
71
|
+
end
|
72
|
+
|
73
|
+
# Returns the object in the form of hash
|
74
|
+
# @return [Hash] Returns the object in the form of hash
|
75
|
+
def to_hash
|
76
|
+
hash = {}
|
77
|
+
self.class.attribute_map.each_pair do |attr, param|
|
78
|
+
value = self.send(attr)
|
79
|
+
next if value.nil?
|
80
|
+
hash[param] = _to_hash(value)
|
81
|
+
end
|
82
|
+
hash
|
83
|
+
end
|
84
|
+
|
85
|
+
private
|
86
|
+
|
87
|
+
# Outputs non-array value in the form of hash
|
88
|
+
# For object, use to_hash. Otherwise, just return the value
|
89
|
+
# @param [Object] value Any valid value
|
90
|
+
# @return [Hash] Returns the value in the form of hash
|
91
|
+
def _to_hash(value)
|
92
|
+
if value.is_a?(Array)
|
93
|
+
value.compact.map{ |v| _to_hash(v) }
|
94
|
+
elsif value.is_a?(Hash)
|
95
|
+
{}.tap do |hash|
|
96
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
97
|
+
end
|
98
|
+
elsif value.respond_to? :to_hash
|
99
|
+
value.to_hash
|
100
|
+
else
|
101
|
+
value
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
# Deserializes the data based on type
|
106
|
+
# @param [String] type Data type
|
107
|
+
# @param [String] value Value to be deserialized
|
108
|
+
# @return [Object] Deserialized data
|
109
|
+
def _deserialize(type, value)
|
110
|
+
case type.to_sym
|
111
|
+
when :DateTime
|
112
|
+
DateTime.parse(value)
|
113
|
+
when :Date
|
114
|
+
Date.parse(value)
|
115
|
+
when :String
|
116
|
+
value.to_s
|
117
|
+
when :Integer
|
118
|
+
value.to_i
|
119
|
+
when :Float
|
120
|
+
value.to_f
|
121
|
+
when :BOOLEAN
|
122
|
+
if value.to_s =~ /^(true|t|yes|y|1)$/i
|
123
|
+
true
|
124
|
+
else
|
125
|
+
false
|
126
|
+
end
|
127
|
+
when :Object
|
128
|
+
# generic object (usually a Hash), return directly
|
129
|
+
value
|
130
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
131
|
+
inner_type = Regexp.last_match[:inner_type]
|
132
|
+
value.map { |v| _deserialize(inner_type, v) }
|
133
|
+
when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
|
134
|
+
k_type = Regexp.last_match[:k_type]
|
135
|
+
v_type = Regexp.last_match[:v_type]
|
136
|
+
{}.tap do |hash|
|
137
|
+
value.each do |k, v|
|
138
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
139
|
+
end
|
140
|
+
end
|
141
|
+
else # model
|
142
|
+
temp_model = OracleBMC.const_get(type.to_s).new
|
143
|
+
temp_model.build_from_hash(value)
|
144
|
+
end
|
145
|
+
end
|
146
|
+
|
147
|
+
|
148
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
149
|
+
def self.attribute_map
|
150
|
+
{
|
151
|
+
:'instance_id' => :'instanceId'
|
152
|
+
}
|
153
|
+
end
|
154
|
+
|
155
|
+
# Attribute type mapping.
|
156
|
+
def self.swagger_types
|
157
|
+
{
|
158
|
+
:'instance_id' => :'String'
|
159
|
+
}
|
160
|
+
end
|
161
|
+
end
|
162
|
+
end
|