Skip to content

Commit

Permalink
chore: generated code for commit fb5fdaa. [skip ci]
Browse files Browse the repository at this point in the history
Co-authored-by: Thomas Raffray <Fluf22@users.noreply.github.com>
  • Loading branch information
algolia-bot and Fluf22 committed Sep 6, 2023
1 parent fb5fdaa commit 92a43b8
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 63 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@ export type SourceDocker = {

imageType: DockerImageType;

/**
* The full name of the output file.
*/
outputFile?: string;

/**
* The configuration of the spec.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import kotlinx.serialization.json.*
* @param imageType
* @param configuration The configuration of the spec.
* @param version The version of the image, defaults to `latest`.
* @param outputFile The full name of the output file.
*/
@Serializable
public data class SourceDocker(
Expand All @@ -29,7 +28,4 @@ public data class SourceDocker(

/** The version of the image, defaults to `latest`. */
@SerialName(value = "version") val version: String? = null,

/** The full name of the output file. */
@SerialName(value = "outputFile") val outputFile: String? = null,
) : SourceUpdateInput, SourceInput
Original file line number Diff line number Diff line change
Expand Up @@ -120,22 +120,19 @@ public sealed interface SourceInput {
* @param imageType
* @param configuration The configuration of the spec.
* @param version The version of the image, defaults to `latest`.
* @param outputFile The full name of the output file.
*/
public fun SourceDocker(
registry: DockerRegistry,
image: String,
imageType: DockerImageType,
configuration: JsonObject,
version: String? = null,
outputFile: String? = null,
): SourceDocker = com.algolia.client.model.ingestion.SourceDocker(
registry = registry,
image = image,
imageType = imageType,
configuration = configuration,
version = version,
outputFile = outputFile,
)

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,22 +77,19 @@ public sealed interface SourceUpdateInput {
* @param imageType
* @param configuration The configuration of the spec.
* @param version The version of the image, defaults to `latest`.
* @param outputFile The full name of the output file.
*/
public fun SourceDocker(
registry: DockerRegistry,
image: String,
imageType: DockerImageType,
configuration: JsonObject,
version: String? = null,
outputFile: String? = null,
): SourceDocker = com.algolia.client.model.ingestion.SourceDocker(
registry = registry,
image = image,
imageType = imageType,
configuration = configuration,
version = version,
outputFile = outputFile,
)

/**
Expand Down
4 changes: 0 additions & 4 deletions specs/bundled/ingestion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -994,10 +994,6 @@ components:
example: v2.1.0
imageType:
$ref: '#/components/schemas/DockerImageType'
outputFile:
type: string
description: The full name of the output file.
example: output.json
configuration:
type: object
description: The configuration of the spec.
Expand Down

0 comments on commit 92a43b8

Please sign in to comment.