diff --git a/collections/index.html b/collections/index.html index 549cf71..6bb1cb4 100644 --- a/collections/index.html +++ b/collections/index.html @@ -609,15 +609,15 @@

Collections

List collections management commands

-
arlas_cli collections --helpUsage: python -m arlas.cli.cli collections [OPTIONS] COMMAND [ARGS]...

Options:
--config TEXT Name of the ARLAS configuration to use from your
configuration file
(/Users/gaudan/.arlas/cli/configuration.yaml). [required]
--help Show this message and exit.

Commands:
count Count the number of hits within a collection (or all...
create Create a collection
delete Delete a collection
describe Describe a collection
list List collections
sample Display a sample of a collection
+
arlas_cli collections --help
Usage: python -m arlas.cli.cli collections [OPTIONS] COMMAND
[ARGS]...

╭─ Options ──────────────────────────────────────────────────────────╮
│ * --config TEXT Name of the ARLAS configuration to use │
│ from your configuration file │
│ (/Users/gaudan/.arlas/cli/configuration.… │
│ [default: None] │
│ [required] │
│ --help Show this message and exit. │
╰────────────────────────────────────────────────────────────────────╯
╭─ Commands ─────────────────────────────────────────────────────────╮
│ count Count the number of hits within a collection (or all │
│ collection if not provided) │
│ create Create a collection │
│ delete Delete a collection │
│ describe Describe a collection │
│ list List collections │
│ name Set the collection display name │
│ private Set collection visibility to private │
│ public Set collection visibility to public │
│ sample Display a sample of a collection │
│ share Share the collection with the organisation │
│ unshare Share the collection with the organisation │
╰────────────────────────────────────────────────────────────────────╯

Create a collection

You can create a collection from scratch or by providing a collection model (--model). The command line options let you specify how the index should be used by the collection. The visibility options (--public, --owner and --orgs) allow you to choose who can access the collection.

-
arlas_cli collections --config local create --helpUsage: python -m arlas.cli.cli collections create [OPTIONS] COLLECTION

Create a collection

Arguments:
COLLECTION Collection's name [required]

Options:
--model TEXT Name of the model within your configuration, or URL
or file path
--index TEXT Name of the index referenced by the collection
--display-name TEXT Display name of the collection
--public / --no-public Whether the collection is public or not [default:
no-public]
--owner TEXT Organisation's owner
--orgs TEXT List of organisations accessing the collection
--id-path TEXT Overide the JSON path to the id field.
--centroid-path TEXT Overide the JSON path to the centroid field.
--geometry-path TEXT Overide the JSON path to the geometry field.
--date-path TEXT Overide the JSON path to the date field.
--help Show this message and exit.
+
arlas_cli collections --config local create --help
Usage: python -m arlas.cli.cli collections create [OPTIONS]
COLLECTION

Create a collection

╭─ Arguments ────────────────────────────────────────────────────────╮
│ * collection TEXT Collection's name [default: None] │
│ [required] │
╰────────────────────────────────────────────────────────────────────╯
╭─ Options ──────────────────────────────────────────────────────────╮
│ --model TEXT Name of the model within │
│ your configuration, or URL │
│ or file path │
│ [default: None] │
│ --index TEXT Name of the index │
│ referenced by the │
│ collection │
│ [default: None] │
│ --display-name TEXT Display name of the │
│ collection │
│ [default: None] │
│ --public --no-public Whether the collection is │
│ public or not │
│ [default: no-public] │
│ --owner TEXT Organisation's owner │
│ [default: None] │
│ --orgs TEXT List of organisations │
│ accessing the collection │
│ --id-path TEXT Overide the JSON path to │
│ the id field. │
│ [default: None] │
│ --centroid-path TEXT Overide the JSON path to │
│ the centroid field. │
│ [default: None] │
│ --geometry-path TEXT Overide the JSON path to │
│ the geometry field. │
│ [default: None] │
│ --date-path TEXT Overide the JSON path to │
│ the date field. │
│ [default: None] │
│ --help Show this message and │
│ exit. │
╰────────────────────────────────────────────────────────────────────╯

Describe a collection

This command line provides a description of the collection structure (fields) and of its metadata.

-
arlas_cli collections --config local describe --helpUsage: python -m arlas.cli.cli collections describe [OPTIONS] COLLECTION

Describe a collection

Arguments:
COLLECTION Collection's name [required]

Options:
--help Show this message and exit.
+
arlas_cli collections --config local describe --help
Usage: python -m arlas.cli.cli collections describe [OPTIONS]
COLLECTION

Describe a collection

╭─ Arguments ────────────────────────────────────────────────────────╮
│ * collection TEXT Collection's name [default: None] │
│ [required] │
╰────────────────────────────────────────────────────────────────────╯
╭─ Options ──────────────────────────────────────────────────────────╮
│ --help Show this message and exit. │
╰────────────────────────────────────────────────────────────────────╯

diff --git a/confs/index.html b/confs/index.html index 36406c3..00c7034 100644 --- a/confs/index.html +++ b/confs/index.html @@ -599,7 +599,7 @@

Configurations

If you used the ARLAS Exploration Stack, it is possible that you already have a directory named $HOME/.arlas. This directory has been created by docker as root. The owner of the directory must be changed to the local user (sudo chown ${USER}: $HOME/.arlas).

List configuration management commands

-
arlas_cli confs --helpUsage: python -m arlas.cli.cli confs [OPTIONS] COMMAND [ARGS]...

Options:
--help Show this message and exit.

Commands:
create Add a configuration
delete Delete a configuration
describe Describe a configuration
list List configurations
+
arlas_cli confs --help
Usage: python -m arlas.cli.cli confs [OPTIONS] COMMAND [ARGS]...

╭─ Options ──────────────────────────────────────────────────────────╮
│ --help Show this message and exit. │
╰────────────────────────────────────────────────────────────────────╯
╭─ Commands ─────────────────────────────────────────────────────────╮
│ create Add a configuration │
│ delete Delete a configuration │
│ describe Describe a configuration │
│ list List configurations │
╰────────────────────────────────────────────────────────────────────╯

Create a configuration

The configuration file (default is $HOME/.arlas/cli/configuration.yaml) contains 3 sections:

@@ -614,7 +614,7 @@

Create a configuration

Danger

By default, it is not possible to run the delete command on an elasticsearch with arlas_cli. This is to prevent accidental data loass. In order to allow delete on a configuration, use the --allow-delete option.

-
arlas_cli confs create --helpUsage: python -m arlas.cli.cli confs create [OPTIONS] NAME

Add a configuration

Arguments:
NAME Name of the configuration [required]

Options:
--server TEXT ARLAS Server url [required]
--headers TEXT header (name:value)
--persistence TEXT ARLAS Persistence url
--persistence-headers TEXT header (name:value)
--elastic TEXT dictionary of name/es resources
--elastic-login TEXT elasticsearch login
--elastic-password TEXT elasticsearch password
--elastic-headers TEXT header (name:value)
--allow-delete / --no-allow-delete
Is delete command allowed for this
configuration? [default: no-allow-delete]
--auth-token-url TEXT Token URL of the authentication service
--auth-headers TEXT header (name:value)
--auth-org TEXT ARLAS IAM Organization
--auth-login TEXT login
--auth-password TEXT password
--auth-client-id TEXT Client ID
--auth-client-secret TEXT Client secret
--auth-grant-type TEXT Grant type (e.g. password)
--auth-arlas-iam / --no-auth-arlas-iam
Is it an ARLAS IAM service? [default: auth-
arlas-iam]
--help Show this message and exit.
+
arlas_cli confs create --help
Usage: python -m arlas.cli.cli confs create [OPTIONS] NAME

Add a configuration

╭─ Arguments ────────────────────────────────────────────────────────╮
│ * name TEXT Name of the configuration [default: None] │
│ [required] │
╰────────────────────────────────────────────────────────────────────╯
╭─ Options ──────────────────────────────────────────────────────────╮
│ * --server TEXT ARLAS Server url │
│ [default: None] │
│ [required] │
│ --headers TEXT header │
│ (name:value) │
│ --persistence TEXT ARLAS Persistence │
│ url │
│ [default: None] │
│ --persistence-h… TEXT header │
│ (name:value) │
│ --elastic TEXT dictionary of │
│ name/es resources │
│ [default: None] │
│ --elastic-login TEXT elasticsearch │
│ login │
│ [default: None] │
│ --elastic-passw… TEXT elasticsearch │
│ password │
│ [default: None] │
│ --elastic-heade… TEXT header │
│ (name:value) │
│ --allow-delete --no-allow-dele… Is delete command │
│ allowed for this │
│ configuration? │
│ [default: │
│ no-allow-delete] │
│ --auth-token-url TEXT Token URL of the │
│ authentication │
│ service │
│ [default: None] │
│ --auth-headers TEXT header │
│ (name:value) │
│ --auth-org TEXT ARLAS IAM │
│ Organization │
│ [default: None] │
│ --auth-login TEXT login │
│ [default: None] │
│ --auth-password TEXT password │
│ [default: None] │
│ --auth-client-id TEXT Client ID │
│ [default: None] │
│ --auth-client-s… TEXT Client secret │
│ [default: None] │
│ --auth-grant-ty… TEXT Grant type (e.g. │
│ password) │
│ [default: None] │
│ --auth-arlas-iam --no-auth-arlas… Is it an ARLAS │
│ IAM service? │
│ [default: │
│ auth-arlas-iam] │
│ --help Show this message │
│ and exit. │
╰────────────────────────────────────────────────────────────────────╯

diff --git a/iam/index.html b/iam/index.html index 0d28d78..3f6bc79 100644 --- a/iam/index.html +++ b/iam/index.html @@ -591,10 +591,10 @@

Identity & Access

Manage organisations, users, permissions and groups

-
arlas_cli iam --config local orgs --helpUsage: python -m arlas.cli.cli iam orgs [OPTIONS] COMMAND [ARGS]...

Options:
--help Show this message and exit.

Commands:
add Create organisation with the given name
add_group Add a group to the organisation
add_permission Add a permission to the organisation
add_permission_to_group Add a permission to a group within the...
add_user Add a user to the organisation, and...
add_user_to_group Add a user to a group within the...
collections List the collections of the organisation
delete Delete the organisation
delete_group Remove the group from the organisation
delete_permission Remove the permission from the organisation
delete_permission_from_group Remove a permission to a group within the...
delete_user Remove the user from the organisation
delete_user_from_group Remove a user from a group within the...
groups List the groups of the organisation
list List organisations
permissions List the permissions of the organisation
users List the users of the organisation
+
arlas_cli iam --config local orgs --help
Usage: python -m arlas.cli.cli iam orgs [OPTIONS] COMMAND [ARGS]...

╭─ Options ──────────────────────────────────────────────────────────╮
│ --help Show this message and exit. │
╰────────────────────────────────────────────────────────────────────╯
╭─ Commands ─────────────────────────────────────────────────────────╮
│ add Create organisation with the given │
│ name │
│ add_group Add a group to the organisation │
│ add_permission Add a permission to the organisation │
│ add_permission_to_group Add a permission to a group within │
│ the organisation │
│ add_user Add a user to the organisation, and │
│ optionally within groups │
│ add_user_to_group Add a user to a group within the │
│ organisation │
│ collections List the collections of the │
│ organisation │
│ delete Delete the organisation │
│ delete_group Remove the group from the │
│ organisation │
│ delete_permission Remove the permission from the │
│ organisation │
│ delete_permission_from_group Remove a permission to a group │
│ within the organisation │
│ delete_user Remove the user from the │
│ organisation │
│ delete_user_from_group Remove a user from a group within │
│ the organisation │
│ groups List the groups of the organisation │
│ list List organisations │
│ permissions List the permissions of the │
│ organisation │
│ users List the users of the organisation │
╰────────────────────────────────────────────────────────────────────╯

Create, delete, activate / deactivate users

-
arlas_cli iam --config local users --helpUsage: python -m arlas.cli.cli iam users [OPTIONS] COMMAND [ARGS]...

Options:
--help Show this message and exit.

Commands:
activate Activate user account
add Create user
deactivate Deactivate user account
delete Delete user
+
arlas_cli iam --config local users --help
Usage: python -m arlas.cli.cli iam users [OPTIONS] COMMAND [ARGS]...

╭─ Options ──────────────────────────────────────────────────────────╮
│ --help Show this message and exit. │
╰────────────────────────────────────────────────────────────────────╯
╭─ Commands ─────────────────────────────────────────────────────────╮
│ activate Activate user account │
│ add Create user │
│ deactivate Deactivate user account │
│ delete Delete user │
╰────────────────────────────────────────────────────────────────────╯

diff --git a/indices/index.html b/indices/index.html index 9c7960a..f04f794 100644 --- a/indices/index.html +++ b/indices/index.html @@ -627,18 +627,18 @@

Indices

List index management commands

-
arlas_cli indices --helpUsage: python -m arlas.cli.cli indices [OPTIONS] COMMAND [ARGS]...

Options:
--config TEXT Name of the ARLAS configuration to use from your
configuration file
(/Users/gaudan/.arlas/cli/configuration.yaml). [required]
--help Show this message and exit.

Commands:
create Create an index
data Index data
delete Delete an index
describe Describe an index
list List indices
mapping Generate the mapping based on the data
sample Display a sample of an index
+
arlas_cli indices --help
Usage: python -m arlas.cli.cli indices [OPTIONS] COMMAND [ARGS]...

╭─ Options ──────────────────────────────────────────────────────────╮
│ * --config TEXT Name of the ARLAS configuration to use │
│ from your configuration file │
│ (/Users/gaudan/.arlas/cli/configuration.… │
│ [default: None] │
│ [required] │
│ --help Show this message and exit. │
╰────────────────────────────────────────────────────────────────────╯
╭─ Commands ─────────────────────────────────────────────────────────╮
│ create Create an index │
│ data Index data │
│ delete Delete an index │
│ describe Describe an index │
│ list List indices │
│ mapping Generate the mapping based on the data │
│ sample Display a sample of an index │
╰────────────────────────────────────────────────────────────────────╯

Generate mapping from a data file

To generate a mapping, you need to provide a NDJSON file (New line delimiter JSON). The first N lines are used for infering the mapping. If the mapping is wrong, you can overwrite the typing with the --field-mapping option. Once you're happy with the mapping, you can directly push it on elasticsearch (--push-on).

-
arlas_cli indices --config local mapping --helpUsage: python -m arlas.cli.cli indices mapping [OPTIONS] FILE

Generate the mapping based on the data

Arguments:
FILE Path to the file conaining the data. Format: NDJSON [required]

Options:
--nb-lines INTEGER Number of line to consider for generating the mapping.
Avoid going over 10. [default: 2]
--field-mapping TEXT Overide the mapping with the provided field path/type.
Example: fragment.location:geo_point. Important: the
full field path must be provided.
--no-fulltext TEXT List of keyword or text fields that should not be in
the fulltext search. Important: the field name only
must be provided.
--push-on TEXT Push the generated mapping for the provided index name
--help Show this message and exit.
+
arlas_cli indices --config local mapping --help
Usage: python -m arlas.cli.cli indices mapping [OPTIONS] FILE

Generate the mapping based on the data

╭─ Arguments ────────────────────────────────────────────────────────╮
│ * file TEXT Path to the file conaining the data. Format: │
│ NDJSON │
│ [default: None] │
│ [required] │
╰────────────────────────────────────────────────────────────────────╯
╭─ Options ──────────────────────────────────────────────────────────╮
│ --nb-lines INTEGER Number of line to consider for │
│ generating the mapping. Avoid │
│ going over 10. │
│ [default: 2] │
│ --field-mapping TEXT Overide the mapping with the │
│ provided field path/type. Example: │
│ fragment.location:geo_point. │
│ Important: the full field path │
│ must be provided. │
│ --no-fulltext TEXT List of keyword or text fields │
│ that should not be in the fulltext │
│ search. Important: the field name │
│ only must be provided. │
│ --push-on TEXT Push the generated mapping for the │
│ provided index name │
│ [default: None] │
│ --help Show this message and exit. │
╰────────────────────────────────────────────────────────────────────╯

Create an index with its mapping

-
arlas_cli indices --config local create --helpUsage: python -m arlas.cli.cli indices create [OPTIONS] INDEX

Create an index

Arguments:
INDEX index's name [required]

Options:
--mapping TEXT Name of the mapping within your configuration, or URL or
file path [required]
--shards INTEGER Number of shards for the index [default: 1]
--help Show this message and exit.
+
arlas_cli indices --config local create --help
Usage: python -m arlas.cli.cli indices create [OPTIONS] INDEX

Create an index

╭─ Arguments ────────────────────────────────────────────────────────╮
│ * index TEXT index's name [default: None] [required] │
╰────────────────────────────────────────────────────────────────────╯
╭─ Options ──────────────────────────────────────────────────────────╮
│ * --mapping TEXT Name of the mapping within your │
│ configuration, or URL or file path │
│ [default: None] │
│ [required] │
│ --shards INTEGER Number of shards for the index │
│ [default: 1] │
│ --help Show this message and exit. │
╰────────────────────────────────────────────────────────────────────╯

Index data

For indexing data, you'll need to provide one ore several NDJSON file(s). Indexing uses bulks for optimal performances.

-
arlas_cli indices --config local data --helpUsage: python -m arlas.cli.cli indices data [OPTIONS] INDEX FILES...

Index data

Arguments:
INDEX index's name [required]
FILES... List of pathes to the file conaining the data. Format: NDJSON
[required]

Options:
--bulk INTEGER Bulk size for indexing data [default: 100]
--help Show this message and exit.
+
arlas_cli indices --config local data --help
Usage: python -m arlas.cli.cli indices data [OPTIONS] INDEX FILES...

Index data

╭─ Arguments ────────────────────────────────────────────────────────╮
│ * index TEXT index's name [default: None] [required] │
│ * files FILES... List of pathes to the file conaining the │
│ data. Format: NDJSON │
│ [default: None] │
│ [required] │
╰────────────────────────────────────────────────────────────────────╯
╭─ Options ──────────────────────────────────────────────────────────╮
│ --bulk INTEGER Bulk size for indexing data [default: 100] │
│ --help Show this message and exit. │
╰────────────────────────────────────────────────────────────────────╯

diff --git a/persist/index.html b/persist/index.html index c7e19de..8d209f3 100644 --- a/persist/index.html +++ b/persist/index.html @@ -574,7 +574,7 @@

Persistence

Manage persistence

ARLAS Persistence allows you to place files within zones. A zone is visible by groups. It is also possible to set the access: writers, readers and whether it is public or not.

-
arlas_cli persist --helpUsage: python -m arlas.cli.cli persist [OPTIONS] COMMAND [ARGS]...

Options:
--config TEXT Name of the ARLAS configuration to use from your
configuration file
(/Users/gaudan/.arlas/cli/configuration.yaml). [required]
--help Show this message and exit.

Commands:
add Add an entry, returns its ID
delete Delete an entry
describe Describe an entry
get Retrieve an entry
groups List groups allowed to access a zone
zone List entries within a zone
+
arlas_cli persist --help
Usage: python -m arlas.cli.cli persist [OPTIONS] COMMAND [ARGS]...

╭─ Options ──────────────────────────────────────────────────────────╮
│ * --config TEXT Name of the ARLAS configuration to use │
│ from your configuration file │
│ (/Users/gaudan/.arlas/cli/configuration.… │
│ [default: None] │
│ [required] │
│ --help Show this message and exit. │
╰────────────────────────────────────────────────────────────────────╯
╭─ Commands ─────────────────────────────────────────────────────────╮
│ add Add an entry, returns its ID │
│ delete Delete an entry │
│ describe Describe an entry │
│ get Retrieve an entry │
│ groups List groups allowed to access a zone │
│ zone List entries within a zone │
╰────────────────────────────────────────────────────────────────────╯

diff --git a/sitemap.xml b/sitemap.xml index 894118c..dbfcb4c 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -2,382 +2,382 @@ https://gisaia.github.io/arlas_cli/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/arlas_cloud/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/collections/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/collections_1/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/collections_2/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/collections_3/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/collections_4/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/confs/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/confs_1/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/confs_2/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/confs_3/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/help/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/iam/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/iam_1/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/iam_2/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/iam_3/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/indices/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/indices_1/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/indices_2/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/indices_3/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/indices_4/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/indices_5/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/install/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/persist/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/persist_1/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/persist_2/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/started/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/version/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-arlas-properties-arlas-iam-url-anyof-1/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-arlas-properties-arlas-iam-url/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-arlas-properties-arlas-persistence-server-anyof-1/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-arlas-properties-arlas-persistence-server/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-arlas-properties-arlas-server/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-arlas-properties-dictionary-of-namees-resources-anyof-1/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-arlas-properties-dictionary-of-namees-resources/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-arlas-properties-is-delete-command-allowed-for-this-configuration-anyof-0/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-arlas-properties-is-delete-command-allowed-for-this-configuration-anyof-1/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-arlas-properties-is-delete-command-allowed-for-this-configuration/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-arlas-properties-keycloak-url-anyof-1/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-arlas-properties-keycloak-url/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-arlas/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-authorizationservice-properties-client-id-anyof-0/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-authorizationservice-properties-client-id-anyof-1/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-authorizationservice-properties-client-id/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-authorizationservice-properties-client-secret-anyof-0/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-authorizationservice-properties-client-secret-anyof-1/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-authorizationservice-properties-client-secret/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-authorizationservice-properties-grant-type-eg-password-anyof-0/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-authorizationservice-properties-grant-type-eg-password-anyof-1/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-authorizationservice-properties-grant-type-eg-password/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-authorizationservice-properties-is-it-an-arlas-iam-service-anyof-0/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-authorizationservice-properties-is-it-an-arlas-iam-service-anyof-1/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-authorizationservice-properties-is-it-an-arlas-iam-service/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-authorizationservice-properties-login/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-authorizationservice-properties-password/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-authorizationservice-properties-token-url-of-the-authentication-service/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-authorizationservice/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-resource-properties-file-or-http-location/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-resource-properties-list-of-headers-if-needed-for-https-requests-anyof-0-additionalproperties/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-resource-properties-list-of-headers-if-needed-for-https-requests-anyof-0/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-resource-properties-list-of-headers-if-needed-for-https-requests-anyof-1/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-resource-properties-list-of-headers-if-needed-for-https-requests-default/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-resource-properties-list-of-headers-if-needed-for-https-requests/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-resource-properties-pasword-anyof-0/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-resource-properties-pasword-anyof-1/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-resource-properties-pasword/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-resource-properties-user-anyof-0/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-resource-properties-user-anyof-1/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-resource-properties-user/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs-resource/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-defs/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-properties-dictionary-of-namearlas-configurations/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-properties-dictionary-of-namemapping-resources/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model-properties-dictionary-of-namemodel-resources/ - 2024-08-30 + 2024-09-16 daily https://gisaia.github.io/arlas_cli/model/model/ - 2024-08-30 + 2024-09-16 daily \ No newline at end of file diff --git a/sitemap.xml.gz b/sitemap.xml.gz index f85343c..f4b31e1 100644 Binary files a/sitemap.xml.gz and b/sitemap.xml.gz differ diff --git a/version/index.html b/version/index.html index fa7f3ee..d1f4d06 100644 --- a/version/index.html +++ b/version/index.html @@ -510,7 +510,7 @@

arlas_cli version

ARLAS Version: -0.5.6

+0.5.7