Class: OCI::GoldenGate::Models::DeploymentSummary
- Inherits:
-
Object
- Object
- OCI::GoldenGate::Models::DeploymentSummary
- Defined in:
- lib/oci/golden_gate/models/deployment_summary.rb
Overview
Summary of the Deployment.
Constant Summary collapse
- LIFECYCLE_STATE_ENUM =
[ LIFECYCLE_STATE_CREATING = 'CREATING'.freeze, LIFECYCLE_STATE_UPDATING = 'UPDATING'.freeze, LIFECYCLE_STATE_ACTIVE = 'ACTIVE'.freeze, LIFECYCLE_STATE_INACTIVE = 'INACTIVE'.freeze, LIFECYCLE_STATE_DELETING = 'DELETING'.freeze, LIFECYCLE_STATE_DELETED = 'DELETED'.freeze, LIFECYCLE_STATE_FAILED = 'FAILED'.freeze, LIFECYCLE_STATE_NEEDS_ATTENTION = 'NEEDS_ATTENTION'.freeze, LIFECYCLE_STATE_IN_PROGRESS = 'IN_PROGRESS'.freeze, LIFECYCLE_STATE_CANCELING = 'CANCELING'.freeze, LIFECYCLE_STATE_CANCELED = 'CANCELED'.freeze, LIFECYCLE_STATE_SUCCEEDED = 'SUCCEEDED'.freeze, LIFECYCLE_STATE_WAITING = 'WAITING'.freeze, LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- LIFECYCLE_SUB_STATE_ENUM =
[ LIFECYCLE_SUB_STATE_RECOVERING = 'RECOVERING'.freeze, LIFECYCLE_SUB_STATE_STARTING = 'STARTING'.freeze, LIFECYCLE_SUB_STATE_STOPPING = 'STOPPING'.freeze, LIFECYCLE_SUB_STATE_MOVING = 'MOVING'.freeze, LIFECYCLE_SUB_STATE_UPGRADING = 'UPGRADING'.freeze, LIFECYCLE_SUB_STATE_RESTORING = 'RESTORING'.freeze, LIFECYCLE_SUB_STATE_BACKUP_IN_PROGRESS = 'BACKUP_IN_PROGRESS'.freeze, LIFECYCLE_SUB_STATE_ROLLBACK_IN_PROGRESS = 'ROLLBACK_IN_PROGRESS'.freeze, LIFECYCLE_SUB_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- LICENSE_MODEL_ENUM =
[ LICENSE_MODEL_LICENSE_INCLUDED = 'LICENSE_INCLUDED'.freeze, LICENSE_MODEL_BRING_YOUR_OWN_LICENSE = 'BRING_YOUR_OWN_LICENSE'.freeze, LICENSE_MODEL_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- DEPLOYMENT_TYPE_ENUM =
[ DEPLOYMENT_TYPE_OGG = 'OGG'.freeze, DEPLOYMENT_TYPE_DATABASE_ORACLE = 'DATABASE_ORACLE'.freeze, DEPLOYMENT_TYPE_BIGDATA = 'BIGDATA'.freeze, DEPLOYMENT_TYPE_DATABASE_MICROSOFT_SQLSERVER = 'DATABASE_MICROSOFT_SQLSERVER'.freeze, DEPLOYMENT_TYPE_DATABASE_MYSQL = 'DATABASE_MYSQL'.freeze, DEPLOYMENT_TYPE_DATABASE_POSTGRESQL = 'DATABASE_POSTGRESQL'.freeze, DEPLOYMENT_TYPE_DATABASE_DB2_ZOS = 'DATABASE_DB2ZOS'.freeze, DEPLOYMENT_TYPE_GGSA = 'GGSA'.freeze, DEPLOYMENT_TYPE_DATA_TRANSFORMS = 'DATA_TRANSFORMS'.freeze, DEPLOYMENT_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#compartment_id ⇒ String
[Required] The OCID of the compartment being referenced.
-
#cpu_core_count ⇒ Integer
The Minimum number of OCPUs to be made available for this Deployment.
-
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Tags defined for this resource.
-
#deployment_type ⇒ String
The type of deployment, which can be any one of the Allowed values.
-
#deployment_url ⇒ String
The URL of a resource.
-
#description ⇒ String
Metadata about this specific object.
-
#display_name ⇒ String
An object's Display Name.
-
#fqdn ⇒ String
A three-label Fully Qualified Domain Name (FQDN) for a resource.
-
#freeform_tags ⇒ Hash<String, String>
A simple key-value pair that is applied without any predefined name, type, or scope.
-
#id ⇒ String
[Required] The OCID of the deployment being referenced.
-
#is_auto_scaling_enabled ⇒ BOOLEAN
Indicates if auto scaling is enabled for the Deployment's CPU core count.
-
#is_latest_version ⇒ BOOLEAN
Indicates if the resource is the the latest available version.
-
#is_public ⇒ BOOLEAN
True if this object is publicly available.
-
#is_storage_utilization_limit_exceeded ⇒ BOOLEAN
Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit.
-
#license_model ⇒ String
[Required] The Oracle license model that applies to a Deployment.
-
#lifecycle_details ⇒ String
Describes the object's current state in detail.
-
#lifecycle_state ⇒ String
Possible lifecycle states.
-
#lifecycle_sub_state ⇒ String
Possible GGS lifecycle sub-states.
-
#load_balancer_id ⇒ String
The OCID of the loadbalancer in the customer's subnet.
-
#load_balancer_subnet_id ⇒ String
The OCID of a public subnet in the customer tenancy.
-
#private_ip_address ⇒ String
The private IP address in the customer's VCN representing the access point for the associated endpoint service in the GoldenGate service VCN.
-
#public_ip_address ⇒ String
The public IP address representing the access point for the Deployment.
-
#storage_utilization_in_bytes ⇒ Integer
The amount of storage being utilized (in bytes).
-
#subnet_id ⇒ String
[Required] The OCID of the subnet of the deployment's private endpoint.
-
#system_tags ⇒ Hash<String, Hash<String, Object>>
The system tags associated with this resource, if any.
-
#time_created ⇒ DateTime
The time the resource was created.
-
#time_updated ⇒ DateTime
The time the resource was last updated.
-
#time_upgrade_required ⇒ DateTime
Note: Deprecated: Use timeOfNextMaintenance instead, or related upgrade records to check, when deployment will be forced to upgrade to a newer version.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ DeploymentSummary
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ DeploymentSummary
Initializes the object
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 331 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.id = attributes[:'id'] if attributes[:'id'] self.display_name = attributes[:'displayName'] if attributes[:'displayName'] raise 'You cannot provide both :displayName and :display_name' if attributes.key?(:'displayName') && attributes.key?(:'display_name') self.display_name = attributes[:'display_name'] if attributes[:'display_name'] self.description = attributes[:'description'] if attributes[:'description'] self.compartment_id = attributes[:'compartmentId'] if attributes[:'compartmentId'] raise 'You cannot provide both :compartmentId and :compartment_id' if attributes.key?(:'compartmentId') && attributes.key?(:'compartment_id') self.compartment_id = attributes[:'compartment_id'] if attributes[:'compartment_id'] self.time_created = attributes[:'timeCreated'] if attributes[:'timeCreated'] raise 'You cannot provide both :timeCreated and :time_created' if attributes.key?(:'timeCreated') && attributes.key?(:'time_created') self.time_created = attributes[:'time_created'] if attributes[:'time_created'] self.time_updated = attributes[:'timeUpdated'] if attributes[:'timeUpdated'] raise 'You cannot provide both :timeUpdated and :time_updated' if attributes.key?(:'timeUpdated') && attributes.key?(:'time_updated') self.time_updated = attributes[:'time_updated'] if attributes[:'time_updated'] self.lifecycle_state = attributes[:'lifecycleState'] if attributes[:'lifecycleState'] raise 'You cannot provide both :lifecycleState and :lifecycle_state' if attributes.key?(:'lifecycleState') && attributes.key?(:'lifecycle_state') self.lifecycle_state = attributes[:'lifecycle_state'] if attributes[:'lifecycle_state'] self.lifecycle_sub_state = attributes[:'lifecycleSubState'] if attributes[:'lifecycleSubState'] raise 'You cannot provide both :lifecycleSubState and :lifecycle_sub_state' if attributes.key?(:'lifecycleSubState') && attributes.key?(:'lifecycle_sub_state') self.lifecycle_sub_state = attributes[:'lifecycle_sub_state'] if attributes[:'lifecycle_sub_state'] self.lifecycle_details = attributes[:'lifecycleDetails'] if attributes[:'lifecycleDetails'] raise 'You cannot provide both :lifecycleDetails and :lifecycle_details' if attributes.key?(:'lifecycleDetails') && attributes.key?(:'lifecycle_details') self.lifecycle_details = attributes[:'lifecycle_details'] if attributes[:'lifecycle_details'] self. = attributes[:'freeformTags'] if attributes[:'freeformTags'] raise 'You cannot provide both :freeformTags and :freeform_tags' if attributes.key?(:'freeformTags') && attributes.key?(:'freeform_tags') self. = attributes[:'freeform_tags'] if attributes[:'freeform_tags'] self. = attributes[:'definedTags'] if attributes[:'definedTags'] raise 'You cannot provide both :definedTags and :defined_tags' if attributes.key?(:'definedTags') && attributes.key?(:'defined_tags') self. = attributes[:'defined_tags'] if attributes[:'defined_tags'] self.subnet_id = attributes[:'subnetId'] if attributes[:'subnetId'] raise 'You cannot provide both :subnetId and :subnet_id' if attributes.key?(:'subnetId') && attributes.key?(:'subnet_id') self.subnet_id = attributes[:'subnet_id'] if attributes[:'subnet_id'] self.load_balancer_subnet_id = attributes[:'loadBalancerSubnetId'] if attributes[:'loadBalancerSubnetId'] raise 'You cannot provide both :loadBalancerSubnetId and :load_balancer_subnet_id' if attributes.key?(:'loadBalancerSubnetId') && attributes.key?(:'load_balancer_subnet_id') self.load_balancer_subnet_id = attributes[:'load_balancer_subnet_id'] if attributes[:'load_balancer_subnet_id'] self.load_balancer_id = attributes[:'loadBalancerId'] if attributes[:'loadBalancerId'] raise 'You cannot provide both :loadBalancerId and :load_balancer_id' if attributes.key?(:'loadBalancerId') && attributes.key?(:'load_balancer_id') self.load_balancer_id = attributes[:'load_balancer_id'] if attributes[:'load_balancer_id'] self.license_model = attributes[:'licenseModel'] if attributes[:'licenseModel'] raise 'You cannot provide both :licenseModel and :license_model' if attributes.key?(:'licenseModel') && attributes.key?(:'license_model') self.license_model = attributes[:'license_model'] if attributes[:'license_model'] self.fqdn = attributes[:'fqdn'] if attributes[:'fqdn'] self.cpu_core_count = attributes[:'cpuCoreCount'] if attributes[:'cpuCoreCount'] raise 'You cannot provide both :cpuCoreCount and :cpu_core_count' if attributes.key?(:'cpuCoreCount') && attributes.key?(:'cpu_core_count') self.cpu_core_count = attributes[:'cpu_core_count'] if attributes[:'cpu_core_count'] self.is_auto_scaling_enabled = attributes[:'isAutoScalingEnabled'] unless attributes[:'isAutoScalingEnabled'].nil? raise 'You cannot provide both :isAutoScalingEnabled and :is_auto_scaling_enabled' if attributes.key?(:'isAutoScalingEnabled') && attributes.key?(:'is_auto_scaling_enabled') self.is_auto_scaling_enabled = attributes[:'is_auto_scaling_enabled'] unless attributes[:'is_auto_scaling_enabled'].nil? self.is_public = attributes[:'isPublic'] unless attributes[:'isPublic'].nil? raise 'You cannot provide both :isPublic and :is_public' if attributes.key?(:'isPublic') && attributes.key?(:'is_public') self.is_public = attributes[:'is_public'] unless attributes[:'is_public'].nil? self.public_ip_address = attributes[:'publicIpAddress'] if attributes[:'publicIpAddress'] raise 'You cannot provide both :publicIpAddress and :public_ip_address' if attributes.key?(:'publicIpAddress') && attributes.key?(:'public_ip_address') self.public_ip_address = attributes[:'public_ip_address'] if attributes[:'public_ip_address'] self.private_ip_address = attributes[:'privateIpAddress'] if attributes[:'privateIpAddress'] raise 'You cannot provide both :privateIpAddress and :private_ip_address' if attributes.key?(:'privateIpAddress') && attributes.key?(:'private_ip_address') self.private_ip_address = attributes[:'private_ip_address'] if attributes[:'private_ip_address'] self.deployment_url = attributes[:'deploymentUrl'] if attributes[:'deploymentUrl'] raise 'You cannot provide both :deploymentUrl and :deployment_url' if attributes.key?(:'deploymentUrl') && attributes.key?(:'deployment_url') self.deployment_url = attributes[:'deployment_url'] if attributes[:'deployment_url'] self. = attributes[:'systemTags'] if attributes[:'systemTags'] raise 'You cannot provide both :systemTags and :system_tags' if attributes.key?(:'systemTags') && attributes.key?(:'system_tags') self. = attributes[:'system_tags'] if attributes[:'system_tags'] self.is_latest_version = attributes[:'isLatestVersion'] unless attributes[:'isLatestVersion'].nil? raise 'You cannot provide both :isLatestVersion and :is_latest_version' if attributes.key?(:'isLatestVersion') && attributes.key?(:'is_latest_version') self.is_latest_version = attributes[:'is_latest_version'] unless attributes[:'is_latest_version'].nil? self.time_upgrade_required = attributes[:'timeUpgradeRequired'] if attributes[:'timeUpgradeRequired'] raise 'You cannot provide both :timeUpgradeRequired and :time_upgrade_required' if attributes.key?(:'timeUpgradeRequired') && attributes.key?(:'time_upgrade_required') self.time_upgrade_required = attributes[:'time_upgrade_required'] if attributes[:'time_upgrade_required'] self.deployment_type = attributes[:'deploymentType'] if attributes[:'deploymentType'] raise 'You cannot provide both :deploymentType and :deployment_type' if attributes.key?(:'deploymentType') && attributes.key?(:'deployment_type') self.deployment_type = attributes[:'deployment_type'] if attributes[:'deployment_type'] self.storage_utilization_in_bytes = attributes[:'storageUtilizationInBytes'] if attributes[:'storageUtilizationInBytes'] raise 'You cannot provide both :storageUtilizationInBytes and :storage_utilization_in_bytes' if attributes.key?(:'storageUtilizationInBytes') && attributes.key?(:'storage_utilization_in_bytes') self.storage_utilization_in_bytes = attributes[:'storage_utilization_in_bytes'] if attributes[:'storage_utilization_in_bytes'] self.is_storage_utilization_limit_exceeded = attributes[:'isStorageUtilizationLimitExceeded'] unless attributes[:'isStorageUtilizationLimitExceeded'].nil? raise 'You cannot provide both :isStorageUtilizationLimitExceeded and :is_storage_utilization_limit_exceeded' if attributes.key?(:'isStorageUtilizationLimitExceeded') && attributes.key?(:'is_storage_utilization_limit_exceeded') self.is_storage_utilization_limit_exceeded = attributes[:'is_storage_utilization_limit_exceeded'] unless attributes[:'is_storage_utilization_limit_exceeded'].nil? end |
Instance Attribute Details
#compartment_id ⇒ String
[Required] The OCID of the compartment being referenced.
79 80 81 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 79 def compartment_id @compartment_id end |
#cpu_core_count ⇒ Integer
The Minimum number of OCPUs to be made available for this Deployment.
155 156 157 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 155 def cpu_core_count @cpu_core_count end |
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Tags defined for this resource. Each key is predefined and scoped to a namespace.
Example: {\"foo-namespace\": {\"bar-key\": \"value\"}}
122 123 124 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 122 def @defined_tags end |
#deployment_type ⇒ String
The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
213 214 215 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 213 def deployment_type @deployment_type end |
#deployment_url ⇒ String
The URL of a resource.
181 182 183 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 181 def deployment_url @deployment_url end |
#description ⇒ String
Metadata about this specific object.
74 75 76 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 74 def description @description end |
#display_name ⇒ String
An object's Display Name.
69 70 71 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 69 def display_name @display_name end |
#fqdn ⇒ String
A three-label Fully Qualified Domain Name (FQDN) for a resource.
150 151 152 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 150 def fqdn @fqdn end |
#freeform_tags ⇒ Hash<String, String>
A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only.
Example: {\"bar-key\": \"value\"}
115 116 117 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 115 def @freeform_tags end |
#id ⇒ String
[Required] The OCID of the deployment being referenced.
64 65 66 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 64 def id @id end |
#is_auto_scaling_enabled ⇒ BOOLEAN
Indicates if auto scaling is enabled for the Deployment's CPU core count.
160 161 162 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 160 def is_auto_scaling_enabled @is_auto_scaling_enabled end |
#is_latest_version ⇒ BOOLEAN
Indicates if the resource is the the latest available version.
195 196 197 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 195 def is_latest_version @is_latest_version end |
#is_public ⇒ BOOLEAN
True if this object is publicly available.
165 166 167 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 165 def is_public @is_public end |
#is_storage_utilization_limit_exceeded ⇒ BOOLEAN
Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
223 224 225 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 223 def is_storage_utilization_limit_exceeded @is_storage_utilization_limit_exceeded end |
#license_model ⇒ String
[Required] The Oracle license model that applies to a Deployment.
145 146 147 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 145 def license_model @license_model end |
#lifecycle_details ⇒ String
Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
107 108 109 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 107 def lifecycle_details @lifecycle_details end |
#lifecycle_state ⇒ String
Possible lifecycle states.
96 97 98 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 96 def lifecycle_state @lifecycle_state end |
#lifecycle_sub_state ⇒ String
Possible GGS lifecycle sub-states.
101 102 103 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 101 def lifecycle_sub_state @lifecycle_sub_state end |
#load_balancer_id ⇒ String
The OCID of the loadbalancer in the customer's subnet. The loadbalancer of the public deployment created in the customer subnet.
140 141 142 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 140 def load_balancer_id @load_balancer_id end |
#load_balancer_subnet_id ⇒ String
The OCID of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
134 135 136 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 134 def load_balancer_subnet_id @load_balancer_subnet_id end |
#private_ip_address ⇒ String
The private IP address in the customer's VCN representing the access point for the associated endpoint service in the GoldenGate service VCN.
176 177 178 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 176 def private_ip_address @private_ip_address end |
#public_ip_address ⇒ String
The public IP address representing the access point for the Deployment.
170 171 172 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 170 def public_ip_address @public_ip_address end |
#storage_utilization_in_bytes ⇒ Integer
The amount of storage being utilized (in bytes)
218 219 220 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 218 def storage_utilization_in_bytes @storage_utilization_in_bytes end |
#subnet_id ⇒ String
[Required] The OCID of the subnet of the deployment's private endpoint.
127 128 129 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 127 def subnet_id @subnet_id end |
#system_tags ⇒ Hash<String, Hash<String, Object>>
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags.
Example: {orcl-cloud: {free-tier-retain: true}}
190 191 192 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 190 def @system_tags end |
#time_created ⇒ DateTime
The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z
.
85 86 87 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 85 def time_created @time_created end |
#time_updated ⇒ DateTime
The time the resource was last updated. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z
.
91 92 93 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 91 def time_updated @time_updated end |
#time_upgrade_required ⇒ DateTime
Note: Deprecated: Use timeOfNextMaintenance instead, or related upgrade records to check, when deployment will be forced to upgrade to a newer version. Old description: The date the existing version in use will no longer be considered as usable and an upgrade will be required. This date is typically 6 months after the version was released for use by GGS. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z
.
206 207 208 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 206 def time_upgrade_required @time_upgrade_required end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 226 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'id': :'id', 'display_name': :'displayName', 'description': :'description', 'compartment_id': :'compartmentId', 'time_created': :'timeCreated', 'time_updated': :'timeUpdated', 'lifecycle_state': :'lifecycleState', 'lifecycle_sub_state': :'lifecycleSubState', 'lifecycle_details': :'lifecycleDetails', 'freeform_tags': :'freeformTags', 'defined_tags': :'definedTags', 'subnet_id': :'subnetId', 'load_balancer_subnet_id': :'loadBalancerSubnetId', 'load_balancer_id': :'loadBalancerId', 'license_model': :'licenseModel', 'fqdn': :'fqdn', 'cpu_core_count': :'cpuCoreCount', 'is_auto_scaling_enabled': :'isAutoScalingEnabled', 'is_public': :'isPublic', 'public_ip_address': :'publicIpAddress', 'private_ip_address': :'privateIpAddress', 'deployment_url': :'deploymentUrl', 'system_tags': :'systemTags', 'is_latest_version': :'isLatestVersion', 'time_upgrade_required': :'timeUpgradeRequired', 'deployment_type': :'deploymentType', 'storage_utilization_in_bytes': :'storageUtilizationInBytes', 'is_storage_utilization_limit_exceeded': :'isStorageUtilizationLimitExceeded' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 262 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'id': :'String', 'display_name': :'String', 'description': :'String', 'compartment_id': :'String', 'time_created': :'DateTime', 'time_updated': :'DateTime', 'lifecycle_state': :'String', 'lifecycle_sub_state': :'String', 'lifecycle_details': :'String', 'freeform_tags': :'Hash<String, String>', 'defined_tags': :'Hash<String, Hash<String, Object>>', 'subnet_id': :'String', 'load_balancer_subnet_id': :'String', 'load_balancer_id': :'String', 'license_model': :'String', 'fqdn': :'String', 'cpu_core_count': :'Integer', 'is_auto_scaling_enabled': :'BOOLEAN', 'is_public': :'BOOLEAN', 'public_ip_address': :'String', 'private_ip_address': :'String', 'deployment_url': :'String', 'system_tags': :'Hash<String, Hash<String, Object>>', 'is_latest_version': :'BOOLEAN', 'time_upgrade_required': :'DateTime', 'deployment_type': :'String', 'storage_utilization_in_bytes': :'Integer', 'is_storage_utilization_limit_exceeded': :'BOOLEAN' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 553 def ==(other) return true if equal?(other) self.class == other.class && id == other.id && display_name == other.display_name && description == other.description && compartment_id == other.compartment_id && time_created == other.time_created && time_updated == other.time_updated && lifecycle_state == other.lifecycle_state && lifecycle_sub_state == other.lifecycle_sub_state && lifecycle_details == other.lifecycle_details && == other. && == other. && subnet_id == other.subnet_id && load_balancer_subnet_id == other.load_balancer_subnet_id && load_balancer_id == other.load_balancer_id && license_model == other.license_model && fqdn == other.fqdn && cpu_core_count == other.cpu_core_count && is_auto_scaling_enabled == other.is_auto_scaling_enabled && is_public == other.is_public && public_ip_address == other.public_ip_address && private_ip_address == other.private_ip_address && deployment_url == other.deployment_url && == other. && is_latest_version == other.is_latest_version && time_upgrade_required == other.time_upgrade_required && deployment_type == other.deployment_type && storage_utilization_in_bytes == other.storage_utilization_in_bytes && is_storage_utilization_limit_exceeded == other.is_storage_utilization_limit_exceeded end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 610 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /^Array<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) public_method("#{key}=").call( attributes[self.class.attribute_map[key]] .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) } ) end elsif !attributes[self.class.attribute_map[key]].nil? public_method("#{key}=").call( OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]) ) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(other) ⇒ Boolean
590 591 592 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 590 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
599 600 601 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 599 def hash [id, display_name, description, compartment_id, time_created, time_updated, lifecycle_state, lifecycle_sub_state, lifecycle_details, , , subnet_id, load_balancer_subnet_id, load_balancer_id, license_model, fqdn, cpu_core_count, is_auto_scaling_enabled, is_public, public_ip_address, private_ip_address, deployment_url, , is_latest_version, time_upgrade_required, deployment_type, storage_utilization_in_bytes, is_storage_utilization_limit_exceeded].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
643 644 645 646 647 648 649 650 651 652 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 643 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = public_method(attr).call next if value.nil? && !instance_variable_defined?("@#{attr}") hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
637 638 639 |
# File 'lib/oci/golden_gate/models/deployment_summary.rb', line 637 def to_s to_hash.to_s end |