Skip to content

Commit fbfe073

Browse files
author
DataUI VCS Robot
committed
Release 25.01.2022
* Application Load Balancer: updated information about balancing modes and session affinity. * CLI: updated reference. * Cloud CDN: added instruction for configuring raw logs of a resource. * Container Registry: updated information about specifics of working with a boot disk. * Translations updated. * Fixes and improvements.
1 parent 3302750 commit fbfe073

File tree

97 files changed

+6408
-5050
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+6408
-5050
lines changed

en/_cli-ref/cli-ref/managed-services/dataproc/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Syntax:
3737
- [yc dataproc job create-pyspark](job/create-pyspark.md) — Create a Dataproc PySpark job.
3838
- [yc dataproc job create-mapreduce](job/create-mapreduce.md) — Create a Dataproc MapReduce job.
3939
- [yc dataproc job create-hive](job/create-hive.md) — Create a Dataproc Hive job.
40+
- [yc dataproc job cancel](job/cancel.md) — Cancel Dataproc job.
4041
- [yc dataproc resource-preset](resource-preset/index.md) — Learn about Data Proc resource presets.
4142
- [yc dataproc resource-preset get](resource-preset/get.md) — Get information about a Data Proc resource preset.
4243
- [yc dataproc resource-preset list](resource-preset/list.md) — List available resource presets for Data Proc.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# yc dataproc job cancel
2+
3+
Cancel Dataproc job.
4+
5+
#### Command Usage
6+
7+
Syntax:
8+
9+
`yc dataproc job cancel <JOB-ID>|<JOB-NAME> [Global Flags...]`
10+
11+
#### Global Flags
12+
13+
| Flag | Description |
14+
|----|----|
15+
|`--cluster-id`|<b>`string`</b><br/>ID of the cluster.|
16+
|`--cluster-name`|<b>`string`</b><br/>Name of the cluster.|
17+
|`--id`|<b>`string`</b><br/>ID of the job.|
18+
|`--name`|<b>`string`</b><br/>Name of the job.|
19+
20+
#### Flags
21+
22+
| Flag | Description |
23+
|----|----|
24+
|`--profile`|<b>`string`</b><br/>Set the custom configuration file.|
25+
|`--debug`|Debug logging.|
26+
|`--debug-grpc`|Debug gRPC logging. Very verbose, used for debugging connection problems.|
27+
|`--no-user-output`|Disable printing user intended output to stderr.|
28+
|`--retry`|<b>`int`</b><br/>Enable gRPC retries. By default, retries are enabled with maximum 5 attempts. Pass 0 to disable retries. Pass any negative value for infinite retries. Even infinite retries are capped with 2 minutes timeout.|
29+
|`--cloud-id`|<b>`string`</b><br/>Set the ID of the cloud to use.|
30+
|`--folder-id`|<b>`string`</b><br/>Set the ID of the folder to use.|
31+
|`--folder-name`|<b>`string`</b><br/>Set the name of the folder to use (will be resolved to id).|
32+
|`--token`|<b>`string`</b><br/>Set the OAuth token to use.|
33+
|`--format`|<b>`string`</b><br/>Set the output format: text (default), yaml, json, json-rest.|
34+
|`-h`,`--help`|Display help for the command.|

en/_cli-ref/cli-ref/managed-services/dataproc/job/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Aliases:
2323
- [yc dataproc job create-pyspark](create-pyspark.md) — Create a Dataproc PySpark job.
2424
- [yc dataproc job create-mapreduce](create-mapreduce.md) — Create a Dataproc MapReduce job.
2525
- [yc dataproc job create-hive](create-hive.md) — Create a Dataproc Hive job.
26+
- [yc dataproc job cancel](cancel.md) — Cancel Dataproc job.
2627

2728
#### Flags
2829

en/_cli-ref/cli-ref/managed-services/lockbox/secret/add-version.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Syntax:
1616
|`--name`|<b>`string`</b><br/>Secret name.|
1717
|`--async`|Display information about the operation in progress, without waiting for the operation to complete.|
1818
|`--description`|<b>`string`</b><br/>Version description.|
19-
|`--payload`|<b>`string`</b><br/>YAML or JSON array defining how to change payload from the base version. Each item of the array must match the format: https://cloud.yandex.com/docs/lockbox/grpc/secret_service#PayloadEntryChange For instance, to modify the value of "password" entry from the base version payload: [{"key": "username", "text_value": "alice"}, {"key": "password", "text_value": "p@$$w0rd"}] the following JSON can be passed: [{"key": "password", "text_value": "another-p@$$w0rd"}] so the resulting payload of the newly added version will be: [{"key": "username", "text_value": "alice"}, {"key": "password", "text_value": "another-p@$$w0rd"}] To remove the entry pass an item containing only the "key" field, e.g.: [..., {"key": "the-key-of-the-entry-to-remove"}, ...] Use - value to pass payload string via stdin.|
19+
|`--payload`|<b>`string`</b><br/>YAML or JSON array defining how to change payload from the base version. Each item of the array must match the format: https://cloud.yandex.com/docs/lockbox/api-ref/grpc/secret_service#PayloadEntryChange For instance, to modify the value of "password" entry from the base version payload: [{"key": "username", "text_value": "alice"}, {"key": "password", "text_value": "p@$$w0rd"}] the following JSON can be passed: [{"key": "password", "text_value": "another-p@$$w0rd"}] so the resulting payload of the newly added version will be: [{"key": "username", "text_value": "alice"}, {"key": "password", "text_value": "another-p@$$w0rd"}] To remove the entry pass an item containing only the "key" field, e.g.: [..., {"key": "the-key-of-the-entry-to-remove"}, ...] Use - value to pass payload string via stdin.|
2020
|`--base-version-id`|<b>`string`</b><br/>Base version id. By default, the current one is used.|
2121

2222
#### Flags

en/_cli-ref/cli-ref/managed-services/lockbox/secret/create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Syntax:
1717
|`--labels`|<b>`key=value[,key=value...]`</b><br/> A list of label KEY=VALUE pairs to add.|
1818
|`--kms-key-id`|<b>`string`</b><br/> KMS key ID will be used to encrypt the secret payload.|
1919
|`--version-description`|<b>`string`</b><br/> Description of the first version.|
20-
|`--payload`|<b>`string`</b><br/> YAML or JSON array defining the entries of the secret payload. Each item of the array must match the format: https://cloud.yandex.com/docs/lockbox/grpc/secret_service#PayloadEntryChange For instance, the following payload JSON defines a payload containing two text value entries: [{"key": "username", "text_value": "alice"}, {"key": "password", "text_value": "p@$$w0rd"}] Use - value to pass payload string via stdin.|
20+
|`--payload`|<b>`string`</b><br/> YAML or JSON array defining the entries of the secret payload. Each item of the array must match the format: https://cloud.yandex.com/docs/lockbox/api-ref/grpc/secret_service#PayloadEntryChange For instance, the following payload JSON defines a payload containing two text value entries: [{"key": "username", "text_value": "alice"}, {"key": "password", "text_value": "p@$$w0rd"}] Use - value to pass payload string via stdin.|
2121
|`--deletion-protection`| Enable deletion protection for the secret.|
2222
|`--async`| Display information about the operation in progress, without waiting for the operation to complete.|
2323

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# yc managed-elasticsearch backup get
2+
3+
Get information about a Elasticsearch backup.
4+
5+
#### Command Usage
6+
7+
Syntax:
8+
9+
`yc managed-elasticsearch backup get <BACKUP-ID> [<BACKUP-ID>...] [Global Flags...]`
10+
11+
#### Flags
12+
13+
| Flag | Description |
14+
|----|----|
15+
|`--profile`|<b>`string`</b><br/>Set the custom configuration file.|
16+
|`--debug`|Debug logging.|
17+
|`--debug-grpc`|Debug gRPC logging. Very verbose, used for debugging connection problems.|
18+
|`--no-user-output`|Disable printing user intended output to stderr.|
19+
|`--retry`|<b>`int`</b><br/>Enable gRPC retries. By default, retries are enabled with maximum 5 attempts. Pass 0 to disable retries. Pass any negative value for infinite retries. Even infinite retries are capped with 2 minutes timeout.|
20+
|`--cloud-id`|<b>`string`</b><br/>Set the ID of the cloud to use.|
21+
|`--folder-id`|<b>`string`</b><br/>Set the ID of the folder to use.|
22+
|`--folder-name`|<b>`string`</b><br/>Set the name of the folder to use (will be resolved to id).|
23+
|`--token`|<b>`string`</b><br/>Set the OAuth token to use.|
24+
|`--format`|<b>`string`</b><br/>Set the output format: text (default), yaml, json, json-rest.|
25+
|`-h`,`--help`|Display help for the command.|
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# yc managed-elasticsearch backup
2+
3+
Manage Elasticsearch backups.
4+
5+
#### Command Usage
6+
7+
Syntax:
8+
9+
`yc managed-elasticsearch backup <command>`
10+
11+
Aliases:
12+
13+
- `backups`
14+
15+
#### Command Tree
16+
17+
- [yc managed-elasticsearch backup get](get.md) — Get information about a Elasticsearch backup.
18+
- [yc managed-elasticsearch backup list](list.md) — List Elasticsearch backups available in a folder.
19+
20+
#### Flags
21+
22+
| Flag | Description |
23+
|----|----|
24+
|`--profile`|<b>`string`</b><br/>Set the custom configuration file.|
25+
|`--debug`|Debug logging.|
26+
|`--debug-grpc`|Debug gRPC logging. Very verbose, used for debugging connection problems.|
27+
|`--no-user-output`|Disable printing user intended output to stderr.|
28+
|`--retry`|<b>`int`</b><br/>Enable gRPC retries. By default, retries are enabled with maximum 5 attempts. Pass 0 to disable retries. Pass any negative value for infinite retries. Even infinite retries are capped with 2 minutes timeout.|
29+
|`--cloud-id`|<b>`string`</b><br/>Set the ID of the cloud to use.|
30+
|`--folder-id`|<b>`string`</b><br/>Set the ID of the folder to use.|
31+
|`--folder-name`|<b>`string`</b><br/>Set the name of the folder to use (will be resolved to id).|
32+
|`--token`|<b>`string`</b><br/>Set the OAuth token to use.|
33+
|`--format`|<b>`string`</b><br/>Set the output format: text (default), yaml, json, json-rest.|
34+
|`-h`,`--help`|Display help for the command.|
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# yc managed-elasticsearch backup list
2+
3+
List Elasticsearch backups available in a folder.
4+
5+
#### Command Usage
6+
7+
Syntax:
8+
9+
`yc managed-elasticsearch backup list [Global Flags...]`
10+
11+
#### Global Flags
12+
13+
| Flag | Description |
14+
|----|----|
15+
|`--limit`|<b>`int`</b><br/>The maximum number of items to list.|
16+
17+
#### Flags
18+
19+
| Flag | Description |
20+
|----|----|
21+
|`--profile`|<b>`string`</b><br/>Set the custom configuration file.|
22+
|`--debug`|Debug logging.|
23+
|`--debug-grpc`|Debug gRPC logging. Very verbose, used for debugging connection problems.|
24+
|`--no-user-output`|Disable printing user intended output to stderr.|
25+
|`--retry`|<b>`int`</b><br/>Enable gRPC retries. By default, retries are enabled with maximum 5 attempts. Pass 0 to disable retries. Pass any negative value for infinite retries. Even infinite retries are capped with 2 minutes timeout.|
26+
|`--cloud-id`|<b>`string`</b><br/>Set the ID of the cloud to use.|
27+
|`--folder-id`|<b>`string`</b><br/>Set the ID of the folder to use.|
28+
|`--folder-name`|<b>`string`</b><br/>Set the name of the folder to use (will be resolved to id).|
29+
|`--token`|<b>`string`</b><br/>Set the OAuth token to use.|
30+
|`--format`|<b>`string`</b><br/>Set the output format: text (default), yaml, json, json-rest.|
31+
|`-h`,`--help`|Display help for the command.|
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# yc managed-elasticsearch cluster backup
2+
3+
Create a backup for a Elasticsearch cluster.
4+
5+
#### Command Usage
6+
7+
Syntax:
8+
9+
`yc managed-elasticsearch cluster backup <CLUSTER-NAME>|<CLUSTER-ID> [Global Flags...]`
10+
11+
#### Global Flags
12+
13+
| Flag | Description |
14+
|----|----|
15+
|`--id`|<b>`string`</b><br/>ID of the ElasticSearch cluster.|
16+
|`--name`|<b>`string`</b><br/>Name of the ElasticSearch cluster.|
17+
|`--async`|Display information about the operation in progress, without waiting for the operation to complete.|
18+
19+
#### Flags
20+
21+
| Flag | Description |
22+
|----|----|
23+
|`--profile`|<b>`string`</b><br/>Set the custom configuration file.|
24+
|`--debug`|Debug logging.|
25+
|`--debug-grpc`|Debug gRPC logging. Very verbose, used for debugging connection problems.|
26+
|`--no-user-output`|Disable printing user intended output to stderr.|
27+
|`--retry`|<b>`int`</b><br/>Enable gRPC retries. By default, retries are enabled with maximum 5 attempts. Pass 0 to disable retries. Pass any negative value for infinite retries. Even infinite retries are capped with 2 minutes timeout.|
28+
|`--cloud-id`|<b>`string`</b><br/>Set the ID of the cloud to use.|
29+
|`--folder-id`|<b>`string`</b><br/>Set the ID of the folder to use.|
30+
|`--folder-name`|<b>`string`</b><br/>Set the name of the folder to use (will be resolved to id).|
31+
|`--token`|<b>`string`</b><br/>Set the OAuth token to use.|
32+
|`--format`|<b>`string`</b><br/>Set the output format: text (default), yaml, json, json-rest.|
33+
|`-h`,`--help`|Display help for the command.|

en/_cli-ref/cli-ref/managed-services/managed-elasticsearch/cluster/create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Syntax:
2929
|`--edition`|<b>`string`</b><br/> ElasticSearch edition|
3030
|`--labels`|<b>`key=value[,key=value...]`</b><br/> A list of ElasticSearch cluster labels as key-value pairs.|
3131
|`--security-group-ids`|<b>`value[,value]`</b><br/> A list of security groups for the ElasticSearch cluster.|
32-
|`--service-account`|<b>`string`</b><br/> Service account for the Elasticsearch cluster.|
32+
|`--service-account-id`|<b>`string`</b><br/> Service account for the Elasticsearch cluster.|
3333
|`--deletion-protection`| Deletion Protection inhibits deletion of the cluster.|
3434
|`--admin-password`|<b>`string`</b><br/> Password for entity. Usage of --read-admin-password is more secure|
3535
|`--read-admin-password`| Read password for entity from input|

en/_cli-ref/cli-ref/managed-services/managed-elasticsearch/cluster/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ Aliases:
1717
- [yc managed-elasticsearch cluster get](get.md) — Get information about an ElasticSearch cluster.
1818
- [yc managed-elasticsearch cluster list](list.md) — List ElasticSearch clusters in a folder.
1919
- [yc managed-elasticsearch cluster create](create.md) — Create a ElasticSearch cluster.
20+
- [yc managed-elasticsearch cluster restore](restore.md) — Restore a Elasticsearch cluster from a backup.
2021
- [yc managed-elasticsearch cluster delete](delete.md) — Delete a ElasticSearch cluster.
22+
- [yc managed-elasticsearch cluster backup](backup.md) — Create a backup for a Elasticsearch cluster.
23+
- [yc managed-elasticsearch cluster list-backups](list-backups.md) — List available backups for a Elasticsearch cluster.
2124
- [yc managed-elasticsearch cluster list-logs](list-logs.md) — Retrieve logs for a ElasticSearch cluster.
2225
- [yc managed-elasticsearch cluster list-operations](list-operations.md) — List operations for a ElasticSearch cluster.
2326
- [yc managed-elasticsearch cluster start](start.md) — Start the specified ElasticSearch cluster.
@@ -26,6 +29,7 @@ Aliases:
2629
- [yc managed-elasticsearch cluster update-config](update-config.md) — Update the configuration of a ElasticSearch cluster.
2730
- [yc managed-elasticsearch cluster add-labels](add-labels.md) — Assign labels to a ElasticSearch cluster.
2831
- [yc managed-elasticsearch cluster remove-labels](remove-labels.md) — Remove labels from specified ElasticSearch cluster
32+
- [yc managed-elasticsearch cluster reschedule-maintenance](reschedule-maintenance.md) — Reschedule currently planned maintenance operation.
2933

3034
#### Flags
3135

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# yc managed-elasticsearch cluster list-backups
2+
3+
List available backups for a Elasticsearch cluster.
4+
5+
#### Command Usage
6+
7+
Syntax:
8+
9+
`yc managed-elasticsearch cluster list-backups <CLUSTER-NAME>|<CLUSTER-ID> [Global Flags...]`
10+
11+
#### Global Flags
12+
13+
| Flag | Description |
14+
|----|----|
15+
|`--id`|<b>`string`</b><br/>ID of the ElasticSearch cluster.|
16+
|`--name`|<b>`string`</b><br/>Name of the ElasticSearch cluster.|
17+
|`--limit`|<b>`int`</b><br/>The maximum number of items to list.|
18+
19+
#### Flags
20+
21+
| Flag | Description |
22+
|----|----|
23+
|`--profile`|<b>`string`</b><br/>Set the custom configuration file.|
24+
|`--debug`|Debug logging.|
25+
|`--debug-grpc`|Debug gRPC logging. Very verbose, used for debugging connection problems.|
26+
|`--no-user-output`|Disable printing user intended output to stderr.|
27+
|`--retry`|<b>`int`</b><br/>Enable gRPC retries. By default, retries are enabled with maximum 5 attempts. Pass 0 to disable retries. Pass any negative value for infinite retries. Even infinite retries are capped with 2 minutes timeout.|
28+
|`--cloud-id`|<b>`string`</b><br/>Set the ID of the cloud to use.|
29+
|`--folder-id`|<b>`string`</b><br/>Set the ID of the folder to use.|
30+
|`--folder-name`|<b>`string`</b><br/>Set the name of the folder to use (will be resolved to id).|
31+
|`--token`|<b>`string`</b><br/>Set the OAuth token to use.|
32+
|`--format`|<b>`string`</b><br/>Set the output format: text (default), yaml, json, json-rest.|
33+
|`-h`,`--help`|Display help for the command.|
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# yc managed-elasticsearch cluster reschedule-maintenance
2+
3+
Reschedule currently planned maintenance operation.
4+
5+
#### Command Usage
6+
7+
Syntax:
8+
9+
`yc managed-elasticsearch cluster reschedule-maintenance <CLUSTER-NAME>|<CLUSTER-ID> [Flags...] [Global Flags...]`
10+
11+
#### Global Flags
12+
13+
| Flag | Description |
14+
|----|----|
15+
|`--id`|<b>`string`</b><br/>ID of the ElasticSearch cluster.|
16+
|`--name`|<b>`string`</b><br/>Name of the ElasticSearch cluster.|
17+
|`--async`|Display information about the operation in progress, without waiting for the operation to complete.|
18+
|`--reschedule-type`|<b>`string`</b><br/>Type of the reschedule of currently planned maintenance operation. Values: 'immediate', 'next-available-window', 'specific-time'|
19+
|`--delayed-until`|<b>`timestamp`</b><br/>New timestamp of currently maintenance operation when selected SPECIFIC_TIME reschedule type. Format: RFC-3339, HH:MM:SS, or a moment of time relative to the current time. Examples: '2006-01-02T15:04:05Z', '15:04:05', '2h' or '3h30m ago'.|
20+
21+
#### Flags
22+
23+
| Flag | Description |
24+
|----|----|
25+
|`--profile`|<b>`string`</b><br/>Set the custom configuration file.|
26+
|`--debug`|Debug logging.|
27+
|`--debug-grpc`|Debug gRPC logging. Very verbose, used for debugging connection problems.|
28+
|`--no-user-output`|Disable printing user intended output to stderr.|
29+
|`--retry`|<b>`int`</b><br/>Enable gRPC retries. By default, retries are enabled with maximum 5 attempts. Pass 0 to disable retries. Pass any negative value for infinite retries. Even infinite retries are capped with 2 minutes timeout.|
30+
|`--cloud-id`|<b>`string`</b><br/>Set the ID of the cloud to use.|
31+
|`--folder-id`|<b>`string`</b><br/>Set the ID of the folder to use.|
32+
|`--folder-name`|<b>`string`</b><br/>Set the name of the folder to use (will be resolved to id).|
33+
|`--token`|<b>`string`</b><br/>Set the OAuth token to use.|
34+
|`--format`|<b>`string`</b><br/>Set the output format: text (default), yaml, json, json-rest.|
35+
|`-h`,`--help`|Display help for the command.|

0 commit comments

Comments
 (0)