@maxim_mazurok/gapi.client.certificatemanager-v1 0.1.20250908 → 0.1.20250917
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 +29 -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: 20250917
|
|
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[];
|
|
@@ -310,6 +330,14 @@ declare namespace gapi.client {
|
|
|
310
330
|
/** 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
331
|
message?: string;
|
|
312
332
|
}
|
|
333
|
+
interface Troubleshooting {
|
|
334
|
+
/** Output only. CNAME troubleshooting information. */
|
|
335
|
+
cname?: CNAME;
|
|
336
|
+
/** Output only. IPs troubleshooting information. */
|
|
337
|
+
ips?: IPs;
|
|
338
|
+
/** Output only. The list of issues discovered during the authorization attempt. */
|
|
339
|
+
issues?: string[];
|
|
340
|
+
}
|
|
313
341
|
interface TrustAnchor {
|
|
314
342
|
/** PEM root certificate of the PKI used for validation. Each certificate provided in PEM format may occupy up to 5kB. */
|
|
315
343
|
pemCertificate?: string;
|