Skip to content

Commit

Permalink
change in to file cli flags (#438)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-azion authored Nov 16, 2023
1 parent 2fa0903 commit 8c1643f
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 36 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -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:

Expand Down Expand Up @@ -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"
```

---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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:

Expand Down Expand Up @@ -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:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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**

Expand All @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down Expand Up @@ -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 <rule-id> --application-id <application-id> --phase <phase> --in <rule-json>
azion update rules-engine --rule-id <rule-id> --application-id <application-id> --phase <phase> --file <rule-json>
```

### Required flags
Expand All @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`:

Expand Down Expand Up @@ -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`:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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`:

Expand Down Expand Up @@ -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`:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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**

Expand All @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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`:

Expand Down Expand Up @@ -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:

Expand Down

0 comments on commit 8c1643f

Please sign in to comment.