Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
545 changes: 545 additions & 0 deletions src/ResourceManager/Version2018_05_01/IPolicyAssignmentsOperations.cs

Large diffs are not rendered by default.

89 changes: 89 additions & 0 deletions src/ResourceManager/Version2018_05_01/IPolicyClient.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
// <auto-generated>
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Internal.ResourceManager.Version2018_05_01
{
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
using Newtonsoft.Json;

/// <summary>
/// To manage and control access to your resources, you can define
/// customized policies and assign them at a scope.
/// </summary>
public partial interface IPolicyClient : System.IDisposable
{
/// <summary>
/// The base URI of the service.
/// </summary>
System.Uri BaseUri { get; set; }

/// <summary>
/// Gets or sets json serialization settings.
/// </summary>
JsonSerializerSettings SerializationSettings { get; }

/// <summary>
/// Gets or sets json deserialization settings.
/// </summary>
JsonSerializerSettings DeserializationSettings { get; }

/// <summary>
/// Credentials needed for the client to connect to Azure.
/// </summary>
ServiceClientCredentials Credentials { get; }

/// <summary>
/// The ID of the target subscription.
/// </summary>
string SubscriptionId { get; set; }

/// <summary>
/// The API version to use for the operation.
/// </summary>
string ApiVersion { get; }

/// <summary>
/// The preferred language for the response.
/// </summary>
string AcceptLanguage { get; set; }

/// <summary>
/// The retry timeout in seconds for Long Running Operations. Default
/// value is 30.
/// </summary>
int? LongRunningOperationRetryTimeout { get; set; }

/// <summary>
/// Whether a unique x-ms-client-request-id should be generated. When
/// set to true a unique x-ms-client-request-id value is generated and
/// included in each request. Default is true.
/// </summary>
bool? GenerateClientRequestId { get; set; }


/// <summary>
/// Gets the IPolicyAssignmentsOperations.
/// </summary>
IPolicyAssignmentsOperations PolicyAssignments { get; }

/// <summary>
/// Gets the IPolicyDefinitionsOperations.
/// </summary>
IPolicyDefinitionsOperations PolicyDefinitions { get; }

/// <summary>
/// Gets the IPolicySetDefinitionsOperations.
/// </summary>
IPolicySetDefinitionsOperations PolicySetDefinitions { get; }

}
}
Loading