Files
windmill/fixtures/cli-sync/nextcloud.resource-type.yaml
T
2026-05-26 07:59:57 +00:00

40 lines
945 B
YAML

description: Nextcloud instance credentials
format_extension: null
is_fileset: false
schema:
$schema: https://json-schema.org/draft/2020-12/schema
type: object
order:
- baseUrl
- userId
- token
- username
- password
properties:
baseUrl:
type: string
description: 'The URL where the Nextcloud instance can be reached. Example:
https://nextcloud.example.com'
default: ''
password:
type: string
description: Deprecated, use token instead
default: ''
token:
type: string
description: An app/device token or the user's main password. To create a token
Settings -> Security -> Devices & sessions.
default: ''
nullable: false
userId:
type: string
description: ''
default: ''
username:
type: string
description: Deprecated, use userId instead
default: ''
required:
- baseUrl
- token