@azure/arm-containerregistry 10.1.1-alpha.20230323.1 → 10.1.1-alpha.20230419.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.
Files changed (63) hide show
  1. package/dist/index.js +168 -70
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.min.js +1 -1
  4. package/dist/index.min.js.map +1 -1
  5. package/dist-esm/samples-dev/agentPoolsListSample.js +12 -5
  6. package/dist-esm/samples-dev/agentPoolsListSample.js.map +1 -1
  7. package/dist-esm/samples-dev/operationsListSample.js +12 -5
  8. package/dist-esm/samples-dev/operationsListSample.js.map +1 -1
  9. package/dist-esm/samples-dev/privateEndpointConnectionsListSample.js +12 -5
  10. package/dist-esm/samples-dev/privateEndpointConnectionsListSample.js.map +1 -1
  11. package/dist-esm/samples-dev/registriesListByResourceGroupSample.js +12 -5
  12. package/dist-esm/samples-dev/registriesListByResourceGroupSample.js.map +1 -1
  13. package/dist-esm/samples-dev/registriesListPrivateLinkResourcesSample.js +12 -5
  14. package/dist-esm/samples-dev/registriesListPrivateLinkResourcesSample.js.map +1 -1
  15. package/dist-esm/samples-dev/registriesListSample.js +12 -5
  16. package/dist-esm/samples-dev/registriesListSample.js.map +1 -1
  17. package/dist-esm/samples-dev/replicationsListSample.js +12 -5
  18. package/dist-esm/samples-dev/replicationsListSample.js.map +1 -1
  19. package/dist-esm/samples-dev/runsListSample.js +12 -5
  20. package/dist-esm/samples-dev/runsListSample.js.map +1 -1
  21. package/dist-esm/samples-dev/scopeMapsListSample.js +12 -5
  22. package/dist-esm/samples-dev/scopeMapsListSample.js.map +1 -1
  23. package/dist-esm/samples-dev/taskRunsListSample.js +12 -5
  24. package/dist-esm/samples-dev/taskRunsListSample.js.map +1 -1
  25. package/dist-esm/samples-dev/tasksListSample.js +12 -5
  26. package/dist-esm/samples-dev/tasksListSample.js.map +1 -1
  27. package/dist-esm/samples-dev/tokensListSample.js +12 -5
  28. package/dist-esm/samples-dev/tokensListSample.js.map +1 -1
  29. package/dist-esm/samples-dev/webhooksCreateSample.js +1 -1
  30. package/dist-esm/samples-dev/webhooksCreateSample.js.map +1 -1
  31. package/dist-esm/samples-dev/webhooksListEventsSample.js +12 -5
  32. package/dist-esm/samples-dev/webhooksListEventsSample.js.map +1 -1
  33. package/dist-esm/samples-dev/webhooksListSample.js +12 -5
  34. package/dist-esm/samples-dev/webhooksListSample.js.map +1 -1
  35. package/dist-esm/samples-dev/webhooksUpdateSample.js +1 -1
  36. package/dist-esm/samples-dev/webhooksUpdateSample.js.map +1 -1
  37. package/dist-esm/src/models/index.d.ts +114 -114
  38. package/dist-esm/src/models/index.d.ts.map +1 -1
  39. package/dist-esm/src/operations/agentPools.js +12 -5
  40. package/dist-esm/src/operations/agentPools.js.map +1 -1
  41. package/dist-esm/src/operations/operations.js +12 -5
  42. package/dist-esm/src/operations/operations.js.map +1 -1
  43. package/dist-esm/src/operations/privateEndpointConnections.js +12 -5
  44. package/dist-esm/src/operations/privateEndpointConnections.js.map +1 -1
  45. package/dist-esm/src/operations/registries.js +36 -15
  46. package/dist-esm/src/operations/registries.js.map +1 -1
  47. package/dist-esm/src/operations/replications.js +12 -5
  48. package/dist-esm/src/operations/replications.js.map +1 -1
  49. package/dist-esm/src/operations/runs.js +12 -5
  50. package/dist-esm/src/operations/runs.js.map +1 -1
  51. package/dist-esm/src/operations/scopeMaps.js +12 -5
  52. package/dist-esm/src/operations/scopeMaps.js.map +1 -1
  53. package/dist-esm/src/operations/taskRuns.js +12 -5
  54. package/dist-esm/src/operations/taskRuns.js.map +1 -1
  55. package/dist-esm/src/operations/tasks.js +12 -5
  56. package/dist-esm/src/operations/tasks.js.map +1 -1
  57. package/dist-esm/src/operations/tokens.js +12 -5
  58. package/dist-esm/src/operations/tokens.js.map +1 -1
  59. package/dist-esm/src/operations/webhooks.js +24 -10
  60. package/dist-esm/src/operations/webhooks.js.map +1 -1
  61. package/dist-esm/test/containerregistry_examples.js +24 -10
  62. package/dist-esm/test/containerregistry_examples.js.map +1 -1
  63. package/package.json +2 -2
@@ -1,7 +1,7 @@
1
1
  import * as coreClient from "@azure/core-client";
2
- export declare type RunRequestUnion = RunRequest | DockerBuildRequest | FileTaskRunRequest | TaskRunRequest | EncodedTaskRunRequest;
3
- export declare type TaskStepPropertiesUnion = TaskStepProperties | DockerBuildStep | FileTaskStep | EncodedTaskStep;
4
- export declare type TaskStepUpdateParametersUnion = TaskStepUpdateParameters | DockerBuildStepUpdateParameters | FileTaskStepUpdateParameters | EncodedTaskStepUpdateParameters;
2
+ export type RunRequestUnion = RunRequest | DockerBuildRequest | FileTaskRunRequest | TaskRunRequest | EncodedTaskRunRequest;
3
+ export type TaskStepPropertiesUnion = TaskStepProperties | DockerBuildStep | FileTaskStep | EncodedTaskStep;
4
+ export type TaskStepUpdateParametersUnion = TaskStepUpdateParameters | DockerBuildStepUpdateParameters | FileTaskStepUpdateParameters | EncodedTaskStepUpdateParameters;
5
5
  export interface ImportImageParameters {
6
6
  /** The source of the image. */
7
7
  source: ImportSource;
@@ -1735,7 +1735,7 @@ export declare enum KnownImportMode {
1735
1735
  * **NoForce** \
1736
1736
  * **Force**
1737
1737
  */
1738
- export declare type ImportMode = string;
1738
+ export type ImportMode = string;
1739
1739
  /** Known values of {@link ConnectionStatus} that the service accepts. */
1740
1740
  export declare enum KnownConnectionStatus {
1741
1741
  /** Approved */
@@ -1757,7 +1757,7 @@ export declare enum KnownConnectionStatus {
1757
1757
  * **Rejected** \
1758
1758
  * **Disconnected**
1759
1759
  */
1760
- export declare type ConnectionStatus = string;
1760
+ export type ConnectionStatus = string;
1761
1761
  /** Known values of {@link ActionsRequired} that the service accepts. */
1762
1762
  export declare enum KnownActionsRequired {
1763
1763
  /** None */
@@ -1773,7 +1773,7 @@ export declare enum KnownActionsRequired {
1773
1773
  * **None** \
1774
1774
  * **Recreate**
1775
1775
  */
1776
- export declare type ActionsRequired = string;
1776
+ export type ActionsRequired = string;
1777
1777
  /** Known values of {@link ProvisioningState} that the service accepts. */
1778
1778
  export declare enum KnownProvisioningState {
1779
1779
  /** Creating */
@@ -1801,7 +1801,7 @@ export declare enum KnownProvisioningState {
1801
1801
  * **Failed** \
1802
1802
  * **Canceled**
1803
1803
  */
1804
- export declare type ProvisioningState = string;
1804
+ export type ProvisioningState = string;
1805
1805
  /** Known values of {@link CreatedByType} that the service accepts. */
1806
1806
  export declare enum KnownCreatedByType {
1807
1807
  /** User */
@@ -1823,7 +1823,7 @@ export declare enum KnownCreatedByType {
1823
1823
  * **ManagedIdentity** \
1824
1824
  * **Key**
1825
1825
  */
1826
- export declare type CreatedByType = string;
1826
+ export type CreatedByType = string;
1827
1827
  /** Known values of {@link LastModifiedByType} that the service accepts. */
1828
1828
  export declare enum KnownLastModifiedByType {
1829
1829
  /** User */
@@ -1845,7 +1845,7 @@ export declare enum KnownLastModifiedByType {
1845
1845
  * **ManagedIdentity** \
1846
1846
  * **Key**
1847
1847
  */
1848
- export declare type LastModifiedByType = string;
1848
+ export type LastModifiedByType = string;
1849
1849
  /** Known values of {@link SkuName} that the service accepts. */
1850
1850
  export declare enum KnownSkuName {
1851
1851
  /** Classic */
@@ -1867,7 +1867,7 @@ export declare enum KnownSkuName {
1867
1867
  * **Standard** \
1868
1868
  * **Premium**
1869
1869
  */
1870
- export declare type SkuName = string;
1870
+ export type SkuName = string;
1871
1871
  /** Known values of {@link SkuTier} that the service accepts. */
1872
1872
  export declare enum KnownSkuTier {
1873
1873
  /** Classic */
@@ -1889,7 +1889,7 @@ export declare enum KnownSkuTier {
1889
1889
  * **Standard** \
1890
1890
  * **Premium**
1891
1891
  */
1892
- export declare type SkuTier = string;
1892
+ export type SkuTier = string;
1893
1893
  /** Known values of {@link DefaultAction} that the service accepts. */
1894
1894
  export declare enum KnownDefaultAction {
1895
1895
  /** Allow */
@@ -1905,7 +1905,7 @@ export declare enum KnownDefaultAction {
1905
1905
  * **Allow** \
1906
1906
  * **Deny**
1907
1907
  */
1908
- export declare type DefaultAction = string;
1908
+ export type DefaultAction = string;
1909
1909
  /** Known values of {@link Action} that the service accepts. */
1910
1910
  export declare enum KnownAction {
1911
1911
  /** Allow */
@@ -1918,7 +1918,7 @@ export declare enum KnownAction {
1918
1918
  * ### Known values supported by the service
1919
1919
  * **Allow**
1920
1920
  */
1921
- export declare type Action = string;
1921
+ export type Action = string;
1922
1922
  /** Known values of {@link PolicyStatus} that the service accepts. */
1923
1923
  export declare enum KnownPolicyStatus {
1924
1924
  /** Enabled */
@@ -1934,7 +1934,7 @@ export declare enum KnownPolicyStatus {
1934
1934
  * **enabled** \
1935
1935
  * **disabled**
1936
1936
  */
1937
- export declare type PolicyStatus = string;
1937
+ export type PolicyStatus = string;
1938
1938
  /** Known values of {@link TrustPolicyType} that the service accepts. */
1939
1939
  export declare enum KnownTrustPolicyType {
1940
1940
  /** Notary */
@@ -1947,7 +1947,7 @@ export declare enum KnownTrustPolicyType {
1947
1947
  * ### Known values supported by the service
1948
1948
  * **Notary**
1949
1949
  */
1950
- export declare type TrustPolicyType = string;
1950
+ export type TrustPolicyType = string;
1951
1951
  /** Known values of {@link ExportPolicyStatus} that the service accepts. */
1952
1952
  export declare enum KnownExportPolicyStatus {
1953
1953
  /** Enabled */
@@ -1963,7 +1963,7 @@ export declare enum KnownExportPolicyStatus {
1963
1963
  * **enabled** \
1964
1964
  * **disabled**
1965
1965
  */
1966
- export declare type ExportPolicyStatus = string;
1966
+ export type ExportPolicyStatus = string;
1967
1967
  /** Known values of {@link EncryptionStatus} that the service accepts. */
1968
1968
  export declare enum KnownEncryptionStatus {
1969
1969
  /** Enabled */
@@ -1979,7 +1979,7 @@ export declare enum KnownEncryptionStatus {
1979
1979
  * **enabled** \
1980
1980
  * **disabled**
1981
1981
  */
1982
- export declare type EncryptionStatus = string;
1982
+ export type EncryptionStatus = string;
1983
1983
  /** Known values of {@link PublicNetworkAccess} that the service accepts. */
1984
1984
  export declare enum KnownPublicNetworkAccess {
1985
1985
  /** Enabled */
@@ -1995,7 +1995,7 @@ export declare enum KnownPublicNetworkAccess {
1995
1995
  * **Enabled** \
1996
1996
  * **Disabled**
1997
1997
  */
1998
- export declare type PublicNetworkAccess = string;
1998
+ export type PublicNetworkAccess = string;
1999
1999
  /** Known values of {@link NetworkRuleBypassOptions} that the service accepts. */
2000
2000
  export declare enum KnownNetworkRuleBypassOptions {
2001
2001
  /** AzureServices */
@@ -2011,7 +2011,7 @@ export declare enum KnownNetworkRuleBypassOptions {
2011
2011
  * **AzureServices** \
2012
2012
  * **None**
2013
2013
  */
2014
- export declare type NetworkRuleBypassOptions = string;
2014
+ export type NetworkRuleBypassOptions = string;
2015
2015
  /** Known values of {@link ZoneRedundancy} that the service accepts. */
2016
2016
  export declare enum KnownZoneRedundancy {
2017
2017
  /** Enabled */
@@ -2027,7 +2027,7 @@ export declare enum KnownZoneRedundancy {
2027
2027
  * **Enabled** \
2028
2028
  * **Disabled**
2029
2029
  */
2030
- export declare type ZoneRedundancy = string;
2030
+ export type ZoneRedundancy = string;
2031
2031
  /** Known values of {@link RegistryUsageUnit} that the service accepts. */
2032
2032
  export declare enum KnownRegistryUsageUnit {
2033
2033
  /** Count */
@@ -2043,7 +2043,7 @@ export declare enum KnownRegistryUsageUnit {
2043
2043
  * **Count** \
2044
2044
  * **Bytes**
2045
2045
  */
2046
- export declare type RegistryUsageUnit = string;
2046
+ export type RegistryUsageUnit = string;
2047
2047
  /** Known values of {@link TokenCertificateName} that the service accepts. */
2048
2048
  export declare enum KnownTokenCertificateName {
2049
2049
  /** Certificate1 */
@@ -2059,7 +2059,7 @@ export declare enum KnownTokenCertificateName {
2059
2059
  * **certificate1** \
2060
2060
  * **certificate2**
2061
2061
  */
2062
- export declare type TokenCertificateName = string;
2062
+ export type TokenCertificateName = string;
2063
2063
  /** Known values of {@link TokenPasswordName} that the service accepts. */
2064
2064
  export declare enum KnownTokenPasswordName {
2065
2065
  /** Password1 */
@@ -2075,7 +2075,7 @@ export declare enum KnownTokenPasswordName {
2075
2075
  * **password1** \
2076
2076
  * **password2**
2077
2077
  */
2078
- export declare type TokenPasswordName = string;
2078
+ export type TokenPasswordName = string;
2079
2079
  /** Known values of {@link TokenStatus} that the service accepts. */
2080
2080
  export declare enum KnownTokenStatus {
2081
2081
  /** Enabled */
@@ -2091,7 +2091,7 @@ export declare enum KnownTokenStatus {
2091
2091
  * **enabled** \
2092
2092
  * **disabled**
2093
2093
  */
2094
- export declare type TokenStatus = string;
2094
+ export type TokenStatus = string;
2095
2095
  /** Known values of {@link WebhookStatus} that the service accepts. */
2096
2096
  export declare enum KnownWebhookStatus {
2097
2097
  /** Enabled */
@@ -2107,7 +2107,7 @@ export declare enum KnownWebhookStatus {
2107
2107
  * **enabled** \
2108
2108
  * **disabled**
2109
2109
  */
2110
- export declare type WebhookStatus = string;
2110
+ export type WebhookStatus = string;
2111
2111
  /** Known values of {@link WebhookAction} that the service accepts. */
2112
2112
  export declare enum KnownWebhookAction {
2113
2113
  /** Push */
@@ -2132,7 +2132,7 @@ export declare enum KnownWebhookAction {
2132
2132
  * **chart_push** \
2133
2133
  * **chart_delete**
2134
2134
  */
2135
- export declare type WebhookAction = string;
2135
+ export type WebhookAction = string;
2136
2136
  /** Known values of {@link OS} that the service accepts. */
2137
2137
  export declare enum KnownOS {
2138
2138
  /** Windows */
@@ -2148,7 +2148,7 @@ export declare enum KnownOS {
2148
2148
  * **Windows** \
2149
2149
  * **Linux**
2150
2150
  */
2151
- export declare type OS = string;
2151
+ export type OS = string;
2152
2152
  /** Known values of {@link RunStatus} that the service accepts. */
2153
2153
  export declare enum KnownRunStatus {
2154
2154
  /** Queued */
@@ -2182,7 +2182,7 @@ export declare enum KnownRunStatus {
2182
2182
  * **Error** \
2183
2183
  * **Timeout**
2184
2184
  */
2185
- export declare type RunStatus = string;
2185
+ export type RunStatus = string;
2186
2186
  /** Known values of {@link RunType} that the service accepts. */
2187
2187
  export declare enum KnownRunType {
2188
2188
  /** QuickBuild */
@@ -2204,7 +2204,7 @@ export declare enum KnownRunType {
2204
2204
  * **AutoBuild** \
2205
2205
  * **AutoRun**
2206
2206
  */
2207
- export declare type RunType = string;
2207
+ export type RunType = string;
2208
2208
  /** Known values of {@link Architecture} that the service accepts. */
2209
2209
  export declare enum KnownArchitecture {
2210
2210
  /** Amd64 */
@@ -2229,7 +2229,7 @@ export declare enum KnownArchitecture {
2229
2229
  * **arm** \
2230
2230
  * **arm64**
2231
2231
  */
2232
- export declare type Architecture = string;
2232
+ export type Architecture = string;
2233
2233
  /** Known values of {@link Variant} that the service accepts. */
2234
2234
  export declare enum KnownVariant {
2235
2235
  /** V6 */
@@ -2248,7 +2248,7 @@ export declare enum KnownVariant {
2248
2248
  * **v7** \
2249
2249
  * **v8**
2250
2250
  */
2251
- export declare type Variant = string;
2251
+ export type Variant = string;
2252
2252
  /** Known values of {@link TaskStatus} that the service accepts. */
2253
2253
  export declare enum KnownTaskStatus {
2254
2254
  /** Disabled */
@@ -2264,7 +2264,7 @@ export declare enum KnownTaskStatus {
2264
2264
  * **Disabled** \
2265
2265
  * **Enabled**
2266
2266
  */
2267
- export declare type TaskStatus = string;
2267
+ export type TaskStatus = string;
2268
2268
  /** Known values of {@link StepType} that the service accepts. */
2269
2269
  export declare enum KnownStepType {
2270
2270
  /** Docker */
@@ -2283,7 +2283,7 @@ export declare enum KnownStepType {
2283
2283
  * **FileTask** \
2284
2284
  * **EncodedTask**
2285
2285
  */
2286
- export declare type StepType = string;
2286
+ export type StepType = string;
2287
2287
  /** Known values of {@link BaseImageDependencyType} that the service accepts. */
2288
2288
  export declare enum KnownBaseImageDependencyType {
2289
2289
  /** BuildTime */
@@ -2299,7 +2299,7 @@ export declare enum KnownBaseImageDependencyType {
2299
2299
  * **BuildTime** \
2300
2300
  * **RunTime**
2301
2301
  */
2302
- export declare type BaseImageDependencyType = string;
2302
+ export type BaseImageDependencyType = string;
2303
2303
  /** Known values of {@link TriggerStatus} that the service accepts. */
2304
2304
  export declare enum KnownTriggerStatus {
2305
2305
  /** Disabled */
@@ -2315,7 +2315,7 @@ export declare enum KnownTriggerStatus {
2315
2315
  * **Disabled** \
2316
2316
  * **Enabled**
2317
2317
  */
2318
- export declare type TriggerStatus = string;
2318
+ export type TriggerStatus = string;
2319
2319
  /** Known values of {@link SourceControlType} that the service accepts. */
2320
2320
  export declare enum KnownSourceControlType {
2321
2321
  /** Github */
@@ -2331,7 +2331,7 @@ export declare enum KnownSourceControlType {
2331
2331
  * **Github** \
2332
2332
  * **VisualStudioTeamService**
2333
2333
  */
2334
- export declare type SourceControlType = string;
2334
+ export type SourceControlType = string;
2335
2335
  /** Known values of {@link TokenType} that the service accepts. */
2336
2336
  export declare enum KnownTokenType {
2337
2337
  /** PAT */
@@ -2347,7 +2347,7 @@ export declare enum KnownTokenType {
2347
2347
  * **PAT** \
2348
2348
  * **OAuth**
2349
2349
  */
2350
- export declare type TokenType = string;
2350
+ export type TokenType = string;
2351
2351
  /** Known values of {@link SourceTriggerEvent} that the service accepts. */
2352
2352
  export declare enum KnownSourceTriggerEvent {
2353
2353
  /** Commit */
@@ -2363,7 +2363,7 @@ export declare enum KnownSourceTriggerEvent {
2363
2363
  * **commit** \
2364
2364
  * **pullrequest**
2365
2365
  */
2366
- export declare type SourceTriggerEvent = string;
2366
+ export type SourceTriggerEvent = string;
2367
2367
  /** Known values of {@link BaseImageTriggerType} that the service accepts. */
2368
2368
  export declare enum KnownBaseImageTriggerType {
2369
2369
  /** All */
@@ -2379,7 +2379,7 @@ export declare enum KnownBaseImageTriggerType {
2379
2379
  * **All** \
2380
2380
  * **Runtime**
2381
2381
  */
2382
- export declare type BaseImageTriggerType = string;
2382
+ export type BaseImageTriggerType = string;
2383
2383
  /** Known values of {@link UpdateTriggerPayloadType} that the service accepts. */
2384
2384
  export declare enum KnownUpdateTriggerPayloadType {
2385
2385
  /** Default */
@@ -2395,7 +2395,7 @@ export declare enum KnownUpdateTriggerPayloadType {
2395
2395
  * **Default** \
2396
2396
  * **Token**
2397
2397
  */
2398
- export declare type UpdateTriggerPayloadType = string;
2398
+ export type UpdateTriggerPayloadType = string;
2399
2399
  /** Known values of {@link SourceRegistryLoginMode} that the service accepts. */
2400
2400
  export declare enum KnownSourceRegistryLoginMode {
2401
2401
  /** None */
@@ -2411,7 +2411,7 @@ export declare enum KnownSourceRegistryLoginMode {
2411
2411
  * **None** \
2412
2412
  * **Default**
2413
2413
  */
2414
- export declare type SourceRegistryLoginMode = string;
2414
+ export type SourceRegistryLoginMode = string;
2415
2415
  /** Known values of {@link SecretObjectType} that the service accepts. */
2416
2416
  export declare enum KnownSecretObjectType {
2417
2417
  /** Opaque */
@@ -2427,11 +2427,11 @@ export declare enum KnownSecretObjectType {
2427
2427
  * **Opaque** \
2428
2428
  * **Vaultsecret**
2429
2429
  */
2430
- export declare type SecretObjectType = string;
2430
+ export type SecretObjectType = string;
2431
2431
  /** Defines values for ResourceIdentityType. */
2432
- export declare type ResourceIdentityType = "SystemAssigned" | "UserAssigned" | "SystemAssigned, UserAssigned" | "None";
2432
+ export type ResourceIdentityType = "SystemAssigned" | "UserAssigned" | "SystemAssigned, UserAssigned" | "None";
2433
2433
  /** Defines values for PasswordName. */
2434
- export declare type PasswordName = "password" | "password2";
2434
+ export type PasswordName = "password" | "password2";
2435
2435
  /** Optional parameters. */
2436
2436
  export interface RegistriesImportImageOptionalParams extends coreClient.OperationOptions {
2437
2437
  /** Delay to wait until next poll, in milliseconds. */
@@ -2443,22 +2443,22 @@ export interface RegistriesImportImageOptionalParams extends coreClient.Operatio
2443
2443
  export interface RegistriesCheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
2444
2444
  }
2445
2445
  /** Contains response data for the checkNameAvailability operation. */
2446
- export declare type RegistriesCheckNameAvailabilityResponse = RegistryNameStatus;
2446
+ export type RegistriesCheckNameAvailabilityResponse = RegistryNameStatus;
2447
2447
  /** Optional parameters. */
2448
2448
  export interface RegistriesListOptionalParams extends coreClient.OperationOptions {
2449
2449
  }
2450
2450
  /** Contains response data for the list operation. */
2451
- export declare type RegistriesListResponse = RegistryListResult;
2451
+ export type RegistriesListResponse = RegistryListResult;
2452
2452
  /** Optional parameters. */
2453
2453
  export interface RegistriesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
2454
2454
  }
2455
2455
  /** Contains response data for the listByResourceGroup operation. */
2456
- export declare type RegistriesListByResourceGroupResponse = RegistryListResult;
2456
+ export type RegistriesListByResourceGroupResponse = RegistryListResult;
2457
2457
  /** Optional parameters. */
2458
2458
  export interface RegistriesGetOptionalParams extends coreClient.OperationOptions {
2459
2459
  }
2460
2460
  /** Contains response data for the get operation. */
2461
- export declare type RegistriesGetResponse = Registry;
2461
+ export type RegistriesGetResponse = Registry;
2462
2462
  /** Optional parameters. */
2463
2463
  export interface RegistriesCreateOptionalParams extends coreClient.OperationOptions {
2464
2464
  /** Delay to wait until next poll, in milliseconds. */
@@ -2467,7 +2467,7 @@ export interface RegistriesCreateOptionalParams extends coreClient.OperationOpti
2467
2467
  resumeFrom?: string;
2468
2468
  }
2469
2469
  /** Contains response data for the create operation. */
2470
- export declare type RegistriesCreateResponse = Registry;
2470
+ export type RegistriesCreateResponse = Registry;
2471
2471
  /** Optional parameters. */
2472
2472
  export interface RegistriesDeleteOptionalParams extends coreClient.OperationOptions {
2473
2473
  /** Delay to wait until next poll, in milliseconds. */
@@ -2483,32 +2483,32 @@ export interface RegistriesUpdateOptionalParams extends coreClient.OperationOpti
2483
2483
  resumeFrom?: string;
2484
2484
  }
2485
2485
  /** Contains response data for the update operation. */
2486
- export declare type RegistriesUpdateResponse = Registry;
2486
+ export type RegistriesUpdateResponse = Registry;
2487
2487
  /** Optional parameters. */
2488
2488
  export interface RegistriesListUsagesOptionalParams extends coreClient.OperationOptions {
2489
2489
  }
2490
2490
  /** Contains response data for the listUsages operation. */
2491
- export declare type RegistriesListUsagesResponse = RegistryUsageListResult;
2491
+ export type RegistriesListUsagesResponse = RegistryUsageListResult;
2492
2492
  /** Optional parameters. */
2493
2493
  export interface RegistriesListPrivateLinkResourcesOptionalParams extends coreClient.OperationOptions {
2494
2494
  }
2495
2495
  /** Contains response data for the listPrivateLinkResources operation. */
2496
- export declare type RegistriesListPrivateLinkResourcesResponse = PrivateLinkResourceListResult;
2496
+ export type RegistriesListPrivateLinkResourcesResponse = PrivateLinkResourceListResult;
2497
2497
  /** Optional parameters. */
2498
2498
  export interface RegistriesGetPrivateLinkResourceOptionalParams extends coreClient.OperationOptions {
2499
2499
  }
2500
2500
  /** Contains response data for the getPrivateLinkResource operation. */
2501
- export declare type RegistriesGetPrivateLinkResourceResponse = PrivateLinkResource;
2501
+ export type RegistriesGetPrivateLinkResourceResponse = PrivateLinkResource;
2502
2502
  /** Optional parameters. */
2503
2503
  export interface RegistriesListCredentialsOptionalParams extends coreClient.OperationOptions {
2504
2504
  }
2505
2505
  /** Contains response data for the listCredentials operation. */
2506
- export declare type RegistriesListCredentialsResponse = RegistryListCredentialsResult;
2506
+ export type RegistriesListCredentialsResponse = RegistryListCredentialsResult;
2507
2507
  /** Optional parameters. */
2508
2508
  export interface RegistriesRegenerateCredentialOptionalParams extends coreClient.OperationOptions {
2509
2509
  }
2510
2510
  /** Contains response data for the regenerateCredential operation. */
2511
- export declare type RegistriesRegenerateCredentialResponse = RegistryListCredentialsResult;
2511
+ export type RegistriesRegenerateCredentialResponse = RegistryListCredentialsResult;
2512
2512
  /** Optional parameters. */
2513
2513
  export interface RegistriesGenerateCredentialsOptionalParams extends coreClient.OperationOptions {
2514
2514
  /** Delay to wait until next poll, in milliseconds. */
@@ -2517,7 +2517,7 @@ export interface RegistriesGenerateCredentialsOptionalParams extends coreClient.
2517
2517
  resumeFrom?: string;
2518
2518
  }
2519
2519
  /** Contains response data for the generateCredentials operation. */
2520
- export declare type RegistriesGenerateCredentialsResponse = GenerateCredentialsResult;
2520
+ export type RegistriesGenerateCredentialsResponse = GenerateCredentialsResult;
2521
2521
  /** Optional parameters. */
2522
2522
  export interface RegistriesScheduleRunOptionalParams extends coreClient.OperationOptions {
2523
2523
  /** Delay to wait until next poll, in milliseconds. */
@@ -2526,47 +2526,47 @@ export interface RegistriesScheduleRunOptionalParams extends coreClient.Operatio
2526
2526
  resumeFrom?: string;
2527
2527
  }
2528
2528
  /** Contains response data for the scheduleRun operation. */
2529
- export declare type RegistriesScheduleRunResponse = Run;
2529
+ export type RegistriesScheduleRunResponse = Run;
2530
2530
  /** Optional parameters. */
2531
2531
  export interface RegistriesGetBuildSourceUploadUrlOptionalParams extends coreClient.OperationOptions {
2532
2532
  }
2533
2533
  /** Contains response data for the getBuildSourceUploadUrl operation. */
2534
- export declare type RegistriesGetBuildSourceUploadUrlResponse = SourceUploadDefinition;
2534
+ export type RegistriesGetBuildSourceUploadUrlResponse = SourceUploadDefinition;
2535
2535
  /** Optional parameters. */
2536
2536
  export interface RegistriesListNextOptionalParams extends coreClient.OperationOptions {
2537
2537
  }
2538
2538
  /** Contains response data for the listNext operation. */
2539
- export declare type RegistriesListNextResponse = RegistryListResult;
2539
+ export type RegistriesListNextResponse = RegistryListResult;
2540
2540
  /** Optional parameters. */
2541
2541
  export interface RegistriesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
2542
2542
  }
2543
2543
  /** Contains response data for the listByResourceGroupNext operation. */
2544
- export declare type RegistriesListByResourceGroupNextResponse = RegistryListResult;
2544
+ export type RegistriesListByResourceGroupNextResponse = RegistryListResult;
2545
2545
  /** Optional parameters. */
2546
2546
  export interface RegistriesListPrivateLinkResourcesNextOptionalParams extends coreClient.OperationOptions {
2547
2547
  }
2548
2548
  /** Contains response data for the listPrivateLinkResourcesNext operation. */
2549
- export declare type RegistriesListPrivateLinkResourcesNextResponse = PrivateLinkResourceListResult;
2549
+ export type RegistriesListPrivateLinkResourcesNextResponse = PrivateLinkResourceListResult;
2550
2550
  /** Optional parameters. */
2551
2551
  export interface OperationsListOptionalParams extends coreClient.OperationOptions {
2552
2552
  }
2553
2553
  /** Contains response data for the list operation. */
2554
- export declare type OperationsListResponse = OperationListResult;
2554
+ export type OperationsListResponse = OperationListResult;
2555
2555
  /** Optional parameters. */
2556
2556
  export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
2557
2557
  }
2558
2558
  /** Contains response data for the listNext operation. */
2559
- export declare type OperationsListNextResponse = OperationListResult;
2559
+ export type OperationsListNextResponse = OperationListResult;
2560
2560
  /** Optional parameters. */
2561
2561
  export interface PrivateEndpointConnectionsListOptionalParams extends coreClient.OperationOptions {
2562
2562
  }
2563
2563
  /** Contains response data for the list operation. */
2564
- export declare type PrivateEndpointConnectionsListResponse = PrivateEndpointConnectionListResult;
2564
+ export type PrivateEndpointConnectionsListResponse = PrivateEndpointConnectionListResult;
2565
2565
  /** Optional parameters. */
2566
2566
  export interface PrivateEndpointConnectionsGetOptionalParams extends coreClient.OperationOptions {
2567
2567
  }
2568
2568
  /** Contains response data for the get operation. */
2569
- export declare type PrivateEndpointConnectionsGetResponse = PrivateEndpointConnection;
2569
+ export type PrivateEndpointConnectionsGetResponse = PrivateEndpointConnection;
2570
2570
  /** Optional parameters. */
2571
2571
  export interface PrivateEndpointConnectionsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
2572
2572
  /** Delay to wait until next poll, in milliseconds. */
@@ -2575,7 +2575,7 @@ export interface PrivateEndpointConnectionsCreateOrUpdateOptionalParams extends
2575
2575
  resumeFrom?: string;
2576
2576
  }
2577
2577
  /** Contains response data for the createOrUpdate operation. */
2578
- export declare type PrivateEndpointConnectionsCreateOrUpdateResponse = PrivateEndpointConnection;
2578
+ export type PrivateEndpointConnectionsCreateOrUpdateResponse = PrivateEndpointConnection;
2579
2579
  /** Optional parameters. */
2580
2580
  export interface PrivateEndpointConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
2581
2581
  /** Delay to wait until next poll, in milliseconds. */
@@ -2587,17 +2587,17 @@ export interface PrivateEndpointConnectionsDeleteOptionalParams extends coreClie
2587
2587
  export interface PrivateEndpointConnectionsListNextOptionalParams extends coreClient.OperationOptions {
2588
2588
  }
2589
2589
  /** Contains response data for the listNext operation. */
2590
- export declare type PrivateEndpointConnectionsListNextResponse = PrivateEndpointConnectionListResult;
2590
+ export type PrivateEndpointConnectionsListNextResponse = PrivateEndpointConnectionListResult;
2591
2591
  /** Optional parameters. */
2592
2592
  export interface ReplicationsListOptionalParams extends coreClient.OperationOptions {
2593
2593
  }
2594
2594
  /** Contains response data for the list operation. */
2595
- export declare type ReplicationsListResponse = ReplicationListResult;
2595
+ export type ReplicationsListResponse = ReplicationListResult;
2596
2596
  /** Optional parameters. */
2597
2597
  export interface ReplicationsGetOptionalParams extends coreClient.OperationOptions {
2598
2598
  }
2599
2599
  /** Contains response data for the get operation. */
2600
- export declare type ReplicationsGetResponse = Replication;
2600
+ export type ReplicationsGetResponse = Replication;
2601
2601
  /** Optional parameters. */
2602
2602
  export interface ReplicationsCreateOptionalParams extends coreClient.OperationOptions {
2603
2603
  /** Delay to wait until next poll, in milliseconds. */
@@ -2606,7 +2606,7 @@ export interface ReplicationsCreateOptionalParams extends coreClient.OperationOp
2606
2606
  resumeFrom?: string;
2607
2607
  }
2608
2608
  /** Contains response data for the create operation. */
2609
- export declare type ReplicationsCreateResponse = Replication;
2609
+ export type ReplicationsCreateResponse = Replication;
2610
2610
  /** Optional parameters. */
2611
2611
  export interface ReplicationsDeleteOptionalParams extends coreClient.OperationOptions {
2612
2612
  /** Delay to wait until next poll, in milliseconds. */
@@ -2622,22 +2622,22 @@ export interface ReplicationsUpdateOptionalParams extends coreClient.OperationOp
2622
2622
  resumeFrom?: string;
2623
2623
  }
2624
2624
  /** Contains response data for the update operation. */
2625
- export declare type ReplicationsUpdateResponse = Replication;
2625
+ export type ReplicationsUpdateResponse = Replication;
2626
2626
  /** Optional parameters. */
2627
2627
  export interface ReplicationsListNextOptionalParams extends coreClient.OperationOptions {
2628
2628
  }
2629
2629
  /** Contains response data for the listNext operation. */
2630
- export declare type ReplicationsListNextResponse = ReplicationListResult;
2630
+ export type ReplicationsListNextResponse = ReplicationListResult;
2631
2631
  /** Optional parameters. */
2632
2632
  export interface ScopeMapsListOptionalParams extends coreClient.OperationOptions {
2633
2633
  }
2634
2634
  /** Contains response data for the list operation. */
2635
- export declare type ScopeMapsListResponse = ScopeMapListResult;
2635
+ export type ScopeMapsListResponse = ScopeMapListResult;
2636
2636
  /** Optional parameters. */
2637
2637
  export interface ScopeMapsGetOptionalParams extends coreClient.OperationOptions {
2638
2638
  }
2639
2639
  /** Contains response data for the get operation. */
2640
- export declare type ScopeMapsGetResponse = ScopeMap;
2640
+ export type ScopeMapsGetResponse = ScopeMap;
2641
2641
  /** Optional parameters. */
2642
2642
  export interface ScopeMapsCreateOptionalParams extends coreClient.OperationOptions {
2643
2643
  /** Delay to wait until next poll, in milliseconds. */
@@ -2646,7 +2646,7 @@ export interface ScopeMapsCreateOptionalParams extends coreClient.OperationOptio
2646
2646
  resumeFrom?: string;
2647
2647
  }
2648
2648
  /** Contains response data for the create operation. */
2649
- export declare type ScopeMapsCreateResponse = ScopeMap;
2649
+ export type ScopeMapsCreateResponse = ScopeMap;
2650
2650
  /** Optional parameters. */
2651
2651
  export interface ScopeMapsDeleteOptionalParams extends coreClient.OperationOptions {
2652
2652
  /** Delay to wait until next poll, in milliseconds. */
@@ -2662,22 +2662,22 @@ export interface ScopeMapsUpdateOptionalParams extends coreClient.OperationOptio
2662
2662
  resumeFrom?: string;
2663
2663
  }
2664
2664
  /** Contains response data for the update operation. */
2665
- export declare type ScopeMapsUpdateResponse = ScopeMap;
2665
+ export type ScopeMapsUpdateResponse = ScopeMap;
2666
2666
  /** Optional parameters. */
2667
2667
  export interface ScopeMapsListNextOptionalParams extends coreClient.OperationOptions {
2668
2668
  }
2669
2669
  /** Contains response data for the listNext operation. */
2670
- export declare type ScopeMapsListNextResponse = ScopeMapListResult;
2670
+ export type ScopeMapsListNextResponse = ScopeMapListResult;
2671
2671
  /** Optional parameters. */
2672
2672
  export interface TokensListOptionalParams extends coreClient.OperationOptions {
2673
2673
  }
2674
2674
  /** Contains response data for the list operation. */
2675
- export declare type TokensListResponse = TokenListResult;
2675
+ export type TokensListResponse = TokenListResult;
2676
2676
  /** Optional parameters. */
2677
2677
  export interface TokensGetOptionalParams extends coreClient.OperationOptions {
2678
2678
  }
2679
2679
  /** Contains response data for the get operation. */
2680
- export declare type TokensGetResponse = Token;
2680
+ export type TokensGetResponse = Token;
2681
2681
  /** Optional parameters. */
2682
2682
  export interface TokensCreateOptionalParams extends coreClient.OperationOptions {
2683
2683
  /** Delay to wait until next poll, in milliseconds. */
@@ -2686,7 +2686,7 @@ export interface TokensCreateOptionalParams extends coreClient.OperationOptions
2686
2686
  resumeFrom?: string;
2687
2687
  }
2688
2688
  /** Contains response data for the create operation. */
2689
- export declare type TokensCreateResponse = Token;
2689
+ export type TokensCreateResponse = Token;
2690
2690
  /** Optional parameters. */
2691
2691
  export interface TokensDeleteOptionalParams extends coreClient.OperationOptions {
2692
2692
  /** Delay to wait until next poll, in milliseconds. */
@@ -2702,22 +2702,22 @@ export interface TokensUpdateOptionalParams extends coreClient.OperationOptions
2702
2702
  resumeFrom?: string;
2703
2703
  }
2704
2704
  /** Contains response data for the update operation. */
2705
- export declare type TokensUpdateResponse = Token;
2705
+ export type TokensUpdateResponse = Token;
2706
2706
  /** Optional parameters. */
2707
2707
  export interface TokensListNextOptionalParams extends coreClient.OperationOptions {
2708
2708
  }
2709
2709
  /** Contains response data for the listNext operation. */
2710
- export declare type TokensListNextResponse = TokenListResult;
2710
+ export type TokensListNextResponse = TokenListResult;
2711
2711
  /** Optional parameters. */
2712
2712
  export interface WebhooksListOptionalParams extends coreClient.OperationOptions {
2713
2713
  }
2714
2714
  /** Contains response data for the list operation. */
2715
- export declare type WebhooksListResponse = WebhookListResult;
2715
+ export type WebhooksListResponse = WebhookListResult;
2716
2716
  /** Optional parameters. */
2717
2717
  export interface WebhooksGetOptionalParams extends coreClient.OperationOptions {
2718
2718
  }
2719
2719
  /** Contains response data for the get operation. */
2720
- export declare type WebhooksGetResponse = Webhook;
2720
+ export type WebhooksGetResponse = Webhook;
2721
2721
  /** Optional parameters. */
2722
2722
  export interface WebhooksCreateOptionalParams extends coreClient.OperationOptions {
2723
2723
  /** Delay to wait until next poll, in milliseconds. */
@@ -2726,7 +2726,7 @@ export interface WebhooksCreateOptionalParams extends coreClient.OperationOption
2726
2726
  resumeFrom?: string;
2727
2727
  }
2728
2728
  /** Contains response data for the create operation. */
2729
- export declare type WebhooksCreateResponse = Webhook;
2729
+ export type WebhooksCreateResponse = Webhook;
2730
2730
  /** Optional parameters. */
2731
2731
  export interface WebhooksDeleteOptionalParams extends coreClient.OperationOptions {
2732
2732
  /** Delay to wait until next poll, in milliseconds. */
@@ -2742,37 +2742,37 @@ export interface WebhooksUpdateOptionalParams extends coreClient.OperationOption
2742
2742
  resumeFrom?: string;
2743
2743
  }
2744
2744
  /** Contains response data for the update operation. */
2745
- export declare type WebhooksUpdateResponse = Webhook;
2745
+ export type WebhooksUpdateResponse = Webhook;
2746
2746
  /** Optional parameters. */
2747
2747
  export interface WebhooksPingOptionalParams extends coreClient.OperationOptions {
2748
2748
  }
2749
2749
  /** Contains response data for the ping operation. */
2750
- export declare type WebhooksPingResponse = EventInfo;
2750
+ export type WebhooksPingResponse = EventInfo;
2751
2751
  /** Optional parameters. */
2752
2752
  export interface WebhooksListEventsOptionalParams extends coreClient.OperationOptions {
2753
2753
  }
2754
2754
  /** Contains response data for the listEvents operation. */
2755
- export declare type WebhooksListEventsResponse = EventListResult;
2755
+ export type WebhooksListEventsResponse = EventListResult;
2756
2756
  /** Optional parameters. */
2757
2757
  export interface WebhooksGetCallbackConfigOptionalParams extends coreClient.OperationOptions {
2758
2758
  }
2759
2759
  /** Contains response data for the getCallbackConfig operation. */
2760
- export declare type WebhooksGetCallbackConfigResponse = CallbackConfig;
2760
+ export type WebhooksGetCallbackConfigResponse = CallbackConfig;
2761
2761
  /** Optional parameters. */
2762
2762
  export interface WebhooksListNextOptionalParams extends coreClient.OperationOptions {
2763
2763
  }
2764
2764
  /** Contains response data for the listNext operation. */
2765
- export declare type WebhooksListNextResponse = WebhookListResult;
2765
+ export type WebhooksListNextResponse = WebhookListResult;
2766
2766
  /** Optional parameters. */
2767
2767
  export interface WebhooksListEventsNextOptionalParams extends coreClient.OperationOptions {
2768
2768
  }
2769
2769
  /** Contains response data for the listEventsNext operation. */
2770
- export declare type WebhooksListEventsNextResponse = EventListResult;
2770
+ export type WebhooksListEventsNextResponse = EventListResult;
2771
2771
  /** Optional parameters. */
2772
2772
  export interface AgentPoolsGetOptionalParams extends coreClient.OperationOptions {
2773
2773
  }
2774
2774
  /** Contains response data for the get operation. */
2775
- export declare type AgentPoolsGetResponse = AgentPool;
2775
+ export type AgentPoolsGetResponse = AgentPool;
2776
2776
  /** Optional parameters. */
2777
2777
  export interface AgentPoolsCreateOptionalParams extends coreClient.OperationOptions {
2778
2778
  /** Delay to wait until next poll, in milliseconds. */
@@ -2781,7 +2781,7 @@ export interface AgentPoolsCreateOptionalParams extends coreClient.OperationOpti
2781
2781
  resumeFrom?: string;
2782
2782
  }
2783
2783
  /** Contains response data for the create operation. */
2784
- export declare type AgentPoolsCreateResponse = AgentPool;
2784
+ export type AgentPoolsCreateResponse = AgentPool;
2785
2785
  /** Optional parameters. */
2786
2786
  export interface AgentPoolsDeleteOptionalParams extends coreClient.OperationOptions {
2787
2787
  /** Delay to wait until next poll, in milliseconds. */
@@ -2797,22 +2797,22 @@ export interface AgentPoolsUpdateOptionalParams extends coreClient.OperationOpti
2797
2797
  resumeFrom?: string;
2798
2798
  }
2799
2799
  /** Contains response data for the update operation. */
2800
- export declare type AgentPoolsUpdateResponse = AgentPool;
2800
+ export type AgentPoolsUpdateResponse = AgentPool;
2801
2801
  /** Optional parameters. */
2802
2802
  export interface AgentPoolsListOptionalParams extends coreClient.OperationOptions {
2803
2803
  }
2804
2804
  /** Contains response data for the list operation. */
2805
- export declare type AgentPoolsListResponse = AgentPoolListResult;
2805
+ export type AgentPoolsListResponse = AgentPoolListResult;
2806
2806
  /** Optional parameters. */
2807
2807
  export interface AgentPoolsGetQueueStatusOptionalParams extends coreClient.OperationOptions {
2808
2808
  }
2809
2809
  /** Contains response data for the getQueueStatus operation. */
2810
- export declare type AgentPoolsGetQueueStatusResponse = AgentPoolQueueStatus;
2810
+ export type AgentPoolsGetQueueStatusResponse = AgentPoolQueueStatus;
2811
2811
  /** Optional parameters. */
2812
2812
  export interface AgentPoolsListNextOptionalParams extends coreClient.OperationOptions {
2813
2813
  }
2814
2814
  /** Contains response data for the listNext operation. */
2815
- export declare type AgentPoolsListNextResponse = AgentPoolListResult;
2815
+ export type AgentPoolsListNextResponse = AgentPoolListResult;
2816
2816
  /** Optional parameters. */
2817
2817
  export interface RunsListOptionalParams extends coreClient.OperationOptions {
2818
2818
  /** The runs filter to apply on the operation. Arithmetic operators are not supported. The allowed string function is 'contains'. All logical operators except 'Not', 'Has', 'All' are allowed. */
@@ -2821,12 +2821,12 @@ export interface RunsListOptionalParams extends coreClient.OperationOptions {
2821
2821
  top?: number;
2822
2822
  }
2823
2823
  /** Contains response data for the list operation. */
2824
- export declare type RunsListResponse = RunListResult;
2824
+ export type RunsListResponse = RunListResult;
2825
2825
  /** Optional parameters. */
2826
2826
  export interface RunsGetOptionalParams extends coreClient.OperationOptions {
2827
2827
  }
2828
2828
  /** Contains response data for the get operation. */
2829
- export declare type RunsGetResponse = Run;
2829
+ export type RunsGetResponse = Run;
2830
2830
  /** Optional parameters. */
2831
2831
  export interface RunsUpdateOptionalParams extends coreClient.OperationOptions {
2832
2832
  /** Delay to wait until next poll, in milliseconds. */
@@ -2835,12 +2835,12 @@ export interface RunsUpdateOptionalParams extends coreClient.OperationOptions {
2835
2835
  resumeFrom?: string;
2836
2836
  }
2837
2837
  /** Contains response data for the update operation. */
2838
- export declare type RunsUpdateResponse = Run;
2838
+ export type RunsUpdateResponse = Run;
2839
2839
  /** Optional parameters. */
2840
2840
  export interface RunsGetLogSasUrlOptionalParams extends coreClient.OperationOptions {
2841
2841
  }
2842
2842
  /** Contains response data for the getLogSasUrl operation. */
2843
- export declare type RunsGetLogSasUrlResponse = RunGetLogResult;
2843
+ export type RunsGetLogSasUrlResponse = RunGetLogResult;
2844
2844
  /** Optional parameters. */
2845
2845
  export interface RunsCancelOptionalParams extends coreClient.OperationOptions {
2846
2846
  /** Delay to wait until next poll, in milliseconds. */
@@ -2852,12 +2852,12 @@ export interface RunsCancelOptionalParams extends coreClient.OperationOptions {
2852
2852
  export interface RunsListNextOptionalParams extends coreClient.OperationOptions {
2853
2853
  }
2854
2854
  /** Contains response data for the listNext operation. */
2855
- export declare type RunsListNextResponse = RunListResult;
2855
+ export type RunsListNextResponse = RunListResult;
2856
2856
  /** Optional parameters. */
2857
2857
  export interface TaskRunsGetOptionalParams extends coreClient.OperationOptions {
2858
2858
  }
2859
2859
  /** Contains response data for the get operation. */
2860
- export declare type TaskRunsGetResponse = TaskRun;
2860
+ export type TaskRunsGetResponse = TaskRun;
2861
2861
  /** Optional parameters. */
2862
2862
  export interface TaskRunsCreateOptionalParams extends coreClient.OperationOptions {
2863
2863
  /** Delay to wait until next poll, in milliseconds. */
@@ -2866,7 +2866,7 @@ export interface TaskRunsCreateOptionalParams extends coreClient.OperationOption
2866
2866
  resumeFrom?: string;
2867
2867
  }
2868
2868
  /** Contains response data for the create operation. */
2869
- export declare type TaskRunsCreateResponse = TaskRun;
2869
+ export type TaskRunsCreateResponse = TaskRun;
2870
2870
  /** Optional parameters. */
2871
2871
  export interface TaskRunsDeleteOptionalParams extends coreClient.OperationOptions {
2872
2872
  /** Delay to wait until next poll, in milliseconds. */
@@ -2882,32 +2882,32 @@ export interface TaskRunsUpdateOptionalParams extends coreClient.OperationOption
2882
2882
  resumeFrom?: string;
2883
2883
  }
2884
2884
  /** Contains response data for the update operation. */
2885
- export declare type TaskRunsUpdateResponse = TaskRun;
2885
+ export type TaskRunsUpdateResponse = TaskRun;
2886
2886
  /** Optional parameters. */
2887
2887
  export interface TaskRunsGetDetailsOptionalParams extends coreClient.OperationOptions {
2888
2888
  }
2889
2889
  /** Contains response data for the getDetails operation. */
2890
- export declare type TaskRunsGetDetailsResponse = TaskRun;
2890
+ export type TaskRunsGetDetailsResponse = TaskRun;
2891
2891
  /** Optional parameters. */
2892
2892
  export interface TaskRunsListOptionalParams extends coreClient.OperationOptions {
2893
2893
  }
2894
2894
  /** Contains response data for the list operation. */
2895
- export declare type TaskRunsListResponse = TaskRunListResult;
2895
+ export type TaskRunsListResponse = TaskRunListResult;
2896
2896
  /** Optional parameters. */
2897
2897
  export interface TaskRunsListNextOptionalParams extends coreClient.OperationOptions {
2898
2898
  }
2899
2899
  /** Contains response data for the listNext operation. */
2900
- export declare type TaskRunsListNextResponse = TaskRunListResult;
2900
+ export type TaskRunsListNextResponse = TaskRunListResult;
2901
2901
  /** Optional parameters. */
2902
2902
  export interface TasksListOptionalParams extends coreClient.OperationOptions {
2903
2903
  }
2904
2904
  /** Contains response data for the list operation. */
2905
- export declare type TasksListResponse = TaskListResult;
2905
+ export type TasksListResponse = TaskListResult;
2906
2906
  /** Optional parameters. */
2907
2907
  export interface TasksGetOptionalParams extends coreClient.OperationOptions {
2908
2908
  }
2909
2909
  /** Contains response data for the get operation. */
2910
- export declare type TasksGetResponse = Task;
2910
+ export type TasksGetResponse = Task;
2911
2911
  /** Optional parameters. */
2912
2912
  export interface TasksCreateOptionalParams extends coreClient.OperationOptions {
2913
2913
  /** Delay to wait until next poll, in milliseconds. */
@@ -2916,7 +2916,7 @@ export interface TasksCreateOptionalParams extends coreClient.OperationOptions {
2916
2916
  resumeFrom?: string;
2917
2917
  }
2918
2918
  /** Contains response data for the create operation. */
2919
- export declare type TasksCreateResponse = Task;
2919
+ export type TasksCreateResponse = Task;
2920
2920
  /** Optional parameters. */
2921
2921
  export interface TasksDeleteOptionalParams extends coreClient.OperationOptions {
2922
2922
  /** Delay to wait until next poll, in milliseconds. */
@@ -2932,17 +2932,17 @@ export interface TasksUpdateOptionalParams extends coreClient.OperationOptions {
2932
2932
  resumeFrom?: string;
2933
2933
  }
2934
2934
  /** Contains response data for the update operation. */
2935
- export declare type TasksUpdateResponse = Task;
2935
+ export type TasksUpdateResponse = Task;
2936
2936
  /** Optional parameters. */
2937
2937
  export interface TasksGetDetailsOptionalParams extends coreClient.OperationOptions {
2938
2938
  }
2939
2939
  /** Contains response data for the getDetails operation. */
2940
- export declare type TasksGetDetailsResponse = Task;
2940
+ export type TasksGetDetailsResponse = Task;
2941
2941
  /** Optional parameters. */
2942
2942
  export interface TasksListNextOptionalParams extends coreClient.OperationOptions {
2943
2943
  }
2944
2944
  /** Contains response data for the listNext operation. */
2945
- export declare type TasksListNextResponse = TaskListResult;
2945
+ export type TasksListNextResponse = TaskListResult;
2946
2946
  /** Optional parameters. */
2947
2947
  export interface ContainerRegistryManagementClientOptionalParams extends coreClient.ServiceClientOptions {
2948
2948
  /** server parameter */