Skip to content

Commit

Permalink
Generated from faa4da7ea6662be44a9719ba392ca645bc23197b (#259)
Browse files Browse the repository at this point in the history
fix password1 description
  • Loading branch information
openapi-sdkautomation[bot] authored and SDK Automation committed Oct 10, 2019
1 parent a4f3f6f commit e2d8d73
Show file tree
Hide file tree
Showing 26 changed files with 5,820 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,16 @@ public partial class ContainerRegistryManagementClient : ServiceClient<Container
/// </summary>
public virtual ITasksOperations Tasks { get; private set; }

/// <summary>
/// Gets the IScopeMapsOperations.
/// </summary>
public virtual IScopeMapsOperations ScopeMaps { get; private set; }

/// <summary>
/// Gets the ITokensOperations.
/// </summary>
public virtual ITokensOperations Tokens { get; private set; }

/// <summary>
/// Initializes a new instance of the ContainerRegistryManagementClient class.
/// </summary>
Expand Down Expand Up @@ -343,6 +353,8 @@ private void Initialize()
Webhooks = new WebhooksOperations(this);
Runs = new RunsOperations(this);
Tasks = new TasksOperations(this);
ScopeMaps = new ScopeMapsOperations(this);
Tokens = new TokensOperations(this);
BaseUri = new System.Uri("https://management.azure.com");
AcceptLanguage = "en-US";
LongRunningOperationRetryTimeout = 30;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,15 @@ public partial interface IContainerRegistryManagementClient : System.IDisposable
/// </summary>
ITasksOperations Tasks { get; }

/// <summary>
/// Gets the IScopeMapsOperations.
/// </summary>
IScopeMapsOperations ScopeMaps { get; }

/// <summary>
/// Gets the ITokensOperations.
/// </summary>
ITokensOperations Tokens { get; }

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,35 @@ public partial interface IRegistriesOperations
/// </exception>
System.Threading.Tasks.Task<AzureOperationResponse<SourceUploadDefinition>> GetBuildSourceUploadUrlWithHttpMessagesAsync(string resourceGroupName, string registryName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Generate keys for a token of a specified container registry.
/// </summary>
/// <param name='resourceGroupName'>
/// The name of the resource group to which the container registry
/// belongs.
/// </param>
/// <param name='registryName'>
/// The name of the container registry.
/// </param>
/// <param name='generateCredentialsParameters'>
/// The parameters for generating credentials.
/// </param>
/// <param name='customHeaders'>
/// The headers that will be added to request.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
/// <exception cref="Microsoft.Rest.Azure.CloudException">
/// Thrown when the operation returned an invalid status code
/// </exception>
/// <exception cref="Microsoft.Rest.SerializationException">
/// Thrown when unable to deserialize the response
/// </exception>
/// <exception cref="Microsoft.Rest.ValidationException">
/// Thrown when a required parameter is null
/// </exception>
System.Threading.Tasks.Task<AzureOperationResponse<GenerateCredentialsResult>> GenerateCredentialsWithHttpMessagesAsync(string resourceGroupName, string registryName, GenerateCredentialsParameters generateCredentialsParameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Copies an image to this container registry from the specified
/// container registry.
/// </summary>
Expand Down Expand Up @@ -506,6 +535,35 @@ public partial interface IRegistriesOperations
/// </exception>
System.Threading.Tasks.Task<AzureOperationResponse<Run>> BeginScheduleRunWithHttpMessagesAsync(string resourceGroupName, string registryName, RunRequest runRequest, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Generate keys for a token of a specified container registry.
/// </summary>
/// <param name='resourceGroupName'>
/// The name of the resource group to which the container registry
/// belongs.
/// </param>
/// <param name='registryName'>
/// The name of the container registry.
/// </param>
/// <param name='generateCredentialsParameters'>
/// The parameters for generating credentials.
/// </param>
/// <param name='customHeaders'>
/// The headers that will be added to request.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
/// <exception cref="Microsoft.Rest.Azure.CloudException">
/// Thrown when the operation returned an invalid status code
/// </exception>
/// <exception cref="Microsoft.Rest.SerializationException">
/// Thrown when unable to deserialize the response
/// </exception>
/// <exception cref="Microsoft.Rest.ValidationException">
/// Thrown when a required parameter is null
/// </exception>
System.Threading.Tasks.Task<AzureOperationResponse<GenerateCredentialsResult>> BeginGenerateCredentialsWithHttpMessagesAsync(string resourceGroupName, string registryName, GenerateCredentialsParameters generateCredentialsParameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Lists all the container registries under the specified resource
/// group.
/// </summary>
Expand Down
Loading

0 comments on commit e2d8d73

Please sign in to comment.