
Kestra Plugin Set
CertifiedCreate or update an asset
Kestra Plugin Set
Create or update an asset
Upserts an asset for the current tenant with the provided ID, type, display name, description, and metadata.
type: io.kestra.plugin.kestra.ee.assets.SetExamples
Upsert an asset with some metadata.
id: asset_set
namespace: company.team
tasks:
- id: upsert_asset
type: io.kestra.plugin.kestra.ee.assets.Set
namespace: "assets.data"
assetId: "customers_by_country"
assetType: "TABLE"
displayName: "Customers by Country"
assetDescription: "A table showing the number of customers by country."
metadata:
system: "{{ outputs.task.system }}"
database: "my-project"
schema: "analytics"
name: "customers_by_country"
Properties
assetId *Requiredstring
Asset ID
assetType *Requiredstring
Asset type
assetDescription string
Asset description
auth Non-dynamic
Select API authentication
Use either an API token or HTTP Basic (username/password); do not provide both.
io.kestra.plugin.kestra.AbstractKestraTask-Auth
API token for bearer auth
trueAutomatically retrieve credentials from Kestra's configuration if available
The default configuration can be configured globally inside the Kestra configuration file:
- Set
kestra.tasks.sdk.authentication.api-tokento use an API token - Set
kestra.tasks.sdk.authentication.usernameandkestra.tasks.sdk.authentication.passwordfor HTTP basic authentication - Set
kestra.tasks.sdk.authentication.urlto also default the Kestra API endpoint (seekestraUrlabove) The Enterprise edition also provides setting a default configuration at the Namespace or Tenant level by an administrator. Set to false to also opt out of the default URL.
Password for HTTP Basic auth
Username for HTTP Basic auth
displayName string
Asset display name
kestraUrl string
Override Kestra API endpoint
URL used for calls to the Kestra API. When null, falls back to the url configured alongside the default SDK authentication (Namespace or Tenant level, Enterprise edition), then renders {{ kestra.url }} from configuration; if still empty, defaults to http://localhost: 8080. Trailing slashes are stripped before use.
metadata object
Asset metadata
namespace string
Namespace for the asset
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
tenantId string
Override target tenant
Tenant identifier applied to API calls; defaults to the current execution tenant.