Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64633,6 +64633,9 @@ components:
description: The ID of a component whose output is used as input for this destination.
type: string
type: array
tls:
$ref: "#/components/schemas/ObservabilityPipelineTls"
description: Configuration for TLS encryption.
type:
$ref: "#/components/schemas/ObservabilityPipelineCloudPremDestinationType"
required:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ class ObservabilityPipelineCloudPremDestination
# A list of component IDs whose output is used as the `input` for this component.
attr_reader :inputs

# Configuration for enabling TLS encryption between the pipeline component and external services.
attr_accessor :tls

# The destination type. The value should always be `cloud_prem`.
attr_reader :type

Expand All @@ -48,6 +51,7 @@ def self.attribute_map
:'endpoint_url_key' => :'endpoint_url_key',
:'id' => :'id',
:'inputs' => :'inputs',
:'tls' => :'tls',
:'type' => :'type'
}
end
Expand All @@ -60,6 +64,7 @@ def self.openapi_types
:'endpoint_url_key' => :'String',
:'id' => :'String',
:'inputs' => :'Array<String>',
:'tls' => :'ObservabilityPipelineTls',
:'type' => :'ObservabilityPipelineCloudPremDestinationType'
}
end
Expand Down Expand Up @@ -100,6 +105,10 @@ def initialize(attributes = {})
end
end

if attributes.key?(:'tls')
self.tls = attributes[:'tls']
end

if attributes.key?(:'type')
self.type = attributes[:'type']
end
Expand Down Expand Up @@ -175,6 +184,7 @@ def ==(o)
endpoint_url_key == o.endpoint_url_key &&
id == o.id &&
inputs == o.inputs &&
tls == o.tls &&
type == o.type &&
additional_properties == o.additional_properties
end
Expand All @@ -183,7 +193,7 @@ def ==(o)
# @return [Integer] Hash code
# @!visibility private
def hash
[buffer, endpoint_url_key, id, inputs, type, additional_properties].hash
[buffer, endpoint_url_key, id, inputs, tls, type, additional_properties].hash
end
end
end
Loading