@azure/arm-containerregistry 9.0.0-alpha.20211025.2 → 10.0.0-alpha.20211105.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -13
- package/dist/index.js +705 -682
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/src/containerRegistryManagementClientContext.js +1 -1
- package/dist-esm/src/containerRegistryManagementClientContext.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +185 -177
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +2 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +16 -16
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +312 -291
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/models/parameters.d.ts +1 -1
- package/dist-esm/src/models/parameters.d.ts.map +1 -1
- package/dist-esm/src/models/parameters.js +10 -10
- package/dist-esm/src/models/parameters.js.map +1 -1
- package/dist-esm/src/operations/connectedRegistries.d.ts +7 -7
- package/dist-esm/src/operations/connectedRegistries.d.ts.map +1 -1
- package/dist-esm/src/operations/connectedRegistries.js +30 -30
- package/dist-esm/src/operations/connectedRegistries.js.map +1 -1
- package/dist-esm/src/operations/exportPipelines.d.ts +7 -7
- package/dist-esm/src/operations/exportPipelines.d.ts.map +1 -1
- package/dist-esm/src/operations/exportPipelines.js +27 -27
- package/dist-esm/src/operations/exportPipelines.js.map +1 -1
- package/dist-esm/src/operations/importPipelines.d.ts +7 -7
- package/dist-esm/src/operations/importPipelines.d.ts.map +1 -1
- package/dist-esm/src/operations/importPipelines.js +27 -27
- package/dist-esm/src/operations/importPipelines.js.map +1 -1
- package/dist-esm/src/operations/pipelineRuns.d.ts +7 -7
- package/dist-esm/src/operations/pipelineRuns.d.ts.map +1 -1
- package/dist-esm/src/operations/pipelineRuns.js +27 -27
- package/dist-esm/src/operations/pipelineRuns.js.map +1 -1
- package/dist-esm/src/operations/privateEndpointConnections.d.ts +7 -7
- package/dist-esm/src/operations/privateEndpointConnections.d.ts.map +1 -1
- package/dist-esm/src/operations/privateEndpointConnections.js +27 -27
- package/dist-esm/src/operations/privateEndpointConnections.js.map +1 -1
- package/dist-esm/src/operations/registries.d.ts +32 -32
- package/dist-esm/src/operations/registries.d.ts.map +1 -1
- package/dist-esm/src/operations/registries.js +102 -102
- package/dist-esm/src/operations/registries.js.map +1 -1
- package/dist-esm/src/operations/replications.d.ts +7 -7
- package/dist-esm/src/operations/replications.d.ts.map +1 -1
- package/dist-esm/src/operations/replications.js +27 -27
- package/dist-esm/src/operations/replications.js.map +1 -1
- package/dist-esm/src/operations/scopeMaps.d.ts +7 -7
- package/dist-esm/src/operations/scopeMaps.d.ts.map +1 -1
- package/dist-esm/src/operations/scopeMaps.js +27 -27
- package/dist-esm/src/operations/scopeMaps.js.map +1 -1
- package/dist-esm/src/operations/tokens.d.ts +7 -7
- package/dist-esm/src/operations/tokens.d.ts.map +1 -1
- package/dist-esm/src/operations/tokens.js +27 -27
- package/dist-esm/src/operations/tokens.js.map +1 -1
- package/dist-esm/src/operations/webhooks.d.ts +11 -11
- package/dist-esm/src/operations/webhooks.d.ts.map +1 -1
- package/dist-esm/src/operations/webhooks.js +39 -39
- package/dist-esm/src/operations/webhooks.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/registries.d.ts +13 -13
- package/dist-esm/src/operationsInterfaces/registries.d.ts.map +1 -1
- package/package.json +4 -5
- package/review/arm-containerregistry.api.md +13 -6
- package/src/containerRegistryManagementClientContext.ts +1 -1
- package/src/models/index.ts +215 -207
- package/src/models/mappers.ts +330 -308
- package/src/models/parameters.ts +11 -11
- package/src/operations/connectedRegistries.ts +40 -40
- package/src/operations/exportPipelines.ts +37 -37
- package/src/operations/importPipelines.ts +37 -37
- package/src/operations/pipelineRuns.ts +37 -37
- package/src/operations/privateEndpointConnections.ts +37 -37
- package/src/operations/registries.ts +152 -152
- package/src/operations/replications.ts +37 -37
- package/src/operations/scopeMaps.ts +37 -37
- package/src/operations/tokens.ts +37 -37
- package/src/operations/webhooks.ts +54 -54
- package/src/operationsInterfaces/registries.ts +21 -21
- package/types/arm-containerregistry.d.ts +27 -17
- package/types/tsdoc-metadata.json +1 -1
@@ -2,6 +2,13 @@ import * as coreClient from "@azure/core-client";
|
|
2
2
|
export declare type RunRequestUnion = RunRequest | DockerBuildRequest | FileTaskRunRequest | TaskRunRequest | EncodedTaskRunRequest;
|
3
3
|
export declare type TaskStepPropertiesUnion = TaskStepProperties | DockerBuildStep | FileTaskStep | EncodedTaskStep;
|
4
4
|
export declare type TaskStepUpdateParametersUnion = TaskStepUpdateParameters | DockerBuildStepUpdateParameters | FileTaskStepUpdateParameters | EncodedTaskStepUpdateParameters;
|
5
|
+
/** The result of a request to list connected registries for a container registry. */
|
6
|
+
export interface ConnectedRegistryListResult {
|
7
|
+
/** The list of connected registries. Since this list may be incomplete, the nextLink field should be used to request the next list of connected registries. */
|
8
|
+
value?: ConnectedRegistry[];
|
9
|
+
/** The URI that can be used to request the next list of connected registries. */
|
10
|
+
nextLink?: string;
|
11
|
+
}
|
5
12
|
/** The resource model definition for a ARM proxy resource. It will have everything other than required location and tags. */
|
6
13
|
export interface ProxyResource {
|
7
14
|
/**
|
@@ -183,6 +190,8 @@ export interface ConnectedRegistryUpdateParameters {
|
|
183
190
|
logging?: LoggingProperties;
|
184
191
|
/** The list of the ACR token resource IDs used to authenticate clients to the connected registry. */
|
185
192
|
clientTokenIds?: string[];
|
193
|
+
/** The list of notifications subscription information for the connected registry. */
|
194
|
+
notificationsList?: string[];
|
186
195
|
}
|
187
196
|
/** The parameters for updating the sync properties of the connected registry with its parent. */
|
188
197
|
export interface SyncUpdateProperties {
|
@@ -193,11 +202,11 @@ export interface SyncUpdateProperties {
|
|
193
202
|
/** The period of time for which a message is available to sync before it is expired. Specify the duration using the format P[n]Y[n]M[n]DT[n]H[n]M[n]S as per ISO8601. */
|
194
203
|
messageTtl?: string;
|
195
204
|
}
|
196
|
-
/** The result of a request to list
|
197
|
-
export interface
|
198
|
-
/** The list of
|
199
|
-
value?:
|
200
|
-
/** The URI that can be used to request the next list of
|
205
|
+
/** The result of a request to list export pipelines for a container registry. */
|
206
|
+
export interface ExportPipelineListResult {
|
207
|
+
/** The list of export pipelines. Since this list may be incomplete, the nextLink field should be used to request the next list of export pipelines. */
|
208
|
+
value?: ExportPipeline[];
|
209
|
+
/** The URI that can be used to request the next list of pipeline runs. */
|
201
210
|
nextLink?: string;
|
202
211
|
}
|
203
212
|
/** Managed identity for the resource. */
|
@@ -237,13 +246,6 @@ export interface ExportPipelineTargetProperties {
|
|
237
246
|
/** They key vault secret uri to obtain the target storage SAS token. */
|
238
247
|
keyVaultUri: string;
|
239
248
|
}
|
240
|
-
/** The result of a request to list export pipelines for a container registry. */
|
241
|
-
export interface ExportPipelineListResult {
|
242
|
-
/** The list of export pipelines. Since this list may be incomplete, the nextLink field should be used to request the next list of export pipelines. */
|
243
|
-
value?: ExportPipeline[];
|
244
|
-
/** The URI that can be used to request the next list of pipeline runs. */
|
245
|
-
nextLink?: string;
|
246
|
-
}
|
247
249
|
export interface ImportImageParameters {
|
248
250
|
/** The source of the image. */
|
249
251
|
source: ImportSource;
|
@@ -275,6 +277,13 @@ export interface ImportSourceCredentials {
|
|
275
277
|
/** The password used to authenticate with the source registry. */
|
276
278
|
password: string;
|
277
279
|
}
|
280
|
+
/** The result of a request to list import pipelines for a container registry. */
|
281
|
+
export interface ImportPipelineListResult {
|
282
|
+
/** The list of import pipelines. Since this list may be incomplete, the nextLink field should be used to request the next list of import pipelines. */
|
283
|
+
value?: ImportPipeline[];
|
284
|
+
/** The URI that can be used to request the next list of pipeline runs. */
|
285
|
+
nextLink?: string;
|
286
|
+
}
|
278
287
|
/** The properties of the import pipeline source. */
|
279
288
|
export interface ImportPipelineSourceProperties {
|
280
289
|
/** The type of source for the import pipeline. */
|
@@ -296,29 +305,6 @@ export interface PipelineSourceTriggerProperties {
|
|
296
305
|
/** The current status of the source trigger. */
|
297
306
|
status: TriggerStatus;
|
298
307
|
}
|
299
|
-
/** The result of a request to list import pipelines for a container registry. */
|
300
|
-
export interface ImportPipelineListResult {
|
301
|
-
/** The list of import pipelines. Since this list may be incomplete, the nextLink field should be used to request the next list of import pipelines. */
|
302
|
-
value?: ImportPipeline[];
|
303
|
-
/** The URI that can be used to request the next list of pipeline runs. */
|
304
|
-
nextLink?: string;
|
305
|
-
}
|
306
|
-
/** A request to check whether a container registry name is available. */
|
307
|
-
export interface RegistryNameCheckRequest {
|
308
|
-
/** The name of the container registry. */
|
309
|
-
name: string;
|
310
|
-
/** The resource type of the container registry. This field must be set to 'Microsoft.ContainerRegistry/registries'. */
|
311
|
-
type: "Microsoft.ContainerRegistry/registries";
|
312
|
-
}
|
313
|
-
/** The result of a request to check the availability of a container registry name. */
|
314
|
-
export interface RegistryNameStatus {
|
315
|
-
/** The value that indicates whether the name is available. */
|
316
|
-
nameAvailable?: boolean;
|
317
|
-
/** If any, the reason that the name is not available. */
|
318
|
-
reason?: string;
|
319
|
-
/** If any, the error message that provides more detail for the reason that the name is not available. */
|
320
|
-
message?: string;
|
321
|
-
}
|
322
308
|
/** The result of a request to list container registry operations. */
|
323
309
|
export interface OperationListResult {
|
324
310
|
/** The list of container registry operations. Since this list may be incomplete, the nextLink field should be used to request the next list of operations. */
|
@@ -384,6 +370,29 @@ export interface OperationLogSpecificationDefinition {
|
|
384
370
|
/** Log blob duration. */
|
385
371
|
blobDuration?: string;
|
386
372
|
}
|
373
|
+
/** A request to check whether a container registry name is available. */
|
374
|
+
export interface RegistryNameCheckRequest {
|
375
|
+
/** The name of the container registry. */
|
376
|
+
name: string;
|
377
|
+
/** The resource type of the container registry. This field must be set to 'Microsoft.ContainerRegistry/registries'. */
|
378
|
+
type: "Microsoft.ContainerRegistry/registries";
|
379
|
+
}
|
380
|
+
/** The result of a request to check the availability of a container registry name. */
|
381
|
+
export interface RegistryNameStatus {
|
382
|
+
/** The value that indicates whether the name is available. */
|
383
|
+
nameAvailable?: boolean;
|
384
|
+
/** If any, the reason that the name is not available. */
|
385
|
+
reason?: string;
|
386
|
+
/** If any, the error message that provides more detail for the reason that the name is not available. */
|
387
|
+
message?: string;
|
388
|
+
}
|
389
|
+
/** The result of a request to list pipeline runs for a container registry. */
|
390
|
+
export interface PipelineRunListResult {
|
391
|
+
/** The list of pipeline runs. Since this list may be incomplete, the nextLink field should be used to request the next list of pipeline runs. */
|
392
|
+
value?: PipelineRun[];
|
393
|
+
/** The URI that can be used to request the next list of pipeline runs. */
|
394
|
+
nextLink?: string;
|
395
|
+
}
|
387
396
|
/** The request properties provided for a pipeline run. */
|
388
397
|
export interface PipelineRunRequest {
|
389
398
|
/** The resource ID of the pipeline to run. */
|
@@ -449,11 +458,11 @@ export interface PipelineSourceTriggerDescriptor {
|
|
449
458
|
/** The timestamp when the source update happened. */
|
450
459
|
timestamp?: Date;
|
451
460
|
}
|
452
|
-
/** The result of a request to list
|
453
|
-
export interface
|
454
|
-
/** The list of
|
455
|
-
value?:
|
456
|
-
/** The URI that can be used to request the next list of
|
461
|
+
/** The result of a request to list private endpoint connections for a container registry. */
|
462
|
+
export interface PrivateEndpointConnectionListResult {
|
463
|
+
/** The list of private endpoint connections. Since this list may be incomplete, the nextLink field should be used to request the next list of private endpoint connections. */
|
464
|
+
value?: PrivateEndpointConnection[];
|
465
|
+
/** The URI that can be used to request the next list of private endpoint connections. */
|
457
466
|
nextLink?: string;
|
458
467
|
}
|
459
468
|
/** The Private Endpoint resource. */
|
@@ -470,11 +479,11 @@ export interface PrivateLinkServiceConnectionState {
|
|
470
479
|
/** A message indicating if changes on the service provider require any updates on the consumer. */
|
471
480
|
actionsRequired?: ActionsRequired;
|
472
481
|
}
|
473
|
-
/** The result of a request to list
|
474
|
-
export interface
|
475
|
-
/** The list of
|
476
|
-
value?:
|
477
|
-
/** The URI that can be used to request the next list of
|
482
|
+
/** The result of a request to list container registries. */
|
483
|
+
export interface RegistryListResult {
|
484
|
+
/** The list of container registries. Since this list may be incomplete, the nextLink field should be used to request the next list of container registries. */
|
485
|
+
value?: Registry[];
|
486
|
+
/** The URI that can be used to request the next list of container registries. */
|
478
487
|
nextLink?: string;
|
479
488
|
}
|
480
489
|
/** An Azure resource. */
|
@@ -651,32 +660,6 @@ export interface RegistryUpdateParameters {
|
|
651
660
|
/** Enables registry-wide pull from unauthenticated clients. */
|
652
661
|
anonymousPullEnabled?: boolean;
|
653
662
|
}
|
654
|
-
/** The result of a request to list container registries. */
|
655
|
-
export interface RegistryListResult {
|
656
|
-
/** The list of container registries. Since this list may be incomplete, the nextLink field should be used to request the next list of container registries. */
|
657
|
-
value?: Registry[];
|
658
|
-
/** The URI that can be used to request the next list of container registries. */
|
659
|
-
nextLink?: string;
|
660
|
-
}
|
661
|
-
/** The response from the ListCredentials operation. */
|
662
|
-
export interface RegistryListCredentialsResult {
|
663
|
-
/** The username for a container registry. */
|
664
|
-
username?: string;
|
665
|
-
/** The list of passwords for a container registry. */
|
666
|
-
passwords?: RegistryPassword[];
|
667
|
-
}
|
668
|
-
/** The login password for the container registry. */
|
669
|
-
export interface RegistryPassword {
|
670
|
-
/** The password name. */
|
671
|
-
name?: PasswordName;
|
672
|
-
/** The password value. */
|
673
|
-
value?: string;
|
674
|
-
}
|
675
|
-
/** The parameters used to regenerate the login credential. */
|
676
|
-
export interface RegenerateCredentialParameters {
|
677
|
-
/** Specifies name of the password which should be regenerated -- password or password2. */
|
678
|
-
name: PasswordName;
|
679
|
-
}
|
680
663
|
/** The result of a request to get container registry quota usages. */
|
681
664
|
export interface RegistryUsageListResult {
|
682
665
|
/** The list of container registry quota usages. */
|
@@ -718,6 +701,32 @@ export interface PrivateLinkResource {
|
|
718
701
|
/** The private link resource Private link DNS zone name. */
|
719
702
|
requiredZoneNames?: string[];
|
720
703
|
}
|
704
|
+
/** The response from the ListCredentials operation. */
|
705
|
+
export interface RegistryListCredentialsResult {
|
706
|
+
/** The username for a container registry. */
|
707
|
+
username?: string;
|
708
|
+
/** The list of passwords for a container registry. */
|
709
|
+
passwords?: RegistryPassword[];
|
710
|
+
}
|
711
|
+
/** The login password for the container registry. */
|
712
|
+
export interface RegistryPassword {
|
713
|
+
/** The password name. */
|
714
|
+
name?: PasswordName;
|
715
|
+
/** The password value. */
|
716
|
+
value?: string;
|
717
|
+
}
|
718
|
+
/** The parameters used to regenerate the login credential. */
|
719
|
+
export interface RegenerateCredentialParameters {
|
720
|
+
/** Specifies name of the password which should be regenerated -- password or password2. */
|
721
|
+
name: PasswordName;
|
722
|
+
}
|
723
|
+
/** The result of a request to list replications for a container registry. */
|
724
|
+
export interface ReplicationListResult {
|
725
|
+
/** The list of replications. Since this list may be incomplete, the nextLink field should be used to request the next list of replications. */
|
726
|
+
value?: Replication[];
|
727
|
+
/** The URI that can be used to request the next list of replications. */
|
728
|
+
nextLink?: string;
|
729
|
+
}
|
721
730
|
/** The parameters for updating a replication. */
|
722
731
|
export interface ReplicationUpdateParameters {
|
723
732
|
/** The tags for the replication. */
|
@@ -727,11 +736,11 @@ export interface ReplicationUpdateParameters {
|
|
727
736
|
/** Specifies whether the replication's regional endpoint is enabled. Requests will not be routed to a replication whose regional endpoint is disabled, however its data will continue to be synced with other replications. */
|
728
737
|
regionEndpointEnabled?: boolean;
|
729
738
|
}
|
730
|
-
/** The result of a request to list
|
731
|
-
export interface
|
732
|
-
/** The list of
|
733
|
-
value?:
|
734
|
-
/** The URI that can be used to request the next list of
|
739
|
+
/** The result of a request to list scope maps for a container registry. */
|
740
|
+
export interface ScopeMapListResult {
|
741
|
+
/** The list of scope maps. Since this list may be incomplete, the nextLink field should be used to request the next list of scope maps. */
|
742
|
+
value?: ScopeMap[];
|
743
|
+
/** The URI that can be used to request the next list of scope maps. */
|
735
744
|
nextLink?: string;
|
736
745
|
}
|
737
746
|
/** The properties for updating the scope map. */
|
@@ -745,11 +754,11 @@ export interface ScopeMapUpdateParameters {
|
|
745
754
|
*/
|
746
755
|
actions?: string[];
|
747
756
|
}
|
748
|
-
/** The result of a request to list
|
749
|
-
export interface
|
750
|
-
/** The list of
|
751
|
-
value?:
|
752
|
-
/** The URI that can be used to request the next list of
|
757
|
+
/** The result of a request to list tokens for a container registry. */
|
758
|
+
export interface TokenListResult {
|
759
|
+
/** The list of tokens. Since this list may be incomplete, the nextLink field should be used to request the next list of tokens. */
|
760
|
+
value?: Token[];
|
761
|
+
/** The URI that can be used to request the next list of tokens. */
|
753
762
|
nextLink?: string;
|
754
763
|
}
|
755
764
|
/** The properties of the credentials that can be used for authenticating the token. */
|
@@ -790,13 +799,6 @@ export interface TokenUpdateParameters {
|
|
790
799
|
/** The credentials that can be used for authenticating the token. */
|
791
800
|
credentials?: TokenCredentialsProperties;
|
792
801
|
}
|
793
|
-
/** The result of a request to list tokens for a container registry. */
|
794
|
-
export interface TokenListResult {
|
795
|
-
/** The list of tokens. Since this list may be incomplete, the nextLink field should be used to request the next list of tokens. */
|
796
|
-
value?: Token[];
|
797
|
-
/** The URI that can be used to request the next list of tokens. */
|
798
|
-
nextLink?: string;
|
799
|
-
}
|
800
802
|
/** The parameters used to generate credentials for a specified token or user of a container registry. */
|
801
803
|
export interface GenerateCredentialsParameters {
|
802
804
|
/** The resource ID of the token for which credentials have to be generated. */
|
@@ -813,6 +815,13 @@ export interface GenerateCredentialsResult {
|
|
813
815
|
/** The list of passwords for a container registry. */
|
814
816
|
passwords?: TokenPassword[];
|
815
817
|
}
|
818
|
+
/** The result of a request to list webhooks for a container registry. */
|
819
|
+
export interface WebhookListResult {
|
820
|
+
/** The list of webhooks. Since this list may be incomplete, the nextLink field should be used to request the next list of webhooks. */
|
821
|
+
value?: Webhook[];
|
822
|
+
/** The URI that can be used to request the next list of webhooks. */
|
823
|
+
nextLink?: string;
|
824
|
+
}
|
816
825
|
/** The parameters for creating a webhook. */
|
817
826
|
export interface WebhookCreateParameters {
|
818
827
|
/** The tags for the webhook. */
|
@@ -853,27 +862,11 @@ export interface WebhookUpdateParameters {
|
|
853
862
|
/** The list of actions that trigger the webhook to post notifications. */
|
854
863
|
actions?: WebhookAction[];
|
855
864
|
}
|
856
|
-
/** The result of a request to list webhooks for a container registry. */
|
857
|
-
export interface WebhookListResult {
|
858
|
-
/** The list of webhooks. Since this list may be incomplete, the nextLink field should be used to request the next list of webhooks. */
|
859
|
-
value?: Webhook[];
|
860
|
-
/** The URI that can be used to request the next list of webhooks. */
|
861
|
-
nextLink?: string;
|
862
|
-
}
|
863
865
|
/** The basic information of an event. */
|
864
866
|
export interface EventInfo {
|
865
867
|
/** The event ID. */
|
866
868
|
id?: string;
|
867
869
|
}
|
868
|
-
/** The configuration of service URI and custom headers for the webhook. */
|
869
|
-
export interface CallbackConfig {
|
870
|
-
/** The service URI for the webhook to post notifications. */
|
871
|
-
serviceUri: string;
|
872
|
-
/** Custom headers that will be added to the webhook notifications. */
|
873
|
-
customHeaders?: {
|
874
|
-
[propertyName: string]: string;
|
875
|
-
};
|
876
|
-
}
|
877
870
|
/** The result of a request to list events for a webhook. */
|
878
871
|
export interface EventListResult {
|
879
872
|
/** The list of events. Since this list may be incomplete, the nextLink field should be used to request the next list of events. */
|
@@ -974,6 +967,15 @@ export interface EventResponseMessage {
|
|
974
967
|
/** The HTTP message version. */
|
975
968
|
version?: string;
|
976
969
|
}
|
970
|
+
/** The configuration of service URI and custom headers for the webhook. */
|
971
|
+
export interface CallbackConfig {
|
972
|
+
/** The service URI for the webhook to post notifications. */
|
973
|
+
serviceUri: string;
|
974
|
+
/** Custom headers that will be added to the webhook notifications. */
|
975
|
+
customHeaders?: {
|
976
|
+
[propertyName: string]: string;
|
977
|
+
};
|
978
|
+
}
|
977
979
|
/** The parameters for updating an agent pool. */
|
978
980
|
export interface AgentPoolUpdateParameters {
|
979
981
|
/** The ARM resource tags. */
|
@@ -1490,6 +1492,8 @@ export declare type ConnectedRegistry = ProxyResource & {
|
|
1490
1492
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
1491
1493
|
*/
|
1492
1494
|
readonly statusDetails?: StatusDetailProperties[];
|
1495
|
+
/** The list of notifications subscription information for the connected registry. */
|
1496
|
+
notificationsList?: string[];
|
1493
1497
|
};
|
1494
1498
|
/** An object that represents an export pipeline for a container registry. */
|
1495
1499
|
export declare type ExportPipeline = ProxyResource & {
|
@@ -2051,6 +2055,8 @@ export declare enum KnownProvisioningState {
|
|
2051
2055
|
export declare type ProvisioningState = string;
|
2052
2056
|
/** Known values of {@link ConnectedRegistryMode} that the service accepts. */
|
2053
2057
|
export declare enum KnownConnectedRegistryMode {
|
2058
|
+
ReadWrite = "ReadWrite",
|
2059
|
+
ReadOnly = "ReadOnly",
|
2054
2060
|
Registry = "Registry",
|
2055
2061
|
Mirror = "Mirror"
|
2056
2062
|
}
|
@@ -2059,6 +2065,8 @@ export declare enum KnownConnectedRegistryMode {
|
|
2059
2065
|
* {@link KnownConnectedRegistryMode} can be used interchangeably with ConnectedRegistryMode,
|
2060
2066
|
* this enum contains the known values that the service supports.
|
2061
2067
|
* ### Known values supported by the service
|
2068
|
+
* **ReadWrite** \
|
2069
|
+
* **ReadOnly** \
|
2062
2070
|
* **Registry** \
|
2063
2071
|
* **Mirror**
|
2064
2072
|
*/
|
@@ -2758,6 +2766,13 @@ export declare type ResourceIdentityType = "SystemAssigned" | "UserAssigned" | "
|
|
2758
2766
|
/** Defines values for PasswordName. */
|
2759
2767
|
export declare type PasswordName = "password" | "password2";
|
2760
2768
|
/** Optional parameters. */
|
2769
|
+
export interface ConnectedRegistriesListOptionalParams extends coreClient.OperationOptions {
|
2770
|
+
/** An OData filter expression that describes a subset of connectedRegistries to return. The parameters that can be filtered are parent.id (the resource id of the connectedRegistry parent), mode, and connectionState. The supported operator is eq. */
|
2771
|
+
filter?: string;
|
2772
|
+
}
|
2773
|
+
/** Contains response data for the list operation. */
|
2774
|
+
export declare type ConnectedRegistriesListResponse = ConnectedRegistryListResult;
|
2775
|
+
/** Optional parameters. */
|
2761
2776
|
export interface ConnectedRegistriesGetOptionalParams extends coreClient.OperationOptions {
|
2762
2777
|
}
|
2763
2778
|
/** Contains response data for the get operation. */
|
@@ -2788,13 +2803,6 @@ export interface ConnectedRegistriesUpdateOptionalParams extends coreClient.Oper
|
|
2788
2803
|
/** Contains response data for the update operation. */
|
2789
2804
|
export declare type ConnectedRegistriesUpdateResponse = ConnectedRegistry;
|
2790
2805
|
/** Optional parameters. */
|
2791
|
-
export interface ConnectedRegistriesListOptionalParams extends coreClient.OperationOptions {
|
2792
|
-
/** An OData filter expression that describes a subset of connectedRegistries to return. The parameters that can be filtered are parent.id (the resource id of the connectedRegistry parent), mode, and connectionState. The supported operator is eq. */
|
2793
|
-
filter?: string;
|
2794
|
-
}
|
2795
|
-
/** Contains response data for the list operation. */
|
2796
|
-
export declare type ConnectedRegistriesListResponse = ConnectedRegistryListResult;
|
2797
|
-
/** Optional parameters. */
|
2798
2806
|
export interface ConnectedRegistriesDeactivateOptionalParams extends coreClient.OperationOptions {
|
2799
2807
|
/** Delay to wait until next poll, in milliseconds. */
|
2800
2808
|
updateIntervalInMs?: number;
|
@@ -2809,6 +2817,11 @@ export interface ConnectedRegistriesListNextOptionalParams extends coreClient.Op
|
|
2809
2817
|
/** Contains response data for the listNext operation. */
|
2810
2818
|
export declare type ConnectedRegistriesListNextResponse = ConnectedRegistryListResult;
|
2811
2819
|
/** Optional parameters. */
|
2820
|
+
export interface ExportPipelinesListOptionalParams extends coreClient.OperationOptions {
|
2821
|
+
}
|
2822
|
+
/** Contains response data for the list operation. */
|
2823
|
+
export declare type ExportPipelinesListResponse = ExportPipelineListResult;
|
2824
|
+
/** Optional parameters. */
|
2812
2825
|
export interface ExportPipelinesGetOptionalParams extends coreClient.OperationOptions {
|
2813
2826
|
}
|
2814
2827
|
/** Contains response data for the get operation. */
|
@@ -2830,11 +2843,6 @@ export interface ExportPipelinesDeleteOptionalParams extends coreClient.Operatio
|
|
2830
2843
|
resumeFrom?: string;
|
2831
2844
|
}
|
2832
2845
|
/** Optional parameters. */
|
2833
|
-
export interface ExportPipelinesListOptionalParams extends coreClient.OperationOptions {
|
2834
|
-
}
|
2835
|
-
/** Contains response data for the list operation. */
|
2836
|
-
export declare type ExportPipelinesListResponse = ExportPipelineListResult;
|
2837
|
-
/** Optional parameters. */
|
2838
2846
|
export interface ExportPipelinesListNextOptionalParams extends coreClient.OperationOptions {
|
2839
2847
|
}
|
2840
2848
|
/** Contains response data for the listNext operation. */
|
@@ -2852,6 +2860,16 @@ export interface RegistriesCheckNameAvailabilityOptionalParams extends coreClien
|
|
2852
2860
|
/** Contains response data for the checkNameAvailability operation. */
|
2853
2861
|
export declare type RegistriesCheckNameAvailabilityResponse = RegistryNameStatus;
|
2854
2862
|
/** Optional parameters. */
|
2863
|
+
export interface RegistriesListOptionalParams extends coreClient.OperationOptions {
|
2864
|
+
}
|
2865
|
+
/** Contains response data for the list operation. */
|
2866
|
+
export declare type RegistriesListResponse = RegistryListResult;
|
2867
|
+
/** Optional parameters. */
|
2868
|
+
export interface RegistriesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
2869
|
+
}
|
2870
|
+
/** Contains response data for the listByResourceGroup operation. */
|
2871
|
+
export declare type RegistriesListByResourceGroupResponse = RegistryListResult;
|
2872
|
+
/** Optional parameters. */
|
2855
2873
|
export interface RegistriesGetOptionalParams extends coreClient.OperationOptions {
|
2856
2874
|
}
|
2857
2875
|
/** Contains response data for the get operation. */
|
@@ -2882,15 +2900,15 @@ export interface RegistriesUpdateOptionalParams extends coreClient.OperationOpti
|
|
2882
2900
|
/** Contains response data for the update operation. */
|
2883
2901
|
export declare type RegistriesUpdateResponse = Registry;
|
2884
2902
|
/** Optional parameters. */
|
2885
|
-
export interface
|
2903
|
+
export interface RegistriesListUsagesOptionalParams extends coreClient.OperationOptions {
|
2886
2904
|
}
|
2887
|
-
/** Contains response data for the
|
2888
|
-
export declare type
|
2905
|
+
/** Contains response data for the listUsages operation. */
|
2906
|
+
export declare type RegistriesListUsagesResponse = RegistryUsageListResult;
|
2889
2907
|
/** Optional parameters. */
|
2890
|
-
export interface
|
2908
|
+
export interface RegistriesListPrivateLinkResourcesOptionalParams extends coreClient.OperationOptions {
|
2891
2909
|
}
|
2892
|
-
/** Contains response data for the
|
2893
|
-
export declare type
|
2910
|
+
/** Contains response data for the listPrivateLinkResources operation. */
|
2911
|
+
export declare type RegistriesListPrivateLinkResourcesResponse = PrivateLinkResourceListResult;
|
2894
2912
|
/** Optional parameters. */
|
2895
2913
|
export interface RegistriesListCredentialsOptionalParams extends coreClient.OperationOptions {
|
2896
2914
|
}
|
@@ -2902,16 +2920,6 @@ export interface RegistriesRegenerateCredentialOptionalParams extends coreClient
|
|
2902
2920
|
/** Contains response data for the regenerateCredential operation. */
|
2903
2921
|
export declare type RegistriesRegenerateCredentialResponse = RegistryListCredentialsResult;
|
2904
2922
|
/** Optional parameters. */
|
2905
|
-
export interface RegistriesListUsagesOptionalParams extends coreClient.OperationOptions {
|
2906
|
-
}
|
2907
|
-
/** Contains response data for the listUsages operation. */
|
2908
|
-
export declare type RegistriesListUsagesResponse = RegistryUsageListResult;
|
2909
|
-
/** Optional parameters. */
|
2910
|
-
export interface RegistriesListPrivateLinkResourcesOptionalParams extends coreClient.OperationOptions {
|
2911
|
-
}
|
2912
|
-
/** Contains response data for the listPrivateLinkResources operation. */
|
2913
|
-
export declare type RegistriesListPrivateLinkResourcesResponse = PrivateLinkResourceListResult;
|
2914
|
-
/** Optional parameters. */
|
2915
2923
|
export interface RegistriesGenerateCredentialsOptionalParams extends coreClient.OperationOptions {
|
2916
2924
|
/** Delay to wait until next poll, in milliseconds. */
|
2917
2925
|
updateIntervalInMs?: number;
|
@@ -2935,21 +2943,26 @@ export interface RegistriesGetBuildSourceUploadUrlOptionalParams extends coreCli
|
|
2935
2943
|
/** Contains response data for the getBuildSourceUploadUrl operation. */
|
2936
2944
|
export declare type RegistriesGetBuildSourceUploadUrlResponse = SourceUploadDefinition;
|
2937
2945
|
/** Optional parameters. */
|
2938
|
-
export interface RegistriesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
2939
|
-
}
|
2940
|
-
/** Contains response data for the listByResourceGroupNext operation. */
|
2941
|
-
export declare type RegistriesListByResourceGroupNextResponse = RegistryListResult;
|
2942
|
-
/** Optional parameters. */
|
2943
2946
|
export interface RegistriesListNextOptionalParams extends coreClient.OperationOptions {
|
2944
2947
|
}
|
2945
2948
|
/** Contains response data for the listNext operation. */
|
2946
2949
|
export declare type RegistriesListNextResponse = RegistryListResult;
|
2947
2950
|
/** Optional parameters. */
|
2951
|
+
export interface RegistriesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
2952
|
+
}
|
2953
|
+
/** Contains response data for the listByResourceGroupNext operation. */
|
2954
|
+
export declare type RegistriesListByResourceGroupNextResponse = RegistryListResult;
|
2955
|
+
/** Optional parameters. */
|
2948
2956
|
export interface RegistriesListPrivateLinkResourcesNextOptionalParams extends coreClient.OperationOptions {
|
2949
2957
|
}
|
2950
2958
|
/** Contains response data for the listPrivateLinkResourcesNext operation. */
|
2951
2959
|
export declare type RegistriesListPrivateLinkResourcesNextResponse = PrivateLinkResourceListResult;
|
2952
2960
|
/** Optional parameters. */
|
2961
|
+
export interface ImportPipelinesListOptionalParams extends coreClient.OperationOptions {
|
2962
|
+
}
|
2963
|
+
/** Contains response data for the list operation. */
|
2964
|
+
export declare type ImportPipelinesListResponse = ImportPipelineListResult;
|
2965
|
+
/** Optional parameters. */
|
2953
2966
|
export interface ImportPipelinesGetOptionalParams extends coreClient.OperationOptions {
|
2954
2967
|
}
|
2955
2968
|
/** Contains response data for the get operation. */
|
@@ -2971,11 +2984,6 @@ export interface ImportPipelinesDeleteOptionalParams extends coreClient.Operatio
|
|
2971
2984
|
resumeFrom?: string;
|
2972
2985
|
}
|
2973
2986
|
/** Optional parameters. */
|
2974
|
-
export interface ImportPipelinesListOptionalParams extends coreClient.OperationOptions {
|
2975
|
-
}
|
2976
|
-
/** Contains response data for the list operation. */
|
2977
|
-
export declare type ImportPipelinesListResponse = ImportPipelineListResult;
|
2978
|
-
/** Optional parameters. */
|
2979
2987
|
export interface ImportPipelinesListNextOptionalParams extends coreClient.OperationOptions {
|
2980
2988
|
}
|
2981
2989
|
/** Contains response data for the listNext operation. */
|
@@ -2991,6 +2999,11 @@ export interface OperationsListNextOptionalParams extends coreClient.OperationOp
|
|
2991
2999
|
/** Contains response data for the listNext operation. */
|
2992
3000
|
export declare type OperationsListNextResponse = OperationListResult;
|
2993
3001
|
/** Optional parameters. */
|
3002
|
+
export interface PipelineRunsListOptionalParams extends coreClient.OperationOptions {
|
3003
|
+
}
|
3004
|
+
/** Contains response data for the list operation. */
|
3005
|
+
export declare type PipelineRunsListResponse = PipelineRunListResult;
|
3006
|
+
/** Optional parameters. */
|
2994
3007
|
export interface PipelineRunsGetOptionalParams extends coreClient.OperationOptions {
|
2995
3008
|
}
|
2996
3009
|
/** Contains response data for the get operation. */
|
@@ -3012,16 +3025,16 @@ export interface PipelineRunsDeleteOptionalParams extends coreClient.OperationOp
|
|
3012
3025
|
resumeFrom?: string;
|
3013
3026
|
}
|
3014
3027
|
/** Optional parameters. */
|
3015
|
-
export interface PipelineRunsListOptionalParams extends coreClient.OperationOptions {
|
3016
|
-
}
|
3017
|
-
/** Contains response data for the list operation. */
|
3018
|
-
export declare type PipelineRunsListResponse = PipelineRunListResult;
|
3019
|
-
/** Optional parameters. */
|
3020
3028
|
export interface PipelineRunsListNextOptionalParams extends coreClient.OperationOptions {
|
3021
3029
|
}
|
3022
3030
|
/** Contains response data for the listNext operation. */
|
3023
3031
|
export declare type PipelineRunsListNextResponse = PipelineRunListResult;
|
3024
3032
|
/** Optional parameters. */
|
3033
|
+
export interface PrivateEndpointConnectionsListOptionalParams extends coreClient.OperationOptions {
|
3034
|
+
}
|
3035
|
+
/** Contains response data for the list operation. */
|
3036
|
+
export declare type PrivateEndpointConnectionsListResponse = PrivateEndpointConnectionListResult;
|
3037
|
+
/** Optional parameters. */
|
3025
3038
|
export interface PrivateEndpointConnectionsGetOptionalParams extends coreClient.OperationOptions {
|
3026
3039
|
}
|
3027
3040
|
/** Contains response data for the get operation. */
|
@@ -3043,16 +3056,16 @@ export interface PrivateEndpointConnectionsDeleteOptionalParams extends coreClie
|
|
3043
3056
|
resumeFrom?: string;
|
3044
3057
|
}
|
3045
3058
|
/** Optional parameters. */
|
3046
|
-
export interface PrivateEndpointConnectionsListOptionalParams extends coreClient.OperationOptions {
|
3047
|
-
}
|
3048
|
-
/** Contains response data for the list operation. */
|
3049
|
-
export declare type PrivateEndpointConnectionsListResponse = PrivateEndpointConnectionListResult;
|
3050
|
-
/** Optional parameters. */
|
3051
3059
|
export interface PrivateEndpointConnectionsListNextOptionalParams extends coreClient.OperationOptions {
|
3052
3060
|
}
|
3053
3061
|
/** Contains response data for the listNext operation. */
|
3054
3062
|
export declare type PrivateEndpointConnectionsListNextResponse = PrivateEndpointConnectionListResult;
|
3055
3063
|
/** Optional parameters. */
|
3064
|
+
export interface ReplicationsListOptionalParams extends coreClient.OperationOptions {
|
3065
|
+
}
|
3066
|
+
/** Contains response data for the list operation. */
|
3067
|
+
export declare type ReplicationsListResponse = ReplicationListResult;
|
3068
|
+
/** Optional parameters. */
|
3056
3069
|
export interface ReplicationsGetOptionalParams extends coreClient.OperationOptions {
|
3057
3070
|
}
|
3058
3071
|
/** Contains response data for the get operation. */
|
@@ -3083,16 +3096,16 @@ export interface ReplicationsUpdateOptionalParams extends coreClient.OperationOp
|
|
3083
3096
|
/** Contains response data for the update operation. */
|
3084
3097
|
export declare type ReplicationsUpdateResponse = Replication;
|
3085
3098
|
/** Optional parameters. */
|
3086
|
-
export interface ReplicationsListOptionalParams extends coreClient.OperationOptions {
|
3087
|
-
}
|
3088
|
-
/** Contains response data for the list operation. */
|
3089
|
-
export declare type ReplicationsListResponse = ReplicationListResult;
|
3090
|
-
/** Optional parameters. */
|
3091
3099
|
export interface ReplicationsListNextOptionalParams extends coreClient.OperationOptions {
|
3092
3100
|
}
|
3093
3101
|
/** Contains response data for the listNext operation. */
|
3094
3102
|
export declare type ReplicationsListNextResponse = ReplicationListResult;
|
3095
3103
|
/** Optional parameters. */
|
3104
|
+
export interface ScopeMapsListOptionalParams extends coreClient.OperationOptions {
|
3105
|
+
}
|
3106
|
+
/** Contains response data for the list operation. */
|
3107
|
+
export declare type ScopeMapsListResponse = ScopeMapListResult;
|
3108
|
+
/** Optional parameters. */
|
3096
3109
|
export interface ScopeMapsGetOptionalParams extends coreClient.OperationOptions {
|
3097
3110
|
}
|
3098
3111
|
/** Contains response data for the get operation. */
|
@@ -3123,16 +3136,16 @@ export interface ScopeMapsUpdateOptionalParams extends coreClient.OperationOptio
|
|
3123
3136
|
/** Contains response data for the update operation. */
|
3124
3137
|
export declare type ScopeMapsUpdateResponse = ScopeMap;
|
3125
3138
|
/** Optional parameters. */
|
3126
|
-
export interface ScopeMapsListOptionalParams extends coreClient.OperationOptions {
|
3127
|
-
}
|
3128
|
-
/** Contains response data for the list operation. */
|
3129
|
-
export declare type ScopeMapsListResponse = ScopeMapListResult;
|
3130
|
-
/** Optional parameters. */
|
3131
3139
|
export interface ScopeMapsListNextOptionalParams extends coreClient.OperationOptions {
|
3132
3140
|
}
|
3133
3141
|
/** Contains response data for the listNext operation. */
|
3134
3142
|
export declare type ScopeMapsListNextResponse = ScopeMapListResult;
|
3135
3143
|
/** Optional parameters. */
|
3144
|
+
export interface TokensListOptionalParams extends coreClient.OperationOptions {
|
3145
|
+
}
|
3146
|
+
/** Contains response data for the list operation. */
|
3147
|
+
export declare type TokensListResponse = TokenListResult;
|
3148
|
+
/** Optional parameters. */
|
3136
3149
|
export interface TokensGetOptionalParams extends coreClient.OperationOptions {
|
3137
3150
|
}
|
3138
3151
|
/** Contains response data for the get operation. */
|
@@ -3163,16 +3176,16 @@ export interface TokensUpdateOptionalParams extends coreClient.OperationOptions
|
|
3163
3176
|
/** Contains response data for the update operation. */
|
3164
3177
|
export declare type TokensUpdateResponse = Token;
|
3165
3178
|
/** Optional parameters. */
|
3166
|
-
export interface TokensListOptionalParams extends coreClient.OperationOptions {
|
3167
|
-
}
|
3168
|
-
/** Contains response data for the list operation. */
|
3169
|
-
export declare type TokensListResponse = TokenListResult;
|
3170
|
-
/** Optional parameters. */
|
3171
3179
|
export interface TokensListNextOptionalParams extends coreClient.OperationOptions {
|
3172
3180
|
}
|
3173
3181
|
/** Contains response data for the listNext operation. */
|
3174
3182
|
export declare type TokensListNextResponse = TokenListResult;
|
3175
3183
|
/** Optional parameters. */
|
3184
|
+
export interface WebhooksListOptionalParams extends coreClient.OperationOptions {
|
3185
|
+
}
|
3186
|
+
/** Contains response data for the list operation. */
|
3187
|
+
export declare type WebhooksListResponse = WebhookListResult;
|
3188
|
+
/** Optional parameters. */
|
3176
3189
|
export interface WebhooksGetOptionalParams extends coreClient.OperationOptions {
|
3177
3190
|
}
|
3178
3191
|
/** Contains response data for the get operation. */
|
@@ -3203,26 +3216,21 @@ export interface WebhooksUpdateOptionalParams extends coreClient.OperationOption
|
|
3203
3216
|
/** Contains response data for the update operation. */
|
3204
3217
|
export declare type WebhooksUpdateResponse = Webhook;
|
3205
3218
|
/** Optional parameters. */
|
3206
|
-
export interface WebhooksListOptionalParams extends coreClient.OperationOptions {
|
3207
|
-
}
|
3208
|
-
/** Contains response data for the list operation. */
|
3209
|
-
export declare type WebhooksListResponse = WebhookListResult;
|
3210
|
-
/** Optional parameters. */
|
3211
3219
|
export interface WebhooksPingOptionalParams extends coreClient.OperationOptions {
|
3212
3220
|
}
|
3213
3221
|
/** Contains response data for the ping operation. */
|
3214
3222
|
export declare type WebhooksPingResponse = EventInfo;
|
3215
3223
|
/** Optional parameters. */
|
3216
|
-
export interface WebhooksGetCallbackConfigOptionalParams extends coreClient.OperationOptions {
|
3217
|
-
}
|
3218
|
-
/** Contains response data for the getCallbackConfig operation. */
|
3219
|
-
export declare type WebhooksGetCallbackConfigResponse = CallbackConfig;
|
3220
|
-
/** Optional parameters. */
|
3221
3224
|
export interface WebhooksListEventsOptionalParams extends coreClient.OperationOptions {
|
3222
3225
|
}
|
3223
3226
|
/** Contains response data for the listEvents operation. */
|
3224
3227
|
export declare type WebhooksListEventsResponse = EventListResult;
|
3225
3228
|
/** Optional parameters. */
|
3229
|
+
export interface WebhooksGetCallbackConfigOptionalParams extends coreClient.OperationOptions {
|
3230
|
+
}
|
3231
|
+
/** Contains response data for the getCallbackConfig operation. */
|
3232
|
+
export declare type WebhooksGetCallbackConfigResponse = CallbackConfig;
|
3233
|
+
/** Optional parameters. */
|
3226
3234
|
export interface WebhooksListNextOptionalParams extends coreClient.OperationOptions {
|
3227
3235
|
}
|
3228
3236
|
/** Contains response data for the listNext operation. */
|