@maxim_mazurok/gapi.client.certificatemanager-v1 0.1.20250908 → 0.1.20250924
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 +33 -1
- package/package.json +1 -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: 20250924
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -33,6 +33,8 @@ declare namespace gapi.client {
|
|
|
33
33
|
pemCertificate?: string;
|
|
34
34
|
}
|
|
35
35
|
interface AuthorizationAttemptInfo {
|
|
36
|
+
/** Output only. The timestamp, when the authorization attempt was made. */
|
|
37
|
+
attemptTime?: string;
|
|
36
38
|
/** Output only. Human readable explanation for reaching the state. Provided to help address the configuration issues. Not guaranteed to be stable. For programmatic access use FailureReason enum. */
|
|
37
39
|
details?: string;
|
|
38
40
|
/** Output only. Domain name of the authorization attempt. */
|
|
@@ -41,6 +43,8 @@ declare namespace gapi.client {
|
|
|
41
43
|
failureReason?: string;
|
|
42
44
|
/** Output only. State of the domain for managed certificate issuance. */
|
|
43
45
|
state?: string;
|
|
46
|
+
/** Output only. Troubleshooting information for the authorization attempt. This field is only populated if the authorization attempt failed. */
|
|
47
|
+
troubleshooting?: Troubleshooting;
|
|
44
48
|
}
|
|
45
49
|
interface CancelOperationRequest {}
|
|
46
50
|
interface Certificate {
|
|
@@ -131,6 +135,14 @@ declare namespace gapi.client {
|
|
|
131
135
|
/** Output only. The update timestamp of a Certificate Map Entry. */
|
|
132
136
|
updateTime?: string;
|
|
133
137
|
}
|
|
138
|
+
interface CNAME {
|
|
139
|
+
/** Output only. The expected value of the CNAME record for the domain, equals to `dns_resource_record.data` in the corresponding `DnsAuthorization`. */
|
|
140
|
+
expectedData?: string;
|
|
141
|
+
/** Output only. The name of the CNAME record for the domain, equals to `dns_resource_record.name` in the corresponding `DnsAuthorization`. */
|
|
142
|
+
name?: string;
|
|
143
|
+
/** Output only. The resolved CNAME chain. Empty list if the CNAME record for `CNAME.name` is not found. Otherwise the first item is the value of the CNAME record for `CNAME.name`. If the CNAME chain is longer, the second item is the value of the CNAME record for the first item, and so on. */
|
|
144
|
+
resolvedData?: string[];
|
|
145
|
+
}
|
|
134
146
|
interface DnsAuthorization {
|
|
135
147
|
/** Output only. The creation timestamp of a DnsAuthorization. */
|
|
136
148
|
createTime?: string;
|
|
@@ -176,6 +188,14 @@ declare namespace gapi.client {
|
|
|
176
188
|
/** Output only. Ports. */
|
|
177
189
|
ports?: number[];
|
|
178
190
|
}
|
|
191
|
+
interface IPs {
|
|
192
|
+
/** Output only. The list of IP addresses resolved from the domain's A/AAAA records. Can contain both ipv4 and ipv6 addresses. */
|
|
193
|
+
resolved?: string[];
|
|
194
|
+
/** Output only. The list of IP addresses, where the certificate is attached and port 443 is open. */
|
|
195
|
+
serving?: string[];
|
|
196
|
+
/** Output only. The list of IP addresses, where the certificate is attached, but port 443 is not open. */
|
|
197
|
+
servingOnAltPorts?: string[];
|
|
198
|
+
}
|
|
179
199
|
interface ListCertificateIssuanceConfigsResponse {
|
|
180
200
|
/** A list of certificate configs for the parent resource. */
|
|
181
201
|
certificateIssuanceConfigs?: CertificateIssuanceConfig[];
|
|
@@ -227,6 +247,8 @@ declare namespace gapi.client {
|
|
|
227
247
|
nextPageToken?: string;
|
|
228
248
|
/** A list of operations that matches the specified filter in the request. */
|
|
229
249
|
operations?: Operation[];
|
|
250
|
+
/** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections e.g. when attempting to list all resources across all supported locations. */
|
|
251
|
+
unreachable?: string[];
|
|
230
252
|
}
|
|
231
253
|
interface ListTrustConfigsResponse {
|
|
232
254
|
/** 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 `next_page_token` as `page_token`. */
|
|
@@ -310,6 +332,14 @@ declare namespace gapi.client {
|
|
|
310
332
|
/** A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. */
|
|
311
333
|
message?: string;
|
|
312
334
|
}
|
|
335
|
+
interface Troubleshooting {
|
|
336
|
+
/** Output only. CNAME troubleshooting information. */
|
|
337
|
+
cname?: CNAME;
|
|
338
|
+
/** Output only. IPs troubleshooting information. */
|
|
339
|
+
ips?: IPs;
|
|
340
|
+
/** Output only. The list of issues discovered during the authorization attempt. */
|
|
341
|
+
issues?: string[];
|
|
342
|
+
}
|
|
313
343
|
interface TrustAnchor {
|
|
314
344
|
/** PEM root certificate of the PKI used for validation. Each certificate provided in PEM format may occupy up to 5kB. */
|
|
315
345
|
pemCertificate?: string;
|
|
@@ -1559,6 +1589,8 @@ declare namespace gapi.client {
|
|
|
1559
1589
|
prettyPrint?: boolean;
|
|
1560
1590
|
/** 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. */
|
|
1561
1591
|
quotaUser?: string;
|
|
1592
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
1593
|
+
returnPartialSuccess?: boolean;
|
|
1562
1594
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1563
1595
|
upload_protocol?: string;
|
|
1564
1596
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|