@maxim_mazurok/gapi.client.certificatemanager-v1 0.0.20230329 → 0.0.20230512
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +1673 -647
- package/package.json +1 -1
- package/tests.ts +74 -1
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230512
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -389,5 +389,78 @@ gapi.load('client', async () => {
|
|
|
389
389
|
pageSize: 42,
|
|
390
390
|
pageToken: "Test string",
|
|
391
391
|
});
|
|
392
|
+
/** Creates a new TrustConfig in a given project and location. */
|
|
393
|
+
await gapi.client.certificatemanager.projects.locations.trustConfigs.create({
|
|
394
|
+
parent: "Test string",
|
|
395
|
+
trustConfigId: "Test string",
|
|
396
|
+
}, {
|
|
397
|
+
createTime: "Test string",
|
|
398
|
+
description: "Test string",
|
|
399
|
+
etag: "Test string",
|
|
400
|
+
labels: {
|
|
401
|
+
A: "Test string"
|
|
402
|
+
},
|
|
403
|
+
name: "Test string",
|
|
404
|
+
trustStores: [
|
|
405
|
+
{
|
|
406
|
+
intermediateCas: [
|
|
407
|
+
{
|
|
408
|
+
pemCertificate: "Test string",
|
|
409
|
+
}
|
|
410
|
+
],
|
|
411
|
+
trustAnchors: [
|
|
412
|
+
{
|
|
413
|
+
pemCertificate: "Test string",
|
|
414
|
+
}
|
|
415
|
+
],
|
|
416
|
+
}
|
|
417
|
+
],
|
|
418
|
+
updateTime: "Test string",
|
|
419
|
+
});
|
|
420
|
+
/** Deletes a single TrustConfig. */
|
|
421
|
+
await gapi.client.certificatemanager.projects.locations.trustConfigs.delete({
|
|
422
|
+
etag: "Test string",
|
|
423
|
+
name: "Test string",
|
|
424
|
+
});
|
|
425
|
+
/** Gets details of a single TrustConfig. */
|
|
426
|
+
await gapi.client.certificatemanager.projects.locations.trustConfigs.get({
|
|
427
|
+
name: "Test string",
|
|
428
|
+
});
|
|
429
|
+
/** Lists TrustConfigs in a given project and location. */
|
|
430
|
+
await gapi.client.certificatemanager.projects.locations.trustConfigs.list({
|
|
431
|
+
filter: "Test string",
|
|
432
|
+
orderBy: "Test string",
|
|
433
|
+
pageSize: 42,
|
|
434
|
+
pageToken: "Test string",
|
|
435
|
+
parent: "Test string",
|
|
436
|
+
});
|
|
437
|
+
/** Updates a TrustConfig. */
|
|
438
|
+
await gapi.client.certificatemanager.projects.locations.trustConfigs.patch({
|
|
439
|
+
name: "Test string",
|
|
440
|
+
updateMask: "Test string",
|
|
441
|
+
}, {
|
|
442
|
+
createTime: "Test string",
|
|
443
|
+
description: "Test string",
|
|
444
|
+
etag: "Test string",
|
|
445
|
+
labels: {
|
|
446
|
+
A: "Test string"
|
|
447
|
+
},
|
|
448
|
+
name: "Test string",
|
|
449
|
+
trustStores: [
|
|
450
|
+
{
|
|
451
|
+
intermediateCas: [
|
|
452
|
+
{
|
|
453
|
+
pemCertificate: "Test string",
|
|
454
|
+
}
|
|
455
|
+
],
|
|
456
|
+
trustAnchors: [
|
|
457
|
+
{
|
|
458
|
+
pemCertificate: "Test string",
|
|
459
|
+
}
|
|
460
|
+
],
|
|
461
|
+
}
|
|
462
|
+
],
|
|
463
|
+
updateTime: "Test string",
|
|
464
|
+
});
|
|
392
465
|
}
|
|
393
466
|
});
|