56 lines
1.8 KiB
YAML
56 lines
1.8 KiB
YAML
- release_tracks: [GA]
|
|
help_text:
|
|
brief: |
|
|
Create an Artifact Registry rule.
|
|
description: |
|
|
Create a new Artifact Registry rule.
|
|
|
|
This command can fail for the following reasons:
|
|
* A rule with the same name already exists.
|
|
* The active account does not have permission to create repositories.
|
|
* A rule with given package already exists.
|
|
examples: |
|
|
To create a rule with the name `my-rule` for package `my-pkg` with action deny
|
|
under the current project, repository, run:
|
|
|
|
$ {command} my-rule --package=my-pkg --action=deny
|
|
|
|
arguments:
|
|
resource:
|
|
spec: !REF googlecloudsdk.command_lib.artifacts.resources:rule
|
|
help_text: |
|
|
The Artifact Registry rule to create.
|
|
params:
|
|
- arg_name: action
|
|
required: true
|
|
api_field: googleDevtoolsArtifactregistryV1Rule.action
|
|
help_text: |
|
|
The action the rule would make, can only be DENY or ALLOW.
|
|
choices:
|
|
- arg_value: ALLOW
|
|
enum_value: ALLOW
|
|
- arg_value: DENY
|
|
enum_value: DENY
|
|
- arg_name: operation
|
|
api_field: googleDevtoolsArtifactregistryV1Rule.operation
|
|
default: DOWNLOAD
|
|
choices:
|
|
- arg_value: DOWNLOAD
|
|
enum_value: DOWNLOAD
|
|
help_text: |
|
|
The operation the rule applies to.
|
|
- arg_name: package
|
|
api_field: googleDevtoolsArtifactregistryV1Rule.packageId
|
|
help_text: |
|
|
The package the rule applies to. Empty means the rule is set for the entire repository.
|
|
- arg_name: condition
|
|
api_field: googleDevtoolsArtifactregistryV1Rule.condition.expression
|
|
help_text: |
|
|
The CEL expression for the rule.
|
|
|
|
request:
|
|
api_version: v1
|
|
collection: artifactregistry.projects.locations.repositories.rules
|
|
modify_request_hooks:
|
|
- googlecloudsdk.command_lib.artifacts.util:AppendRuleDataToRequest
|