oraclebmc 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (141) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +82 -0
  3. data/README.md +220 -0
  4. data/lib/oraclebmc/api_client.rb +349 -0
  5. data/lib/oraclebmc/config.rb +80 -0
  6. data/lib/oraclebmc/config_file_loader.rb +85 -0
  7. data/lib/oraclebmc/core/blockstorage_client.rb +459 -0
  8. data/lib/oraclebmc/core/compute_client.rb +1053 -0
  9. data/lib/oraclebmc/core/core.rb +82 -0
  10. data/lib/oraclebmc/core/models/attach_i_scsi_volume_details.rb +179 -0
  11. data/lib/oraclebmc/core/models/attach_volume_details.rb +206 -0
  12. data/lib/oraclebmc/core/models/capture_console_history_details.rb +162 -0
  13. data/lib/oraclebmc/core/models/console_history.rb +252 -0
  14. data/lib/oraclebmc/core/models/cpe.rb +209 -0
  15. data/lib/oraclebmc/core/models/create_cpe_details.rb +187 -0
  16. data/lib/oraclebmc/core/models/create_dhcp_details.rb +195 -0
  17. data/lib/oraclebmc/core/models/create_drg_attachment_details.rb +184 -0
  18. data/lib/oraclebmc/core/models/create_drg_details.rb +173 -0
  19. data/lib/oraclebmc/core/models/create_image_details.rb +188 -0
  20. data/lib/oraclebmc/core/models/create_internet_gateway_details.rb +195 -0
  21. data/lib/oraclebmc/core/models/create_ip_sec_connection_details.rb +210 -0
  22. data/lib/oraclebmc/core/models/create_route_table_details.rb +195 -0
  23. data/lib/oraclebmc/core/models/create_security_list_details.rb +206 -0
  24. data/lib/oraclebmc/core/models/create_subnet_details.rb +253 -0
  25. data/lib/oraclebmc/core/models/create_vcn_details.rb +187 -0
  26. data/lib/oraclebmc/core/models/create_volume_backup_details.rb +173 -0
  27. data/lib/oraclebmc/core/models/create_volume_details.rb +211 -0
  28. data/lib/oraclebmc/core/models/dhcp_dns_option.rb +203 -0
  29. data/lib/oraclebmc/core/models/dhcp_option.rb +171 -0
  30. data/lib/oraclebmc/core/models/dhcp_options.rb +246 -0
  31. data/lib/oraclebmc/core/models/drg.rb +224 -0
  32. data/lib/oraclebmc/core/models/drg_attachment.rb +246 -0
  33. data/lib/oraclebmc/core/models/egress_security_rule.rb +240 -0
  34. data/lib/oraclebmc/core/models/i_scsi_volume_attachment.rb +254 -0
  35. data/lib/oraclebmc/core/models/icmp_options.rb +173 -0
  36. data/lib/oraclebmc/core/models/image.rb +282 -0
  37. data/lib/oraclebmc/core/models/ingress_security_rule.rb +240 -0
  38. data/lib/oraclebmc/core/models/instance.rb +326 -0
  39. data/lib/oraclebmc/core/models/internet_gateway.rb +248 -0
  40. data/lib/oraclebmc/core/models/ip_sec_connection.rb +261 -0
  41. data/lib/oraclebmc/core/models/ip_sec_connection_device_config.rb +195 -0
  42. data/lib/oraclebmc/core/models/ip_sec_connection_device_status.rb +198 -0
  43. data/lib/oraclebmc/core/models/launch_instance_details.rb +327 -0
  44. data/lib/oraclebmc/core/models/port_range.rb +175 -0
  45. data/lib/oraclebmc/core/models/route_rule.rb +177 -0
  46. data/lib/oraclebmc/core/models/route_table.rb +246 -0
  47. data/lib/oraclebmc/core/models/security_list.rb +257 -0
  48. data/lib/oraclebmc/core/models/shape.rb +164 -0
  49. data/lib/oraclebmc/core/models/subnet.rb +325 -0
  50. data/lib/oraclebmc/core/models/tcp_options.rb +177 -0
  51. data/lib/oraclebmc/core/models/tunnel_config.rb +193 -0
  52. data/lib/oraclebmc/core/models/tunnel_status.rb +218 -0
  53. data/lib/oraclebmc/core/models/udp_options.rb +177 -0
  54. data/lib/oraclebmc/core/models/update_cpe_details.rb +162 -0
  55. data/lib/oraclebmc/core/models/update_dhcp_details.rb +172 -0
  56. data/lib/oraclebmc/core/models/update_drg_attachment_details.rb +162 -0
  57. data/lib/oraclebmc/core/models/update_drg_details.rb +162 -0
  58. data/lib/oraclebmc/core/models/update_image_details.rb +165 -0
  59. data/lib/oraclebmc/core/models/update_instance_details.rb +165 -0
  60. data/lib/oraclebmc/core/models/update_internet_gateway_details.rb +173 -0
  61. data/lib/oraclebmc/core/models/update_ip_sec_connection_details.rb +162 -0
  62. data/lib/oraclebmc/core/models/update_route_table_details.rb +173 -0
  63. data/lib/oraclebmc/core/models/update_security_list_details.rb +184 -0
  64. data/lib/oraclebmc/core/models/update_subnet_details.rb +162 -0
  65. data/lib/oraclebmc/core/models/update_vcn_details.rb +162 -0
  66. data/lib/oraclebmc/core/models/update_volume_backup_details.rb +162 -0
  67. data/lib/oraclebmc/core/models/update_volume_details.rb +163 -0
  68. data/lib/oraclebmc/core/models/vcn.rb +272 -0
  69. data/lib/oraclebmc/core/models/vnic.rb +274 -0
  70. data/lib/oraclebmc/core/models/vnic_attachment.rb +271 -0
  71. data/lib/oraclebmc/core/models/volume.rb +249 -0
  72. data/lib/oraclebmc/core/models/volume_attachment.rb +284 -0
  73. data/lib/oraclebmc/core/models/volume_backup.rb +273 -0
  74. data/lib/oraclebmc/core/util.rb +1 -0
  75. data/lib/oraclebmc/core/virtual_network_client.rb +2263 -0
  76. data/lib/oraclebmc/errors.rb +62 -0
  77. data/lib/oraclebmc/global_context.rb +21 -0
  78. data/lib/oraclebmc/identity/identity.rb +38 -0
  79. data/lib/oraclebmc/identity/identity_client.rb +1462 -0
  80. data/lib/oraclebmc/identity/models/add_user_to_group_details.rb +173 -0
  81. data/lib/oraclebmc/identity/models/api_key.rb +251 -0
  82. data/lib/oraclebmc/identity/models/availability_domain.rb +173 -0
  83. data/lib/oraclebmc/identity/models/compartment.rb +251 -0
  84. data/lib/oraclebmc/identity/models/create_api_key_details.rb +162 -0
  85. data/lib/oraclebmc/identity/models/create_compartment_details.rb +187 -0
  86. data/lib/oraclebmc/identity/models/create_group_details.rb +186 -0
  87. data/lib/oraclebmc/identity/models/create_policy_details.rb +215 -0
  88. data/lib/oraclebmc/identity/models/create_swift_password_details.rb +163 -0
  89. data/lib/oraclebmc/identity/models/create_user_details.rb +186 -0
  90. data/lib/oraclebmc/identity/models/group.rb +251 -0
  91. data/lib/oraclebmc/identity/models/policy.rb +277 -0
  92. data/lib/oraclebmc/identity/models/swift_password.rb +266 -0
  93. data/lib/oraclebmc/identity/models/ui_password.rb +227 -0
  94. data/lib/oraclebmc/identity/models/update_compartment_details.rb +162 -0
  95. data/lib/oraclebmc/identity/models/update_group_details.rb +162 -0
  96. data/lib/oraclebmc/identity/models/update_policy_details.rb +190 -0
  97. data/lib/oraclebmc/identity/models/update_state_details.rb +163 -0
  98. data/lib/oraclebmc/identity/models/update_swift_password_details.rb +162 -0
  99. data/lib/oraclebmc/identity/models/update_user_details.rb +162 -0
  100. data/lib/oraclebmc/identity/models/user.rb +257 -0
  101. data/lib/oraclebmc/identity/models/user_group_membership.rb +249 -0
  102. data/lib/oraclebmc/identity/util.rb +1 -0
  103. data/lib/oraclebmc/load_balancer/load_balancer.rb +45 -0
  104. data/lib/oraclebmc/load_balancer/load_balancer_client.rb +1218 -0
  105. data/lib/oraclebmc/load_balancer/models/backend.rb +262 -0
  106. data/lib/oraclebmc/load_balancer/models/backend_details.rb +248 -0
  107. data/lib/oraclebmc/load_balancer/models/backend_set.rb +211 -0
  108. data/lib/oraclebmc/load_balancer/models/backend_set_details.rb +197 -0
  109. data/lib/oraclebmc/load_balancer/models/certificate.rb +209 -0
  110. data/lib/oraclebmc/load_balancer/models/certificate_details.rb +245 -0
  111. data/lib/oraclebmc/load_balancer/models/create_backend_details.rb +248 -0
  112. data/lib/oraclebmc/load_balancer/models/create_backend_set_details.rb +210 -0
  113. data/lib/oraclebmc/load_balancer/models/create_certificate_details.rb +245 -0
  114. data/lib/oraclebmc/load_balancer/models/create_listener_details.rb +216 -0
  115. data/lib/oraclebmc/load_balancer/models/create_load_balancer_details.rb +233 -0
  116. data/lib/oraclebmc/load_balancer/models/health_checker.rb +265 -0
  117. data/lib/oraclebmc/load_balancer/models/health_checker_details.rb +264 -0
  118. data/lib/oraclebmc/load_balancer/models/ip_address.rb +165 -0
  119. data/lib/oraclebmc/load_balancer/models/listener.rb +216 -0
  120. data/lib/oraclebmc/load_balancer/models/listener_details.rb +202 -0
  121. data/lib/oraclebmc/load_balancer/models/load_balancer.rb +296 -0
  122. data/lib/oraclebmc/load_balancer/models/load_balancer_policy.rb +162 -0
  123. data/lib/oraclebmc/load_balancer/models/load_balancer_protocol.rb +162 -0
  124. data/lib/oraclebmc/load_balancer/models/load_balancer_shape.rb +162 -0
  125. data/lib/oraclebmc/load_balancer/models/ssl_configuration.rb +195 -0
  126. data/lib/oraclebmc/load_balancer/models/ssl_configuration_details.rb +195 -0
  127. data/lib/oraclebmc/load_balancer/models/update_backend_details.rb +220 -0
  128. data/lib/oraclebmc/load_balancer/models/update_backend_set_details.rb +197 -0
  129. data/lib/oraclebmc/load_balancer/models/update_health_checker_details.rb +263 -0
  130. data/lib/oraclebmc/load_balancer/models/update_listener_details.rb +202 -0
  131. data/lib/oraclebmc/load_balancer/models/update_load_balancer_details.rb +165 -0
  132. data/lib/oraclebmc/load_balancer/models/work_request.rb +269 -0
  133. data/lib/oraclebmc/load_balancer/models/work_request_error.rb +185 -0
  134. data/lib/oraclebmc/load_balancer/util.rb +55 -0
  135. data/lib/oraclebmc/regions.rb +41 -0
  136. data/lib/oraclebmc/response.rb +86 -0
  137. data/lib/oraclebmc/signer.rb +119 -0
  138. data/lib/oraclebmc/version.rb +5 -0
  139. data/lib/oraclebmc/waiter.rb +111 -0
  140. data/lib/oraclebmc.rb +20 -0
  141. metadata +265 -0
@@ -0,0 +1,177 @@
1
+ # Copyright (c) 2016 Oracle and/or its affiliates. All rights reserved.
2
+
3
+ require 'date'
4
+
5
+ module OracleBMC
6
+ class Core::Models::RouteRule
7
+ # A destination IP address range in CIDR notation. Matching packets will
8
+ # be routed to the indicated network entity (the target).
9
+ #
10
+ # Example: `0.0.0.0/0`
11
+ #
12
+ # @return [String]
13
+ attr_accessor :cidr_block
14
+
15
+ # The OCID for the route rule's target.
16
+ # @return [String]
17
+ attr_accessor :network_entity_id
18
+
19
+
20
+ # Initializes the object
21
+ # @param [Hash] attributes Model attributes in the form of hash
22
+ def initialize(attributes = {})
23
+ return unless attributes.is_a?(Hash)
24
+
25
+ # convert string to symbol for hash key
26
+ attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
27
+
28
+
29
+ if attributes[:'cidrBlock']
30
+ self.cidr_block = attributes[:'cidrBlock']
31
+ end
32
+
33
+ if attributes[:'networkEntityId']
34
+ self.network_entity_id = attributes[:'networkEntityId']
35
+ end
36
+
37
+ end
38
+
39
+ # Checks equality by comparing each attribute.
40
+ # @param [Object] other_object to be compared
41
+ def ==(other_object)
42
+ return true if self.equal?(other_object)
43
+ self.class == other_object.class &&
44
+ cidr_block == other_object.cidr_block &&
45
+ network_entity_id == other_object.network_entity_id
46
+ end
47
+
48
+ # @see the `==` method
49
+ # @param [Object] other_object to be compared
50
+ def eql?(other_object)
51
+ self == other_object
52
+ end
53
+
54
+ # Calculates hash code according to all attributes.
55
+ # @return [Fixnum] Hash code
56
+ def hash
57
+ [cidr_block, network_entity_id].hash
58
+ end
59
+
60
+ # Builds the object from hash
61
+ # @param [Hash] attributes Model attributes in the form of hash
62
+ # @return [Object] Returns the model itself
63
+ def build_from_hash(attributes)
64
+ return nil unless attributes.is_a?(Hash)
65
+ self.class.swagger_types.each_pair do |key, type|
66
+ if type =~ /^Array<(.*)>/i
67
+ # check to ensure the input is an array given that the the attribute
68
+ # is documented as an array but the input is not
69
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
70
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
71
+ end
72
+ elsif !attributes[self.class.attribute_map[key]].nil?
73
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
74
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
75
+ end
76
+
77
+ self
78
+ end
79
+
80
+ # Returns the string representation of the object
81
+ # @return [String] String presentation of the object
82
+ def to_s
83
+ to_hash.to_s
84
+ end
85
+
86
+ # Returns the object in the form of hash
87
+ # @return [Hash] Returns the object in the form of hash
88
+ def to_hash
89
+ hash = {}
90
+ self.class.attribute_map.each_pair do |attr, param|
91
+ value = self.send(attr)
92
+ next if value.nil?
93
+ hash[param] = _to_hash(value)
94
+ end
95
+ hash
96
+ end
97
+
98
+ private
99
+
100
+ # Outputs non-array value in the form of hash
101
+ # For object, use to_hash. Otherwise, just return the value
102
+ # @param [Object] value Any valid value
103
+ # @return [Hash] Returns the value in the form of hash
104
+ def _to_hash(value)
105
+ if value.is_a?(Array)
106
+ value.compact.map{ |v| _to_hash(v) }
107
+ elsif value.is_a?(Hash)
108
+ {}.tap do |hash|
109
+ value.each { |k, v| hash[k] = _to_hash(v) }
110
+ end
111
+ elsif value.respond_to? :to_hash
112
+ value.to_hash
113
+ else
114
+ value
115
+ end
116
+ end
117
+
118
+ # Deserializes the data based on type
119
+ # @param [String] type Data type
120
+ # @param [String] value Value to be deserialized
121
+ # @return [Object] Deserialized data
122
+ def _deserialize(type, value)
123
+ case type.to_sym
124
+ when :DateTime
125
+ DateTime.parse(value)
126
+ when :Date
127
+ Date.parse(value)
128
+ when :String
129
+ value.to_s
130
+ when :Integer
131
+ value.to_i
132
+ when :Float
133
+ value.to_f
134
+ when :BOOLEAN
135
+ if value.to_s =~ /^(true|t|yes|y|1)$/i
136
+ true
137
+ else
138
+ false
139
+ end
140
+ when :Object
141
+ # generic object (usually a Hash), return directly
142
+ value
143
+ when /\AArray<(?<inner_type>.+)>\z/
144
+ inner_type = Regexp.last_match[:inner_type]
145
+ value.map { |v| _deserialize(inner_type, v) }
146
+ when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
147
+ k_type = Regexp.last_match[:k_type]
148
+ v_type = Regexp.last_match[:v_type]
149
+ {}.tap do |hash|
150
+ value.each do |k, v|
151
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
152
+ end
153
+ end
154
+ else # model
155
+ temp_model = OracleBMC.const_get(type.to_s).new
156
+ temp_model.build_from_hash(value)
157
+ end
158
+ end
159
+
160
+
161
+ # Attribute mapping from ruby-style variable name to JSON key.
162
+ def self.attribute_map
163
+ {
164
+ :'cidr_block' => :'cidrBlock',
165
+ :'network_entity_id' => :'networkEntityId'
166
+ }
167
+ end
168
+
169
+ # Attribute type mapping.
170
+ def self.swagger_types
171
+ {
172
+ :'cidr_block' => :'String',
173
+ :'network_entity_id' => :'String'
174
+ }
175
+ end
176
+ end
177
+ end
@@ -0,0 +1,246 @@
1
+ # Copyright (c) 2016 Oracle and/or its affiliates. All rights reserved.
2
+
3
+ require 'date'
4
+
5
+ module OracleBMC
6
+ class Core::Models::RouteTable
7
+
8
+ LIFECYCLE_STATE_ENUM = [LIFECYCLE_STATE_PROVISIONING = 'PROVISIONING',
9
+ LIFECYCLE_STATE_AVAILABLE = 'AVAILABLE',
10
+ LIFECYCLE_STATE_TERMINATING = 'TERMINATING',
11
+ LIFECYCLE_STATE_TERMINATED = 'TERMINATED']
12
+
13
+ # The OCID of the compartment containing the route table.
14
+ # @return [String]
15
+ attr_accessor :compartment_id
16
+
17
+ # A user-friendly name. Does not have to be unique, and it's changeable.
18
+ # @return [String]
19
+ attr_accessor :display_name
20
+
21
+ # The route table's Oracle ID (OCID).
22
+ # @return [String]
23
+ attr_accessor :id
24
+
25
+ # The route table's current state.
26
+ # @return [String]
27
+ attr_accessor :lifecycle_state
28
+
29
+ # The collection of rules for routing destination IPs to network devices.
30
+ # @return [Array<OracleBMC::Core::Models::RouteRule>]
31
+ attr_accessor :route_rules
32
+
33
+ # The date and time the route table was created, in the format defined by RFC3339.
34
+ #
35
+ # Example: `2016-08-25T21:10:29.600Z`
36
+ #
37
+ # @return [DateTime]
38
+ attr_accessor :time_created
39
+
40
+ # The OCID of the VCN the route table list belongs to.
41
+ # @return [String]
42
+ attr_accessor :vcn_id
43
+
44
+
45
+ # Initializes the object
46
+ # @param [Hash] attributes Model attributes in the form of hash
47
+ def initialize(attributes = {})
48
+ return unless attributes.is_a?(Hash)
49
+
50
+ # convert string to symbol for hash key
51
+ attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
52
+
53
+
54
+ if attributes[:'compartmentId']
55
+ self.compartment_id = attributes[:'compartmentId']
56
+ end
57
+
58
+ if attributes[:'displayName']
59
+ self.display_name = attributes[:'displayName']
60
+ end
61
+
62
+ if attributes[:'id']
63
+ self.id = attributes[:'id']
64
+ end
65
+
66
+ if attributes[:'lifecycleState']
67
+ self.lifecycle_state = attributes[:'lifecycleState']
68
+ end
69
+
70
+ if attributes[:'routeRules']
71
+ self.route_rules = attributes[:'routeRules']
72
+ end
73
+
74
+ if attributes[:'timeCreated']
75
+ self.time_created = attributes[:'timeCreated']
76
+ end
77
+
78
+ if attributes[:'vcnId']
79
+ self.vcn_id = attributes[:'vcnId']
80
+ end
81
+
82
+ end
83
+
84
+ # Custom attribute writer method checking allowed values (enum).
85
+ # @param [Object] lifecycle_state Object to be assigned
86
+ def lifecycle_state=(lifecycle_state)
87
+ if lifecycle_state && !LIFECYCLE_STATE_ENUM.include?(lifecycle_state)
88
+ fail "Invalid value for 'lifecycle_state': this must be one of the values in LIFECYCLE_STATE_ENUM."
89
+ end
90
+ @lifecycle_state = lifecycle_state
91
+ end
92
+
93
+ # Checks equality by comparing each attribute.
94
+ # @param [Object] other_object to be compared
95
+ def ==(other_object)
96
+ return true if self.equal?(other_object)
97
+ self.class == other_object.class &&
98
+ compartment_id == other_object.compartment_id &&
99
+ display_name == other_object.display_name &&
100
+ id == other_object.id &&
101
+ lifecycle_state == other_object.lifecycle_state &&
102
+ route_rules == other_object.route_rules &&
103
+ time_created == other_object.time_created &&
104
+ vcn_id == other_object.vcn_id
105
+ end
106
+
107
+ # @see the `==` method
108
+ # @param [Object] other_object to be compared
109
+ def eql?(other_object)
110
+ self == other_object
111
+ end
112
+
113
+ # Calculates hash code according to all attributes.
114
+ # @return [Fixnum] Hash code
115
+ def hash
116
+ [compartment_id, display_name, id, lifecycle_state, route_rules, time_created, vcn_id].hash
117
+ end
118
+
119
+ # Builds the object from hash
120
+ # @param [Hash] attributes Model attributes in the form of hash
121
+ # @return [Object] Returns the model itself
122
+ def build_from_hash(attributes)
123
+ return nil unless attributes.is_a?(Hash)
124
+ self.class.swagger_types.each_pair do |key, type|
125
+ if type =~ /^Array<(.*)>/i
126
+ # check to ensure the input is an array given that the the attribute
127
+ # is documented as an array but the input is not
128
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
129
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
130
+ end
131
+ elsif !attributes[self.class.attribute_map[key]].nil?
132
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
133
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
134
+ end
135
+
136
+ self
137
+ end
138
+
139
+ # Returns the string representation of the object
140
+ # @return [String] String presentation of the object
141
+ def to_s
142
+ to_hash.to_s
143
+ end
144
+
145
+ # Returns the object in the form of hash
146
+ # @return [Hash] Returns the object in the form of hash
147
+ def to_hash
148
+ hash = {}
149
+ self.class.attribute_map.each_pair do |attr, param|
150
+ value = self.send(attr)
151
+ next if value.nil?
152
+ hash[param] = _to_hash(value)
153
+ end
154
+ hash
155
+ end
156
+
157
+ private
158
+
159
+ # Outputs non-array value in the form of hash
160
+ # For object, use to_hash. Otherwise, just return the value
161
+ # @param [Object] value Any valid value
162
+ # @return [Hash] Returns the value in the form of hash
163
+ def _to_hash(value)
164
+ if value.is_a?(Array)
165
+ value.compact.map{ |v| _to_hash(v) }
166
+ elsif value.is_a?(Hash)
167
+ {}.tap do |hash|
168
+ value.each { |k, v| hash[k] = _to_hash(v) }
169
+ end
170
+ elsif value.respond_to? :to_hash
171
+ value.to_hash
172
+ else
173
+ value
174
+ end
175
+ end
176
+
177
+ # Deserializes the data based on type
178
+ # @param [String] type Data type
179
+ # @param [String] value Value to be deserialized
180
+ # @return [Object] Deserialized data
181
+ def _deserialize(type, value)
182
+ case type.to_sym
183
+ when :DateTime
184
+ DateTime.parse(value)
185
+ when :Date
186
+ Date.parse(value)
187
+ when :String
188
+ value.to_s
189
+ when :Integer
190
+ value.to_i
191
+ when :Float
192
+ value.to_f
193
+ when :BOOLEAN
194
+ if value.to_s =~ /^(true|t|yes|y|1)$/i
195
+ true
196
+ else
197
+ false
198
+ end
199
+ when :Object
200
+ # generic object (usually a Hash), return directly
201
+ value
202
+ when /\AArray<(?<inner_type>.+)>\z/
203
+ inner_type = Regexp.last_match[:inner_type]
204
+ value.map { |v| _deserialize(inner_type, v) }
205
+ when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
206
+ k_type = Regexp.last_match[:k_type]
207
+ v_type = Regexp.last_match[:v_type]
208
+ {}.tap do |hash|
209
+ value.each do |k, v|
210
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
211
+ end
212
+ end
213
+ else # model
214
+ temp_model = OracleBMC.const_get(type.to_s).new
215
+ temp_model.build_from_hash(value)
216
+ end
217
+ end
218
+
219
+
220
+ # Attribute mapping from ruby-style variable name to JSON key.
221
+ def self.attribute_map
222
+ {
223
+ :'compartment_id' => :'compartmentId',
224
+ :'display_name' => :'displayName',
225
+ :'id' => :'id',
226
+ :'lifecycle_state' => :'lifecycleState',
227
+ :'route_rules' => :'routeRules',
228
+ :'time_created' => :'timeCreated',
229
+ :'vcn_id' => :'vcnId'
230
+ }
231
+ end
232
+
233
+ # Attribute type mapping.
234
+ def self.swagger_types
235
+ {
236
+ :'compartment_id' => :'String',
237
+ :'display_name' => :'String',
238
+ :'id' => :'String',
239
+ :'lifecycle_state' => :'String',
240
+ :'route_rules' => :'Array<OracleBMC::Core::Models::RouteRule>',
241
+ :'time_created' => :'DateTime',
242
+ :'vcn_id' => :'String'
243
+ }
244
+ end
245
+ end
246
+ end
@@ -0,0 +1,257 @@
1
+ # Copyright (c) 2016 Oracle and/or its affiliates. All rights reserved.
2
+
3
+ require 'date'
4
+
5
+ module OracleBMC
6
+ class Core::Models::SecurityList
7
+
8
+ LIFECYCLE_STATE_ENUM = [LIFECYCLE_STATE_PROVISIONING = 'PROVISIONING',
9
+ LIFECYCLE_STATE_AVAILABLE = 'AVAILABLE',
10
+ LIFECYCLE_STATE_TERMINATING = 'TERMINATING',
11
+ LIFECYCLE_STATE_TERMINATED = 'TERMINATED']
12
+
13
+ # The OCID of the compartment containing the security list.
14
+ # @return [String]
15
+ attr_accessor :compartment_id
16
+
17
+ # A user-friendly name. Does not have to be unique, and it's changeable.
18
+ # @return [String]
19
+ attr_accessor :display_name
20
+
21
+ # Rules for allowing egress IP packets.
22
+ # @return [Array<OracleBMC::Core::Models::EgressSecurityRule>]
23
+ attr_accessor :egress_security_rules
24
+
25
+ # The security list's Oracle Cloud ID (OCID).
26
+ # @return [String]
27
+ attr_accessor :id
28
+
29
+ # Rules for allowing ingress IP packets.
30
+ # @return [Array<OracleBMC::Core::Models::IngressSecurityRule>]
31
+ attr_accessor :ingress_security_rules
32
+
33
+ # The security list's current state.
34
+ # @return [String]
35
+ attr_accessor :lifecycle_state
36
+
37
+ # The date and time the security list was created, in the format defined by RFC3339.
38
+ #
39
+ # Example: `2016-08-25T21:10:29.600Z`
40
+ #
41
+ # @return [DateTime]
42
+ attr_accessor :time_created
43
+
44
+ # The OCID of the VCN the security list belongs to.
45
+ # @return [String]
46
+ attr_accessor :vcn_id
47
+
48
+
49
+ # Initializes the object
50
+ # @param [Hash] attributes Model attributes in the form of hash
51
+ def initialize(attributes = {})
52
+ return unless attributes.is_a?(Hash)
53
+
54
+ # convert string to symbol for hash key
55
+ attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
56
+
57
+
58
+ if attributes[:'compartmentId']
59
+ self.compartment_id = attributes[:'compartmentId']
60
+ end
61
+
62
+ if attributes[:'displayName']
63
+ self.display_name = attributes[:'displayName']
64
+ end
65
+
66
+ if attributes[:'egressSecurityRules']
67
+ self.egress_security_rules = attributes[:'egressSecurityRules']
68
+ end
69
+
70
+ if attributes[:'id']
71
+ self.id = attributes[:'id']
72
+ end
73
+
74
+ if attributes[:'ingressSecurityRules']
75
+ self.ingress_security_rules = attributes[:'ingressSecurityRules']
76
+ end
77
+
78
+ if attributes[:'lifecycleState']
79
+ self.lifecycle_state = attributes[:'lifecycleState']
80
+ end
81
+
82
+ if attributes[:'timeCreated']
83
+ self.time_created = attributes[:'timeCreated']
84
+ end
85
+
86
+ if attributes[:'vcnId']
87
+ self.vcn_id = attributes[:'vcnId']
88
+ end
89
+
90
+ end
91
+
92
+ # Custom attribute writer method checking allowed values (enum).
93
+ # @param [Object] lifecycle_state Object to be assigned
94
+ def lifecycle_state=(lifecycle_state)
95
+ if lifecycle_state && !LIFECYCLE_STATE_ENUM.include?(lifecycle_state)
96
+ fail "Invalid value for 'lifecycle_state': this must be one of the values in LIFECYCLE_STATE_ENUM."
97
+ end
98
+ @lifecycle_state = lifecycle_state
99
+ end
100
+
101
+ # Checks equality by comparing each attribute.
102
+ # @param [Object] other_object to be compared
103
+ def ==(other_object)
104
+ return true if self.equal?(other_object)
105
+ self.class == other_object.class &&
106
+ compartment_id == other_object.compartment_id &&
107
+ display_name == other_object.display_name &&
108
+ egress_security_rules == other_object.egress_security_rules &&
109
+ id == other_object.id &&
110
+ ingress_security_rules == other_object.ingress_security_rules &&
111
+ lifecycle_state == other_object.lifecycle_state &&
112
+ time_created == other_object.time_created &&
113
+ vcn_id == other_object.vcn_id
114
+ end
115
+
116
+ # @see the `==` method
117
+ # @param [Object] other_object to be compared
118
+ def eql?(other_object)
119
+ self == other_object
120
+ end
121
+
122
+ # Calculates hash code according to all attributes.
123
+ # @return [Fixnum] Hash code
124
+ def hash
125
+ [compartment_id, display_name, egress_security_rules, id, ingress_security_rules, lifecycle_state, time_created, vcn_id].hash
126
+ end
127
+
128
+ # Builds the object from hash
129
+ # @param [Hash] attributes Model attributes in the form of hash
130
+ # @return [Object] Returns the model itself
131
+ def build_from_hash(attributes)
132
+ return nil unless attributes.is_a?(Hash)
133
+ self.class.swagger_types.each_pair do |key, type|
134
+ if type =~ /^Array<(.*)>/i
135
+ # check to ensure the input is an array given that the the attribute
136
+ # is documented as an array but the input is not
137
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
138
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
139
+ end
140
+ elsif !attributes[self.class.attribute_map[key]].nil?
141
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
142
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
143
+ end
144
+
145
+ self
146
+ end
147
+
148
+ # Returns the string representation of the object
149
+ # @return [String] String presentation of the object
150
+ def to_s
151
+ to_hash.to_s
152
+ end
153
+
154
+ # Returns the object in the form of hash
155
+ # @return [Hash] Returns the object in the form of hash
156
+ def to_hash
157
+ hash = {}
158
+ self.class.attribute_map.each_pair do |attr, param|
159
+ value = self.send(attr)
160
+ next if value.nil?
161
+ hash[param] = _to_hash(value)
162
+ end
163
+ hash
164
+ end
165
+
166
+ private
167
+
168
+ # Outputs non-array value in the form of hash
169
+ # For object, use to_hash. Otherwise, just return the value
170
+ # @param [Object] value Any valid value
171
+ # @return [Hash] Returns the value in the form of hash
172
+ def _to_hash(value)
173
+ if value.is_a?(Array)
174
+ value.compact.map{ |v| _to_hash(v) }
175
+ elsif value.is_a?(Hash)
176
+ {}.tap do |hash|
177
+ value.each { |k, v| hash[k] = _to_hash(v) }
178
+ end
179
+ elsif value.respond_to? :to_hash
180
+ value.to_hash
181
+ else
182
+ value
183
+ end
184
+ end
185
+
186
+ # Deserializes the data based on type
187
+ # @param [String] type Data type
188
+ # @param [String] value Value to be deserialized
189
+ # @return [Object] Deserialized data
190
+ def _deserialize(type, value)
191
+ case type.to_sym
192
+ when :DateTime
193
+ DateTime.parse(value)
194
+ when :Date
195
+ Date.parse(value)
196
+ when :String
197
+ value.to_s
198
+ when :Integer
199
+ value.to_i
200
+ when :Float
201
+ value.to_f
202
+ when :BOOLEAN
203
+ if value.to_s =~ /^(true|t|yes|y|1)$/i
204
+ true
205
+ else
206
+ false
207
+ end
208
+ when :Object
209
+ # generic object (usually a Hash), return directly
210
+ value
211
+ when /\AArray<(?<inner_type>.+)>\z/
212
+ inner_type = Regexp.last_match[:inner_type]
213
+ value.map { |v| _deserialize(inner_type, v) }
214
+ when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
215
+ k_type = Regexp.last_match[:k_type]
216
+ v_type = Regexp.last_match[:v_type]
217
+ {}.tap do |hash|
218
+ value.each do |k, v|
219
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
220
+ end
221
+ end
222
+ else # model
223
+ temp_model = OracleBMC.const_get(type.to_s).new
224
+ temp_model.build_from_hash(value)
225
+ end
226
+ end
227
+
228
+
229
+ # Attribute mapping from ruby-style variable name to JSON key.
230
+ def self.attribute_map
231
+ {
232
+ :'compartment_id' => :'compartmentId',
233
+ :'display_name' => :'displayName',
234
+ :'egress_security_rules' => :'egressSecurityRules',
235
+ :'id' => :'id',
236
+ :'ingress_security_rules' => :'ingressSecurityRules',
237
+ :'lifecycle_state' => :'lifecycleState',
238
+ :'time_created' => :'timeCreated',
239
+ :'vcn_id' => :'vcnId'
240
+ }
241
+ end
242
+
243
+ # Attribute type mapping.
244
+ def self.swagger_types
245
+ {
246
+ :'compartment_id' => :'String',
247
+ :'display_name' => :'String',
248
+ :'egress_security_rules' => :'Array<OracleBMC::Core::Models::EgressSecurityRule>',
249
+ :'id' => :'String',
250
+ :'ingress_security_rules' => :'Array<OracleBMC::Core::Models::IngressSecurityRule>',
251
+ :'lifecycle_state' => :'String',
252
+ :'time_created' => :'DateTime',
253
+ :'vcn_id' => :'String'
254
+ }
255
+ end
256
+ end
257
+ end