diff --git a/src/content/docs/en/pages/devtools/cli/azion-cli-alpha/domains/domains.mdx b/src/content/docs/en/pages/devtools/cli/azion-cli-alpha/domains/domains.mdx index 7932962ee7..60a4e25d31 100644 --- a/src/content/docs/en/pages/devtools/cli/azion-cli-alpha/domains/domains.mdx +++ b/src/content/docs/en/pages/devtools/cli/azion-cli-alpha/domains/domains.mdx @@ -51,9 +51,9 @@ The `--digital-certificate-id` option sets the digital certificate's unique iden The `--help` option displays more information about the `azion create domain` action. -#### in +#### file -The `--in` option specifies a path to a JSON file containing the attributes that will be updated. You can use `-` to read from stdin. +The `--file` option specifies a path to a JSON file containing the attributes that will be updated. You can use `-` to read from stdin. Attributes inside a `JSON` file: @@ -194,9 +194,9 @@ The `--cnames` option specifies the CNAMEs of your domain. The `--digital-certificate-id` option is the unique identifier of the digital certificate. This value can be either an *integer* or *null*. -#### in +#### file -The `--in` option specifies a given path and JSON file to automatically update the domain attributes. You can use `-` to read from stdin. +The `--file` option specifies a given path and JSON file to automatically update the domain attributes. You can use `-` to read from stdin. Attributes inside a `JSON` file: @@ -228,7 +228,7 @@ azion update domain --domain-id 1234 --cnames "www.testhere.com,www.pudim.com" azion update domain --domain-id 9123 --cname-access-only true azion update domain --domain-id 9123 --cname-access-only false azion update domain --domain-id 9123 --application-id 192837 -azion update domain --in "update.json" +azion update domain --file "update.json" ``` --- diff --git a/src/content/docs/en/pages/devtools/cli/azion-cli-alpha/edge-application/edge-application.mdx b/src/content/docs/en/pages/devtools/cli/azion-cli-alpha/edge-application/edge-application.mdx index 4512a5d507..0c04bd3107 100644 --- a/src/content/docs/en/pages/devtools/cli/azion-cli-alpha/edge-application/edge-application.mdx +++ b/src/content/docs/en/pages/devtools/cli/azion-cli-alpha/edge-application/edge-application.mdx @@ -23,7 +23,7 @@ azion create edge-application --name "naruno" #### name -The `--name` flag sets the name of the edge application being created. It's required if the `--in` flag isn't used. +The `--name` flag sets the name of the edge application being created. It's required if the `--file` flag isn't used. ### Optional flags @@ -67,9 +67,9 @@ The `--https-port` flag specifies the edge application's HTTPS delivery port. Th The `--http3` option enables delivery in HTTP/3. -#### in +#### file -The `--in` option specifies a path to a JSON file containing the attributes of the edge application being created. It can also read from stdin using `-`. +The `--file` option specifies a path to a JSON file containing the attributes of the edge application being created. It can also read from stdin using `-`. Attributes inside a `JSON` file: @@ -186,9 +186,9 @@ The `--https-port` flag specifies the edge application's HTTPS Port. By default, The `--image-optimization` flag specifies if the edge application has the [Image Processor](/en/documentation/products/edge-application/image-processor/) module active. -#### in +#### file -The `--in` flag specifies the given path and JSON file to automatically update the edge application attributes. You can use `-` for reading from stdin. +The `--file` flag specifies the given path and JSON file to automatically update the edge application attributes. You can use `-` for reading from stdin. Attributes inside a `JSON` file: diff --git a/src/content/docs/en/pages/devtools/cli/azion-cli-alpha/personal-tokens/personal-tokens.mdx b/src/content/docs/en/pages/devtools/cli/azion-cli-alpha/personal-tokens/personal-tokens.mdx index ba5a0d8e76..95c38d9eca 100644 --- a/src/content/docs/en/pages/devtools/cli/azion-cli-alpha/personal-tokens/personal-tokens.mdx +++ b/src/content/docs/en/pages/devtools/cli/azion-cli-alpha/personal-tokens/personal-tokens.mdx @@ -21,9 +21,9 @@ azion create personal-token --name "newToken" --expiration "9m" ### Optional flags -#### in +#### file -The `--in` option informs the file path to a JSON file containing all attributes of the personal token being created. +The `--file` option informs the file path to a JSON file containing all attributes of the personal token being created. **Example** @@ -38,7 +38,7 @@ The `--in` option informs the file path to a JSON file containing all attributes The `--help` option displays more information about the `create` subcommand. -### Required flags when --in isn't informed +### Required flags when --file isn't informed #### description diff --git a/src/content/docs/en/pages/devtools/cli/azion-cli-alpha/rules-engine/rules-engine.mdx b/src/content/docs/en/pages/devtools/cli/azion-cli-alpha/rules-engine/rules-engine.mdx index 947f3aa175..9dda34c7cf 100644 --- a/src/content/docs/en/pages/devtools/cli/azion-cli-alpha/rules-engine/rules-engine.mdx +++ b/src/content/docs/en/pages/devtools/cli/azion-cli-alpha/rules-engine/rules-engine.mdx @@ -12,7 +12,7 @@ permalink: /documentation/products/cli/rules-engine-crud/ ### Usage ```bash -azion create rules-engine --application-id 1679423488 --phase "response" --in `./file.json` +azion create rules-engine --application-id 1679423488 --phase "response" --file `./file.json` ``` ### Required flags @@ -27,9 +27,9 @@ The `--phase` flag specifies the phase for the rule. It's either `request` or `r ### Optional flags -#### in +#### file -The `--in` flag specifies the path to a JSON file containing the attributes of the rule that'll be created. You can use `-` to read from stdin. +The `--file` flag specifies the path to a JSON file containing the attributes of the rule that'll be created. You can use `-` to read from stdin. #### help @@ -130,7 +130,7 @@ The `-h` or `--help` flag displays more information about the `azion describe ru ### Usage ```bash -azion update rules-engine --rule-id --application-id --phase --in +azion update rules-engine --rule-id --application-id --phase --file ``` ### Required flags @@ -149,9 +149,9 @@ The `--phase` flag specifies the Rules Engine Phase. It's either `request` or `r ### Optional flags -#### in +#### file -The `--in` flag specifies the path to a JSON file containing the attributes of the rule that will be updated. You can use `-` to read from stdin. +The `--file` flag specifies the path to a JSON file containing the attributes of the rule that will be updated. You can use `-` to read from stdin. #### help diff --git a/src/content/docs/pt-br/pages/devtools/cli/azion-cli-alpha/domains/domains.mdx b/src/content/docs/pt-br/pages/devtools/cli/azion-cli-alpha/domains/domains.mdx index d179e5b592..c7e16a45f1 100644 --- a/src/content/docs/pt-br/pages/devtools/cli/azion-cli-alpha/domains/domains.mdx +++ b/src/content/docs/pt-br/pages/devtools/cli/azion-cli-alpha/domains/domains.mdx @@ -51,9 +51,9 @@ A opção `--digital-certificate-id` define o identificador único do certificad A opção `--help` exibe mais informações sobre a ação `azion create domain`. -#### in +#### file -A opção `--in` especifica um caminho para um arquivo JSON contendo os atributos que serão atualizados. Você pode usar `-` para ler a partir da entrada padrão. +A opção `--file` especifica um caminho para um arquivo JSON contendo os atributos que serão atualizados. Você pode usar `-` para ler a partir da entrada padrão. Exemplo dos atributos dentro de um arquivo `JSON`: @@ -187,9 +187,9 @@ A opção `--cnames` especifica os CNAMEs do seu domínio. A opção `--digital-certificate-id` é o identificador único do certificado digital. Esse valor pode ser um *número inteiro* ou *nulo*. -#### in +#### file -A opção `--in` especifica um caminho e arquivo JSON para atualizar automaticamente os atributos do domínio. Você pode usar `-` para ler da entrada padrão. +A opção `--file` especifica um caminho e arquivo JSON para atualizar automaticamente os atributos do domínio. Você pode usar `-` para ler da entrada padrão. Exemplo dos atributos dentro de um arquivo `JSON`: diff --git a/src/content/docs/pt-br/pages/devtools/cli/azion-cli-alpha/edge-application/edge-application.mdx b/src/content/docs/pt-br/pages/devtools/cli/azion-cli-alpha/edge-application/edge-application.mdx index dfd219d6cc..eecbb2d35c 100644 --- a/src/content/docs/pt-br/pages/devtools/cli/azion-cli-alpha/edge-application/edge-application.mdx +++ b/src/content/docs/pt-br/pages/devtools/cli/azion-cli-alpha/edge-application/edge-application.mdx @@ -19,7 +19,7 @@ azion create edge-application --name "naruno" #### name -A flag `--name` define o nome da edge application que está sendo criada. É obrigatória se a flag `--in` não for usada. +A flag `--name` define o nome da edge application que está sendo criada. É obrigatória se a flag `--file` não for usada. ### Flags opcionais @@ -63,9 +63,9 @@ A flag `--https-port` especifica a porta de entrega HTTPS da edge application. O A opção `--http3` permite a entrega em HTTP/3. -#### in +#### file -A opção `--in` especifica o caminho para um arquivo JSON que contém os atributos da edge application sendo criada. O caminho também pode ser lido a partir do stdin usando `-`. +A opção `--file` especifica o caminho para um arquivo JSON que contém os atributos da edge application sendo criada. O caminho também pode ser lido a partir do stdin usando `-`. Exemplo dos atributos dentro de um arquivo `JSON`: @@ -182,9 +182,9 @@ A flag `--https-port` especifica a porta HTTPS da edge application. Por padrão, A flag `--image-optimization` especifica se a edge application tem o módulo [Image Processor](/pt-br/documentacao/produtos/edge-application/image-processor/) ativo. -#### in +#### file -A flag `--in` especifica o caminho e o arquivo JSON fornecidos para atualizar automaticamente os atributos da edge application. Você pode usar `-` para ler a partir do stdin. +A flag `--file` especifica o caminho e o arquivo JSON fornecidos para atualizar automaticamente os atributos da edge application. Você pode usar `-` para ler a partir do stdin. Exemplo dos atributos dentro de um arquivo `JSON`: diff --git a/src/content/docs/pt-br/pages/devtools/cli/azion-cli-alpha/personal-tokens/personal-tokens.mdx b/src/content/docs/pt-br/pages/devtools/cli/azion-cli-alpha/personal-tokens/personal-tokens.mdx index d9de92531b..04762d9d2d 100644 --- a/src/content/docs/pt-br/pages/devtools/cli/azion-cli-alpha/personal-tokens/personal-tokens.mdx +++ b/src/content/docs/pt-br/pages/devtools/cli/azion-cli-alpha/personal-tokens/personal-tokens.mdx @@ -21,9 +21,9 @@ azion create personal-token --name "novoToken" --expiration "9m" ### Flags opcionais -#### in +#### file -A opção `--in` informa o caminho do arquivo JSON que contém todos os atributos do personal token que está sendo criado. +A opção `--file` informa o caminho do arquivo JSON que contém todos os atributos do personal token que está sendo criado. **Exemplo** @@ -38,7 +38,7 @@ A opção `--in` informa o caminho do arquivo JSON que contém todos os atributo A opção `--help` exibe mais informações sobre o subcomando `create`. -### Flags obrigatórias quando --in não é informado +### Flags obrigatórias quando --file não é informado #### description diff --git a/src/content/docs/pt-br/pages/devtools/cli/azion-cli-alpha/rules-engine/rules-engine.mdx b/src/content/docs/pt-br/pages/devtools/cli/azion-cli-alpha/rules-engine/rules-engine.mdx index 4464d36f61..7d25e3b872 100644 --- a/src/content/docs/pt-br/pages/devtools/cli/azion-cli-alpha/rules-engine/rules-engine.mdx +++ b/src/content/docs/pt-br/pages/devtools/cli/azion-cli-alpha/rules-engine/rules-engine.mdx @@ -12,7 +12,7 @@ permalink: /documentacao/produtos/cli/rules-engine-crud/ ### Uso ```bash - azion create rules-engine --application-id 1679423488 --phase "response" --in `./file.json` + azion create rules-engine --application-id 1679423488 --phase "response" --file `./file.json` ``` ### Flags obrigatórias @@ -27,9 +27,9 @@ A flag `--phase` especifica a fase da regra. Pode ser `request` ou `response`. ### Flags opcionais -#### in +#### file -A flag `--in` especifica o caminho para um arquivo JSON que contém os atributos da regra que será criada. Você pode usar `-` para ler a partir da entrada padrão. +A flag `--file` especifica o caminho para um arquivo JSON que contém os atributos da regra que será criada. Você pode usar `-` para ler a partir da entrada padrão. Exemplo dos atributos dentro de um arquivo `JSON`: @@ -174,9 +174,9 @@ A flag `--phase` especifica a fase do Rules Engine. Pode ser `request` ou `respo ### Flags opcionais -#### in +#### file -A flag `--in` especifica o caminho para um arquivo JSON que contém os atributos da regra que será atualizada. Você pode usar `-` para ler da entrada padrão. +A flag `--file` especifica o caminho para um arquivo JSON que contém os atributos da regra que será atualizada. Você pode usar `-` para ler da entrada padrão. Exemplo dos atributos dentro de um arquivo JSON: