import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import type { DescribeRegistryRequest, DescribeRegistryResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeRegistryCommand}. */ export interface DescribeRegistryCommandInput extends DescribeRegistryRequest { } /** * @public * * The output of {@link DescribeRegistryCommand}. */ export interface DescribeRegistryCommandOutput extends DescribeRegistryResponse, __MetadataBearer { } declare const DescribeRegistryCommand_base: { new (input: DescribeRegistryCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [DescribeRegistryCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Describes the settings for a registry. The replication configuration for a repository * can be created or updated with the PutReplicationConfiguration API * action.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ECRClient, DescribeRegistryCommand } from "@aws-sdk/client-ecr"; // ES Modules import * // const { ECRClient, DescribeRegistryCommand } = require("@aws-sdk/client-ecr"); // CommonJS import * // import type { ECRClientConfig } from "@aws-sdk/client-ecr"; * const config = {}; // type is ECRClientConfig * const client = new ECRClient(config); * const input = {}; * const command = new DescribeRegistryCommand(input); * const response = await client.send(command); * // { // DescribeRegistryResponse * // registryId: "STRING_VALUE", * // replicationConfiguration: { // ReplicationConfiguration * // rules: [ // ReplicationRuleList // required * // { // ReplicationRule * // destinations: [ // ReplicationDestinationList // required * // { // ReplicationDestination * // region: "STRING_VALUE", // required * // registryId: "STRING_VALUE", // required * // }, * // ], * // repositoryFilters: [ // RepositoryFilterList * // { // RepositoryFilter * // filter: "STRING_VALUE", // required * // filterType: "PREFIX_MATCH", // required * // }, * // ], * // }, * // ], * // }, * // }; * * ``` * * @param DescribeRegistryCommandInput - {@link DescribeRegistryCommandInput} * @returns {@link DescribeRegistryCommandOutput} * @see {@link DescribeRegistryCommandInput} for command's `input` shape. * @see {@link DescribeRegistryCommandOutput} for command's `response` shape. * @see {@link ECRClientResolvedConfig | config} for ECRClient's `config` shape. * * @throws {@link InvalidParameterException} (client fault) *

The specified parameter is invalid. Review the available parameters for the API * request.

* * @throws {@link ServerException} (server fault) *

These errors are usually caused by a server-side issue.

* * @throws {@link ValidationException} (client fault) *

There was an exception validating this request.

* * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* * * @public */ export declare class DescribeRegistryCommand extends DescribeRegistryCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: {}; output: DescribeRegistryResponse; }; sdk: { input: DescribeRegistryCommandInput; output: DescribeRegistryCommandOutput; }; }; }