Class: OCI::DataScience::Models::ModelDeployWorkloadConfigurationDetails

Inherits:
WorkloadConfigurationDetails show all
Defined in:
lib/oci/data_science/models/model_deploy_workload_configuration_details.rb

Overview

The model deployment workload configuration.

Constant Summary

Constants inherited from WorkloadConfigurationDetails

WorkloadConfigurationDetails::WORKLOAD_TYPE_ENUM

Instance Attribute Summary collapse

Attributes inherited from WorkloadConfigurationDetails

#workload_type

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from WorkloadConfigurationDetails

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ ModelDeployWorkloadConfigurationDetails

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash

Options Hash (attributes):

  • :cmd (String)

    The value to assign to the #cmd property

  • :server_port (Integer)

    The value to assign to the #server_port property

  • :health_check_port (Integer)

    The value to assign to the #health_check_port property

  • :additional_configurations (Hash<String, String>)

    The value to assign to the #additional_configurations property



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# File 'lib/oci/data_science/models/model_deploy_workload_configuration_details.rb', line 71

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  attributes['workloadType'] = 'MODEL_DEPLOYMENT'

  super(attributes)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  self.cmd = attributes[:'cmd'] if attributes[:'cmd']

  self.server_port = attributes[:'serverPort'] if attributes[:'serverPort']

  raise 'You cannot provide both :serverPort and :server_port' if attributes.key?(:'serverPort') && attributes.key?(:'server_port')

  self.server_port = attributes[:'server_port'] if attributes[:'server_port']

  self.health_check_port = attributes[:'healthCheckPort'] if attributes[:'healthCheckPort']

  raise 'You cannot provide both :healthCheckPort and :health_check_port' if attributes.key?(:'healthCheckPort') && attributes.key?(:'health_check_port')

  self.health_check_port = attributes[:'health_check_port'] if attributes[:'health_check_port']

  self.additional_configurations = attributes[:'additionalConfigurations'] if attributes[:'additionalConfigurations']

  raise 'You cannot provide both :additionalConfigurations and :additional_configurations' if attributes.key?(:'additionalConfigurations') && attributes.key?(:'additional_configurations')

  self.additional_configurations = attributes[:'additional_configurations'] if attributes[:'additional_configurations']
end

Instance Attribute Details

#additional_configurationsHash<String, String>

The additional configurations

Returns:

  • (Hash<String, String>)


33
34
35
# File 'lib/oci/data_science/models/model_deploy_workload_configuration_details.rb', line 33

def additional_configurations
  @additional_configurations
end

#cmdString

[Required] The container image run CMD as a list of strings. Use CMD as arguments to the ENTRYPOINT or the only command to run in the absence of an ENTRYPOINT. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes.

Returns:

  • (String)


17
18
19
# File 'lib/oci/data_science/models/model_deploy_workload_configuration_details.rb', line 17

def cmd
  @cmd
end

#health_check_portInteger

[Required] The port on which the container HEALTHCHECK would listen. The port can be anything between 1024 and 65535. The following ports cannot be used 24224, 8446, 8447.

Returns:

  • (Integer)


29
30
31
# File 'lib/oci/data_science/models/model_deploy_workload_configuration_details.rb', line 29

def health_check_port
  @health_check_port
end

#server_portInteger

[Required] The port on which the web server serving the inference is running. The port can be anything between 1024 and 65535. The following ports cannot be used 24224, 8446, 8447.

Returns:

  • (Integer)


23
24
25
# File 'lib/oci/data_science/models/model_deploy_workload_configuration_details.rb', line 23

def server_port
  @server_port
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



36
37
38
39
40
41
42
43
44
45
46
# File 'lib/oci/data_science/models/model_deploy_workload_configuration_details.rb', line 36

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'workload_type': :'workloadType',
    'cmd': :'cmd',
    'server_port': :'serverPort',
    'health_check_port': :'healthCheckPort',
    'additional_configurations': :'additionalConfigurations'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



49
50
51
52
53
54
55
56
57
58
59
# File 'lib/oci/data_science/models/model_deploy_workload_configuration_details.rb', line 49

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'workload_type': :'String',
    'cmd': :'String',
    'server_port': :'Integer',
    'health_check_port': :'Integer',
    'additional_configurations': :'Hash<String, String>'
    # rubocop:enable Style/SymbolLiteral
  }
end

Instance Method Details

#==(other) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other (Object)

    the other object to be compared



109
110
111
112
113
114
115
116
117
118
# File 'lib/oci/data_science/models/model_deploy_workload_configuration_details.rb', line 109

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    workload_type == other.workload_type &&
    cmd == other.cmd &&
    server_port == other.server_port &&
    health_check_port == other.health_check_port &&
    additional_configurations == other.additional_configurations
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# File 'lib/oci/data_science/models/model_deploy_workload_configuration_details.rb', line 143

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

Parameters:

  • other (Object)

    the other object to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


123
124
125
# File 'lib/oci/data_science/models/model_deploy_workload_configuration_details.rb', line 123

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



132
133
134
# File 'lib/oci/data_science/models/model_deploy_workload_configuration_details.rb', line 132

def hash
  [workload_type, cmd, server_port, health_check_port, additional_configurations].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



176
177
178
179
180
181
182
183
184
185
# File 'lib/oci/data_science/models/model_deploy_workload_configuration_details.rb', line 176

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_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



170
171
172
# File 'lib/oci/data_science/models/model_deploy_workload_configuration_details.rb', line 170

def to_s
  to_hash.to_s
end