Class: Kubevirt::V1VirtualMachineInstanceMigrationTargetState
- Inherits:
-
ApiModelBase
- Object
- ApiModelBase
- Kubevirt::V1VirtualMachineInstanceMigrationTargetState
- Defined in:
- lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb
Instance Attribute Summary collapse
-
#attachment_pod_uid ⇒ Object
The UID of the target attachment pod for hotplug volumes.
-
#cpu_set ⇒ Object
If the VMI requires dedicated CPUs, this field will hold the dedicated CPU set on the target node.
-
#direct_migration_node_ports ⇒ Object
The list of ports opened for live migration on the destination node.
-
#domain_detected ⇒ Object
The Target Node has seen the Domain Start Event.
-
#domain_name ⇒ Object
The name of the domain on the source libvirt domain.
-
#domain_namespace ⇒ Object
Namespace used in the name of the source libvirt domain.
-
#domain_ready_timestamp ⇒ Object
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.
-
#migration_uid ⇒ Object
The Source VirtualMachineInstanceMigration object associated with this migration.
-
#node ⇒ Object
The source node that the VMI originated on.
-
#node_address ⇒ Object
The address of the target node to use for the migration.
-
#node_topology ⇒ Object
If the VMI requires dedicated CPUs, this field will hold the numa topology on the target node.
-
#persistent_state_pvc_name ⇒ Object
If the VMI being migrated uses persistent features (backend-storage), its source PVC name is saved here.
-
#pod ⇒ Object
The source pod that the VMI is originated on.
-
#selinux_context ⇒ Object
SELinuxContext is the actual SELinux context of the pod.
-
#sync_address ⇒ Object
The ip address/fqdn:port combination to use to synchronize the VMI with the target.
-
#virtual_machine_instance_uid ⇒ Object
VirtualMachineInstanceUID is the UID of the target virtual machine instance.
Class Method Summary collapse
-
.acceptable_attribute_map ⇒ Object
Returns attribute mapping this model knows about.
-
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about.
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.build_from_hash(attributes) ⇒ Object
Builds the object from hash.
-
.openapi_nullable ⇒ Object
List of attributes with nullable: true.
-
.openapi_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Integer
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ V1VirtualMachineInstanceMigrationTargetState
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Methods inherited from ApiModelBase
_deserialize, #_to_hash, #to_body, #to_s
Constructor Details
#initialize(attributes = {}) ⇒ V1VirtualMachineInstanceMigrationTargetState
Initializes the object
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 128 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `Kubevirt::V1VirtualMachineInstanceMigrationTargetState` initialize method" end # check to see if the attribute exists and convert string to symbol for hash key acceptable_attribute_map = self.class.acceptable_attribute_map attributes = attributes.each_with_object({}) { |(k, v), h| if (!acceptable_attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `Kubevirt::V1VirtualMachineInstanceMigrationTargetState`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect end h[k.to_sym] = v } if attributes.key?(:'attachment_pod_uid') self. = attributes[:'attachment_pod_uid'] end if attributes.key?(:'cpu_set') if (value = attributes[:'cpu_set']).is_a?(Array) self.cpu_set = value end end if attributes.key?(:'direct_migration_node_ports') if (value = attributes[:'direct_migration_node_ports']).is_a?(Hash) self.direct_migration_node_ports = value end end if attributes.key?(:'domain_detected') self.domain_detected = attributes[:'domain_detected'] end if attributes.key?(:'domain_name') self.domain_name = attributes[:'domain_name'] end if attributes.key?(:'domain_namespace') self.domain_namespace = attributes[:'domain_namespace'] end if attributes.key?(:'domain_ready_timestamp') self. = attributes[:'domain_ready_timestamp'] end if attributes.key?(:'migration_uid') self.migration_uid = attributes[:'migration_uid'] end if attributes.key?(:'node') self.node = attributes[:'node'] end if attributes.key?(:'node_address') self.node_address = attributes[:'node_address'] end if attributes.key?(:'node_topology') self.node_topology = attributes[:'node_topology'] end if attributes.key?(:'persistent_state_pvc_name') self.persistent_state_pvc_name = attributes[:'persistent_state_pvc_name'] end if attributes.key?(:'pod') self.pod = attributes[:'pod'] end if attributes.key?(:'selinux_context') self.selinux_context = attributes[:'selinux_context'] end if attributes.key?(:'sync_address') self.sync_address = attributes[:'sync_address'] end if attributes.key?(:'virtual_machine_instance_uid') self.virtual_machine_instance_uid = attributes[:'virtual_machine_instance_uid'] end end |
Instance Attribute Details
#attachment_pod_uid ⇒ Object
The UID of the target attachment pod for hotplug volumes
19 20 21 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 19 def end |
#cpu_set ⇒ Object
If the VMI requires dedicated CPUs, this field will hold the dedicated CPU set on the target node
22 23 24 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 22 def cpu_set @cpu_set end |
#direct_migration_node_ports ⇒ Object
The list of ports opened for live migration on the destination node
25 26 27 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 25 def direct_migration_node_ports @direct_migration_node_ports end |
#domain_detected ⇒ Object
The Target Node has seen the Domain Start Event
28 29 30 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 28 def domain_detected @domain_detected end |
#domain_name ⇒ Object
The name of the domain on the source libvirt domain
31 32 33 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 31 def domain_name @domain_name end |
#domain_namespace ⇒ Object
Namespace used in the name of the source libvirt domain. Can be used to find and modify paths in the domain
34 35 36 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 34 def domain_namespace @domain_namespace end |
#domain_ready_timestamp ⇒ Object
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
37 38 39 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 37 def end |
#migration_uid ⇒ Object
The Source VirtualMachineInstanceMigration object associated with this migration
40 41 42 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 40 def migration_uid @migration_uid end |
#node ⇒ Object
The source node that the VMI originated on
43 44 45 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 43 def node @node end |
#node_address ⇒ Object
The address of the target node to use for the migration
46 47 48 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 46 def node_address @node_address end |
#node_topology ⇒ Object
If the VMI requires dedicated CPUs, this field will hold the numa topology on the target node
49 50 51 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 49 def node_topology @node_topology end |
#persistent_state_pvc_name ⇒ Object
If the VMI being migrated uses persistent features (backend-storage), its source PVC name is saved here
52 53 54 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 52 def persistent_state_pvc_name @persistent_state_pvc_name end |
#pod ⇒ Object
The source pod that the VMI is originated on
55 56 57 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 55 def pod @pod end |
#selinux_context ⇒ Object
SELinuxContext is the actual SELinux context of the pod
58 59 60 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 58 def selinux_context @selinux_context end |
#sync_address ⇒ Object
The ip address/fqdn:port combination to use to synchronize the VMI with the target.
61 62 63 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 61 def sync_address @sync_address end |
#virtual_machine_instance_uid ⇒ Object
VirtualMachineInstanceUID is the UID of the target virtual machine instance
64 65 66 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 64 def virtual_machine_instance_uid @virtual_machine_instance_uid end |
Class Method Details
.acceptable_attribute_map ⇒ Object
Returns attribute mapping this model knows about
89 90 91 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 89 def self.acceptable_attribute_map attribute_map end |
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about
94 95 96 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 94 def self.acceptable_attributes acceptable_attribute_map.values end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 67 def self.attribute_map { :'attachment_pod_uid' => :'attachmentPodUID', :'cpu_set' => :'cpuSet', :'direct_migration_node_ports' => :'directMigrationNodePorts', :'domain_detected' => :'domainDetected', :'domain_name' => :'domainName', :'domain_namespace' => :'domainNamespace', :'domain_ready_timestamp' => :'domainReadyTimestamp', :'migration_uid' => :'migrationUID', :'node' => :'node', :'node_address' => :'nodeAddress', :'node_topology' => :'nodeTopology', :'persistent_state_pvc_name' => :'persistentStatePVCName', :'pod' => :'pod', :'selinux_context' => :'selinuxContext', :'sync_address' => :'syncAddress', :'virtual_machine_instance_uid' => :'virtualMachineInstanceUID' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 264 def self.build_from_hash(attributes) return nil unless attributes.is_a?(Hash) attributes = attributes.transform_keys(&:to_sym) transformed_hash = {} openapi_types.each_pair do |key, type| if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil? transformed_hash["#{key}"] = nil elsif type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the attribute # is documented as an array but the input is not if attributes[attribute_map[key]].is_a?(Array) transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) } end elsif !attributes[attribute_map[key]].nil? transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]]) end end new(transformed_hash) end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
121 122 123 124 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 121 def self.openapi_nullable Set.new([ ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 99 def self.openapi_types { :'attachment_pod_uid' => :'String', :'cpu_set' => :'Array<Integer>', :'direct_migration_node_ports' => :'Hash<String, Integer>', :'domain_detected' => :'Boolean', :'domain_name' => :'String', :'domain_namespace' => :'String', :'domain_ready_timestamp' => :'Time', :'migration_uid' => :'String', :'node' => :'String', :'node_address' => :'String', :'node_topology' => :'String', :'persistent_state_pvc_name' => :'String', :'pod' => :'String', :'selinux_context' => :'String', :'sync_address' => :'String', :'virtual_machine_instance_uid' => :'String' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 228 def ==(o) return true if self.equal?(o) self.class == o.class && == o. && cpu_set == o.cpu_set && direct_migration_node_ports == o.direct_migration_node_ports && domain_detected == o.domain_detected && domain_name == o.domain_name && domain_namespace == o.domain_namespace && == o. && migration_uid == o.migration_uid && node == o.node && node_address == o.node_address && node_topology == o.node_topology && persistent_state_pvc_name == o.persistent_state_pvc_name && pod == o.pod && selinux_context == o.selinux_context && sync_address == o.sync_address && virtual_machine_instance_uid == o.virtual_machine_instance_uid end |
#eql?(o) ⇒ Boolean
251 252 253 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 251 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
257 258 259 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 257 def hash [, cpu_set, direct_migration_node_ports, domain_detected, domain_name, domain_namespace, , migration_uid, node, node_address, node_topology, persistent_state_pvc_name, pod, selinux_context, sync_address, virtual_machine_instance_uid].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
213 214 215 216 217 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 213 def list_invalid_properties warn '[DEPRECATED] the `list_invalid_properties` method is obsolete' invalid_properties = Array.new invalid_properties end |
#to_hash ⇒ Hash
Returns the object in the form of hash
286 287 288 289 290 291 292 293 294 295 296 297 298 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 286 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) if value.nil? is_nullable = self.class.openapi_nullable.include?(attr) next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) end hash[param] = _to_hash(value) end hash end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
221 222 223 224 |
# File 'lib/kubevirt/models/v1_virtual_machine_instance_migration_target_state.rb', line 221 def valid? warn '[DEPRECATED] the `valid?` method is obsolete' true end |