@maxim_mazurok/gapi.client.certificatemanager-v1 0.0.20230315 → 0.0.20230407
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 +271 -1
- package/package.json +1 -1
- package/tests.ts +74 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://certificatemanager.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230407
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -180,6 +180,10 @@ declare namespace gapi.client {
|
|
|
180
180
|
/** Output only. This field returns the resource name in the following format: `//compute.googleapis.com/projects/*/global/targetSslProxies/*`. */
|
|
181
181
|
targetSslProxy?: string;
|
|
182
182
|
}
|
|
183
|
+
interface IntermediateCA {
|
|
184
|
+
/** PEM intermediate certificate used for building up paths for validation. Each certificate provided in PEM format may occupy up to 5kB. */
|
|
185
|
+
pemCertificate?: string;
|
|
186
|
+
}
|
|
183
187
|
interface IpConfig {
|
|
184
188
|
/** Output only. An external IP address. */
|
|
185
189
|
ipAddress?: string;
|
|
@@ -253,6 +257,17 @@ declare namespace gapi.client {
|
|
|
253
257
|
/** A list of operations that matches the specified filter in the request. */
|
|
254
258
|
operations?: Operation[];
|
|
255
259
|
}
|
|
260
|
+
interface ListTrustConfigsResponse {
|
|
261
|
+
/**
|
|
262
|
+
* If there might be more results than those appearing in this response, then `next_page_token` is included. To get the next set of results, call this method again using the value of
|
|
263
|
+
* `next_page_token` as `page_token`.
|
|
264
|
+
*/
|
|
265
|
+
nextPageToken?: string;
|
|
266
|
+
/** A list of TrustConfigs for the parent resource. */
|
|
267
|
+
trustConfigs?: TrustConfig[];
|
|
268
|
+
/** Locations that could not be reached. */
|
|
269
|
+
unreachable?: string[];
|
|
270
|
+
}
|
|
256
271
|
interface Location {
|
|
257
272
|
/** The friendly name for this location, typically a nearby city name. For example, "Tokyo". */
|
|
258
273
|
displayName?: string;
|
|
@@ -346,6 +361,41 @@ declare namespace gapi.client {
|
|
|
346
361
|
*/
|
|
347
362
|
message?: string;
|
|
348
363
|
}
|
|
364
|
+
interface TrustAnchor {
|
|
365
|
+
/** PEM root certificate of the PKI used for validation. Each certificate provided in PEM format may occupy up to 5kB. */
|
|
366
|
+
pemCertificate?: string;
|
|
367
|
+
}
|
|
368
|
+
interface TrustConfig {
|
|
369
|
+
/** Output only. The creation timestamp of a TrustConfig. */
|
|
370
|
+
createTime?: string;
|
|
371
|
+
/** One or more paragraphs of text description of a TrustConfig. */
|
|
372
|
+
description?: string;
|
|
373
|
+
/**
|
|
374
|
+
* This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before
|
|
375
|
+
* proceeding.
|
|
376
|
+
*/
|
|
377
|
+
etag?: string;
|
|
378
|
+
/** Set of labels associated with a TrustConfig. */
|
|
379
|
+
labels?: { [P in string]: string };
|
|
380
|
+
/** A user-defined name of the trust config. TrustConfig names must be unique globally and match pattern `projects/*/locations/*/trustConfigs/*`. */
|
|
381
|
+
name?: string;
|
|
382
|
+
/**
|
|
383
|
+
* Set of trust stores to perform validation against. This field is supported when TrustConfig is configured with Load Balancers, currently not supported for SPIFFE certificate
|
|
384
|
+
* validation. Only one TrustStore specified is currently allowed.
|
|
385
|
+
*/
|
|
386
|
+
trustStores?: TrustStore[];
|
|
387
|
+
/** Output only. The last update timestamp of a TrustConfig. */
|
|
388
|
+
updateTime?: string;
|
|
389
|
+
}
|
|
390
|
+
interface TrustStore {
|
|
391
|
+
/**
|
|
392
|
+
* Set of intermediate CA certificates used for the path building phase of chain validation. The field is currently not supported if TrustConfig is used for the workload certificate
|
|
393
|
+
* feature.
|
|
394
|
+
*/
|
|
395
|
+
intermediateCas?: IntermediateCA[];
|
|
396
|
+
/** List of Trust Anchors to be used while performing validation against a given TrustStore. */
|
|
397
|
+
trustAnchors?: TrustAnchor[];
|
|
398
|
+
}
|
|
349
399
|
interface CertificateIssuanceConfigsResource {
|
|
350
400
|
/** Creates a new CertificateIssuanceConfig in a given project and location. */
|
|
351
401
|
create(request: {
|
|
@@ -1537,6 +1587,225 @@ declare namespace gapi.client {
|
|
|
1537
1587
|
uploadType?: string;
|
|
1538
1588
|
}): Request<ListOperationsResponse>;
|
|
1539
1589
|
}
|
|
1590
|
+
interface TrustConfigsResource {
|
|
1591
|
+
/** Creates a new TrustConfig in a given project and location. */
|
|
1592
|
+
create(request: {
|
|
1593
|
+
/** V1 error format. */
|
|
1594
|
+
"$.xgafv"?: string;
|
|
1595
|
+
/** OAuth access token. */
|
|
1596
|
+
access_token?: string;
|
|
1597
|
+
/** Data format for response. */
|
|
1598
|
+
alt?: string;
|
|
1599
|
+
/** JSONP */
|
|
1600
|
+
callback?: string;
|
|
1601
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1602
|
+
fields?: string;
|
|
1603
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1604
|
+
key?: string;
|
|
1605
|
+
/** OAuth 2.0 token for the current user. */
|
|
1606
|
+
oauth_token?: string;
|
|
1607
|
+
/** Required. The parent resource of the TrustConfig. Must be in the format `projects/*/locations/*`. */
|
|
1608
|
+
parent: string;
|
|
1609
|
+
/** Returns response with indentations and line breaks. */
|
|
1610
|
+
prettyPrint?: boolean;
|
|
1611
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1612
|
+
quotaUser?: string;
|
|
1613
|
+
/** Required. A user-provided name of the TrustConfig. */
|
|
1614
|
+
trustConfigId?: string;
|
|
1615
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1616
|
+
upload_protocol?: string;
|
|
1617
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1618
|
+
uploadType?: string;
|
|
1619
|
+
/** Request body */
|
|
1620
|
+
resource: TrustConfig;
|
|
1621
|
+
}): Request<Operation>;
|
|
1622
|
+
create(request: {
|
|
1623
|
+
/** V1 error format. */
|
|
1624
|
+
"$.xgafv"?: string;
|
|
1625
|
+
/** OAuth access token. */
|
|
1626
|
+
access_token?: string;
|
|
1627
|
+
/** Data format for response. */
|
|
1628
|
+
alt?: string;
|
|
1629
|
+
/** JSONP */
|
|
1630
|
+
callback?: string;
|
|
1631
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1632
|
+
fields?: string;
|
|
1633
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1634
|
+
key?: string;
|
|
1635
|
+
/** OAuth 2.0 token for the current user. */
|
|
1636
|
+
oauth_token?: string;
|
|
1637
|
+
/** Required. The parent resource of the TrustConfig. Must be in the format `projects/*/locations/*`. */
|
|
1638
|
+
parent: string;
|
|
1639
|
+
/** Returns response with indentations and line breaks. */
|
|
1640
|
+
prettyPrint?: boolean;
|
|
1641
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1642
|
+
quotaUser?: string;
|
|
1643
|
+
/** Required. A user-provided name of the TrustConfig. */
|
|
1644
|
+
trustConfigId?: string;
|
|
1645
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1646
|
+
upload_protocol?: string;
|
|
1647
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1648
|
+
uploadType?: string;
|
|
1649
|
+
},
|
|
1650
|
+
body: TrustConfig): Request<Operation>;
|
|
1651
|
+
/** Deletes a single TrustConfig. */
|
|
1652
|
+
delete(request?: {
|
|
1653
|
+
/** V1 error format. */
|
|
1654
|
+
"$.xgafv"?: string;
|
|
1655
|
+
/** OAuth access token. */
|
|
1656
|
+
access_token?: string;
|
|
1657
|
+
/** Data format for response. */
|
|
1658
|
+
alt?: string;
|
|
1659
|
+
/** JSONP */
|
|
1660
|
+
callback?: string;
|
|
1661
|
+
/** The current etag of the TrustConfig. If an etag is provided and does not match the current etag of the resource, deletion will be blocked and an ABORTED error will be returned. */
|
|
1662
|
+
etag?: string;
|
|
1663
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1664
|
+
fields?: string;
|
|
1665
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1666
|
+
key?: string;
|
|
1667
|
+
/** Required. A name of the TrustConfig to delete. Must be in the format `projects/*/locations/*/trustConfigs/*`. */
|
|
1668
|
+
name: string;
|
|
1669
|
+
/** OAuth 2.0 token for the current user. */
|
|
1670
|
+
oauth_token?: string;
|
|
1671
|
+
/** Returns response with indentations and line breaks. */
|
|
1672
|
+
prettyPrint?: boolean;
|
|
1673
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1674
|
+
quotaUser?: string;
|
|
1675
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1676
|
+
upload_protocol?: string;
|
|
1677
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1678
|
+
uploadType?: string;
|
|
1679
|
+
}): Request<Operation>;
|
|
1680
|
+
/** Gets details of a single TrustConfig. */
|
|
1681
|
+
get(request?: {
|
|
1682
|
+
/** V1 error format. */
|
|
1683
|
+
"$.xgafv"?: string;
|
|
1684
|
+
/** OAuth access token. */
|
|
1685
|
+
access_token?: string;
|
|
1686
|
+
/** Data format for response. */
|
|
1687
|
+
alt?: string;
|
|
1688
|
+
/** JSONP */
|
|
1689
|
+
callback?: string;
|
|
1690
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1691
|
+
fields?: string;
|
|
1692
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1693
|
+
key?: string;
|
|
1694
|
+
/** Required. A name of the TrustConfig to describe. Must be in the format `projects/*/locations/*/trustConfigs/*`. */
|
|
1695
|
+
name: string;
|
|
1696
|
+
/** OAuth 2.0 token for the current user. */
|
|
1697
|
+
oauth_token?: string;
|
|
1698
|
+
/** Returns response with indentations and line breaks. */
|
|
1699
|
+
prettyPrint?: boolean;
|
|
1700
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1701
|
+
quotaUser?: string;
|
|
1702
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1703
|
+
upload_protocol?: string;
|
|
1704
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1705
|
+
uploadType?: string;
|
|
1706
|
+
}): Request<TrustConfig>;
|
|
1707
|
+
/** Lists TrustConfigs in a given project and location. */
|
|
1708
|
+
list(request?: {
|
|
1709
|
+
/** V1 error format. */
|
|
1710
|
+
"$.xgafv"?: string;
|
|
1711
|
+
/** OAuth access token. */
|
|
1712
|
+
access_token?: string;
|
|
1713
|
+
/** Data format for response. */
|
|
1714
|
+
alt?: string;
|
|
1715
|
+
/** JSONP */
|
|
1716
|
+
callback?: string;
|
|
1717
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1718
|
+
fields?: string;
|
|
1719
|
+
/** Filter expression to restrict the TrustConfigs returned. */
|
|
1720
|
+
filter?: string;
|
|
1721
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1722
|
+
key?: string;
|
|
1723
|
+
/** OAuth 2.0 token for the current user. */
|
|
1724
|
+
oauth_token?: string;
|
|
1725
|
+
/**
|
|
1726
|
+
* A list of TrustConfig field names used to specify the order of the returned results. The default sorting order is ascending. To specify descending order for a field, add a
|
|
1727
|
+
* suffix " desc".
|
|
1728
|
+
*/
|
|
1729
|
+
orderBy?: string;
|
|
1730
|
+
/** Maximum number of TrustConfigs to return per call. */
|
|
1731
|
+
pageSize?: number;
|
|
1732
|
+
/**
|
|
1733
|
+
* The value returned by the last `ListTrustConfigsResponse`. Indicates that this is a continuation of a prior `ListTrustConfigs` call, and that the system should return the next
|
|
1734
|
+
* page of data.
|
|
1735
|
+
*/
|
|
1736
|
+
pageToken?: string;
|
|
1737
|
+
/** Required. The project and location from which the TrustConfigs should be listed, specified in the format `projects/*/locations/*`. */
|
|
1738
|
+
parent: string;
|
|
1739
|
+
/** Returns response with indentations and line breaks. */
|
|
1740
|
+
prettyPrint?: boolean;
|
|
1741
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1742
|
+
quotaUser?: string;
|
|
1743
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1744
|
+
upload_protocol?: string;
|
|
1745
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1746
|
+
uploadType?: string;
|
|
1747
|
+
}): Request<ListTrustConfigsResponse>;
|
|
1748
|
+
/** Updates a TrustConfig. */
|
|
1749
|
+
patch(request: {
|
|
1750
|
+
/** V1 error format. */
|
|
1751
|
+
"$.xgafv"?: string;
|
|
1752
|
+
/** OAuth access token. */
|
|
1753
|
+
access_token?: string;
|
|
1754
|
+
/** Data format for response. */
|
|
1755
|
+
alt?: string;
|
|
1756
|
+
/** JSONP */
|
|
1757
|
+
callback?: string;
|
|
1758
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1759
|
+
fields?: string;
|
|
1760
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1761
|
+
key?: string;
|
|
1762
|
+
/** A user-defined name of the trust config. TrustConfig names must be unique globally and match pattern `projects/*/locations/*/trustConfigs/*`. */
|
|
1763
|
+
name: string;
|
|
1764
|
+
/** OAuth 2.0 token for the current user. */
|
|
1765
|
+
oauth_token?: string;
|
|
1766
|
+
/** Returns response with indentations and line breaks. */
|
|
1767
|
+
prettyPrint?: boolean;
|
|
1768
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1769
|
+
quotaUser?: string;
|
|
1770
|
+
/** Required. The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask. */
|
|
1771
|
+
updateMask?: string;
|
|
1772
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1773
|
+
upload_protocol?: string;
|
|
1774
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1775
|
+
uploadType?: string;
|
|
1776
|
+
/** Request body */
|
|
1777
|
+
resource: TrustConfig;
|
|
1778
|
+
}): Request<Operation>;
|
|
1779
|
+
patch(request: {
|
|
1780
|
+
/** V1 error format. */
|
|
1781
|
+
"$.xgafv"?: string;
|
|
1782
|
+
/** OAuth access token. */
|
|
1783
|
+
access_token?: string;
|
|
1784
|
+
/** Data format for response. */
|
|
1785
|
+
alt?: string;
|
|
1786
|
+
/** JSONP */
|
|
1787
|
+
callback?: string;
|
|
1788
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1789
|
+
fields?: string;
|
|
1790
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1791
|
+
key?: string;
|
|
1792
|
+
/** A user-defined name of the trust config. TrustConfig names must be unique globally and match pattern `projects/*/locations/*/trustConfigs/*`. */
|
|
1793
|
+
name: string;
|
|
1794
|
+
/** OAuth 2.0 token for the current user. */
|
|
1795
|
+
oauth_token?: string;
|
|
1796
|
+
/** Returns response with indentations and line breaks. */
|
|
1797
|
+
prettyPrint?: boolean;
|
|
1798
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1799
|
+
quotaUser?: string;
|
|
1800
|
+
/** Required. The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask. */
|
|
1801
|
+
updateMask?: string;
|
|
1802
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1803
|
+
upload_protocol?: string;
|
|
1804
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1805
|
+
uploadType?: string;
|
|
1806
|
+
},
|
|
1807
|
+
body: TrustConfig): Request<Operation>;
|
|
1808
|
+
}
|
|
1540
1809
|
interface LocationsResource {
|
|
1541
1810
|
/** Gets information about a location. */
|
|
1542
1811
|
get(request?: {
|
|
@@ -1606,6 +1875,7 @@ declare namespace gapi.client {
|
|
|
1606
1875
|
certificates: CertificatesResource;
|
|
1607
1876
|
dnsAuthorizations: DnsAuthorizationsResource;
|
|
1608
1877
|
operations: OperationsResource;
|
|
1878
|
+
trustConfigs: TrustConfigsResource;
|
|
1609
1879
|
}
|
|
1610
1880
|
interface ProjectsResource {
|
|
1611
1881
|
locations: LocationsResource;
|
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: 20230407
|
|
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
|
});
|