Skip to content

Commit

Permalink
[AutoPR Microsoft.Azure.Management.ContainerRegistry] [ACR] Scope map…
Browse files Browse the repository at this point in the history
… updates (#206)

* Generated from 25369344fbeb2f169b5bc40b9c4a8a99c42503e7 (#194)

chore: jsonfmt servicebus

* Generated from 7a35ba99fa36d4a95daf9c4f7c88ae0867cb0825 (#195)

Remove common from examples.

* Generated from 7cd1aa92499c42947998cf1570e19ac0087fda19 (#193)

missing section for compute 2019-07-01

* Generated from aafad88743ef7a4dcd7bbfa6afd4591ba4e327bb (#196)

new source

* [AutoPR Microsoft.Azure.ApplicationInsights] Add purge API details. (#184)

* Generated from 25369344fbeb2f169b5bc40b9c4a8a99c42503e7 (#194)

chore: jsonfmt servicebus

* Generated from 7a35ba99fa36d4a95daf9c4f7c88ae0867cb0825 (#195)

Remove common from examples.

* Generated from cf0d03934bcbc56858cf3696b0a3c7fa481c12ac

Fix example

* [AutoPR Microsoft.Azure.Management.Billing] Amaga/update customer policy (#202)

* Generated from 25369344fbeb2f169b5bc40b9c4a8a99c42503e7 (#194)

chore: jsonfmt servicebus

* Generated from 7a35ba99fa36d4a95daf9c4f7c88ae0867cb0825 (#195)

Remove common from examples.

* Generated from 7cd1aa92499c42947998cf1570e19ac0087fda19 (#193)

missing section for compute 2019-07-01

* Generated from aafad88743ef7a4dcd7bbfa6afd4591ba4e327bb (#196)

new source

* [AutoPR Microsoft.Azure.ApplicationInsights] Add purge API details. (#184)

* Generated from 25369344fbeb2f169b5bc40b9c4a8a99c42503e7 (#194)

chore: jsonfmt servicebus

* Generated from 7a35ba99fa36d4a95daf9c4f7c88ae0867cb0825 (#195)

Remove common from examples.

* Generated from cf0d03934bcbc56858cf3696b0a3c7fa481c12ac

Fix example

* Generated from a48d205a68ab63fdafa5dcb79e013c6946d92a43

Applying Code review feedbacks

* Generated from 604a599550d7aa46f836e8b47376839971cdfbb7

add scopemap to custom-words.txt
  • Loading branch information
openapi-sdkautomation[bot] authored and azuresdkci committed Sep 26, 2019
1 parent c967f0d commit acbab48
Show file tree
Hide file tree
Showing 30 changed files with 5,899 additions and 62 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 acbab48

Please sign in to comment.