@azure/arm-containerregistry 10.1.0-beta.3 → 10.1.0-beta.4

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 (92) hide show
  1. package/CHANGELOG.md +26 -8
  2. package/README.md +1 -1
  3. package/dist/index.js +512 -144
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.min.js +1 -1
  6. package/dist/index.min.js.map +1 -1
  7. package/dist-esm/src/containerRegistryManagementClient.d.ts.map +1 -1
  8. package/dist-esm/src/containerRegistryManagementClient.js +20 -18
  9. package/dist-esm/src/containerRegistryManagementClient.js.map +1 -1
  10. package/dist-esm/src/index.d.ts +1 -0
  11. package/dist-esm/src/index.d.ts.map +1 -1
  12. package/dist-esm/src/index.js +1 -0
  13. package/dist-esm/src/index.js.map +1 -1
  14. package/dist-esm/src/models/index.d.ts +185 -50
  15. package/dist-esm/src/models/index.d.ts.map +1 -1
  16. package/dist-esm/src/models/index.js +135 -0
  17. package/dist-esm/src/models/index.js.map +1 -1
  18. package/dist-esm/src/operations/agentPools.d.ts.map +1 -1
  19. package/dist-esm/src/operations/agentPools.js +19 -7
  20. package/dist-esm/src/operations/agentPools.js.map +1 -1
  21. package/dist-esm/src/operations/connectedRegistries.d.ts.map +1 -1
  22. package/dist-esm/src/operations/connectedRegistries.js +19 -7
  23. package/dist-esm/src/operations/connectedRegistries.js.map +1 -1
  24. package/dist-esm/src/operations/exportPipelines.d.ts.map +1 -1
  25. package/dist-esm/src/operations/exportPipelines.js +19 -7
  26. package/dist-esm/src/operations/exportPipelines.js.map +1 -1
  27. package/dist-esm/src/operations/importPipelines.d.ts.map +1 -1
  28. package/dist-esm/src/operations/importPipelines.js +19 -7
  29. package/dist-esm/src/operations/importPipelines.js.map +1 -1
  30. package/dist-esm/src/operations/operations.d.ts.map +1 -1
  31. package/dist-esm/src/operations/operations.js +19 -7
  32. package/dist-esm/src/operations/operations.js.map +1 -1
  33. package/dist-esm/src/operations/pipelineRuns.d.ts.map +1 -1
  34. package/dist-esm/src/operations/pipelineRuns.js +19 -7
  35. package/dist-esm/src/operations/pipelineRuns.js.map +1 -1
  36. package/dist-esm/src/operations/privateEndpointConnections.d.ts.map +1 -1
  37. package/dist-esm/src/operations/privateEndpointConnections.js +19 -7
  38. package/dist-esm/src/operations/privateEndpointConnections.js.map +1 -1
  39. package/dist-esm/src/operations/registries.d.ts.map +1 -1
  40. package/dist-esm/src/operations/registries.js +55 -21
  41. package/dist-esm/src/operations/registries.js.map +1 -1
  42. package/dist-esm/src/operations/replications.d.ts.map +1 -1
  43. package/dist-esm/src/operations/replications.js +19 -7
  44. package/dist-esm/src/operations/replications.js.map +1 -1
  45. package/dist-esm/src/operations/runs.d.ts.map +1 -1
  46. package/dist-esm/src/operations/runs.js +19 -7
  47. package/dist-esm/src/operations/runs.js.map +1 -1
  48. package/dist-esm/src/operations/scopeMaps.d.ts.map +1 -1
  49. package/dist-esm/src/operations/scopeMaps.js +19 -7
  50. package/dist-esm/src/operations/scopeMaps.js.map +1 -1
  51. package/dist-esm/src/operations/taskRuns.d.ts.map +1 -1
  52. package/dist-esm/src/operations/taskRuns.js +19 -7
  53. package/dist-esm/src/operations/taskRuns.js.map +1 -1
  54. package/dist-esm/src/operations/tasks.d.ts.map +1 -1
  55. package/dist-esm/src/operations/tasks.js +19 -7
  56. package/dist-esm/src/operations/tasks.js.map +1 -1
  57. package/dist-esm/src/operations/tokens.d.ts.map +1 -1
  58. package/dist-esm/src/operations/tokens.js +19 -7
  59. package/dist-esm/src/operations/tokens.js.map +1 -1
  60. package/dist-esm/src/operations/webhooks.d.ts.map +1 -1
  61. package/dist-esm/src/operations/webhooks.js +37 -14
  62. package/dist-esm/src/operations/webhooks.js.map +1 -1
  63. package/dist-esm/src/pagingHelper.d.ts +13 -0
  64. package/dist-esm/src/pagingHelper.d.ts.map +1 -0
  65. package/dist-esm/src/pagingHelper.js +32 -0
  66. package/dist-esm/src/pagingHelper.js.map +1 -0
  67. package/dist-esm/test/containerregistry_examples.d.ts.map +1 -1
  68. package/dist-esm/test/containerregistry_examples.js +16 -18
  69. package/dist-esm/test/containerregistry_examples.js.map +1 -1
  70. package/package.json +15 -11
  71. package/review/arm-containerregistry.api.md +143 -275
  72. package/src/containerRegistryManagementClient.ts +26 -20
  73. package/src/index.ts +1 -0
  74. package/src/models/index.ts +187 -50
  75. package/src/operations/agentPools.ts +27 -9
  76. package/src/operations/connectedRegistries.ts +26 -8
  77. package/src/operations/exportPipelines.ts +26 -8
  78. package/src/operations/importPipelines.ts +26 -8
  79. package/src/operations/operations.ts +21 -8
  80. package/src/operations/pipelineRuns.ts +26 -8
  81. package/src/operations/privateEndpointConnections.ts +26 -8
  82. package/src/operations/registries.ts +71 -29
  83. package/src/operations/replications.ts +26 -8
  84. package/src/operations/runs.ts +26 -8
  85. package/src/operations/scopeMaps.ts +26 -8
  86. package/src/operations/taskRuns.ts +27 -9
  87. package/src/operations/tasks.ts +26 -8
  88. package/src/operations/tokens.ts +26 -8
  89. package/src/operations/webhooks.ts +53 -22
  90. package/src/pagingHelper.ts +39 -0
  91. package/types/arm-containerregistry.d.ts +194 -50
  92. package/types/tsdoc-metadata.json +1 -1
@@ -1613,7 +1613,7 @@ export interface OverrideTaskStepProperties {
1613
1613
  }
1614
1614
 
1615
1615
  /** An object that represents a connected registry for a container registry. */
1616
- export type ConnectedRegistry = ProxyResource & {
1616
+ export interface ConnectedRegistry extends ProxyResource {
1617
1617
  /**
1618
1618
  * Provisioning state of the resource.
1619
1619
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -1656,10 +1656,10 @@ export type ConnectedRegistry = ProxyResource & {
1656
1656
  readonly statusDetails?: StatusDetailProperties[];
1657
1657
  /** The list of notifications subscription information for the connected registry. */
1658
1658
  notificationsList?: string[];
1659
- };
1659
+ }
1660
1660
 
1661
1661
  /** An object that represents an export pipeline for a container registry. */
1662
- export type ExportPipeline = ProxyResource & {
1662
+ export interface ExportPipeline extends ProxyResource {
1663
1663
  /** The location of the export pipeline. */
1664
1664
  location?: string;
1665
1665
  /** The identity of the export pipeline. */
@@ -1673,10 +1673,10 @@ export type ExportPipeline = ProxyResource & {
1673
1673
  * NOTE: This property will not be serialized. It can only be populated by the server.
1674
1674
  */
1675
1675
  readonly provisioningState?: ProvisioningState;
1676
- };
1676
+ }
1677
1677
 
1678
1678
  /** An object that represents an import pipeline for a container registry. */
1679
- export type ImportPipeline = ProxyResource & {
1679
+ export interface ImportPipeline extends ProxyResource {
1680
1680
  /** The location of the import pipeline. */
1681
1681
  location?: string;
1682
1682
  /** The identity of the import pipeline. */
@@ -1692,10 +1692,10 @@ export type ImportPipeline = ProxyResource & {
1692
1692
  * NOTE: This property will not be serialized. It can only be populated by the server.
1693
1693
  */
1694
1694
  readonly provisioningState?: ProvisioningState;
1695
- };
1695
+ }
1696
1696
 
1697
1697
  /** An object that represents a pipeline run for a container registry. */
1698
- export type PipelineRun = ProxyResource & {
1698
+ export interface PipelineRun extends ProxyResource {
1699
1699
  /**
1700
1700
  * The provisioning state of a pipeline run.
1701
1701
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -1710,10 +1710,10 @@ export type PipelineRun = ProxyResource & {
1710
1710
  readonly response?: PipelineRunResponse;
1711
1711
  /** How the pipeline run should be forced to recreate even if the pipeline run configuration has not changed. */
1712
1712
  forceUpdateTag?: string;
1713
- };
1713
+ }
1714
1714
 
1715
1715
  /** An object that represents a private endpoint connection for a container registry. */
1716
- export type PrivateEndpointConnection = ProxyResource & {
1716
+ export interface PrivateEndpointConnection extends ProxyResource {
1717
1717
  /** The resource of private endpoint. */
1718
1718
  privateEndpoint?: PrivateEndpoint;
1719
1719
  /** A collection of information about the state of the connection between service consumer and provider. */
@@ -1723,10 +1723,10 @@ export type PrivateEndpointConnection = ProxyResource & {
1723
1723
  * NOTE: This property will not be serialized. It can only be populated by the server.
1724
1724
  */
1725
1725
  readonly provisioningState?: ProvisioningState;
1726
- };
1726
+ }
1727
1727
 
1728
1728
  /** An object that represents a scope map for a container registry. */
1729
- export type ScopeMap = ProxyResource & {
1729
+ export interface ScopeMap extends ProxyResource {
1730
1730
  /** The user friendly description of the scope map. */
1731
1731
  description?: string;
1732
1732
  /**
@@ -1750,10 +1750,10 @@ export type ScopeMap = ProxyResource & {
1750
1750
  * repositories/repository-name/metadata/write
1751
1751
  */
1752
1752
  actions?: string[];
1753
- };
1753
+ }
1754
1754
 
1755
1755
  /** An object that represents a token for a container registry. */
1756
- export type Token = ProxyResource & {
1756
+ export interface Token extends ProxyResource {
1757
1757
  /**
1758
1758
  * The creation date of scope map.
1759
1759
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -1770,10 +1770,10 @@ export type Token = ProxyResource & {
1770
1770
  credentials?: TokenCredentialsProperties;
1771
1771
  /** The status of the token example enabled or disabled. */
1772
1772
  status?: TokenStatus;
1773
- };
1773
+ }
1774
1774
 
1775
1775
  /** Run resource properties */
1776
- export type Run = ProxyResource & {
1776
+ export interface Run extends ProxyResource {
1777
1777
  /** The unique identifier for the run. */
1778
1778
  runId?: string;
1779
1779
  /** The current status of the run. */
@@ -1824,13 +1824,13 @@ export type Run = ProxyResource & {
1824
1824
  provisioningState?: ProvisioningState;
1825
1825
  /** The value that indicates whether archiving is enabled or not. */
1826
1826
  isArchiveEnabled?: boolean;
1827
- };
1827
+ }
1828
1828
 
1829
1829
  /**
1830
1830
  * The task run that has the ARM resource and properties.
1831
1831
  * The task run will have the information of request and result of a run.
1832
1832
  */
1833
- export type TaskRun = ProxyResource & {
1833
+ export interface TaskRun extends ProxyResource {
1834
1834
  /** Identity for the resource. */
1835
1835
  identity?: IdentityProperties;
1836
1836
  /** The location of the resource */
@@ -1849,10 +1849,10 @@ export type TaskRun = ProxyResource & {
1849
1849
  readonly runResult?: Run;
1850
1850
  /** How the run should be forced to rerun even if the run request configuration has not changed */
1851
1851
  forceUpdateTag?: string;
1852
- };
1852
+ }
1853
1853
 
1854
1854
  /** An object that represents a container registry. */
1855
- export type Registry = Resource & {
1855
+ export interface Registry extends Resource {
1856
1856
  /** The SKU of the container registry. */
1857
1857
  sku: Sku;
1858
1858
  /** The identity of the container registry. */
@@ -1905,10 +1905,10 @@ export type Registry = Resource & {
1905
1905
  zoneRedundancy?: ZoneRedundancy;
1906
1906
  /** Enables registry-wide pull from unauthenticated clients. */
1907
1907
  anonymousPullEnabled?: boolean;
1908
- };
1908
+ }
1909
1909
 
1910
1910
  /** An object that represents a replication for a container registry. */
1911
- export type Replication = Resource & {
1911
+ export interface Replication extends Resource {
1912
1912
  /**
1913
1913
  * The provisioning state of the replication at the time the operation was called.
1914
1914
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -1923,10 +1923,10 @@ export type Replication = Resource & {
1923
1923
  regionEndpointEnabled?: boolean;
1924
1924
  /** Whether or not zone redundancy is enabled for this container registry replication */
1925
1925
  zoneRedundancy?: ZoneRedundancy;
1926
- };
1926
+ }
1927
1927
 
1928
1928
  /** An object that represents a webhook for a container registry. */
1929
- export type Webhook = Resource & {
1929
+ export interface Webhook extends Resource {
1930
1930
  /** The status of the webhook at the time the operation was called. */
1931
1931
  status?: WebhookStatus;
1932
1932
  /** The scope of repositories where the event can be triggered. For example, 'foo:*' means events for all tags under repository 'foo'. 'foo:bar' means events for 'foo:bar' only. 'foo' is equivalent to 'foo:latest'. Empty means all events. */
@@ -1938,13 +1938,13 @@ export type Webhook = Resource & {
1938
1938
  * NOTE: This property will not be serialized. It can only be populated by the server.
1939
1939
  */
1940
1940
  readonly provisioningState?: ProvisioningState;
1941
- };
1941
+ }
1942
1942
 
1943
1943
  /**
1944
1944
  * The agentpool that has the ARM resource and properties.
1945
1945
  * The agentpool will have all information to create an agent pool.
1946
1946
  */
1947
- export type AgentPool = Resource & {
1947
+ export interface AgentPool extends Resource {
1948
1948
  /** The count of agent machine */
1949
1949
  count?: number;
1950
1950
  /** The Tier of agent machine */
@@ -1958,13 +1958,13 @@ export type AgentPool = Resource & {
1958
1958
  * NOTE: This property will not be serialized. It can only be populated by the server.
1959
1959
  */
1960
1960
  readonly provisioningState?: ProvisioningState;
1961
- };
1961
+ }
1962
1962
 
1963
1963
  /**
1964
1964
  * The task that has the ARM resource and task properties.
1965
1965
  * The task will have all information to schedule a run against it.
1966
1966
  */
1967
- export type Task = Resource & {
1967
+ export interface Task extends Resource {
1968
1968
  /** Identity for the resource. */
1969
1969
  identity?: IdentityProperties;
1970
1970
  /**
@@ -1997,18 +1997,18 @@ export type Task = Resource & {
1997
1997
  logTemplate?: string;
1998
1998
  /** The value of this property indicates whether the task resource is system task or not. */
1999
1999
  isSystemTask?: boolean;
2000
- };
2000
+ }
2001
2001
 
2002
2002
  /** The event for a webhook. */
2003
- export type Event = EventInfo & {
2003
+ export interface Event extends EventInfo {
2004
2004
  /** The event request message sent to the service URI. */
2005
2005
  eventRequestMessage?: EventRequestMessage;
2006
2006
  /** The event response message received from the service URI. */
2007
2007
  eventResponseMessage?: EventResponseMessage;
2008
- };
2008
+ }
2009
2009
 
2010
2010
  /** The parameters for a docker quick build. */
2011
- export type DockerBuildRequest = RunRequest & {
2011
+ export interface DockerBuildRequest extends RunRequest {
2012
2012
  /** Polymorphic discriminator, which specifies the different types this object can be */
2013
2013
  type: "DockerBuildRequest";
2014
2014
  /** The fully qualified image names including the repository and tag. */
@@ -2036,10 +2036,10 @@ export type DockerBuildRequest = RunRequest & {
2036
2036
  sourceLocation?: string;
2037
2037
  /** The properties that describes a set of credentials that will be used when this run is invoked. */
2038
2038
  credentials?: Credentials;
2039
- };
2039
+ }
2040
2040
 
2041
2041
  /** The request parameters for a scheduling run against a task file. */
2042
- export type FileTaskRunRequest = RunRequest & {
2042
+ export interface FileTaskRunRequest extends RunRequest {
2043
2043
  /** Polymorphic discriminator, which specifies the different types this object can be */
2044
2044
  type: "FileTaskRunRequest";
2045
2045
  /** The template/definition file path relative to the source. */
@@ -2061,20 +2061,20 @@ export type FileTaskRunRequest = RunRequest & {
2061
2061
  sourceLocation?: string;
2062
2062
  /** The properties that describes a set of credentials that will be used when this run is invoked. */
2063
2063
  credentials?: Credentials;
2064
- };
2064
+ }
2065
2065
 
2066
2066
  /** The parameters for a task run request. */
2067
- export type TaskRunRequest = RunRequest & {
2067
+ export interface TaskRunRequest extends RunRequest {
2068
2068
  /** Polymorphic discriminator, which specifies the different types this object can be */
2069
2069
  type: "TaskRunRequest";
2070
2070
  /** The resource ID of task against which run has to be queued. */
2071
2071
  taskId: string;
2072
2072
  /** Set of overridable parameters that can be passed when running a Task. */
2073
2073
  overrideTaskStepProperties?: OverrideTaskStepProperties;
2074
- };
2074
+ }
2075
2075
 
2076
2076
  /** The parameters for a quick task run request. */
2077
- export type EncodedTaskRunRequest = RunRequest & {
2077
+ export interface EncodedTaskRunRequest extends RunRequest {
2078
2078
  /** Polymorphic discriminator, which specifies the different types this object can be */
2079
2079
  type: "EncodedTaskRunRequest";
2080
2080
  /** Base64 encoded value of the template/definition file content. */
@@ -2096,10 +2096,10 @@ export type EncodedTaskRunRequest = RunRequest & {
2096
2096
  sourceLocation?: string;
2097
2097
  /** The properties that describes a set of credentials that will be used when this run is invoked. */
2098
2098
  credentials?: Credentials;
2099
- };
2099
+ }
2100
2100
 
2101
2101
  /** The Docker build step. */
2102
- export type DockerBuildStep = TaskStepProperties & {
2102
+ export interface DockerBuildStep extends TaskStepProperties {
2103
2103
  /** Polymorphic discriminator, which specifies the different types this object can be */
2104
2104
  type: "Docker";
2105
2105
  /** The fully qualified image names including the repository and tag. */
@@ -2114,10 +2114,10 @@ export type DockerBuildStep = TaskStepProperties & {
2114
2114
  target?: string;
2115
2115
  /** The collection of override arguments to be used when executing this build step. */
2116
2116
  arguments?: Argument[];
2117
- };
2117
+ }
2118
2118
 
2119
2119
  /** The properties of a task step. */
2120
- export type FileTaskStep = TaskStepProperties & {
2120
+ export interface FileTaskStep extends TaskStepProperties {
2121
2121
  /** Polymorphic discriminator, which specifies the different types this object can be */
2122
2122
  type: "FileTask";
2123
2123
  /** The task template/definition file path relative to the source context. */
@@ -2126,10 +2126,10 @@ export type FileTaskStep = TaskStepProperties & {
2126
2126
  valuesFilePath?: string;
2127
2127
  /** The collection of overridable values that can be passed when running a task. */
2128
2128
  values?: SetValue[];
2129
- };
2129
+ }
2130
2130
 
2131
2131
  /** The properties of a encoded task step. */
2132
- export type EncodedTaskStep = TaskStepProperties & {
2132
+ export interface EncodedTaskStep extends TaskStepProperties {
2133
2133
  /** Polymorphic discriminator, which specifies the different types this object can be */
2134
2134
  type: "EncodedTask";
2135
2135
  /** Base64 encoded value of the template/definition file content. */
@@ -2138,10 +2138,11 @@ export type EncodedTaskStep = TaskStepProperties & {
2138
2138
  encodedValuesContent?: string;
2139
2139
  /** The collection of overridable values that can be passed when running a task. */
2140
2140
  values?: SetValue[];
2141
- };
2141
+ }
2142
2142
 
2143
2143
  /** The properties for updating a docker build step. */
2144
- export type DockerBuildStepUpdateParameters = TaskStepUpdateParameters & {
2144
+ export interface DockerBuildStepUpdateParameters
2145
+ extends TaskStepUpdateParameters {
2145
2146
  /** Polymorphic discriminator, which specifies the different types this object can be */
2146
2147
  type: "Docker";
2147
2148
  /** The fully qualified image names including the repository and tag. */
@@ -2156,10 +2157,10 @@ export type DockerBuildStepUpdateParameters = TaskStepUpdateParameters & {
2156
2157
  arguments?: Argument[];
2157
2158
  /** The name of the target build stage for the docker build. */
2158
2159
  target?: string;
2159
- };
2160
+ }
2160
2161
 
2161
2162
  /** The properties of updating a task step. */
2162
- export type FileTaskStepUpdateParameters = TaskStepUpdateParameters & {
2163
+ export interface FileTaskStepUpdateParameters extends TaskStepUpdateParameters {
2163
2164
  /** Polymorphic discriminator, which specifies the different types this object can be */
2164
2165
  type: "FileTask";
2165
2166
  /** The task template/definition file path relative to the source context. */
@@ -2168,10 +2169,11 @@ export type FileTaskStepUpdateParameters = TaskStepUpdateParameters & {
2168
2169
  valuesFilePath?: string;
2169
2170
  /** The collection of overridable values that can be passed when running a task. */
2170
2171
  values?: SetValue[];
2171
- };
2172
+ }
2172
2173
 
2173
2174
  /** The properties for updating encoded task step. */
2174
- export type EncodedTaskStepUpdateParameters = TaskStepUpdateParameters & {
2175
+ export interface EncodedTaskStepUpdateParameters
2176
+ extends TaskStepUpdateParameters {
2175
2177
  /** Polymorphic discriminator, which specifies the different types this object can be */
2176
2178
  type: "EncodedTask";
2177
2179
  /** Base64 encoded value of the template/definition file content. */
@@ -2180,15 +2182,21 @@ export type EncodedTaskStepUpdateParameters = TaskStepUpdateParameters & {
2180
2182
  encodedValuesContent?: string;
2181
2183
  /** The collection of overridable values that can be passed when running a task. */
2182
2184
  values?: SetValue[];
2183
- };
2185
+ }
2184
2186
 
2185
2187
  /** Known values of {@link ProvisioningState} that the service accepts. */
2186
2188
  export enum KnownProvisioningState {
2189
+ /** Creating */
2187
2190
  Creating = "Creating",
2191
+ /** Updating */
2188
2192
  Updating = "Updating",
2193
+ /** Deleting */
2189
2194
  Deleting = "Deleting",
2195
+ /** Succeeded */
2190
2196
  Succeeded = "Succeeded",
2197
+ /** Failed */
2191
2198
  Failed = "Failed",
2199
+ /** Canceled */
2192
2200
  Canceled = "Canceled"
2193
2201
  }
2194
2202
 
@@ -2208,9 +2216,13 @@ export type ProvisioningState = string;
2208
2216
 
2209
2217
  /** Known values of {@link ConnectedRegistryMode} that the service accepts. */
2210
2218
  export enum KnownConnectedRegistryMode {
2219
+ /** ReadWrite */
2211
2220
  ReadWrite = "ReadWrite",
2221
+ /** ReadOnly */
2212
2222
  ReadOnly = "ReadOnly",
2223
+ /** Registry */
2213
2224
  Registry = "Registry",
2225
+ /** Mirror */
2214
2226
  Mirror = "Mirror"
2215
2227
  }
2216
2228
 
@@ -2228,9 +2240,13 @@ export type ConnectedRegistryMode = string;
2228
2240
 
2229
2241
  /** Known values of {@link ConnectionState} that the service accepts. */
2230
2242
  export enum KnownConnectionState {
2243
+ /** Online */
2231
2244
  Online = "Online",
2245
+ /** Offline */
2232
2246
  Offline = "Offline",
2247
+ /** Syncing */
2233
2248
  Syncing = "Syncing",
2249
+ /** Unhealthy */
2234
2250
  Unhealthy = "Unhealthy"
2235
2251
  }
2236
2252
 
@@ -2248,7 +2264,9 @@ export type ConnectionState = string;
2248
2264
 
2249
2265
  /** Known values of {@link ActivationStatus} that the service accepts. */
2250
2266
  export enum KnownActivationStatus {
2267
+ /** Active */
2251
2268
  Active = "Active",
2269
+ /** Inactive */
2252
2270
  Inactive = "Inactive"
2253
2271
  }
2254
2272
 
@@ -2264,7 +2282,9 @@ export type ActivationStatus = string;
2264
2282
 
2265
2283
  /** Known values of {@link TlsStatus} that the service accepts. */
2266
2284
  export enum KnownTlsStatus {
2285
+ /** Enabled */
2267
2286
  Enabled = "Enabled",
2287
+ /** Disabled */
2268
2288
  Disabled = "Disabled"
2269
2289
  }
2270
2290
 
@@ -2280,6 +2300,7 @@ export type TlsStatus = string;
2280
2300
 
2281
2301
  /** Known values of {@link CertificateType} that the service accepts. */
2282
2302
  export enum KnownCertificateType {
2303
+ /** LocalDirectory */
2283
2304
  LocalDirectory = "LocalDirectory"
2284
2305
  }
2285
2306
 
@@ -2294,10 +2315,15 @@ export type CertificateType = string;
2294
2315
 
2295
2316
  /** Known values of {@link LogLevel} that the service accepts. */
2296
2317
  export enum KnownLogLevel {
2318
+ /** Debug */
2297
2319
  Debug = "Debug",
2320
+ /** Information */
2298
2321
  Information = "Information",
2322
+ /** Warning */
2299
2323
  Warning = "Warning",
2324
+ /** Error */
2300
2325
  Error = "Error",
2326
+ /** None */
2301
2327
  None = "None"
2302
2328
  }
2303
2329
 
@@ -2316,7 +2342,9 @@ export type LogLevel = string;
2316
2342
 
2317
2343
  /** Known values of {@link AuditLogStatus} that the service accepts. */
2318
2344
  export enum KnownAuditLogStatus {
2345
+ /** Enabled */
2319
2346
  Enabled = "Enabled",
2347
+ /** Disabled */
2320
2348
  Disabled = "Disabled"
2321
2349
  }
2322
2350
 
@@ -2332,9 +2360,13 @@ export type AuditLogStatus = string;
2332
2360
 
2333
2361
  /** Known values of {@link CreatedByType} that the service accepts. */
2334
2362
  export enum KnownCreatedByType {
2363
+ /** User */
2335
2364
  User = "User",
2365
+ /** Application */
2336
2366
  Application = "Application",
2367
+ /** ManagedIdentity */
2337
2368
  ManagedIdentity = "ManagedIdentity",
2369
+ /** Key */
2338
2370
  Key = "Key"
2339
2371
  }
2340
2372
 
@@ -2352,9 +2384,13 @@ export type CreatedByType = string;
2352
2384
 
2353
2385
  /** Known values of {@link LastModifiedByType} that the service accepts. */
2354
2386
  export enum KnownLastModifiedByType {
2387
+ /** User */
2355
2388
  User = "User",
2389
+ /** Application */
2356
2390
  Application = "Application",
2391
+ /** ManagedIdentity */
2357
2392
  ManagedIdentity = "ManagedIdentity",
2393
+ /** Key */
2358
2394
  Key = "Key"
2359
2395
  }
2360
2396
 
@@ -2372,9 +2408,13 @@ export type LastModifiedByType = string;
2372
2408
 
2373
2409
  /** Known values of {@link PipelineOptions} that the service accepts. */
2374
2410
  export enum KnownPipelineOptions {
2411
+ /** OverwriteTags */
2375
2412
  OverwriteTags = "OverwriteTags",
2413
+ /** OverwriteBlobs */
2376
2414
  OverwriteBlobs = "OverwriteBlobs",
2415
+ /** DeleteSourceBlobOnSuccess */
2377
2416
  DeleteSourceBlobOnSuccess = "DeleteSourceBlobOnSuccess",
2417
+ /** ContinueOnErrors */
2378
2418
  ContinueOnErrors = "ContinueOnErrors"
2379
2419
  }
2380
2420
 
@@ -2392,7 +2432,9 @@ export type PipelineOptions = string;
2392
2432
 
2393
2433
  /** Known values of {@link ImportMode} that the service accepts. */
2394
2434
  export enum KnownImportMode {
2435
+ /** NoForce */
2395
2436
  NoForce = "NoForce",
2437
+ /** Force */
2396
2438
  Force = "Force"
2397
2439
  }
2398
2440
 
@@ -2408,6 +2450,7 @@ export type ImportMode = string;
2408
2450
 
2409
2451
  /** Known values of {@link PipelineSourceType} that the service accepts. */
2410
2452
  export enum KnownPipelineSourceType {
2453
+ /** AzureStorageBlobContainer */
2411
2454
  AzureStorageBlobContainer = "AzureStorageBlobContainer"
2412
2455
  }
2413
2456
 
@@ -2422,7 +2465,9 @@ export type PipelineSourceType = string;
2422
2465
 
2423
2466
  /** Known values of {@link TriggerStatus} that the service accepts. */
2424
2467
  export enum KnownTriggerStatus {
2468
+ /** Disabled */
2425
2469
  Disabled = "Disabled",
2470
+ /** Enabled */
2426
2471
  Enabled = "Enabled"
2427
2472
  }
2428
2473
 
@@ -2438,6 +2483,7 @@ export type TriggerStatus = string;
2438
2483
 
2439
2484
  /** Known values of {@link PipelineRunSourceType} that the service accepts. */
2440
2485
  export enum KnownPipelineRunSourceType {
2486
+ /** AzureStorageBlob */
2441
2487
  AzureStorageBlob = "AzureStorageBlob"
2442
2488
  }
2443
2489
 
@@ -2452,6 +2498,7 @@ export type PipelineRunSourceType = string;
2452
2498
 
2453
2499
  /** Known values of {@link PipelineRunTargetType} that the service accepts. */
2454
2500
  export enum KnownPipelineRunTargetType {
2501
+ /** AzureStorageBlob */
2455
2502
  AzureStorageBlob = "AzureStorageBlob"
2456
2503
  }
2457
2504
 
@@ -2466,9 +2513,13 @@ export type PipelineRunTargetType = string;
2466
2513
 
2467
2514
  /** Known values of {@link ConnectionStatus} that the service accepts. */
2468
2515
  export enum KnownConnectionStatus {
2516
+ /** Approved */
2469
2517
  Approved = "Approved",
2518
+ /** Pending */
2470
2519
  Pending = "Pending",
2520
+ /** Rejected */
2471
2521
  Rejected = "Rejected",
2522
+ /** Disconnected */
2472
2523
  Disconnected = "Disconnected"
2473
2524
  }
2474
2525
 
@@ -2486,7 +2537,9 @@ export type ConnectionStatus = string;
2486
2537
 
2487
2538
  /** Known values of {@link ActionsRequired} that the service accepts. */
2488
2539
  export enum KnownActionsRequired {
2540
+ /** None */
2489
2541
  None = "None",
2542
+ /** Recreate */
2490
2543
  Recreate = "Recreate"
2491
2544
  }
2492
2545
 
@@ -2502,9 +2555,13 @@ export type ActionsRequired = string;
2502
2555
 
2503
2556
  /** Known values of {@link SkuName} that the service accepts. */
2504
2557
  export enum KnownSkuName {
2558
+ /** Classic */
2505
2559
  Classic = "Classic",
2560
+ /** Basic */
2506
2561
  Basic = "Basic",
2562
+ /** Standard */
2507
2563
  Standard = "Standard",
2564
+ /** Premium */
2508
2565
  Premium = "Premium"
2509
2566
  }
2510
2567
 
@@ -2522,9 +2579,13 @@ export type SkuName = string;
2522
2579
 
2523
2580
  /** Known values of {@link SkuTier} that the service accepts. */
2524
2581
  export enum KnownSkuTier {
2582
+ /** Classic */
2525
2583
  Classic = "Classic",
2584
+ /** Basic */
2526
2585
  Basic = "Basic",
2586
+ /** Standard */
2527
2587
  Standard = "Standard",
2588
+ /** Premium */
2528
2589
  Premium = "Premium"
2529
2590
  }
2530
2591
 
@@ -2542,7 +2603,9 @@ export type SkuTier = string;
2542
2603
 
2543
2604
  /** Known values of {@link DefaultAction} that the service accepts. */
2544
2605
  export enum KnownDefaultAction {
2606
+ /** Allow */
2545
2607
  Allow = "Allow",
2608
+ /** Deny */
2546
2609
  Deny = "Deny"
2547
2610
  }
2548
2611
 
@@ -2558,6 +2621,7 @@ export type DefaultAction = string;
2558
2621
 
2559
2622
  /** Known values of {@link Action} that the service accepts. */
2560
2623
  export enum KnownAction {
2624
+ /** Allow */
2561
2625
  Allow = "Allow"
2562
2626
  }
2563
2627
 
@@ -2572,7 +2636,9 @@ export type Action = string;
2572
2636
 
2573
2637
  /** Known values of {@link PolicyStatus} that the service accepts. */
2574
2638
  export enum KnownPolicyStatus {
2639
+ /** Enabled */
2575
2640
  Enabled = "enabled",
2641
+ /** Disabled */
2576
2642
  Disabled = "disabled"
2577
2643
  }
2578
2644
 
@@ -2588,6 +2654,7 @@ export type PolicyStatus = string;
2588
2654
 
2589
2655
  /** Known values of {@link TrustPolicyType} that the service accepts. */
2590
2656
  export enum KnownTrustPolicyType {
2657
+ /** Notary */
2591
2658
  Notary = "Notary"
2592
2659
  }
2593
2660
 
@@ -2602,7 +2669,9 @@ export type TrustPolicyType = string;
2602
2669
 
2603
2670
  /** Known values of {@link ExportPolicyStatus} that the service accepts. */
2604
2671
  export enum KnownExportPolicyStatus {
2672
+ /** Enabled */
2605
2673
  Enabled = "enabled",
2674
+ /** Disabled */
2606
2675
  Disabled = "disabled"
2607
2676
  }
2608
2677
 
@@ -2618,7 +2687,9 @@ export type ExportPolicyStatus = string;
2618
2687
 
2619
2688
  /** Known values of {@link AzureADAuthenticationAsArmPolicyStatus} that the service accepts. */
2620
2689
  export enum KnownAzureADAuthenticationAsArmPolicyStatus {
2690
+ /** Enabled */
2621
2691
  Enabled = "enabled",
2692
+ /** Disabled */
2622
2693
  Disabled = "disabled"
2623
2694
  }
2624
2695
 
@@ -2634,7 +2705,9 @@ export type AzureADAuthenticationAsArmPolicyStatus = string;
2634
2705
 
2635
2706
  /** Known values of {@link EncryptionStatus} that the service accepts. */
2636
2707
  export enum KnownEncryptionStatus {
2708
+ /** Enabled */
2637
2709
  Enabled = "enabled",
2710
+ /** Disabled */
2638
2711
  Disabled = "disabled"
2639
2712
  }
2640
2713
 
@@ -2650,7 +2723,9 @@ export type EncryptionStatus = string;
2650
2723
 
2651
2724
  /** Known values of {@link PublicNetworkAccess} that the service accepts. */
2652
2725
  export enum KnownPublicNetworkAccess {
2726
+ /** Enabled */
2653
2727
  Enabled = "Enabled",
2728
+ /** Disabled */
2654
2729
  Disabled = "Disabled"
2655
2730
  }
2656
2731
 
@@ -2666,7 +2741,9 @@ export type PublicNetworkAccess = string;
2666
2741
 
2667
2742
  /** Known values of {@link NetworkRuleBypassOptions} that the service accepts. */
2668
2743
  export enum KnownNetworkRuleBypassOptions {
2744
+ /** AzureServices */
2669
2745
  AzureServices = "AzureServices",
2746
+ /** None */
2670
2747
  None = "None"
2671
2748
  }
2672
2749
 
@@ -2682,7 +2759,9 @@ export type NetworkRuleBypassOptions = string;
2682
2759
 
2683
2760
  /** Known values of {@link ZoneRedundancy} that the service accepts. */
2684
2761
  export enum KnownZoneRedundancy {
2762
+ /** Enabled */
2685
2763
  Enabled = "Enabled",
2764
+ /** Disabled */
2686
2765
  Disabled = "Disabled"
2687
2766
  }
2688
2767
 
@@ -2698,7 +2777,9 @@ export type ZoneRedundancy = string;
2698
2777
 
2699
2778
  /** Known values of {@link RegistryUsageUnit} that the service accepts. */
2700
2779
  export enum KnownRegistryUsageUnit {
2780
+ /** Count */
2701
2781
  Count = "Count",
2782
+ /** Bytes */
2702
2783
  Bytes = "Bytes"
2703
2784
  }
2704
2785
 
@@ -2714,7 +2795,9 @@ export type RegistryUsageUnit = string;
2714
2795
 
2715
2796
  /** Known values of {@link TokenCertificateName} that the service accepts. */
2716
2797
  export enum KnownTokenCertificateName {
2798
+ /** Certificate1 */
2717
2799
  Certificate1 = "certificate1",
2800
+ /** Certificate2 */
2718
2801
  Certificate2 = "certificate2"
2719
2802
  }
2720
2803
 
@@ -2730,7 +2813,9 @@ export type TokenCertificateName = string;
2730
2813
 
2731
2814
  /** Known values of {@link TokenPasswordName} that the service accepts. */
2732
2815
  export enum KnownTokenPasswordName {
2816
+ /** Password1 */
2733
2817
  Password1 = "password1",
2818
+ /** Password2 */
2734
2819
  Password2 = "password2"
2735
2820
  }
2736
2821
 
@@ -2746,7 +2831,9 @@ export type TokenPasswordName = string;
2746
2831
 
2747
2832
  /** Known values of {@link TokenStatus} that the service accepts. */
2748
2833
  export enum KnownTokenStatus {
2834
+ /** Enabled */
2749
2835
  Enabled = "enabled",
2836
+ /** Disabled */
2750
2837
  Disabled = "disabled"
2751
2838
  }
2752
2839
 
@@ -2762,7 +2849,9 @@ export type TokenStatus = string;
2762
2849
 
2763
2850
  /** Known values of {@link WebhookStatus} that the service accepts. */
2764
2851
  export enum KnownWebhookStatus {
2852
+ /** Enabled */
2765
2853
  Enabled = "enabled",
2854
+ /** Disabled */
2766
2855
  Disabled = "disabled"
2767
2856
  }
2768
2857
 
@@ -2778,10 +2867,15 @@ export type WebhookStatus = string;
2778
2867
 
2779
2868
  /** Known values of {@link WebhookAction} that the service accepts. */
2780
2869
  export enum KnownWebhookAction {
2870
+ /** Push */
2781
2871
  Push = "push",
2872
+ /** Delete */
2782
2873
  Delete = "delete",
2874
+ /** Quarantine */
2783
2875
  Quarantine = "quarantine",
2876
+ /** ChartPush */
2784
2877
  ChartPush = "chart_push",
2878
+ /** ChartDelete */
2785
2879
  ChartDelete = "chart_delete"
2786
2880
  }
2787
2881
 
@@ -2800,7 +2894,9 @@ export type WebhookAction = string;
2800
2894
 
2801
2895
  /** Known values of {@link OS} that the service accepts. */
2802
2896
  export enum KnownOS {
2897
+ /** Windows */
2803
2898
  Windows = "Windows",
2899
+ /** Linux */
2804
2900
  Linux = "Linux"
2805
2901
  }
2806
2902
 
@@ -2816,13 +2912,21 @@ export type OS = string;
2816
2912
 
2817
2913
  /** Known values of {@link RunStatus} that the service accepts. */
2818
2914
  export enum KnownRunStatus {
2915
+ /** Queued */
2819
2916
  Queued = "Queued",
2917
+ /** Started */
2820
2918
  Started = "Started",
2919
+ /** Running */
2821
2920
  Running = "Running",
2921
+ /** Succeeded */
2822
2922
  Succeeded = "Succeeded",
2923
+ /** Failed */
2823
2924
  Failed = "Failed",
2925
+ /** Canceled */
2824
2926
  Canceled = "Canceled",
2927
+ /** Error */
2825
2928
  Error = "Error",
2929
+ /** Timeout */
2826
2930
  Timeout = "Timeout"
2827
2931
  }
2828
2932
 
@@ -2844,9 +2948,13 @@ export type RunStatus = string;
2844
2948
 
2845
2949
  /** Known values of {@link RunType} that the service accepts. */
2846
2950
  export enum KnownRunType {
2951
+ /** QuickBuild */
2847
2952
  QuickBuild = "QuickBuild",
2953
+ /** QuickRun */
2848
2954
  QuickRun = "QuickRun",
2955
+ /** AutoBuild */
2849
2956
  AutoBuild = "AutoBuild",
2957
+ /** AutoRun */
2850
2958
  AutoRun = "AutoRun"
2851
2959
  }
2852
2960
 
@@ -2864,10 +2972,15 @@ export type RunType = string;
2864
2972
 
2865
2973
  /** Known values of {@link Architecture} that the service accepts. */
2866
2974
  export enum KnownArchitecture {
2975
+ /** Amd64 */
2867
2976
  Amd64 = "amd64",
2977
+ /** X86 */
2868
2978
  X86 = "x86",
2979
+ /** ThreeHundredEightySix */
2869
2980
  ThreeHundredEightySix = "386",
2981
+ /** Arm */
2870
2982
  Arm = "arm",
2983
+ /** Arm64 */
2871
2984
  Arm64 = "arm64"
2872
2985
  }
2873
2986
 
@@ -2886,8 +2999,11 @@ export type Architecture = string;
2886
2999
 
2887
3000
  /** Known values of {@link Variant} that the service accepts. */
2888
3001
  export enum KnownVariant {
3002
+ /** V6 */
2889
3003
  V6 = "v6",
3004
+ /** V7 */
2890
3005
  V7 = "v7",
3006
+ /** V8 */
2891
3007
  V8 = "v8"
2892
3008
  }
2893
3009
 
@@ -2904,7 +3020,9 @@ export type Variant = string;
2904
3020
 
2905
3021
  /** Known values of {@link TaskStatus} that the service accepts. */
2906
3022
  export enum KnownTaskStatus {
3023
+ /** Disabled */
2907
3024
  Disabled = "Disabled",
3025
+ /** Enabled */
2908
3026
  Enabled = "Enabled"
2909
3027
  }
2910
3028
 
@@ -2920,8 +3038,11 @@ export type TaskStatus = string;
2920
3038
 
2921
3039
  /** Known values of {@link StepType} that the service accepts. */
2922
3040
  export enum KnownStepType {
3041
+ /** Docker */
2923
3042
  Docker = "Docker",
3043
+ /** FileTask */
2924
3044
  FileTask = "FileTask",
3045
+ /** EncodedTask */
2925
3046
  EncodedTask = "EncodedTask"
2926
3047
  }
2927
3048
 
@@ -2938,7 +3059,9 @@ export type StepType = string;
2938
3059
 
2939
3060
  /** Known values of {@link BaseImageDependencyType} that the service accepts. */
2940
3061
  export enum KnownBaseImageDependencyType {
3062
+ /** BuildTime */
2941
3063
  BuildTime = "BuildTime",
3064
+ /** RunTime */
2942
3065
  RunTime = "RunTime"
2943
3066
  }
2944
3067
 
@@ -2954,7 +3077,9 @@ export type BaseImageDependencyType = string;
2954
3077
 
2955
3078
  /** Known values of {@link SourceControlType} that the service accepts. */
2956
3079
  export enum KnownSourceControlType {
3080
+ /** Github */
2957
3081
  Github = "Github",
3082
+ /** VisualStudioTeamService */
2958
3083
  VisualStudioTeamService = "VisualStudioTeamService"
2959
3084
  }
2960
3085
 
@@ -2970,7 +3095,9 @@ export type SourceControlType = string;
2970
3095
 
2971
3096
  /** Known values of {@link TokenType} that the service accepts. */
2972
3097
  export enum KnownTokenType {
3098
+ /** PAT */
2973
3099
  PAT = "PAT",
3100
+ /** OAuth */
2974
3101
  OAuth = "OAuth"
2975
3102
  }
2976
3103
 
@@ -2986,7 +3113,9 @@ export type TokenType = string;
2986
3113
 
2987
3114
  /** Known values of {@link SourceTriggerEvent} that the service accepts. */
2988
3115
  export enum KnownSourceTriggerEvent {
3116
+ /** Commit */
2989
3117
  Commit = "commit",
3118
+ /** Pullrequest */
2990
3119
  Pullrequest = "pullrequest"
2991
3120
  }
2992
3121
 
@@ -3002,7 +3131,9 @@ export type SourceTriggerEvent = string;
3002
3131
 
3003
3132
  /** Known values of {@link BaseImageTriggerType} that the service accepts. */
3004
3133
  export enum KnownBaseImageTriggerType {
3134
+ /** All */
3005
3135
  All = "All",
3136
+ /** Runtime */
3006
3137
  Runtime = "Runtime"
3007
3138
  }
3008
3139
 
@@ -3018,7 +3149,9 @@ export type BaseImageTriggerType = string;
3018
3149
 
3019
3150
  /** Known values of {@link UpdateTriggerPayloadType} that the service accepts. */
3020
3151
  export enum KnownUpdateTriggerPayloadType {
3152
+ /** Default */
3021
3153
  Default = "Default",
3154
+ /** Token */
3022
3155
  Token = "Token"
3023
3156
  }
3024
3157
 
@@ -3034,7 +3167,9 @@ export type UpdateTriggerPayloadType = string;
3034
3167
 
3035
3168
  /** Known values of {@link SourceRegistryLoginMode} that the service accepts. */
3036
3169
  export enum KnownSourceRegistryLoginMode {
3170
+ /** None */
3037
3171
  None = "None",
3172
+ /** Default */
3038
3173
  Default = "Default"
3039
3174
  }
3040
3175
 
@@ -3050,7 +3185,9 @@ export type SourceRegistryLoginMode = string;
3050
3185
 
3051
3186
  /** Known values of {@link SecretObjectType} that the service accepts. */
3052
3187
  export enum KnownSecretObjectType {
3188
+ /** Opaque */
3053
3189
  Opaque = "Opaque",
3190
+ /** Vaultsecret */
3054
3191
  Vaultsecret = "Vaultsecret"
3055
3192
  }
3056
3193