swagger: '2.0' info: description: Argo Workflows is an open source container-native workflow engine for orchestrating parallel jobs on Kubernetes. For more information, please see https://argo-workflows.readthedocs.io/en/latest/ title: Argo Workflows ArchivedWorkflowService EventService API version: 3.6.0 host: localhost:2746 schemes: - http - https consumes: - application/json produces: - application/json security: - BearerToken: [] tags: - name: EventService paths: /api/v1/events/{namespace}/{discriminator}: post: tags: - EventService operationId: EventService_ReceiveEvent parameters: - type: string description: 'The namespace for the io.argoproj.workflow.v1alpha1. This can be empty if the client has cluster scoped permissions. If empty, then the event is "broadcast" to workflow event binding in all namespaces.' name: namespace in: path required: true - type: string description: 'Optional discriminator for the io.argoproj.workflow.v1alpha1. This should almost always be empty. Used for edge-cases where the event payload alone is not provide enough information to discriminate the event. This MUST NOT be used as security mechanism, e.g. to allow two clients to use the same access token, or to support webhooks on unsecured server. Instead, use access tokens. This is made available as `discriminator` in the event binding selector (`/spec/event/selector)`' name: discriminator in: path required: true - description: The event itself can be any data. name: body in: body required: true schema: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Item' responses: '200': description: A successful response. schema: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.EventResponse' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK /api/v1/workflow-event-bindings/{namespace}: get: tags: - EventService operationId: EventService_ListWorkflowEventBindings parameters: - type: string name: namespace in: path required: true - type: string description: 'A selector to restrict the list of returned objects by their labels. Defaults to everything. +optional.' name: listOptions.labelSelector in: query - type: string description: 'A selector to restrict the list of returned objects by their fields. Defaults to everything. +optional.' name: listOptions.fieldSelector in: query - type: boolean description: 'Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. +optional.' name: listOptions.watch in: query - type: boolean description: 'allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server''s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. +optional.' name: listOptions.allowWatchBookmarks in: query - type: string description: 'resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset +optional' name: listOptions.resourceVersion in: query - type: string description: 'resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset +optional' name: listOptions.resourceVersionMatch in: query - type: string format: int64 description: 'Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. +optional.' name: listOptions.timeoutSeconds in: query - type: string format: int64 description: 'limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.' name: listOptions.limit in: query - type: string description: 'The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.' name: listOptions.continue in: query - type: boolean description: "`sendInitialEvents=true` may be set together with `watch=true`.\nIn that case, the watch stream will begin with synthetic events to\nproduce the current state of objects in the collection. Once all such\nevents have been sent, a synthetic \"Bookmark\" event will be sent.\nThe bookmark will report the ResourceVersion (RV) corresponding to the\nset of objects, and be marked with `\"io.k8s.initial-events-end\": \"true\"` annotation.\nAfterwards, the watch stream will proceed as usual, sending watch events\ncorresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch`\noption to also be set. The semantic of the watch request is as following:\n- `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward\ncompatibility reasons) and to false otherwise.\n+optional" name: listOptions.sendInitialEvents in: query responses: '200': description: A successful response. schema: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowEventBindingList' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK definitions: io.argoproj.workflow.v1alpha1.ArtifactoryArtifact: description: ArtifactoryArtifact is the location of an artifactory artifact type: object required: - url properties: passwordSecret: description: PasswordSecret is the secret selector to the repository password $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' url: description: URL of the artifact type: string usernameSecret: description: UsernameSecret is the secret selector to the repository username $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.argoproj.workflow.v1alpha1.Submit: type: object required: - workflowTemplateRef properties: arguments: description: Arguments extracted from the event and then set as arguments to the workflow created. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Arguments' metadata: description: Metadata optional means to customize select fields of the workflow metadata $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta' workflowTemplateRef: description: WorkflowTemplateRef the workflow template to submit $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowTemplateRef' io.argoproj.workflow.v1alpha1.OSSLifecycleRule: description: OSSLifecycleRule specifies how to manage bucket's lifecycle type: object properties: markDeletionAfterDays: description: MarkDeletionAfterDays is the number of days before we delete objects in the bucket type: integer markInfrequentAccessAfterDays: description: MarkInfrequentAccessAfterDays is the number of days before we convert the objects in the bucket to Infrequent Access (IA) storage type type: integer io.argoproj.workflow.v1alpha1.WorkflowTemplateRef: description: WorkflowTemplateRef is a reference to a WorkflowTemplate resource. type: object properties: clusterScope: description: ClusterScope indicates the referred template is cluster scoped (i.e. a ClusterWorkflowTemplate). type: boolean name: description: Name is the resource name of the workflow template. type: string io.argoproj.workflow.v1alpha1.PluginArtifact: description: PluginArtifact is the location of a plugin artifact type: object required: - key properties: configuration: description: Configuration is the plugin defined configuration for the artifact driver plugin type: string connectionTimeoutSeconds: description: ConnectionTimeoutSeconds is the timeout for the artifact driver connection, overriding the driver's timeout type: integer key: description: Key is the path in the artifact repository where the artifact resides type: string name: description: Name is the name of the artifact driver plugin type: string io.argoproj.workflow.v1alpha1.GCSArtifact: description: GCSArtifact is the location of a GCS artifact type: object required: - key properties: bucket: description: Bucket is the name of the bucket type: string key: description: Key is the path in the bucket where the artifact resides type: string serviceAccountKeySecret: description: ServiceAccountKeySecret is the secret selector to the bucket's service account key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.argoproj.workflow.v1alpha1.Metadata: description: Metadata is pod metadata. type: object properties: annotations: type: object additionalProperties: type: string labels: type: object additionalProperties: type: string io.argoproj.workflow.v1alpha1.ZipStrategy: description: ZipStrategy will unzip zipped input artifacts type: object io.argoproj.workflow.v1alpha1.OAuth2Auth: description: OAuth2Auth holds all information for client authentication via OAuth2 tokens type: object properties: clientIDSecret: $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' clientSecretSecret: $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' endpointParams: type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.OAuth2EndpointParam' scopes: type: array items: type: string tokenURLSecret: $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.argoproj.workflow.v1alpha1.Parameter: description: Parameter indicate a passed string parameter to a service template with an optional default value type: object required: - name properties: default: description: Default is the default value to use for an input parameter if a value was not supplied type: string description: description: Description is the parameter description type: string enum: description: Enum holds a list of string values to choose from, for the actual value of the parameter type: array items: type: string globalName: description: GlobalName exports an output parameter to the global scope, making it available as '{{io.argoproj.workflow.v1alpha1.outputs.parameters.XXXX}} and in workflow.status.outputs.parameters type: string name: description: Name is the parameter name type: string value: description: Value is the literal value to use for the parameter. If specified in the context of an input parameter, any passed values take precedence over the specified value type: string valueFrom: description: ValueFrom is the source for the output parameter's value $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ValueFrom' io.argoproj.workflow.v1alpha1.ValueFrom: description: ValueFrom describes a location in which to obtain the value to a parameter type: object properties: configMapKeyRef: description: ConfigMapKeyRef is configmap selector for input parameter configuration $ref: '#/definitions/io.k8s.api.core.v1.ConfigMapKeySelector' default: description: Default specifies a value to be used if retrieving the value from the specified source fails type: string event: description: Selector (https://github.com/expr-lang/expr) that is evaluated against the event to get the value of the parameter. E.g. `payload.message` type: string expression: description: Expression, if defined, is evaluated to specify the value for the parameter type: string jqFilter: description: JQFilter expression against the resource object in resource templates type: string jsonPath: description: JSONPath of a resource to retrieve an output parameter value from in resource templates type: string parameter: description: Parameter reference to a step or dag task in which to retrieve an output parameter value from (e.g. '{{steps.mystep.outputs.myparam}}') type: string path: description: Path in the container to retrieve an output parameter value from in container templates type: string supplied: description: Supplied value to be filled in directly, either through the CLI, API, etc. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.SuppliedValueFrom' io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry: description: ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to. type: object properties: apiVersion: description: APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted. type: string fieldsType: description: 'FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"' type: string fieldsV1: description: FieldsV1 holds the first JSON version format as described in the "FieldsV1" type. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1' manager: description: Manager is an identifier of the workflow managing these fields. type: string operation: description: Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'. type: string subresource: description: Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource. type: string time: description: Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time' io.argoproj.workflow.v1alpha1.AzureArtifact: description: AzureArtifact is the location of an Azure Storage artifact type: object required: - endpoint - container - blob properties: accountKeySecret: description: AccountKeySecret is the secret selector to the Azure Blob Storage account access key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' blob: description: Blob is the blob name (i.e., path) in the container where the artifact resides type: string container: description: Container is the container where resources will be stored type: string endpoint: description: Endpoint is the service url associated with an account. It is most likely "https://.blob.core.windows.net" type: string useSDKCreds: description: UseSDKCreds tells the driver to figure out credentials based on sdk defaults. type: boolean io.argoproj.workflow.v1alpha1.GitArtifact: description: GitArtifact is the location of a git artifact type: object required: - repo properties: branch: description: Branch is the branch to fetch when `SingleBranch` is enabled type: string depth: description: Depth specifies clones/fetches should be shallow and include the given number of commits from the branch tip type: integer disableSubmodules: description: DisableSubmodules disables submodules during git clone type: boolean fetch: description: Fetch specifies a number of refs that should be fetched before checkout type: array items: type: string insecureIgnoreHostKey: description: InsecureIgnoreHostKey disables SSH strict host key checking during git clone type: boolean insecureSkipTLS: description: InsecureSkipTLS disables server certificate verification resulting in insecure HTTPS connections type: boolean passwordSecret: description: PasswordSecret is the secret selector to the repository password $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' repo: description: Repo is the git repository type: string revision: description: Revision is the git commit, tag, branch to checkout type: string singleBranch: description: SingleBranch enables single branch clone, using the `branch` parameter type: boolean sshPrivateKeySecret: description: SSHPrivateKeySecret is the secret selector to the repository ssh private key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' usernameSecret: description: UsernameSecret is the secret selector to the repository username $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.argoproj.workflow.v1alpha1.OAuth2EndpointParam: description: OAuth2EndpointParam is an optional field that should be sent in the OAuth request. type: object required: - key properties: key: description: Name is the header name type: string value: description: Value is the literal value to use for the header type: string io.argoproj.workflow.v1alpha1.WorkflowEventBindingList: description: WorkflowEventBindingList is list of event resources type: object required: - metadata - items properties: apiVersion: description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.io.k8s.community/contributors/devel/sig-architecture/api-conventions.md#resources' type: string items: type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowEventBinding' kind: description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.io.k8s.community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' type: string metadata: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta' io.argoproj.workflow.v1alpha1.Arguments: description: Arguments to a template type: object properties: artifacts: description: Artifacts is the list of artifacts to pass to the template or workflow type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Artifact' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge parameters: description: Parameters is the list of parameters to pass to the template or workflow type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Parameter' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge io.k8s.api.core.v1.ConfigMapKeySelector: description: Selects a key from a ConfigMap. type: object required: - key properties: key: description: The key to select. type: string name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: Specify whether the ConfigMap or its key must be defined type: boolean x-kubernetes-map-type: atomic io.argoproj.workflow.v1alpha1.WorkflowEventBindingSpec: type: object required: - event properties: event: description: Event is the event to bind to $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Event' submit: description: Submit is the workflow template to submit $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Submit' io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1: description: 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format. Each key is either a ''.'' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: ''f:'', where is the name of a field in a struct, or key in a map ''v:'', where is the exact json formatted value of a list item ''i:'', where is position of a item in a list ''k:'', where is a map of a list item''s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set. The exact format is defined in sigs.k8s.io/structured-merge-diff' type: object io.argoproj.workflow.v1alpha1.S3EncryptionOptions: description: S3EncryptionOptions used to determine encryption options during s3 operations type: object properties: enableEncryption: description: EnableEncryption tells the driver to encrypt objects if set to true. If kmsKeyId and serverSideCustomerKeySecret are not set, SSE-S3 will be used type: boolean kmsEncryptionContext: description: KmsEncryptionContext is a json blob that contains an encryption context. See https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context for more information type: string kmsKeyId: description: KMSKeyId tells the driver to encrypt the object using the specified KMS Key. type: string serverSideCustomerKeySecret: description: ServerSideCustomerKeySecret tells the driver to encrypt the output artifacts using SSE-C with the specified secret. $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta: description: ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}. type: object properties: continue: description: continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message. type: string remainingItemCount: description: remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact. type: integer resourceVersion: description: 'String that identifies the server''s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' type: string selfLink: description: 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.' type: string io.argoproj.workflow.v1alpha1.Item: description: Item expands a single workflow step into multiple parallel steps The value of Item can be a map, string, bool, or number io.argoproj.workflow.v1alpha1.HTTPAuth: type: object properties: basicAuth: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.BasicAuth' clientCert: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ClientCertAuth' oauth2: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.OAuth2Auth' io.argoproj.workflow.v1alpha1.ArtifactGC: description: ArtifactGC describes how to delete artifacts from completed Workflows - this is embedded into the WorkflowLevelArtifactGC, and also used for individual Artifacts to override that as needed type: object properties: podMetadata: description: PodMetadata is an optional field for specifying the Labels and Annotations that should be assigned to the Pod doing the deletion $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Metadata' serviceAccountName: description: ServiceAccountName is an optional field for specifying the Service Account that should be assigned to the Pod doing the deletion type: string strategy: description: Strategy is the strategy to use. type: string io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta: description: ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. type: object properties: annotations: description: 'Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations' type: object additionalProperties: type: string creationTimestamp: description: 'CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata' $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time' deletionGracePeriodSeconds: description: Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only. type: integer deletionTimestamp: description: 'DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata' $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time' finalizers: description: Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list. type: array items: type: string x-kubernetes-list-type: set x-kubernetes-patch-strategy: merge generateName: description: 'GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. If this field is specified and the generated name exists, the server will return a 409. Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency' type: string generation: description: A sequence number representing a specific generation of the desired state. Populated by the system. Read-only. type: integer labels: description: 'Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels' type: object additionalProperties: type: string managedFields: description: ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object. type: array items: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry' x-kubernetes-list-type: atomic name: description: 'Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names' type: string namespace: description: 'Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces' type: string ownerReferences: description: List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller. type: array items: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference' x-kubernetes-list-map-keys: - uid x-kubernetes-list-type: map x-kubernetes-patch-merge-key: uid x-kubernetes-patch-strategy: merge resourceVersion: description: 'An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' type: string selfLink: description: 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.' type: string uid: description: 'UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids' type: string io.k8s.apimachinery.pkg.apis.meta.v1.Time: description: Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers. type: string format: date-time google.protobuf.Any: type: object properties: type_url: type: string value: type: string format: byte io.argoproj.workflow.v1alpha1.TarStrategy: description: TarStrategy will tar and gzip the file or directory when saving type: object properties: compressionLevel: description: CompressionLevel specifies the gzip compression level to use for the artifact. Defaults to gzip.DefaultCompression. type: integer io.argoproj.workflow.v1alpha1.RawArtifact: description: RawArtifact allows raw string content to be placed as an artifact in a container type: object required: - data properties: data: description: Data is the string contents of the artifact type: string io.k8s.api.core.v1.SecretKeySelector: description: SecretKeySelector selects a key of a Secret. type: object required: - key properties: key: description: The key of the secret to select from. Must be a valid secret key. type: string name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: Specify whether the Secret or its key must be defined type: boolean x-kubernetes-map-type: atomic io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference: description: OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field. type: object required: - apiVersion - kind - name - uid properties: apiVersion: description: API version of the referent. type: string blockOwnerDeletion: description: If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned. type: boolean controller: description: If true, this reference points to the managing controller. type: boolean kind: description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' type: string name: description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names' type: string uid: description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids' type: string x-kubernetes-map-type: atomic io.argoproj.workflow.v1alpha1.SuppliedValueFrom: description: SuppliedValueFrom is a placeholder for a value to be filled in directly, either through the CLI, API, etc. type: object io.argoproj.workflow.v1alpha1.WorkflowEventBinding: description: WorkflowEventBinding is the definition of an event resource type: object required: - metadata - spec properties: apiVersion: description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.io.k8s.community/contributors/devel/sig-architecture/api-conventions.md#resources' type: string kind: description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.io.k8s.community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' type: string metadata: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta' spec: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowEventBindingSpec' io.argoproj.workflow.v1alpha1.HDFSArtifact: description: HDFSArtifact is the location of an HDFS artifact type: object required: - path properties: addresses: description: Addresses is accessible addresses of HDFS name nodes type: array items: type: string dataTransferProtection: description: DataTransferProtection is the protection level for HDFS data transfer. It corresponds to the dfs.data.transfer.protection configuration in HDFS. type: string force: description: Force copies a file forcibly even if it exists type: boolean hdfsUser: description: HDFSUser is the user to access HDFS file system. It is ignored if either ccache or keytab is used. type: string krbCCacheSecret: description: KrbCCacheSecret is the secret selector for Kerberos ccache Either ccache or keytab can be set to use Kerberos. $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' krbConfigConfigMap: description: KrbConfig is the configmap selector for Kerberos config as string It must be set if either ccache or keytab is used. $ref: '#/definitions/io.k8s.api.core.v1.ConfigMapKeySelector' krbKeytabSecret: description: KrbKeytabSecret is the secret selector for Kerberos keytab Either ccache or keytab can be set to use Kerberos. $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' krbRealm: description: KrbRealm is the Kerberos realm used with Kerberos keytab It must be set if keytab is used. type: string krbServicePrincipalName: description: KrbServicePrincipalName is the principal name of Kerberos service It must be set if either ccache or keytab is used. type: string krbUsername: description: KrbUsername is the Kerberos username used with Kerberos keytab It must be set if keytab is used. type: string path: description: Path is a file path in HDFS type: string io.argoproj.workflow.v1alpha1.Artifact: description: Artifact indicates an artifact to place at a specified path type: object required: - name properties: archive: description: Archive controls how the artifact will be saved to the artifact repository. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ArchiveStrategy' archiveLogs: description: ArchiveLogs indicates if the container logs should be archived type: boolean artifactGC: description: ArtifactGC describes the strategy to use when to deleting an artifact from completed or deleted workflows $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ArtifactGC' artifactory: description: Artifactory contains artifactory artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ArtifactoryArtifact' azure: description: Azure contains Azure Storage artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.AzureArtifact' deleted: description: Has this been deleted? type: boolean from: description: From allows an artifact to reference an artifact from a previous step type: string fromExpression: description: FromExpression, if defined, is evaluated to specify the value for the artifact type: string gcs: description: GCS contains GCS artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.GCSArtifact' git: description: Git contains git artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.GitArtifact' globalName: description: GlobalName exports an output artifact to the global scope, making it available as '{{io.argoproj.workflow.v1alpha1.outputs.artifacts.XXXX}} and in workflow.status.outputs.artifacts type: string hdfs: description: HDFS contains HDFS artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.HDFSArtifact' http: description: HTTP contains HTTP artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.HTTPArtifact' mode: description: mode bits to use on this file, must be a value between 0 and 0777. Set when loading input artifacts. It is recommended to set the mode value to ensure the artifact has the expected permissions in your container. type: integer name: description: name of the artifact. must be unique within a template's inputs/outputs. type: string optional: description: Make Artifacts optional, if Artifacts doesn't generate or exist type: boolean oss: description: OSS contains OSS artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.OSSArtifact' path: description: Path is the container path to the artifact type: string plugin: description: Plugin contains plugin artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.PluginArtifact' raw: description: Raw contains raw artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.RawArtifact' recurseMode: description: If mode is set, apply the permission recursively into the artifact if it is a folder type: boolean s3: description: S3 contains S3 artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.S3Artifact' subPath: description: SubPath allows an artifact to be sourced from a subpath within the specified source type: string io.argoproj.workflow.v1alpha1.EventResponse: type: object io.argoproj.workflow.v1alpha1.HTTPArtifact: description: HTTPArtifact allows a file served on HTTP to be placed as an input artifact in a container type: object required: - url properties: auth: description: Auth contains information for client authentication $ref: '#/definitions/io.argoproj.workflow.v1alpha1.HTTPAuth' headers: description: Headers are an optional list of headers to send with HTTP requests for artifacts type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Header' url: description: URL of the artifact type: string io.argoproj.workflow.v1alpha1.BasicAuth: description: BasicAuth describes the secret selectors required for basic authentication type: object properties: passwordSecret: description: PasswordSecret is the secret selector to the repository password $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' usernameSecret: description: UsernameSecret is the secret selector to the repository username $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.argoproj.workflow.v1alpha1.Event: type: object required: - selector properties: selector: description: Selector (https://github.com/expr-lang/expr) that we must must match the io.argoproj.workflow.v1alpha1. E.g. `payload.message == "test"` type: string io.argoproj.workflow.v1alpha1.NoneStrategy: description: NoneStrategy indicates to skip tar process and upload the files or directory tree as independent files. Note that if the artifact is a directory, the artifact driver must support the ability to save/load the directory appropriately. type: object io.argoproj.workflow.v1alpha1.CreateS3BucketOptions: description: CreateS3BucketOptions options used to determine automatic automatic bucket-creation process type: object properties: objectLocking: description: ObjectLocking Enable object locking type: boolean io.argoproj.workflow.v1alpha1.OSSArtifact: description: OSSArtifact is the location of an Alibaba Cloud OSS artifact type: object required: - key properties: accessKeySecret: description: AccessKeySecret is the secret selector to the bucket's access key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' bucket: description: Bucket is the name of the bucket type: string createBucketIfNotPresent: description: CreateBucketIfNotPresent tells the driver to attempt to create the OSS bucket for output artifacts, if it doesn't exist type: boolean endpoint: description: Endpoint is the hostname of the bucket endpoint type: string key: description: Key is the path in the bucket where the artifact resides type: string lifecycleRule: description: LifecycleRule specifies how to manage bucket's lifecycle $ref: '#/definitions/io.argoproj.workflow.v1alpha1.OSSLifecycleRule' secretKeySecret: description: SecretKeySecret is the secret selector to the bucket's secret key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' securityToken: description: 'SecurityToken is the user''s temporary security token. For more details, check out: https://www.alibabacloud.com/help/doc-detail/100624.htm' type: string useSDKCreds: description: UseSDKCreds tells the driver to figure out credentials based on sdk defaults. type: boolean grpc.gateway.runtime.Error: type: object properties: code: type: integer details: type: array items: $ref: '#/definitions/google.protobuf.Any' error: type: string message: type: string io.argoproj.workflow.v1alpha1.S3Artifact: description: S3Artifact is the location of an S3 artifact type: object properties: accessKeySecret: description: AccessKeySecret is the secret selector to the bucket's access key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' bucket: description: Bucket is the name of the bucket type: string caSecret: description: CASecret specifies the secret that contains the CA, used to verify the TLS connection $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' createBucketIfNotPresent: description: CreateBucketIfNotPresent tells the driver to attempt to create the S3 bucket for output artifacts, if it doesn't exist. Setting Enabled Encryption will apply either SSE-S3 to the bucket if KmsKeyId is not set or SSE-KMS if it is. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.CreateS3BucketOptions' encryptionOptions: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.S3EncryptionOptions' endpoint: description: Endpoint is the hostname of the bucket endpoint type: string insecure: description: Insecure will connect to the service with TLS type: boolean key: description: Key is the key in the bucket where the artifact resides type: string region: description: Region contains the optional bucket region type: string roleARN: description: RoleARN is the Amazon Resource Name (ARN) of the role to assume. type: string secretKeySecret: description: SecretKeySecret is the secret selector to the bucket's secret key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' sessionTokenSecret: description: SessionTokenSecret is used for ephemeral credentials like an IAM assume role or S3 access grant $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' useSDKCreds: description: UseSDKCreds tells the driver to figure out credentials based on sdk defaults. type: boolean io.argoproj.workflow.v1alpha1.ClientCertAuth: description: ClientCertAuth holds necessary information for client authentication via certificates type: object properties: clientCertSecret: $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' clientKeySecret: $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.argoproj.workflow.v1alpha1.ArchiveStrategy: description: ArchiveStrategy describes how to archive files/directory when saving artifacts type: object properties: none: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.NoneStrategy' tar: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.TarStrategy' zip: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ZipStrategy' io.argoproj.workflow.v1alpha1.Header: description: Header indicate a key-value request header to be used when fetching artifacts over HTTP type: object required: - name - value properties: name: description: Name is the header name type: string value: description: Value is the literal value to use for the header type: string securityDefinitions: BearerToken: type: apiKey in: header name: Authorization description: JWT Bearer token