Esempio n. 1
0
        /// <summary> Update the properties of the repository. </summary>
        /// <param name="value"> Repository properties object containing values to update. </param>
        /// <param name="cancellationToken"> The cancellation token to use. </param>
        /// <exception cref="ArgumentNullException"> Thrown when <paramref name="value"/> is null. </exception>
        /// <exception cref="RequestFailedException">Thrown when a failure is returned by the Container Registry service.</exception>
        public virtual Response <ContainerRepositoryProperties> UpdateProperties(ContainerRepositoryProperties value, CancellationToken cancellationToken = default)
        {
            Argument.AssertNotNull(value, nameof(value));

            using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(ContainerRepository)}.{nameof(UpdateProperties)}");
            scope.Start();
            try
            {
                return(_restClient.UpdateProperties(Name, GetRepositoryWriteableProperties(value), cancellationToken));
            }
            catch (Exception e)
            {
                scope.Failed(e);
                throw;
            }
        }
Esempio n. 2
0
 private static RepositoryWriteableProperties GetRepositoryWriteableProperties(ContainerRepositoryProperties value)
 {
     return(new RepositoryWriteableProperties()
     {
         CanDelete = value.CanDelete,
         CanList = value.CanList,
         CanRead = value.CanRead,
         CanWrite = value.CanWrite,
     });
 }