-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
OSOptionProfileResource.cs
158 lines (144 loc) · 7.65 KB
/
OSOptionProfileResource.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.Globalization;
using System.Threading;
using System.Threading.Tasks;
using Azure;
using Azure.Core;
using Azure.Core.Pipeline;
using Azure.ResourceManager;
using Azure.ResourceManager.Resources;
namespace Azure.ResourceManager.ContainerService
{
/// <summary>
/// A Class representing an OSOptionProfile along with the instance operations that can be performed on it.
/// If you have a <see cref="ResourceIdentifier"/> you can construct an <see cref="OSOptionProfileResource"/>
/// from an instance of <see cref="ArmClient"/> using the GetOSOptionProfileResource method.
/// Otherwise you can get one from its parent resource <see cref="SubscriptionResource"/> using the GetOSOptionProfile method.
/// </summary>
public partial class OSOptionProfileResource : ArmResource
{
/// <summary> Generate the resource identifier of a <see cref="OSOptionProfileResource"/> instance. </summary>
/// <param name="subscriptionId"> The subscriptionId. </param>
/// <param name="location"> The location. </param>
public static ResourceIdentifier CreateResourceIdentifier(string subscriptionId, AzureLocation location)
{
var resourceId = $"/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/osOptions/default";
return new ResourceIdentifier(resourceId);
}
private readonly ClientDiagnostics _osOptionProfileManagedClustersClientDiagnostics;
private readonly ManagedClustersRestOperations _osOptionProfileManagedClustersRestClient;
private readonly OSOptionProfileData _data;
/// <summary> Initializes a new instance of the <see cref="OSOptionProfileResource"/> class for mocking. </summary>
protected OSOptionProfileResource()
{
}
/// <summary> Initializes a new instance of the <see cref="OSOptionProfileResource"/> class. </summary>
/// <param name="client"> The client parameters to use in these operations. </param>
/// <param name="data"> The resource that is the target of operations. </param>
internal OSOptionProfileResource(ArmClient client, OSOptionProfileData data) : this(client, data.Id)
{
HasData = true;
_data = data;
}
/// <summary> Initializes a new instance of the <see cref="OSOptionProfileResource"/> class. </summary>
/// <param name="client"> The client parameters to use in these operations. </param>
/// <param name="id"> The identifier of the resource that is the target of operations. </param>
internal OSOptionProfileResource(ArmClient client, ResourceIdentifier id) : base(client, id)
{
_osOptionProfileManagedClustersClientDiagnostics = new ClientDiagnostics("Azure.ResourceManager.ContainerService", ResourceType.Namespace, Diagnostics);
TryGetApiVersion(ResourceType, out string osOptionProfileManagedClustersApiVersion);
_osOptionProfileManagedClustersRestClient = new ManagedClustersRestOperations(Pipeline, Diagnostics.ApplicationId, Endpoint, osOptionProfileManagedClustersApiVersion);
#if DEBUG
ValidateResourceId(Id);
#endif
}
/// <summary> Gets the resource type for the operations. </summary>
public static readonly ResourceType ResourceType = "Microsoft.ContainerService/locations/osOptions";
/// <summary> Gets whether or not the current instance has data. </summary>
public virtual bool HasData { get; }
/// <summary> Gets the data representing this Feature. </summary>
/// <exception cref="InvalidOperationException"> Throws if there is no data loaded in the current instance. </exception>
public virtual OSOptionProfileData Data
{
get
{
if (!HasData)
throw new InvalidOperationException("The current instance does not have data, you must call Get first.");
return _data;
}
}
internal static void ValidateResourceId(ResourceIdentifier id)
{
if (id.ResourceType != ResourceType)
throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, "Invalid resource type {0} expected {1}", id.ResourceType, ResourceType), nameof(id));
}
/// <summary>
/// Gets supported OS options in the specified subscription.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/osOptions/default</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>ManagedClusters_GetOSOptions</description>
/// </item>
/// </list>
/// </summary>
/// <param name="resourceType"> The resource type for which the OS options needs to be returned. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
public virtual async Task<Response<OSOptionProfileResource>> GetAsync(ResourceType? resourceType = null, CancellationToken cancellationToken = default)
{
using var scope = _osOptionProfileManagedClustersClientDiagnostics.CreateScope("OSOptionProfileResource.Get");
scope.Start();
try
{
var response = await _osOptionProfileManagedClustersRestClient.GetOSOptionsAsync(Id.SubscriptionId, new AzureLocation(Id.Parent.Name), resourceType, cancellationToken).ConfigureAwait(false);
if (response.Value == null)
throw new RequestFailedException(response.GetRawResponse());
return Response.FromValue(new OSOptionProfileResource(Client, response.Value), response.GetRawResponse());
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
/// <summary>
/// Gets supported OS options in the specified subscription.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/osOptions/default</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>ManagedClusters_GetOSOptions</description>
/// </item>
/// </list>
/// </summary>
/// <param name="resourceType"> The resource type for which the OS options needs to be returned. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
public virtual Response<OSOptionProfileResource> Get(ResourceType? resourceType = null, CancellationToken cancellationToken = default)
{
using var scope = _osOptionProfileManagedClustersClientDiagnostics.CreateScope("OSOptionProfileResource.Get");
scope.Start();
try
{
var response = _osOptionProfileManagedClustersRestClient.GetOSOptions(Id.SubscriptionId, new AzureLocation(Id.Parent.Name), resourceType, cancellationToken);
if (response.Value == null)
throw new RequestFailedException(response.GetRawResponse());
return Response.FromValue(new OSOptionProfileResource(Client, response.Value), response.GetRawResponse());
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
}
}