-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGitHub.CodeSecurityClient.CodeSecurityCreateConfigurationForEnterprise.g.cs
More file actions
422 lines (402 loc) · 21.8 KB
/
GitHub.CodeSecurityClient.CodeSecurityCreateConfigurationForEnterprise.g.cs
File metadata and controls
422 lines (402 loc) · 21.8 KB
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
#nullable enable
namespace GitHub
{
public partial class CodeSecurityClient
{
partial void PrepareCodeSecurityCreateConfigurationForEnterpriseArguments(
global::System.Net.Http.HttpClient httpClient,
ref string enterprise,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequest request);
partial void PrepareCodeSecurityCreateConfigurationForEnterpriseRequest(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpRequestMessage httpRequestMessage,
string enterprise,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequest request);
partial void ProcessCodeSecurityCreateConfigurationForEnterpriseResponse(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpResponseMessage httpResponseMessage);
partial void ProcessCodeSecurityCreateConfigurationForEnterpriseResponseContent(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpResponseMessage httpResponseMessage,
ref string content);
/// <summary>
/// Create a code security configuration for an enterprise<br/>
/// Creates a code security configuration in an enterprise.<br/>
/// The authenticated user must be an administrator of the enterprise in order to use this endpoint.<br/>
/// OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.
/// </summary>
/// <param name="enterprise"></param>
/// <param name="request"></param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::GitHub.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::GitHub.CodeSecurityConfiguration> CodeSecurityCreateConfigurationForEnterpriseAsync(
string enterprise,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequest request,
global::System.Threading.CancellationToken cancellationToken = default)
{
request = request ?? throw new global::System.ArgumentNullException(nameof(request));
PrepareArguments(
client: HttpClient);
PrepareCodeSecurityCreateConfigurationForEnterpriseArguments(
httpClient: HttpClient,
enterprise: ref enterprise,
request: request);
var __pathBuilder = new global::GitHub.PathBuilder(
path: $"/enterprises/{enterprise}/code-security/configurations",
baseUri: HttpClient.BaseAddress);
var __path = __pathBuilder.ToString();
using var __httpRequest = new global::System.Net.Http.HttpRequestMessage(
method: global::System.Net.Http.HttpMethod.Post,
requestUri: new global::System.Uri(__path, global::System.UriKind.RelativeOrAbsolute));
#if NET6_0_OR_GREATER
__httpRequest.Version = global::System.Net.HttpVersion.Version11;
__httpRequest.VersionPolicy = global::System.Net.Http.HttpVersionPolicy.RequestVersionOrHigher;
#endif
var __httpRequestContentBody = request.ToJson(JsonSerializerContext);
var __httpRequestContent = new global::System.Net.Http.StringContent(
content: __httpRequestContentBody,
encoding: global::System.Text.Encoding.UTF8,
mediaType: "application/json");
__httpRequest.Content = __httpRequestContent;
PrepareRequest(
client: HttpClient,
request: __httpRequest);
PrepareCodeSecurityCreateConfigurationForEnterpriseRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
enterprise: enterprise,
request: request);
using var __response = await HttpClient.SendAsync(
request: __httpRequest,
completionOption: global::System.Net.Http.HttpCompletionOption.ResponseContentRead,
cancellationToken: cancellationToken).ConfigureAwait(false);
ProcessResponse(
client: HttpClient,
response: __response);
ProcessCodeSecurityCreateConfigurationForEnterpriseResponse(
httpClient: HttpClient,
httpResponseMessage: __response);
// Bad Request
if ((int)__response.StatusCode == 400)
{
string? __content_400 = null;
global::System.Exception? __exception_400 = null;
global::GitHub.BasicError? __value_400 = null;
try
{
if (ReadResponseAsString)
{
__content_400 = await __response.Content.ReadAsStringAsync(cancellationToken).ConfigureAwait(false);
__value_400 = global::GitHub.BasicError.FromJson(__content_400, JsonSerializerContext);
}
else
{
var __contentStream_400 = await __response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
__value_400 = await global::GitHub.BasicError.FromJsonStreamAsync(__contentStream_400, JsonSerializerContext).ConfigureAwait(false);
}
}
catch (global::System.Exception __ex)
{
__exception_400 = __ex;
}
throw new global::GitHub.ApiException<global::GitHub.BasicError>(
message: __content_400 ?? __response.ReasonPhrase ?? string.Empty,
innerException: __exception_400,
statusCode: __response.StatusCode)
{
ResponseBody = __content_400,
ResponseObject = __value_400,
ResponseHeaders = global::System.Linq.Enumerable.ToDictionary(
__response.Headers,
h => h.Key,
h => h.Value),
};
}
// Forbidden
if ((int)__response.StatusCode == 403)
{
string? __content_403 = null;
global::System.Exception? __exception_403 = null;
global::GitHub.BasicError? __value_403 = null;
try
{
if (ReadResponseAsString)
{
__content_403 = await __response.Content.ReadAsStringAsync(cancellationToken).ConfigureAwait(false);
__value_403 = global::GitHub.BasicError.FromJson(__content_403, JsonSerializerContext);
}
else
{
var __contentStream_403 = await __response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
__value_403 = await global::GitHub.BasicError.FromJsonStreamAsync(__contentStream_403, JsonSerializerContext).ConfigureAwait(false);
}
}
catch (global::System.Exception __ex)
{
__exception_403 = __ex;
}
throw new global::GitHub.ApiException<global::GitHub.BasicError>(
message: __content_403 ?? __response.ReasonPhrase ?? string.Empty,
innerException: __exception_403,
statusCode: __response.StatusCode)
{
ResponseBody = __content_403,
ResponseObject = __value_403,
ResponseHeaders = global::System.Linq.Enumerable.ToDictionary(
__response.Headers,
h => h.Key,
h => h.Value),
};
}
// Resource not found
if ((int)__response.StatusCode == 404)
{
string? __content_404 = null;
global::System.Exception? __exception_404 = null;
global::GitHub.BasicError? __value_404 = null;
try
{
if (ReadResponseAsString)
{
__content_404 = await __response.Content.ReadAsStringAsync(cancellationToken).ConfigureAwait(false);
__value_404 = global::GitHub.BasicError.FromJson(__content_404, JsonSerializerContext);
}
else
{
var __contentStream_404 = await __response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
__value_404 = await global::GitHub.BasicError.FromJsonStreamAsync(__contentStream_404, JsonSerializerContext).ConfigureAwait(false);
}
}
catch (global::System.Exception __ex)
{
__exception_404 = __ex;
}
throw new global::GitHub.ApiException<global::GitHub.BasicError>(
message: __content_404 ?? __response.ReasonPhrase ?? string.Empty,
innerException: __exception_404,
statusCode: __response.StatusCode)
{
ResponseBody = __content_404,
ResponseObject = __value_404,
ResponseHeaders = global::System.Linq.Enumerable.ToDictionary(
__response.Headers,
h => h.Key,
h => h.Value),
};
}
if (ReadResponseAsString)
{
var __content = await __response.Content.ReadAsStringAsync(
#if NET5_0_OR_GREATER
cancellationToken
#endif
).ConfigureAwait(false);
ProcessResponseContent(
client: HttpClient,
response: __response,
content: ref __content);
ProcessCodeSecurityCreateConfigurationForEnterpriseResponseContent(
httpClient: HttpClient,
httpResponseMessage: __response,
content: ref __content);
try
{
__response.EnsureSuccessStatusCode();
return
global::GitHub.CodeSecurityConfiguration.FromJson(__content, JsonSerializerContext) ??
throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" ");
}
catch (global::System.Exception __ex)
{
throw new global::GitHub.ApiException(
message: __content ?? __response.ReasonPhrase ?? string.Empty,
innerException: __ex,
statusCode: __response.StatusCode)
{
ResponseBody = __content,
ResponseHeaders = global::System.Linq.Enumerable.ToDictionary(
__response.Headers,
h => h.Key,
h => h.Value),
};
}
}
else
{
try
{
__response.EnsureSuccessStatusCode();
using var __content = await __response.Content.ReadAsStreamAsync(
#if NET5_0_OR_GREATER
cancellationToken
#endif
).ConfigureAwait(false);
return
await global::GitHub.CodeSecurityConfiguration.FromJsonStreamAsync(__content, JsonSerializerContext).ConfigureAwait(false) ??
throw new global::System.InvalidOperationException("Response deserialization failed.");
}
catch (global::System.Exception __ex)
{
throw new global::GitHub.ApiException(
message: __response.ReasonPhrase ?? string.Empty,
innerException: __ex,
statusCode: __response.StatusCode)
{
ResponseHeaders = global::System.Linq.Enumerable.ToDictionary(
__response.Headers,
h => h.Key,
h => h.Value),
};
}
}
}
/// <summary>
/// Create a code security configuration for an enterprise<br/>
/// Creates a code security configuration in an enterprise.<br/>
/// The authenticated user must be an administrator of the enterprise in order to use this endpoint.<br/>
/// OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.
/// </summary>
/// <param name="enterprise"></param>
/// <param name="name">
/// The name of the code security configuration. Must be unique within the enterprise.
/// </param>
/// <param name="description">
/// A description of the code security configuration
/// </param>
/// <param name="advancedSecurity">
/// The enablement status of GitHub Advanced Security features. `enabled` will enable both Code Security and Secret Protection features.<br/>
/// > [!WARNING]<br/>
/// > `code_security` and `secret_protection` are deprecated values for this field. Prefer the individual `code_security` and `secret_protection` fields to set the status of these features.<br/>
/// Default Value: disabled
/// </param>
/// <param name="codeSecurity">
/// The enablement status of GitHub Code Security features.
/// </param>
/// <param name="dependencyGraph">
/// The enablement status of Dependency Graph<br/>
/// Default Value: enabled
/// </param>
/// <param name="dependencyGraphAutosubmitAction">
/// The enablement status of Automatic dependency submission<br/>
/// Default Value: disabled
/// </param>
/// <param name="dependencyGraphAutosubmitActionOptions">
/// Feature options for Automatic dependency submission
/// </param>
/// <param name="dependabotAlerts">
/// The enablement status of Dependabot alerts<br/>
/// Default Value: disabled
/// </param>
/// <param name="dependabotSecurityUpdates">
/// The enablement status of Dependabot security updates<br/>
/// Default Value: disabled
/// </param>
/// <param name="codeScanningOptions">
/// Security Configuration feature options for code scanning
/// </param>
/// <param name="codeScanningDefaultSetup">
/// The enablement status of code scanning default setup<br/>
/// Default Value: disabled
/// </param>
/// <param name="codeScanningDefaultSetupOptions">
/// Feature options for code scanning default setup
/// </param>
/// <param name="codeScanningDelegatedAlertDismissal">
/// The enablement status of code scanning delegated alert dismissal<br/>
/// Default Value: disabled
/// </param>
/// <param name="secretProtection">
/// The enablement status of GitHub Secret Protection features.
/// </param>
/// <param name="secretScanning">
/// The enablement status of secret scanning<br/>
/// Default Value: disabled
/// </param>
/// <param name="secretScanningPushProtection">
/// The enablement status of secret scanning push protection<br/>
/// Default Value: disabled
/// </param>
/// <param name="secretScanningValidityChecks">
/// The enablement status of secret scanning validity checks<br/>
/// Default Value: disabled
/// </param>
/// <param name="secretScanningNonProviderPatterns">
/// The enablement status of secret scanning non provider patterns<br/>
/// Default Value: disabled
/// </param>
/// <param name="secretScanningGenericSecrets">
/// The enablement status of Copilot secret scanning<br/>
/// Default Value: disabled
/// </param>
/// <param name="secretScanningDelegatedAlertDismissal">
/// The enablement status of secret scanning delegated alert dismissal<br/>
/// Default Value: disabled
/// </param>
/// <param name="privateVulnerabilityReporting">
/// The enablement status of private vulnerability reporting<br/>
/// Default Value: disabled
/// </param>
/// <param name="enforcement">
/// The enforcement status for a security configuration<br/>
/// Default Value: enforced
/// </param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
public async global::System.Threading.Tasks.Task<global::GitHub.CodeSecurityConfiguration> CodeSecurityCreateConfigurationForEnterpriseAsync(
string enterprise,
string name,
string description,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestAdvancedSecurity? advancedSecurity = default,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestCodeSecurity? codeSecurity = default,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestDependencyGraph? dependencyGraph = default,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestDependencyGraphAutosubmitAction? dependencyGraphAutosubmitAction = default,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestDependencyGraphAutosubmitActionOptions? dependencyGraphAutosubmitActionOptions = default,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestDependabotAlerts? dependabotAlerts = default,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestDependabotSecurityUpdates? dependabotSecurityUpdates = default,
global::GitHub.CodeScanningOptions? codeScanningOptions = default,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestCodeScanningDefaultSetup? codeScanningDefaultSetup = default,
global::GitHub.CodeScanningDefaultSetupOptions? codeScanningDefaultSetupOptions = default,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestCodeScanningDelegatedAlertDismissal? codeScanningDelegatedAlertDismissal = default,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestSecretProtection? secretProtection = default,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestSecretScanning? secretScanning = default,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestSecretScanningPushProtection? secretScanningPushProtection = default,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestSecretScanningValidityChecks? secretScanningValidityChecks = default,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestSecretScanningNonProviderPatterns? secretScanningNonProviderPatterns = default,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestSecretScanningGenericSecrets? secretScanningGenericSecrets = default,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestSecretScanningDelegatedAlertDismissal? secretScanningDelegatedAlertDismissal = default,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestPrivateVulnerabilityReporting? privateVulnerabilityReporting = default,
global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequestEnforcement? enforcement = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
var __request = new global::GitHub.CodeSecurityCreateConfigurationForEnterpriseRequest
{
Name = name,
Description = description,
AdvancedSecurity = advancedSecurity,
CodeSecurity = codeSecurity,
DependencyGraph = dependencyGraph,
DependencyGraphAutosubmitAction = dependencyGraphAutosubmitAction,
DependencyGraphAutosubmitActionOptions = dependencyGraphAutosubmitActionOptions,
DependabotAlerts = dependabotAlerts,
DependabotSecurityUpdates = dependabotSecurityUpdates,
CodeScanningOptions = codeScanningOptions,
CodeScanningDefaultSetup = codeScanningDefaultSetup,
CodeScanningDefaultSetupOptions = codeScanningDefaultSetupOptions,
CodeScanningDelegatedAlertDismissal = codeScanningDelegatedAlertDismissal,
SecretProtection = secretProtection,
SecretScanning = secretScanning,
SecretScanningPushProtection = secretScanningPushProtection,
SecretScanningValidityChecks = secretScanningValidityChecks,
SecretScanningNonProviderPatterns = secretScanningNonProviderPatterns,
SecretScanningGenericSecrets = secretScanningGenericSecrets,
SecretScanningDelegatedAlertDismissal = secretScanningDelegatedAlertDismissal,
PrivateVulnerabilityReporting = privateVulnerabilityReporting,
Enforcement = enforcement,
};
return await CodeSecurityCreateConfigurationForEnterpriseAsync(
enterprise: enterprise,
request: __request,
cancellationToken: cancellationToken).ConfigureAwait(false);
}
}
}