You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* update docstrings
* more updates
* regen from updated swagger
* update generated API listing
* Update sdk/containerregistry/Azure.Containers.ContainerRegistry/src/ContainerRegistryClient.cs
Co-authored-by: Christopher Scott <[email protected]>
* Update sdk/containerregistry/Azure.Containers.ContainerRegistry/src/Repository/ContainerRepository.cs
Co-authored-by: Christopher Scott <[email protected]>
* pr fb
* update to latest swagger in azure-rest-api-specs repo
* export API
Co-authored-by: Christopher Scott <[email protected]>
Copy file name to clipboardExpand all lines: sdk/containerregistry/Azure.Containers.ContainerRegistry/src/Artifact/RegistryArtifact.cs
+26-21Lines changed: 26 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,12 @@
9
9
10
10
namespaceAzure.Containers.ContainerRegistry
11
11
{
12
-
/// <summary> A helper class that groups information and operations about an image or artifact in this container registry. </summary>
12
+
/// <summary> `Artifact` is the general term for items stored in a container registry,
13
+
/// and can include Docker images or other Open Container Initiative (OCI) artifact types.
14
+
/// <para>
15
+
/// The <see cref="RegistryArtifact"/> class is a helper class that groups information and operations about an image or artifact in this container registry.
/// <summary> Delete the repository identified by `repostitory`. </summary>
192
+
/// <summary> Delete the repository identified by `repository` and all associated artifacts.</summary>
193
193
/// <param name="repositoryName"> Repository name (including the namespace). </param>
194
194
/// <param name="cancellationToken"> The cancellation token to use. </param>
195
195
/// <exception cref="ArgumentNullException"> Thrown when <paramref name="repositoryName"/> is null. </exception>
@@ -212,7 +212,7 @@ public virtual async Task<Response> DeleteRepositoryAsync(string repositoryName,
212
212
}
213
213
}
214
214
215
-
/// <summary> Delete the repository identified by `repostitory`. </summary>
215
+
/// <summary> Delete the repository identified by `repository` and all associated artifacts.</summary>
216
216
/// <param name="repositoryName"> Repository name (including the namespace). </param>
217
217
/// <param name="cancellationToken"> The cancellation token to use. </param>
218
218
/// <exception cref="ArgumentNullException"> Thrown when <paramref name="repositoryName"/> is null. </exception>
@@ -236,7 +236,7 @@ public virtual Response DeleteRepository(string repositoryName, CancellationToke
236
236
}
237
237
238
238
/// <summary>
239
-
/// Create a new <see cref="ContainerRepository"/> object for the specified repository.
239
+
/// Create a new <see cref="ContainerRepository"/> object for calling service methods related to the repository specified by `repositoryName`.
240
240
/// </summary>
241
241
/// <param name="repositoryName"> The name of the repository to reference. </param>
242
242
/// <returns> A new <see cref="ContainerRepository"/> for the desired repository. </returns>
@@ -254,7 +254,7 @@ public virtual ContainerRepository GetRepository(string repositoryName)
254
254
}
255
255
256
256
/// <summary>
257
-
/// Create a new <see cref="RegistryArtifact"/> object for the specified artifact.
257
+
/// Create a new <see cref="RegistryArtifact"/> object for calling service methods related to the artifact specified by `repositoryName` and `tagOrDigest`.
258
258
/// </summary>
259
259
/// <param name="repositoryName"> The name of the repository to reference. </param>
260
260
/// <param name="tagOrDigest"> Either a tag or a digest that uniquely identifies the artifact. </param>
0 commit comments