2b5d29ef67
Scripts, flows, apps, resources and resource types from the Windmill workspace. API token excluded via .gitignore (config/).
40 lines
945 B
YAML
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
|