-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
MetastoreClient.cs
212 lines (196 loc) · 9.22 KB
/
MetastoreClient.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.Threading;
using System.Threading.Tasks;
using Azure;
using Azure.Analytics.Synapse.Artifacts.Models;
using Azure.Core;
using Azure.Core.Pipeline;
namespace Azure.Analytics.Synapse.Artifacts
{
/// <summary> The Metastore service client. </summary>
public partial class MetastoreClient
{
private readonly ClientDiagnostics _clientDiagnostics;
private readonly HttpPipeline _pipeline;
internal MetastoreRestClient RestClient { get; }
/// <summary> Initializes a new instance of MetastoreClient for mocking. </summary>
protected MetastoreClient()
{
}
/// <summary> Initializes a new instance of MetastoreClient. </summary>
/// <param name="endpoint"> The workspace development endpoint, for example `https://myworkspace.dev.azuresynapse.net`. </param>
/// <param name="credential"> A credential used to authenticate to an Azure Service. </param>
/// <param name="options"> The options for configuring the client. </param>
public MetastoreClient(Uri endpoint, TokenCredential credential, ArtifactsClientOptions options = null)
{
if (endpoint == null)
{
throw new ArgumentNullException(nameof(endpoint));
}
if (credential == null)
{
throw new ArgumentNullException(nameof(credential));
}
options ??= new ArtifactsClientOptions();
_clientDiagnostics = new ClientDiagnostics(options);
string[] scopes = { "https://dev.azuresynapse.net/.default" };
_pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes));
RestClient = new MetastoreRestClient(_clientDiagnostics, _pipeline, endpoint);
}
/// <summary> Initializes a new instance of MetastoreClient. </summary>
/// <param name="clientDiagnostics"> The handler for diagnostic messaging in the client. </param>
/// <param name="pipeline"> The HTTP pipeline for sending and receiving REST requests and responses. </param>
/// <param name="endpoint"> The workspace development endpoint, for example `https://myworkspace.dev.azuresynapse.net`. </param>
/// <exception cref="ArgumentNullException"> <paramref name="clientDiagnostics"/>, <paramref name="pipeline"/> or <paramref name="endpoint"/> is null. </exception>
internal MetastoreClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint)
{
RestClient = new MetastoreRestClient(clientDiagnostics, pipeline, endpoint);
_clientDiagnostics = clientDiagnostics;
_pipeline = pipeline;
}
/// <summary> Register files in Syms. </summary>
/// <param name="id"> The name of the database to be created. The name can contain only alphanumeric characters and should not exceed 24 characters. </param>
/// <param name="registerBody"> The body for the register request. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
public virtual async Task<Response<MetastoreRegistrationResponse>> RegisterAsync(string id, MetastoreRegisterObject registerBody, CancellationToken cancellationToken = default)
{
using var scope = _clientDiagnostics.CreateScope("MetastoreClient.Register");
scope.Start();
try
{
return await RestClient.RegisterAsync(id, registerBody, cancellationToken).ConfigureAwait(false);
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
/// <summary> Register files in Syms. </summary>
/// <param name="id"> The name of the database to be created. The name can contain only alphanumeric characters and should not exceed 24 characters. </param>
/// <param name="registerBody"> The body for the register request. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
public virtual Response<MetastoreRegistrationResponse> Register(string id, MetastoreRegisterObject registerBody, CancellationToken cancellationToken = default)
{
using var scope = _clientDiagnostics.CreateScope("MetastoreClient.Register");
scope.Start();
try
{
return RestClient.Register(id, registerBody, cancellationToken);
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
/// <summary> Gets status of the database. </summary>
/// <param name="id"> The String to use. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
public virtual async Task<Response<MetastoreRequestSuccessResponse>> GetDatabaseOperationsAsync(string id, CancellationToken cancellationToken = default)
{
using var scope = _clientDiagnostics.CreateScope("MetastoreClient.GetDatabaseOperations");
scope.Start();
try
{
return await RestClient.GetDatabaseOperationsAsync(id, cancellationToken).ConfigureAwait(false);
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
/// <summary> Gets status of the database. </summary>
/// <param name="id"> The String to use. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
public virtual Response<MetastoreRequestSuccessResponse> GetDatabaseOperations(string id, CancellationToken cancellationToken = default)
{
using var scope = _clientDiagnostics.CreateScope("MetastoreClient.GetDatabaseOperations");
scope.Start();
try
{
return RestClient.GetDatabaseOperations(id, cancellationToken);
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
/// <summary> Update files in Syms. </summary>
/// <param name="id"> The name of the database to be updated. </param>
/// <param name="updateBody"> The body for the update request. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
public virtual async Task<Response<MetastoreUpdationResponse>> UpdateAsync(string id, MetastoreUpdateObject updateBody, CancellationToken cancellationToken = default)
{
using var scope = _clientDiagnostics.CreateScope("MetastoreClient.Update");
scope.Start();
try
{
return await RestClient.UpdateAsync(id, updateBody, cancellationToken).ConfigureAwait(false);
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
/// <summary> Update files in Syms. </summary>
/// <param name="id"> The name of the database to be updated. </param>
/// <param name="updateBody"> The body for the update request. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
public virtual Response<MetastoreUpdationResponse> Update(string id, MetastoreUpdateObject updateBody, CancellationToken cancellationToken = default)
{
using var scope = _clientDiagnostics.CreateScope("MetastoreClient.Update");
scope.Start();
try
{
return RestClient.Update(id, updateBody, cancellationToken);
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
/// <summary> Remove files in Syms. </summary>
/// <param name="id"> The String to use. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
public virtual async Task<Response> DeleteAsync(string id, CancellationToken cancellationToken = default)
{
using var scope = _clientDiagnostics.CreateScope("MetastoreClient.Delete");
scope.Start();
try
{
return await RestClient.DeleteAsync(id, cancellationToken).ConfigureAwait(false);
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
/// <summary> Remove files in Syms. </summary>
/// <param name="id"> The String to use. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
public virtual Response Delete(string id, CancellationToken cancellationToken = default)
{
using var scope = _clientDiagnostics.CreateScope("MetastoreClient.Delete");
scope.Start();
try
{
return RestClient.Delete(id, cancellationToken);
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
}
}