Class: Vellum::SlimDeploymentRead

Inherits:
Object
  • Object
show all
Defined in:
lib/vellum_ai/types/slim_deployment_read.rb

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id:, created:, label:, name:, status: OMIT, environment: OMIT, last_deployed_on:, input_variables:, description: OMIT, additional_properties: nil) ⇒ Vellum::SlimDeploymentRead

Parameters:

  • last_deployed_on (DateTime)
  • input_variables (Array<Vellum::VellumVariable>)
  • description (String) (defaults to: OMIT)

    A human-readable description of the deployment

  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# File 'lib/vellum_ai/types/slim_deployment_read.rb', line 59

def initialize(id:, created:, label:, name:, status: OMIT, environment: OMIT, last_deployed_on:, input_variables:, description: OMIT, additional_properties: nil)
  @id = id
  @created = created
  @label = label
  @name = name
  @status = status if status != OMIT
  @environment = environment if environment != OMIT
  @last_deployed_on = last_deployed_on
  @input_variables = input_variables
  @description = description if description != OMIT
  @additional_properties = additional_properties
  @_field_set = { "id": id, "created": created, "label": label, "name": name, "status": status, "environment": environment, "last_deployed_on": last_deployed_on, "input_variables": input_variables, "description": description }.reject do | _k, v |
  v == OMIT
end
end

Instance Attribute Details

#additional_propertiesOpenStruct (readonly)

Returns Additional properties unmapped to the current class definition.

Returns:

  • (OpenStruct)

    Additional properties unmapped to the current class definition



36
37
38
# File 'lib/vellum_ai/types/slim_deployment_read.rb', line 36

def additional_properties
  @additional_properties
end

#createdDateTime (readonly)

Returns:

  • (DateTime)


15
16
17
# File 'lib/vellum_ai/types/slim_deployment_read.rb', line 15

def created
  @created
end

#descriptionString (readonly)

Returns A human-readable description of the deployment.

Returns:

  • (String)

    A human-readable description of the deployment



34
35
36
# File 'lib/vellum_ai/types/slim_deployment_read.rb', line 34

def description
  @description
end

#environmentObject (readonly)

  • ‘PRODUCTION` - Production



28
29
30
# File 'lib/vellum_ai/types/slim_deployment_read.rb', line 28

def environment
  @environment
end

#idString (readonly)

Returns:

  • (String)


13
14
15
# File 'lib/vellum_ai/types/slim_deployment_read.rb', line 13

def id
  @id
end

#input_variablesArray<Vellum::VellumVariable> (readonly)

Returns:



32
33
34
# File 'lib/vellum_ai/types/slim_deployment_read.rb', line 32

def input_variables
  @input_variables
end

#labelString (readonly)

Returns A human-readable label for the deployment.

Returns:

  • (String)

    A human-readable label for the deployment



17
18
19
# File 'lib/vellum_ai/types/slim_deployment_read.rb', line 17

def label
  @label
end

#last_deployed_onDateTime (readonly)

Returns:

  • (DateTime)


30
31
32
# File 'lib/vellum_ai/types/slim_deployment_read.rb', line 30

def last_deployed_on
  @last_deployed_on
end

#nameString (readonly)

Returns A name that uniquely identifies this deployment within its workspace.

Returns:

  • (String)

    A name that uniquely identifies this deployment within its workspace



19
20
21
# File 'lib/vellum_ai/types/slim_deployment_read.rb', line 19

def name
  @name
end

#statusObject (readonly)

  • ‘ARCHIVED` - Archived



23
24
25
# File 'lib/vellum_ai/types/slim_deployment_read.rb', line 23

def status
  @status
end

Class Method Details

.from_json(json_object:) ⇒ Vellum::SlimDeploymentRead

Parameters:

  • json_object (String)

Returns:



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# File 'lib/vellum_ai/types/slim_deployment_read.rb', line 78

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  parsed_json = JSON.parse(json_object)
  id = parsed_json["id"]
  created = unless parsed_json["created"].nil?
  DateTime.parse(parsed_json["created"])
else
  nil
end
  label = parsed_json["label"]
  name = parsed_json["name"]
  status = parsed_json["status"]
  environment = parsed_json["environment"]
  last_deployed_on = unless parsed_json["last_deployed_on"].nil?
  DateTime.parse(parsed_json["last_deployed_on"])
else
  nil
end
  input_variables = parsed_json["input_variables"]&.map do | item |
  item = item.to_json
  Vellum::VellumVariable.from_json(json_object: item)
end
  description = parsed_json["description"]
  new(
    id: id,
    created: created,
    label: label,
    name: name,
    status: status,
    environment: environment,
    last_deployed_on: last_deployed_on,
    input_variables: input_variables,
    description: description,
    additional_properties: struct
  )
end

.validate_raw(obj:) ⇒ Void

Parameters:

  • obj (Object)

Returns:

  • (Void)


126
127
128
129
130
131
132
133
134
135
136
# File 'lib/vellum_ai/types/slim_deployment_read.rb', line 126

def self.validate_raw(obj:)
  obj.id.is_a?(String) != false || raise("Passed value for field obj.id is not the expected type, validation failed.")
  obj.created.is_a?(DateTime) != false || raise("Passed value for field obj.created is not the expected type, validation failed.")
  obj.label.is_a?(String) != false || raise("Passed value for field obj.label is not the expected type, validation failed.")
  obj.name.is_a?(String) != false || raise("Passed value for field obj.name is not the expected type, validation failed.")
  obj.status&.is_a?(Vellum::EntityStatus) != false || raise("Passed value for field obj.status is not the expected type, validation failed.")
  obj.environment&.is_a?(Vellum::EnvironmentEnum) != false || raise("Passed value for field obj.environment is not the expected type, validation failed.")
  obj.last_deployed_on.is_a?(DateTime) != false || raise("Passed value for field obj.last_deployed_on is not the expected type, validation failed.")
  obj.input_variables.is_a?(Array) != false || raise("Passed value for field obj.input_variables is not the expected type, validation failed.")
  obj.description&.is_a?(String) != false || raise("Passed value for field obj.description is not the expected type, validation failed.")
end

Instance Method Details

#to_jsonString

Returns:

  • (String)


117
118
119
# File 'lib/vellum_ai/types/slim_deployment_read.rb', line 117

def to_json
  @_field_set&.to_json
end