Skip to content

Commit ed64dfe

Browse files
authored
Merge branch 'master' into add-analysisservices-environment-extension-case
2 parents 2f472f9 + fb96410 commit ed64dfe

20 files changed

+12007
-0
lines changed

src/ResourceManager/Version2018_05_01/IPolicyAssignmentsOperations.cs

Lines changed: 545 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
// <auto-generated>
2+
// Copyright (c) Microsoft Corporation. All rights reserved.
3+
// Licensed under the MIT License. See License.txt in the project root for
4+
// license information.
5+
//
6+
// Code generated by Microsoft (R) AutoRest Code Generator.
7+
// Changes may cause incorrect behavior and will be lost if the code is
8+
// regenerated.
9+
// </auto-generated>
10+
11+
namespace Microsoft.Azure.Management.Internal.ResourceManager.Version2018_05_01
12+
{
13+
using Microsoft.Rest;
14+
using Microsoft.Rest.Azure;
15+
using Models;
16+
using Newtonsoft.Json;
17+
18+
/// <summary>
19+
/// To manage and control access to your resources, you can define
20+
/// customized policies and assign them at a scope.
21+
/// </summary>
22+
public partial interface IPolicyClient : System.IDisposable
23+
{
24+
/// <summary>
25+
/// The base URI of the service.
26+
/// </summary>
27+
System.Uri BaseUri { get; set; }
28+
29+
/// <summary>
30+
/// Gets or sets json serialization settings.
31+
/// </summary>
32+
JsonSerializerSettings SerializationSettings { get; }
33+
34+
/// <summary>
35+
/// Gets or sets json deserialization settings.
36+
/// </summary>
37+
JsonSerializerSettings DeserializationSettings { get; }
38+
39+
/// <summary>
40+
/// Credentials needed for the client to connect to Azure.
41+
/// </summary>
42+
ServiceClientCredentials Credentials { get; }
43+
44+
/// <summary>
45+
/// The ID of the target subscription.
46+
/// </summary>
47+
string SubscriptionId { get; set; }
48+
49+
/// <summary>
50+
/// The API version to use for the operation.
51+
/// </summary>
52+
string ApiVersion { get; }
53+
54+
/// <summary>
55+
/// The preferred language for the response.
56+
/// </summary>
57+
string AcceptLanguage { get; set; }
58+
59+
/// <summary>
60+
/// The retry timeout in seconds for Long Running Operations. Default
61+
/// value is 30.
62+
/// </summary>
63+
int? LongRunningOperationRetryTimeout { get; set; }
64+
65+
/// <summary>
66+
/// Whether a unique x-ms-client-request-id should be generated. When
67+
/// set to true a unique x-ms-client-request-id value is generated and
68+
/// included in each request. Default is true.
69+
/// </summary>
70+
bool? GenerateClientRequestId { get; set; }
71+
72+
73+
/// <summary>
74+
/// Gets the IPolicyAssignmentsOperations.
75+
/// </summary>
76+
IPolicyAssignmentsOperations PolicyAssignments { get; }
77+
78+
/// <summary>
79+
/// Gets the IPolicyDefinitionsOperations.
80+
/// </summary>
81+
IPolicyDefinitionsOperations PolicyDefinitions { get; }
82+
83+
/// <summary>
84+
/// Gets the IPolicySetDefinitionsOperations.
85+
/// </summary>
86+
IPolicySetDefinitionsOperations PolicySetDefinitions { get; }
87+
88+
}
89+
}

0 commit comments

Comments
 (0)