Share via


TokensOperations Class

Warning

DO NOT instantiate this class directly.

Instead, you should access the following operations through

ContainerRegistryManagementClient's

<xref:tokens> attribute.

Constructor

TokensOperations(*args, **kwargs)

Methods

begin_create

Creates a token for a container registry with the specified parameters.

begin_delete

Deletes a token from a container registry.

begin_update

Updates a token with the specified parameters.

get

Gets the properties of the specified token.

list

Lists all the tokens for the specified container registry.

begin_create

Creates a token for a container registry with the specified parameters.

begin_create(resource_group_name: str, registry_name: str, token_name: str, token_create_parameters: _models.Token, *, content_type: str = 'application/json', **kwargs: Any) -> LROPoller[_models.Token]

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group. The name is case insensitive. Required.

registry_name
Required
str

The name of the container registry. Required.

token_name
Required
str

The name of the token. Required.

token_create_parameters
Required
Token or <xref:JSON> or IO[bytes]

The parameters for creating a token. Is one of the following types: Token, JSON, IO[bytes] Required.

Returns

Type Description

An instance of LROPoller that returns Token. The Token is compatible with MutableMapping

Exceptions

Type Description

begin_delete

Deletes a token from a container registry.

begin_delete(resource_group_name: str, registry_name: str, token_name: str, **kwargs: Any) -> LROPoller[None]

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group. The name is case insensitive. Required.

registry_name
Required
str

The name of the container registry. Required.

token_name
Required
str

The name of the token. Required.

Returns

Type Description

An instance of LROPoller that returns None

Exceptions

Type Description

begin_update

Updates a token with the specified parameters.

begin_update(resource_group_name: str, registry_name: str, token_name: str, token_update_parameters: _models.TokenUpdateParameters, *, content_type: str = 'application/json', **kwargs: Any) -> LROPoller[_models.Token]

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group. The name is case insensitive. Required.

registry_name
Required
str

The name of the container registry. Required.

token_name
Required
str

The name of the token. Required.

token_update_parameters
Required
TokenUpdateParameters or <xref:JSON> or IO[bytes]

The parameters for updating a token. Is one of the following types: TokenUpdateParameters, JSON, IO[bytes] Required.

Returns

Type Description

An instance of LROPoller that returns Token. The Token is compatible with MutableMapping

Exceptions

Type Description

get

Gets the properties of the specified token.

get(resource_group_name: str, registry_name: str, token_name: str, **kwargs: Any) -> Token

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group. The name is case insensitive. Required.

registry_name
Required
str

The name of the container registry. Required.

token_name
Required
str

The name of the token. Required.

Returns

Type Description

Token. The Token is compatible with MutableMapping

Exceptions

Type Description

list

Lists all the tokens for the specified container registry.

list(resource_group_name: str, registry_name: str, **kwargs: Any) -> ItemPaged[Token]

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group. The name is case insensitive. Required.

registry_name
Required
str

The name of the container registry. Required.

Returns

Type Description

An iterator like instance of Token

Exceptions

Type Description