@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/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: 20230512
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -27,708 +27,1038 @@ declare namespace gapi.client {
|
|
|
27
27
|
* 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
|
|
28
28
|
* FailureReason enum.
|
|
29
29
|
*/
|
|
30
|
-
details?:
|
|
30
|
+
details?:
|
|
31
|
+
string;
|
|
31
32
|
/** Domain name of the authorization attempt. */
|
|
32
|
-
domain?:
|
|
33
|
+
domain?:
|
|
34
|
+
string;
|
|
33
35
|
/** Output only. Reason for failure of the authorization attempt for the domain. */
|
|
34
|
-
failureReason?:
|
|
36
|
+
failureReason?:
|
|
37
|
+
string;
|
|
35
38
|
/** Output only. State of the domain for managed certificate issuance. */
|
|
36
|
-
state?:
|
|
39
|
+
state?:
|
|
40
|
+
string;
|
|
37
41
|
}
|
|
38
42
|
// tslint:disable-next-line:no-empty-interface
|
|
39
43
|
interface CancelOperationRequest {
|
|
40
44
|
}
|
|
41
45
|
interface Certificate {
|
|
42
46
|
/** Output only. The creation timestamp of a Certificate. */
|
|
43
|
-
createTime?:
|
|
47
|
+
createTime?:
|
|
48
|
+
string;
|
|
44
49
|
/** One or more paragraphs of text description of a certificate. */
|
|
45
|
-
description?:
|
|
50
|
+
description?:
|
|
51
|
+
string;
|
|
46
52
|
/** Output only. The expiry timestamp of a Certificate. */
|
|
47
|
-
expireTime?:
|
|
53
|
+
expireTime?:
|
|
54
|
+
string;
|
|
48
55
|
/** Set of labels associated with a Certificate. */
|
|
49
|
-
labels?:
|
|
56
|
+
labels?:
|
|
57
|
+
{ [P in string]: string };
|
|
50
58
|
/** If set, contains configuration and state of a managed certificate. */
|
|
51
|
-
managed?:
|
|
59
|
+
managed?:
|
|
60
|
+
ManagedCertificate;
|
|
52
61
|
/** A user-defined name of the certificate. Certificate names must be unique globally and match pattern `projects/*/locations/*/certificates/*`. */
|
|
53
|
-
name?:
|
|
62
|
+
name?:
|
|
63
|
+
string;
|
|
54
64
|
/** Output only. The PEM-encoded certificate chain. */
|
|
55
|
-
pemCertificate?:
|
|
65
|
+
pemCertificate?:
|
|
66
|
+
string;
|
|
56
67
|
/**
|
|
57
68
|
* Output only. The list of Subject Alternative Names of dnsName type defined in the certificate (see RFC 5280 4.2.1.6). Managed certificates that haven't been provisioned yet have
|
|
58
69
|
* this field populated with a value of the managed.domains field.
|
|
59
70
|
*/
|
|
60
|
-
sanDnsnames?:
|
|
71
|
+
sanDnsnames?:
|
|
72
|
+
string[];
|
|
61
73
|
/** Immutable. The scope of the certificate. */
|
|
62
|
-
scope?:
|
|
74
|
+
scope?:
|
|
75
|
+
string;
|
|
63
76
|
/** If set, defines data of a self-managed certificate. */
|
|
64
|
-
selfManaged?:
|
|
77
|
+
selfManaged?:
|
|
78
|
+
SelfManagedCertificate;
|
|
65
79
|
/** Output only. The last update timestamp of a Certificate. */
|
|
66
|
-
updateTime?:
|
|
80
|
+
updateTime?:
|
|
81
|
+
string;
|
|
67
82
|
}
|
|
68
83
|
interface CertificateAuthorityConfig {
|
|
69
84
|
/** Defines a CertificateAuthorityServiceConfig. */
|
|
70
|
-
certificateAuthorityServiceConfig?:
|
|
85
|
+
certificateAuthorityServiceConfig?:
|
|
86
|
+
CertificateAuthorityServiceConfig;
|
|
71
87
|
}
|
|
72
88
|
interface CertificateAuthorityServiceConfig {
|
|
73
89
|
/**
|
|
74
90
|
* Required. A CA pool resource used to issue a certificate. The CA pool string has a relative resource path following the form
|
|
75
91
|
* "projects/{project}/locations/{location}/caPools/{ca_pool}".
|
|
76
92
|
*/
|
|
77
|
-
caPool?:
|
|
93
|
+
caPool?:
|
|
94
|
+
string;
|
|
78
95
|
}
|
|
79
96
|
interface CertificateIssuanceConfig {
|
|
80
97
|
/** Required. The CA that issues the workload certificate. It includes the CA address, type, authentication to CA service, etc. */
|
|
81
|
-
certificateAuthorityConfig?:
|
|
98
|
+
certificateAuthorityConfig?:
|
|
99
|
+
CertificateAuthorityConfig;
|
|
82
100
|
/** Output only. The creation timestamp of a CertificateIssuanceConfig. */
|
|
83
|
-
createTime?:
|
|
101
|
+
createTime?:
|
|
102
|
+
string;
|
|
84
103
|
/** One or more paragraphs of text description of a CertificateIssuanceConfig. */
|
|
85
|
-
description?:
|
|
104
|
+
description?:
|
|
105
|
+
string;
|
|
86
106
|
/** Required. The key algorithm to use when generating the private key. */
|
|
87
|
-
keyAlgorithm?:
|
|
107
|
+
keyAlgorithm?:
|
|
108
|
+
string;
|
|
88
109
|
/** Set of labels associated with a CertificateIssuanceConfig. */
|
|
89
|
-
labels?:
|
|
110
|
+
labels?:
|
|
111
|
+
{ [P in string]: string };
|
|
90
112
|
/** Required. Workload certificate lifetime requested. */
|
|
91
|
-
lifetime?:
|
|
113
|
+
lifetime?:
|
|
114
|
+
string;
|
|
92
115
|
/**
|
|
93
116
|
* A user-defined name of the certificate issuance config. CertificateIssuanceConfig names must be unique globally and match pattern
|
|
94
117
|
* `projects/*/locations/*/certificateIssuanceConfigs/*`.
|
|
95
118
|
*/
|
|
96
|
-
name?:
|
|
119
|
+
name?:
|
|
120
|
+
string;
|
|
97
121
|
/** Required. Specifies the percentage of elapsed time of the certificate lifetime to wait before renewing the certificate. Must be a number between 1-99, inclusive. */
|
|
98
|
-
rotationWindowPercentage?:
|
|
122
|
+
rotationWindowPercentage?:
|
|
123
|
+
number;
|
|
99
124
|
/** Output only. The last update timestamp of a CertificateIssuanceConfig. */
|
|
100
|
-
updateTime?:
|
|
125
|
+
updateTime?:
|
|
126
|
+
string;
|
|
101
127
|
}
|
|
102
128
|
interface CertificateMap {
|
|
103
129
|
/** Output only. The creation timestamp of a Certificate Map. */
|
|
104
|
-
createTime?:
|
|
130
|
+
createTime?:
|
|
131
|
+
string;
|
|
105
132
|
/** One or more paragraphs of text description of a certificate map. */
|
|
106
|
-
description?:
|
|
133
|
+
description?:
|
|
134
|
+
string;
|
|
107
135
|
/** Output only. A list of GCLB targets that use this Certificate Map. A Target Proxy is only present on this list if it's attached to a Forwarding Rule. */
|
|
108
|
-
gclbTargets?:
|
|
136
|
+
gclbTargets?:
|
|
137
|
+
GclbTarget[];
|
|
109
138
|
/** Set of labels associated with a Certificate Map. */
|
|
110
|
-
labels?:
|
|
139
|
+
labels?:
|
|
140
|
+
{ [P in string]: string };
|
|
111
141
|
/** A user-defined name of the Certificate Map. Certificate Map names must be unique globally and match pattern `projects/*/locations/*/certificateMaps/*`. */
|
|
112
|
-
name?:
|
|
142
|
+
name?:
|
|
143
|
+
string;
|
|
113
144
|
/** Output only. The update timestamp of a Certificate Map. */
|
|
114
|
-
updateTime?:
|
|
145
|
+
updateTime?:
|
|
146
|
+
string;
|
|
115
147
|
}
|
|
116
148
|
interface CertificateMapEntry {
|
|
117
149
|
/**
|
|
118
150
|
* A set of Certificates defines for the given `hostname`. There can be defined up to four certificates in each Certificate Map Entry. Each certificate must match pattern
|
|
119
151
|
* `projects/*/locations/*/certificates/*`.
|
|
120
152
|
*/
|
|
121
|
-
certificates?:
|
|
153
|
+
certificates?:
|
|
154
|
+
string[];
|
|
122
155
|
/** Output only. The creation timestamp of a Certificate Map Entry. */
|
|
123
|
-
createTime?:
|
|
156
|
+
createTime?:
|
|
157
|
+
string;
|
|
124
158
|
/** One or more paragraphs of text description of a certificate map entry. */
|
|
125
|
-
description?:
|
|
159
|
+
description?:
|
|
160
|
+
string;
|
|
126
161
|
/**
|
|
127
162
|
* A Hostname (FQDN, e.g. `example.com`) or a wildcard hostname expression (`*.example.com`) for a set of hostnames with common suffix. Used as Server Name Indication (SNI) for
|
|
128
163
|
* selecting a proper certificate.
|
|
129
164
|
*/
|
|
130
|
-
hostname?:
|
|
165
|
+
hostname?:
|
|
166
|
+
string;
|
|
131
167
|
/** Set of labels associated with a Certificate Map Entry. */
|
|
132
|
-
labels?:
|
|
168
|
+
labels?:
|
|
169
|
+
{ [P in string]: string };
|
|
133
170
|
/** A predefined matcher for particular cases, other than SNI selection. */
|
|
134
|
-
matcher?:
|
|
171
|
+
matcher?:
|
|
172
|
+
string;
|
|
135
173
|
/**
|
|
136
174
|
* A user-defined name of the Certificate Map Entry. Certificate Map Entry names must be unique globally and match pattern
|
|
137
175
|
* `projects/*/locations/*/certificateMaps/*/certificateMapEntries/*`.
|
|
138
176
|
*/
|
|
139
|
-
name?:
|
|
177
|
+
name?:
|
|
178
|
+
string;
|
|
140
179
|
/** Output only. A serving state of this Certificate Map Entry. */
|
|
141
|
-
state?:
|
|
180
|
+
state?:
|
|
181
|
+
string;
|
|
142
182
|
/** Output only. The update timestamp of a Certificate Map Entry. */
|
|
143
|
-
updateTime?:
|
|
183
|
+
updateTime?:
|
|
184
|
+
string;
|
|
144
185
|
}
|
|
145
186
|
interface DnsAuthorization {
|
|
146
187
|
/** Output only. The creation timestamp of a DnsAuthorization. */
|
|
147
|
-
createTime?:
|
|
188
|
+
createTime?:
|
|
189
|
+
string;
|
|
148
190
|
/** One or more paragraphs of text description of a DnsAuthorization. */
|
|
149
|
-
description?:
|
|
191
|
+
description?:
|
|
192
|
+
string;
|
|
150
193
|
/** Output only. DNS Resource Record that needs to be added to DNS configuration. */
|
|
151
|
-
dnsResourceRecord?:
|
|
194
|
+
dnsResourceRecord?:
|
|
195
|
+
DnsResourceRecord;
|
|
152
196
|
/**
|
|
153
197
|
* Required. Immutable. A domain that is being authorized. A DnsAuthorization resource covers a single domain and its wildcard, e.g. authorization for `example.com` can be used to
|
|
154
198
|
* issue certificates for `example.com` and `*.example.com`.
|
|
155
199
|
*/
|
|
156
|
-
domain?:
|
|
200
|
+
domain?:
|
|
201
|
+
string;
|
|
157
202
|
/** Set of labels associated with a DnsAuthorization. */
|
|
158
|
-
labels?:
|
|
203
|
+
labels?:
|
|
204
|
+
{ [P in string]: string };
|
|
159
205
|
/** A user-defined name of the dns authorization. DnsAuthorization names must be unique globally and match pattern `projects/*/locations/*/dnsAuthorizations/*`. */
|
|
160
|
-
name?:
|
|
206
|
+
name?:
|
|
207
|
+
string;
|
|
161
208
|
/** Output only. The last update timestamp of a DnsAuthorization. */
|
|
162
|
-
updateTime?:
|
|
209
|
+
updateTime?:
|
|
210
|
+
string;
|
|
163
211
|
}
|
|
164
212
|
interface DnsResourceRecord {
|
|
165
213
|
/** Output only. Data of the DNS Resource Record. */
|
|
166
|
-
data?:
|
|
214
|
+
data?:
|
|
215
|
+
string;
|
|
167
216
|
/** Output only. Fully qualified name of the DNS Resource Record. e.g. `_acme-challenge.example.com` */
|
|
168
|
-
name?:
|
|
217
|
+
name?:
|
|
218
|
+
string;
|
|
169
219
|
/** Output only. Type of the DNS Resource Record. Currently always set to "CNAME". */
|
|
170
|
-
type?:
|
|
220
|
+
type?:
|
|
221
|
+
string;
|
|
171
222
|
}
|
|
172
223
|
// tslint:disable-next-line:no-empty-interface
|
|
173
224
|
interface Empty {
|
|
174
225
|
}
|
|
175
226
|
interface GclbTarget {
|
|
176
227
|
/** Output only. IP configurations for this Target Proxy where the Certificate Map is serving. */
|
|
177
|
-
ipConfigs?:
|
|
228
|
+
ipConfigs?:
|
|
229
|
+
IpConfig[];
|
|
178
230
|
/** Output only. This field returns the resource name in the following format: `//compute.googleapis.com/projects/*/global/targetHttpsProxies/*`. */
|
|
179
|
-
targetHttpsProxy?:
|
|
231
|
+
targetHttpsProxy?:
|
|
232
|
+
string;
|
|
180
233
|
/** Output only. This field returns the resource name in the following format: `//compute.googleapis.com/projects/*/global/targetSslProxies/*`. */
|
|
181
|
-
targetSslProxy?:
|
|
234
|
+
targetSslProxy?:
|
|
235
|
+
string;
|
|
236
|
+
}
|
|
237
|
+
interface IntermediateCA {
|
|
238
|
+
/** PEM intermediate certificate used for building up paths for validation. Each certificate provided in PEM format may occupy up to 5kB. */
|
|
239
|
+
pemCertificate?:
|
|
240
|
+
string;
|
|
182
241
|
}
|
|
183
242
|
interface IpConfig {
|
|
184
243
|
/** Output only. An external IP address. */
|
|
185
|
-
ipAddress?:
|
|
244
|
+
ipAddress?:
|
|
245
|
+
string;
|
|
186
246
|
/** Output only. Ports. */
|
|
187
|
-
ports?:
|
|
247
|
+
ports?:
|
|
248
|
+
number[];
|
|
188
249
|
}
|
|
189
250
|
interface ListCertificateIssuanceConfigsResponse {
|
|
190
251
|
/** A list of certificate configs for the parent resource. */
|
|
191
|
-
certificateIssuanceConfigs?:
|
|
252
|
+
certificateIssuanceConfigs?:
|
|
253
|
+
CertificateIssuanceConfig[];
|
|
192
254
|
/**
|
|
193
255
|
* 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
|
|
194
256
|
* `next_page_token` as `page_token`.
|
|
195
257
|
*/
|
|
196
|
-
nextPageToken?:
|
|
258
|
+
nextPageToken?:
|
|
259
|
+
string;
|
|
197
260
|
/** Locations that could not be reached. */
|
|
198
|
-
unreachable?:
|
|
261
|
+
unreachable?:
|
|
262
|
+
string[];
|
|
199
263
|
}
|
|
200
264
|
interface ListCertificateMapEntriesResponse {
|
|
201
265
|
/** A list of certificate map entries for the parent resource. */
|
|
202
|
-
certificateMapEntries?:
|
|
266
|
+
certificateMapEntries?:
|
|
267
|
+
CertificateMapEntry[];
|
|
203
268
|
/**
|
|
204
269
|
* 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
|
|
205
270
|
* `next_page_token` as `page_token`.
|
|
206
271
|
*/
|
|
207
|
-
nextPageToken?:
|
|
272
|
+
nextPageToken?:
|
|
273
|
+
string;
|
|
208
274
|
/** Locations that could not be reached. */
|
|
209
|
-
unreachable?:
|
|
275
|
+
unreachable?:
|
|
276
|
+
string[];
|
|
210
277
|
}
|
|
211
278
|
interface ListCertificateMapsResponse {
|
|
212
279
|
/** A list of certificate maps for the parent resource. */
|
|
213
|
-
certificateMaps?:
|
|
280
|
+
certificateMaps?:
|
|
281
|
+
CertificateMap[];
|
|
214
282
|
/**
|
|
215
283
|
* 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
|
|
216
284
|
* `next_page_token` as `page_token`.
|
|
217
285
|
*/
|
|
218
|
-
nextPageToken?:
|
|
286
|
+
nextPageToken?:
|
|
287
|
+
string;
|
|
219
288
|
/** Locations that could not be reached. */
|
|
220
|
-
unreachable?:
|
|
289
|
+
unreachable?:
|
|
290
|
+
string[];
|
|
221
291
|
}
|
|
222
292
|
interface ListCertificatesResponse {
|
|
223
293
|
/** A list of certificates for the parent resource. */
|
|
224
|
-
certificates?:
|
|
294
|
+
certificates?:
|
|
295
|
+
Certificate[];
|
|
225
296
|
/**
|
|
226
297
|
* 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
|
|
227
298
|
* `next_page_token` as `page_token`.
|
|
228
299
|
*/
|
|
229
|
-
nextPageToken?:
|
|
300
|
+
nextPageToken?:
|
|
301
|
+
string;
|
|
230
302
|
/** A list of locations that could not be reached. */
|
|
231
|
-
unreachable?:
|
|
303
|
+
unreachable?:
|
|
304
|
+
string[];
|
|
232
305
|
}
|
|
233
306
|
interface ListDnsAuthorizationsResponse {
|
|
234
307
|
/** A list of dns authorizations for the parent resource. */
|
|
235
|
-
dnsAuthorizations?:
|
|
308
|
+
dnsAuthorizations?:
|
|
309
|
+
DnsAuthorization[];
|
|
236
310
|
/**
|
|
237
311
|
* 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
|
|
238
312
|
* `next_page_token` as `page_token`.
|
|
239
313
|
*/
|
|
240
|
-
nextPageToken?:
|
|
314
|
+
nextPageToken?:
|
|
315
|
+
string;
|
|
241
316
|
/** Locations that could not be reached. */
|
|
242
|
-
unreachable?:
|
|
317
|
+
unreachable?:
|
|
318
|
+
string[];
|
|
243
319
|
}
|
|
244
320
|
interface ListLocationsResponse {
|
|
245
321
|
/** A list of locations that matches the specified filter in the request. */
|
|
246
|
-
locations?:
|
|
322
|
+
locations?:
|
|
323
|
+
Location[];
|
|
247
324
|
/** The standard List next-page token. */
|
|
248
|
-
nextPageToken?:
|
|
325
|
+
nextPageToken?:
|
|
326
|
+
string;
|
|
249
327
|
}
|
|
250
328
|
interface ListOperationsResponse {
|
|
251
329
|
/** The standard List next-page token. */
|
|
252
|
-
nextPageToken?:
|
|
330
|
+
nextPageToken?:
|
|
331
|
+
string;
|
|
253
332
|
/** A list of operations that matches the specified filter in the request. */
|
|
254
|
-
operations?:
|
|
333
|
+
operations?:
|
|
334
|
+
Operation[];
|
|
335
|
+
}
|
|
336
|
+
interface ListTrustConfigsResponse {
|
|
337
|
+
/**
|
|
338
|
+
* 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
|
|
339
|
+
* `next_page_token` as `page_token`.
|
|
340
|
+
*/
|
|
341
|
+
nextPageToken?:
|
|
342
|
+
string;
|
|
343
|
+
/** A list of TrustConfigs for the parent resource. */
|
|
344
|
+
trustConfigs?:
|
|
345
|
+
TrustConfig[];
|
|
346
|
+
/** Locations that could not be reached. */
|
|
347
|
+
unreachable?:
|
|
348
|
+
string[];
|
|
255
349
|
}
|
|
256
350
|
interface Location {
|
|
257
351
|
/** The friendly name for this location, typically a nearby city name. For example, "Tokyo". */
|
|
258
|
-
displayName?:
|
|
352
|
+
displayName?:
|
|
353
|
+
string;
|
|
259
354
|
/** Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"} */
|
|
260
|
-
labels?:
|
|
355
|
+
labels?:
|
|
356
|
+
{ [P in string]: string };
|
|
261
357
|
/** The canonical id for this location. For example: `"us-east1"`. */
|
|
262
|
-
locationId?:
|
|
358
|
+
locationId?:
|
|
359
|
+
string;
|
|
263
360
|
/** Service-specific metadata. For example the available capacity at the given location. */
|
|
264
|
-
metadata?:
|
|
361
|
+
metadata?:
|
|
362
|
+
{ [P in string]: any };
|
|
265
363
|
/** Resource name for the location, which may vary between implementations. For example: `"projects/example-project/locations/us-east1"` */
|
|
266
|
-
name?:
|
|
364
|
+
name?:
|
|
365
|
+
string;
|
|
267
366
|
}
|
|
268
367
|
interface ManagedCertificate {
|
|
269
368
|
/** Output only. Detailed state of the latest authorization attempt for each domain specified for managed certificate resource. */
|
|
270
|
-
authorizationAttemptInfo?:
|
|
369
|
+
authorizationAttemptInfo?:
|
|
370
|
+
AuthorizationAttemptInfo[];
|
|
271
371
|
/** Immutable. Authorizations that will be used for performing domain authorization. */
|
|
272
|
-
dnsAuthorizations?:
|
|
372
|
+
dnsAuthorizations?:
|
|
373
|
+
string[];
|
|
273
374
|
/** Immutable. The domains for which a managed SSL certificate will be generated. Wildcard domains are only supported with DNS challenge resolution. */
|
|
274
|
-
domains?:
|
|
375
|
+
domains?:
|
|
376
|
+
string[];
|
|
275
377
|
/**
|
|
276
378
|
* Immutable. The resource name for a CertificateIssuanceConfig used to configure private PKI certificates in the format `projects/*/locations/*/certificateIssuanceConfigs/*`. If
|
|
277
379
|
* this field is not set, the certificates will instead be publicly signed as documented at https://cloud.google.com/load-balancing/docs/ssl-certificates/google-managed-certs#caa.
|
|
278
380
|
*/
|
|
279
|
-
issuanceConfig?:
|
|
381
|
+
issuanceConfig?:
|
|
382
|
+
string;
|
|
280
383
|
/** Output only. Information about issues with provisioning a Managed Certificate. */
|
|
281
|
-
provisioningIssue?:
|
|
384
|
+
provisioningIssue?:
|
|
385
|
+
ProvisioningIssue;
|
|
282
386
|
/** Output only. State of the managed certificate resource. */
|
|
283
|
-
state?:
|
|
387
|
+
state?:
|
|
388
|
+
string;
|
|
284
389
|
}
|
|
285
390
|
interface Operation {
|
|
286
391
|
/** If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. */
|
|
287
|
-
done?:
|
|
392
|
+
done?:
|
|
393
|
+
boolean;
|
|
288
394
|
/** The error result of the operation in case of failure or cancellation. */
|
|
289
|
-
error?:
|
|
395
|
+
error?:
|
|
396
|
+
Status;
|
|
290
397
|
/**
|
|
291
398
|
* Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such
|
|
292
399
|
* metadata. Any method that returns a long-running operation should document the metadata type, if any.
|
|
293
400
|
*/
|
|
294
|
-
metadata?:
|
|
401
|
+
metadata?:
|
|
402
|
+
{ [P in string]: any };
|
|
295
403
|
/**
|
|
296
404
|
* The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending
|
|
297
405
|
* with `operations/{unique_id}`.
|
|
298
406
|
*/
|
|
299
|
-
name?:
|
|
407
|
+
name?:
|
|
408
|
+
string;
|
|
300
409
|
/**
|
|
301
410
|
* The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the
|
|
302
411
|
* original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the
|
|
303
412
|
* original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
|
|
304
413
|
*/
|
|
305
|
-
response?:
|
|
414
|
+
response?:
|
|
415
|
+
{ [P in string]: any };
|
|
306
416
|
}
|
|
307
417
|
interface OperationMetadata {
|
|
308
418
|
/** API version used to start the operation. */
|
|
309
|
-
apiVersion?:
|
|
419
|
+
apiVersion?:
|
|
420
|
+
string;
|
|
310
421
|
/** The time the operation was created. */
|
|
311
|
-
createTime?:
|
|
422
|
+
createTime?:
|
|
423
|
+
string;
|
|
312
424
|
/** The time the operation finished running. */
|
|
313
|
-
endTime?:
|
|
425
|
+
endTime?:
|
|
426
|
+
string;
|
|
314
427
|
/**
|
|
315
428
|
* Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have Operation.error value with a google.rpc.Status.code of
|
|
316
429
|
* 1, corresponding to `Code.CANCELLED`.
|
|
317
430
|
*/
|
|
318
|
-
requestedCancellation?:
|
|
431
|
+
requestedCancellation?:
|
|
432
|
+
boolean;
|
|
319
433
|
/** Human-readable status of the operation, if any. */
|
|
320
|
-
statusMessage?:
|
|
434
|
+
statusMessage?:
|
|
435
|
+
string;
|
|
321
436
|
/** Server-defined resource path for the target of the operation. */
|
|
322
|
-
target?:
|
|
437
|
+
target?:
|
|
438
|
+
string;
|
|
323
439
|
/** Name of the verb executed by the operation. */
|
|
324
|
-
verb?:
|
|
440
|
+
verb?:
|
|
441
|
+
string;
|
|
325
442
|
}
|
|
326
443
|
interface ProvisioningIssue {
|
|
327
444
|
/** Output only. Human readable explanation about the issue. Provided to help address the configuration issues. Not guaranteed to be stable. For programmatic access use Reason enum. */
|
|
328
|
-
details?:
|
|
445
|
+
details?:
|
|
446
|
+
string;
|
|
329
447
|
/** Output only. Reason for provisioning failures. */
|
|
330
|
-
reason?:
|
|
448
|
+
reason?:
|
|
449
|
+
string;
|
|
331
450
|
}
|
|
332
451
|
interface SelfManagedCertificate {
|
|
333
452
|
/** Input only. The PEM-encoded certificate chain. Leaf certificate comes first, followed by intermediate ones if any. */
|
|
334
|
-
pemCertificate?:
|
|
453
|
+
pemCertificate?:
|
|
454
|
+
string;
|
|
335
455
|
/** Input only. The PEM-encoded private key of the leaf certificate. */
|
|
336
|
-
pemPrivateKey?:
|
|
456
|
+
pemPrivateKey?:
|
|
457
|
+
string;
|
|
337
458
|
}
|
|
338
459
|
interface Status {
|
|
339
460
|
/** The status code, which should be an enum value of google.rpc.Code. */
|
|
340
|
-
code?:
|
|
461
|
+
code?:
|
|
462
|
+
number;
|
|
341
463
|
/** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
|
|
342
|
-
details?:
|
|
464
|
+
details?:
|
|
465
|
+
Array<{ [P in string]: any }>;
|
|
343
466
|
/**
|
|
344
467
|
* 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
|
|
345
468
|
* client.
|
|
346
469
|
*/
|
|
347
|
-
message?:
|
|
470
|
+
message?:
|
|
471
|
+
string;
|
|
472
|
+
}
|
|
473
|
+
interface TrustAnchor {
|
|
474
|
+
/** PEM root certificate of the PKI used for validation. Each certificate provided in PEM format may occupy up to 5kB. */
|
|
475
|
+
pemCertificate?:
|
|
476
|
+
string;
|
|
477
|
+
}
|
|
478
|
+
interface TrustConfig {
|
|
479
|
+
/** Output only. The creation timestamp of a TrustConfig. */
|
|
480
|
+
createTime?:
|
|
481
|
+
string;
|
|
482
|
+
/** One or more paragraphs of text description of a TrustConfig. */
|
|
483
|
+
description?:
|
|
484
|
+
string;
|
|
485
|
+
/**
|
|
486
|
+
* 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
|
|
487
|
+
* proceeding.
|
|
488
|
+
*/
|
|
489
|
+
etag?:
|
|
490
|
+
string;
|
|
491
|
+
/** Set of labels associated with a TrustConfig. */
|
|
492
|
+
labels?:
|
|
493
|
+
{ [P in string]: string };
|
|
494
|
+
/** A user-defined name of the trust config. TrustConfig names must be unique globally and match pattern `projects/*/locations/*/trustConfigs/*`. */
|
|
495
|
+
name?:
|
|
496
|
+
string;
|
|
497
|
+
/**
|
|
498
|
+
* 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
|
|
499
|
+
* validation. Only one TrustStore specified is currently allowed.
|
|
500
|
+
*/
|
|
501
|
+
trustStores?:
|
|
502
|
+
TrustStore[];
|
|
503
|
+
/** Output only. The last update timestamp of a TrustConfig. */
|
|
504
|
+
updateTime?:
|
|
505
|
+
string;
|
|
506
|
+
}
|
|
507
|
+
interface TrustStore {
|
|
508
|
+
/**
|
|
509
|
+
* 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
|
|
510
|
+
* feature.
|
|
511
|
+
*/
|
|
512
|
+
intermediateCas?:
|
|
513
|
+
IntermediateCA[];
|
|
514
|
+
/** List of Trust Anchors to be used while performing validation against a given TrustStore. */
|
|
515
|
+
trustAnchors?:
|
|
516
|
+
TrustAnchor[];
|
|
348
517
|
}
|
|
349
518
|
interface CertificateIssuanceConfigsResource {
|
|
350
519
|
/** Creates a new CertificateIssuanceConfig in a given project and location. */
|
|
351
520
|
create(request: {
|
|
352
521
|
/** V1 error format. */
|
|
353
|
-
"$.xgafv"?:
|
|
522
|
+
"$.xgafv"?:
|
|
523
|
+
string;
|
|
354
524
|
/** OAuth access token. */
|
|
355
|
-
access_token?:
|
|
525
|
+
access_token?:
|
|
526
|
+
string;
|
|
356
527
|
/** Data format for response. */
|
|
357
|
-
alt?:
|
|
528
|
+
alt?:
|
|
529
|
+
string;
|
|
358
530
|
/** JSONP */
|
|
359
|
-
callback?:
|
|
531
|
+
callback?:
|
|
532
|
+
string;
|
|
360
533
|
/** Required. A user-provided name of the certificate config. */
|
|
361
|
-
certificateIssuanceConfigId?:
|
|
534
|
+
certificateIssuanceConfigId?:
|
|
535
|
+
string;
|
|
362
536
|
/** Selector specifying which fields to include in a partial response. */
|
|
363
|
-
fields?:
|
|
537
|
+
fields?:
|
|
538
|
+
string;
|
|
364
539
|
/** 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. */
|
|
365
|
-
key?:
|
|
540
|
+
key?:
|
|
541
|
+
string;
|
|
366
542
|
/** OAuth 2.0 token for the current user. */
|
|
367
|
-
oauth_token?:
|
|
543
|
+
oauth_token?:
|
|
544
|
+
string;
|
|
368
545
|
/** Required. The parent resource of the certificate issuance config. Must be in the format `projects/*/locations/*`. */
|
|
369
|
-
parent:
|
|
546
|
+
parent:
|
|
547
|
+
string;
|
|
370
548
|
/** Returns response with indentations and line breaks. */
|
|
371
|
-
prettyPrint?:
|
|
549
|
+
prettyPrint?:
|
|
550
|
+
boolean;
|
|
372
551
|
/** 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. */
|
|
373
|
-
quotaUser?:
|
|
552
|
+
quotaUser?:
|
|
553
|
+
string;
|
|
374
554
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
375
|
-
upload_protocol?:
|
|
555
|
+
upload_protocol?:
|
|
556
|
+
string;
|
|
376
557
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
377
|
-
uploadType?:
|
|
558
|
+
uploadType?:
|
|
559
|
+
string;
|
|
378
560
|
/** Request body */
|
|
379
|
-
resource:
|
|
561
|
+
resource:
|
|
562
|
+
CertificateIssuanceConfig;
|
|
380
563
|
}): Request<Operation>;
|
|
381
564
|
create(request: {
|
|
382
565
|
/** V1 error format. */
|
|
383
|
-
"$.xgafv"?:
|
|
566
|
+
"$.xgafv"?:
|
|
567
|
+
string;
|
|
384
568
|
/** OAuth access token. */
|
|
385
|
-
access_token?:
|
|
569
|
+
access_token?:
|
|
570
|
+
string;
|
|
386
571
|
/** Data format for response. */
|
|
387
|
-
alt?:
|
|
572
|
+
alt?:
|
|
573
|
+
string;
|
|
388
574
|
/** JSONP */
|
|
389
|
-
callback?:
|
|
575
|
+
callback?:
|
|
576
|
+
string;
|
|
390
577
|
/** Required. A user-provided name of the certificate config. */
|
|
391
|
-
certificateIssuanceConfigId?:
|
|
578
|
+
certificateIssuanceConfigId?:
|
|
579
|
+
string;
|
|
392
580
|
/** Selector specifying which fields to include in a partial response. */
|
|
393
|
-
fields?:
|
|
581
|
+
fields?:
|
|
582
|
+
string;
|
|
394
583
|
/** 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. */
|
|
395
|
-
key?:
|
|
584
|
+
key?:
|
|
585
|
+
string;
|
|
396
586
|
/** OAuth 2.0 token for the current user. */
|
|
397
|
-
oauth_token?:
|
|
587
|
+
oauth_token?:
|
|
588
|
+
string;
|
|
398
589
|
/** Required. The parent resource of the certificate issuance config. Must be in the format `projects/*/locations/*`. */
|
|
399
|
-
parent:
|
|
590
|
+
parent:
|
|
591
|
+
string;
|
|
400
592
|
/** Returns response with indentations and line breaks. */
|
|
401
|
-
prettyPrint?:
|
|
593
|
+
prettyPrint?:
|
|
594
|
+
boolean;
|
|
402
595
|
/** 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. */
|
|
403
|
-
quotaUser?:
|
|
596
|
+
quotaUser?:
|
|
597
|
+
string;
|
|
404
598
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
405
|
-
upload_protocol?:
|
|
599
|
+
upload_protocol?:
|
|
600
|
+
string;
|
|
406
601
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
407
|
-
uploadType?:
|
|
602
|
+
uploadType?:
|
|
603
|
+
string;
|
|
408
604
|
},
|
|
409
605
|
body: CertificateIssuanceConfig): Request<Operation>;
|
|
410
606
|
/** Deletes a single CertificateIssuanceConfig. */
|
|
411
607
|
delete(request?: {
|
|
412
608
|
/** V1 error format. */
|
|
413
|
-
"$.xgafv"?:
|
|
609
|
+
"$.xgafv"?:
|
|
610
|
+
string;
|
|
414
611
|
/** OAuth access token. */
|
|
415
|
-
access_token?:
|
|
612
|
+
access_token?:
|
|
613
|
+
string;
|
|
416
614
|
/** Data format for response. */
|
|
417
|
-
alt?:
|
|
615
|
+
alt?:
|
|
616
|
+
string;
|
|
418
617
|
/** JSONP */
|
|
419
|
-
callback?:
|
|
618
|
+
callback?:
|
|
619
|
+
string;
|
|
420
620
|
/** Selector specifying which fields to include in a partial response. */
|
|
421
|
-
fields?:
|
|
621
|
+
fields?:
|
|
622
|
+
string;
|
|
422
623
|
/** 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. */
|
|
423
|
-
key?:
|
|
624
|
+
key?:
|
|
625
|
+
string;
|
|
424
626
|
/** Required. A name of the certificate issuance config to delete. Must be in the format `projects/*/locations/*/certificateIssuanceConfigs/*`. */
|
|
425
|
-
name:
|
|
627
|
+
name:
|
|
628
|
+
string;
|
|
426
629
|
/** OAuth 2.0 token for the current user. */
|
|
427
|
-
oauth_token?:
|
|
630
|
+
oauth_token?:
|
|
631
|
+
string;
|
|
428
632
|
/** Returns response with indentations and line breaks. */
|
|
429
|
-
prettyPrint?:
|
|
633
|
+
prettyPrint?:
|
|
634
|
+
boolean;
|
|
430
635
|
/** 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. */
|
|
431
|
-
quotaUser?:
|
|
636
|
+
quotaUser?:
|
|
637
|
+
string;
|
|
432
638
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
433
|
-
upload_protocol?:
|
|
639
|
+
upload_protocol?:
|
|
640
|
+
string;
|
|
434
641
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
435
|
-
uploadType?:
|
|
642
|
+
uploadType?:
|
|
643
|
+
string;
|
|
436
644
|
}): Request<Operation>;
|
|
437
645
|
/** Gets details of a single CertificateIssuanceConfig. */
|
|
438
646
|
get(request?: {
|
|
439
647
|
/** V1 error format. */
|
|
440
|
-
"$.xgafv"?:
|
|
648
|
+
"$.xgafv"?:
|
|
649
|
+
string;
|
|
441
650
|
/** OAuth access token. */
|
|
442
|
-
access_token?:
|
|
651
|
+
access_token?:
|
|
652
|
+
string;
|
|
443
653
|
/** Data format for response. */
|
|
444
|
-
alt?:
|
|
654
|
+
alt?:
|
|
655
|
+
string;
|
|
445
656
|
/** JSONP */
|
|
446
|
-
callback?:
|
|
657
|
+
callback?:
|
|
658
|
+
string;
|
|
447
659
|
/** Selector specifying which fields to include in a partial response. */
|
|
448
|
-
fields?:
|
|
660
|
+
fields?:
|
|
661
|
+
string;
|
|
449
662
|
/** 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. */
|
|
450
|
-
key?:
|
|
663
|
+
key?:
|
|
664
|
+
string;
|
|
451
665
|
/** Required. A name of the certificate issuance config to describe. Must be in the format `projects/*/locations/*/certificateIssuanceConfigs/*`. */
|
|
452
|
-
name:
|
|
666
|
+
name:
|
|
667
|
+
string;
|
|
453
668
|
/** OAuth 2.0 token for the current user. */
|
|
454
|
-
oauth_token?:
|
|
669
|
+
oauth_token?:
|
|
670
|
+
string;
|
|
455
671
|
/** Returns response with indentations and line breaks. */
|
|
456
|
-
prettyPrint?:
|
|
672
|
+
prettyPrint?:
|
|
673
|
+
boolean;
|
|
457
674
|
/** 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. */
|
|
458
|
-
quotaUser?:
|
|
675
|
+
quotaUser?:
|
|
676
|
+
string;
|
|
459
677
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
460
|
-
upload_protocol?:
|
|
678
|
+
upload_protocol?:
|
|
679
|
+
string;
|
|
461
680
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
462
|
-
uploadType?:
|
|
681
|
+
uploadType?:
|
|
682
|
+
string;
|
|
463
683
|
}): Request<CertificateIssuanceConfig>;
|
|
464
684
|
/** Lists CertificateIssuanceConfigs in a given project and location. */
|
|
465
685
|
list(request?: {
|
|
466
686
|
/** V1 error format. */
|
|
467
|
-
"$.xgafv"?:
|
|
687
|
+
"$.xgafv"?:
|
|
688
|
+
string;
|
|
468
689
|
/** OAuth access token. */
|
|
469
|
-
access_token?:
|
|
690
|
+
access_token?:
|
|
691
|
+
string;
|
|
470
692
|
/** Data format for response. */
|
|
471
|
-
alt?:
|
|
693
|
+
alt?:
|
|
694
|
+
string;
|
|
472
695
|
/** JSONP */
|
|
473
|
-
callback?:
|
|
696
|
+
callback?:
|
|
697
|
+
string;
|
|
474
698
|
/** Selector specifying which fields to include in a partial response. */
|
|
475
|
-
fields?:
|
|
699
|
+
fields?:
|
|
700
|
+
string;
|
|
476
701
|
/** Filter expression to restrict the Certificates Configs returned. */
|
|
477
|
-
filter?:
|
|
702
|
+
filter?:
|
|
703
|
+
string;
|
|
478
704
|
/** 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. */
|
|
479
|
-
key?:
|
|
705
|
+
key?:
|
|
706
|
+
string;
|
|
480
707
|
/** OAuth 2.0 token for the current user. */
|
|
481
|
-
oauth_token?:
|
|
708
|
+
oauth_token?:
|
|
709
|
+
string;
|
|
482
710
|
/**
|
|
483
711
|
* A list of Certificate Config 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
|
|
484
712
|
* a suffix " desc".
|
|
485
713
|
*/
|
|
486
|
-
orderBy?:
|
|
714
|
+
orderBy?:
|
|
715
|
+
string;
|
|
487
716
|
/** Maximum number of certificate configs to return per call. */
|
|
488
|
-
pageSize?:
|
|
717
|
+
pageSize?:
|
|
718
|
+
number;
|
|
489
719
|
/**
|
|
490
720
|
* The value returned by the last `ListCertificateIssuanceConfigsResponse`. Indicates that this is a continuation of a prior `ListCertificateIssuanceConfigs` call, and that the
|
|
491
721
|
* system should return the next page of data.
|
|
492
722
|
*/
|
|
493
|
-
pageToken?:
|
|
723
|
+
pageToken?:
|
|
724
|
+
string;
|
|
494
725
|
/** Required. The project and location from which the certificate should be listed, specified in the format `projects/*/locations/*`. */
|
|
495
|
-
parent:
|
|
726
|
+
parent:
|
|
727
|
+
string;
|
|
496
728
|
/** Returns response with indentations and line breaks. */
|
|
497
|
-
prettyPrint?:
|
|
729
|
+
prettyPrint?:
|
|
730
|
+
boolean;
|
|
498
731
|
/** 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. */
|
|
499
|
-
quotaUser?:
|
|
732
|
+
quotaUser?:
|
|
733
|
+
string;
|
|
500
734
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
501
|
-
upload_protocol?:
|
|
735
|
+
upload_protocol?:
|
|
736
|
+
string;
|
|
502
737
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
503
|
-
uploadType?:
|
|
738
|
+
uploadType?:
|
|
739
|
+
string;
|
|
504
740
|
}): Request<ListCertificateIssuanceConfigsResponse>;
|
|
505
741
|
}
|
|
506
742
|
interface CertificateMapEntriesResource {
|
|
507
743
|
/** Creates a new CertificateMapEntry in a given project and location. */
|
|
508
744
|
create(request: {
|
|
509
745
|
/** V1 error format. */
|
|
510
|
-
"$.xgafv"?:
|
|
746
|
+
"$.xgafv"?:
|
|
747
|
+
string;
|
|
511
748
|
/** OAuth access token. */
|
|
512
|
-
access_token?:
|
|
749
|
+
access_token?:
|
|
750
|
+
string;
|
|
513
751
|
/** Data format for response. */
|
|
514
|
-
alt?:
|
|
752
|
+
alt?:
|
|
753
|
+
string;
|
|
515
754
|
/** JSONP */
|
|
516
|
-
callback?:
|
|
755
|
+
callback?:
|
|
756
|
+
string;
|
|
517
757
|
/** Required. A user-provided name of the certificate map entry. */
|
|
518
|
-
certificateMapEntryId?:
|
|
758
|
+
certificateMapEntryId?:
|
|
759
|
+
string;
|
|
519
760
|
/** Selector specifying which fields to include in a partial response. */
|
|
520
|
-
fields?:
|
|
761
|
+
fields?:
|
|
762
|
+
string;
|
|
521
763
|
/** 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. */
|
|
522
|
-
key?:
|
|
764
|
+
key?:
|
|
765
|
+
string;
|
|
523
766
|
/** OAuth 2.0 token for the current user. */
|
|
524
|
-
oauth_token?:
|
|
767
|
+
oauth_token?:
|
|
768
|
+
string;
|
|
525
769
|
/** Required. The parent resource of the certificate map entry. Must be in the format `projects/*/locations/*/certificateMaps/*`. */
|
|
526
|
-
parent:
|
|
770
|
+
parent:
|
|
771
|
+
string;
|
|
527
772
|
/** Returns response with indentations and line breaks. */
|
|
528
|
-
prettyPrint?:
|
|
773
|
+
prettyPrint?:
|
|
774
|
+
boolean;
|
|
529
775
|
/** 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. */
|
|
530
|
-
quotaUser?:
|
|
776
|
+
quotaUser?:
|
|
777
|
+
string;
|
|
531
778
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
532
|
-
upload_protocol?:
|
|
779
|
+
upload_protocol?:
|
|
780
|
+
string;
|
|
533
781
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
534
|
-
uploadType?:
|
|
782
|
+
uploadType?:
|
|
783
|
+
string;
|
|
535
784
|
/** Request body */
|
|
536
|
-
resource:
|
|
785
|
+
resource:
|
|
786
|
+
CertificateMapEntry;
|
|
537
787
|
}): Request<Operation>;
|
|
538
788
|
create(request: {
|
|
539
789
|
/** V1 error format. */
|
|
540
|
-
"$.xgafv"?:
|
|
790
|
+
"$.xgafv"?:
|
|
791
|
+
string;
|
|
541
792
|
/** OAuth access token. */
|
|
542
|
-
access_token?:
|
|
793
|
+
access_token?:
|
|
794
|
+
string;
|
|
543
795
|
/** Data format for response. */
|
|
544
|
-
alt?:
|
|
796
|
+
alt?:
|
|
797
|
+
string;
|
|
545
798
|
/** JSONP */
|
|
546
|
-
callback?:
|
|
799
|
+
callback?:
|
|
800
|
+
string;
|
|
547
801
|
/** Required. A user-provided name of the certificate map entry. */
|
|
548
|
-
certificateMapEntryId?:
|
|
802
|
+
certificateMapEntryId?:
|
|
803
|
+
string;
|
|
549
804
|
/** Selector specifying which fields to include in a partial response. */
|
|
550
|
-
fields?:
|
|
805
|
+
fields?:
|
|
806
|
+
string;
|
|
551
807
|
/** 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. */
|
|
552
|
-
key?:
|
|
808
|
+
key?:
|
|
809
|
+
string;
|
|
553
810
|
/** OAuth 2.0 token for the current user. */
|
|
554
|
-
oauth_token?:
|
|
811
|
+
oauth_token?:
|
|
812
|
+
string;
|
|
555
813
|
/** Required. The parent resource of the certificate map entry. Must be in the format `projects/*/locations/*/certificateMaps/*`. */
|
|
556
|
-
parent:
|
|
814
|
+
parent:
|
|
815
|
+
string;
|
|
557
816
|
/** Returns response with indentations and line breaks. */
|
|
558
|
-
prettyPrint?:
|
|
817
|
+
prettyPrint?:
|
|
818
|
+
boolean;
|
|
559
819
|
/** 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. */
|
|
560
|
-
quotaUser?:
|
|
820
|
+
quotaUser?:
|
|
821
|
+
string;
|
|
561
822
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
562
|
-
upload_protocol?:
|
|
823
|
+
upload_protocol?:
|
|
824
|
+
string;
|
|
563
825
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
564
|
-
uploadType?:
|
|
826
|
+
uploadType?:
|
|
827
|
+
string;
|
|
565
828
|
},
|
|
566
829
|
body: CertificateMapEntry): Request<Operation>;
|
|
567
830
|
/** Deletes a single CertificateMapEntry. */
|
|
568
831
|
delete(request?: {
|
|
569
832
|
/** V1 error format. */
|
|
570
|
-
"$.xgafv"?:
|
|
833
|
+
"$.xgafv"?:
|
|
834
|
+
string;
|
|
571
835
|
/** OAuth access token. */
|
|
572
|
-
access_token?:
|
|
836
|
+
access_token?:
|
|
837
|
+
string;
|
|
573
838
|
/** Data format for response. */
|
|
574
|
-
alt?:
|
|
839
|
+
alt?:
|
|
840
|
+
string;
|
|
575
841
|
/** JSONP */
|
|
576
|
-
callback?:
|
|
842
|
+
callback?:
|
|
843
|
+
string;
|
|
577
844
|
/** Selector specifying which fields to include in a partial response. */
|
|
578
|
-
fields?:
|
|
845
|
+
fields?:
|
|
846
|
+
string;
|
|
579
847
|
/** 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. */
|
|
580
|
-
key?:
|
|
848
|
+
key?:
|
|
849
|
+
string;
|
|
581
850
|
/** Required. A name of the certificate map entry to delete. Must be in the format `projects/*/locations/*/certificateMaps/*/certificateMapEntries/*`. */
|
|
582
|
-
name:
|
|
851
|
+
name:
|
|
852
|
+
string;
|
|
583
853
|
/** OAuth 2.0 token for the current user. */
|
|
584
|
-
oauth_token?:
|
|
854
|
+
oauth_token?:
|
|
855
|
+
string;
|
|
585
856
|
/** Returns response with indentations and line breaks. */
|
|
586
|
-
prettyPrint?:
|
|
857
|
+
prettyPrint?:
|
|
858
|
+
boolean;
|
|
587
859
|
/** 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. */
|
|
588
|
-
quotaUser?:
|
|
860
|
+
quotaUser?:
|
|
861
|
+
string;
|
|
589
862
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
590
|
-
upload_protocol?:
|
|
863
|
+
upload_protocol?:
|
|
864
|
+
string;
|
|
591
865
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
592
|
-
uploadType?:
|
|
866
|
+
uploadType?:
|
|
867
|
+
string;
|
|
593
868
|
}): Request<Operation>;
|
|
594
869
|
/** Gets details of a single CertificateMapEntry. */
|
|
595
870
|
get(request?: {
|
|
596
871
|
/** V1 error format. */
|
|
597
|
-
"$.xgafv"?:
|
|
872
|
+
"$.xgafv"?:
|
|
873
|
+
string;
|
|
598
874
|
/** OAuth access token. */
|
|
599
|
-
access_token?:
|
|
875
|
+
access_token?:
|
|
876
|
+
string;
|
|
600
877
|
/** Data format for response. */
|
|
601
|
-
alt?:
|
|
878
|
+
alt?:
|
|
879
|
+
string;
|
|
602
880
|
/** JSONP */
|
|
603
|
-
callback?:
|
|
881
|
+
callback?:
|
|
882
|
+
string;
|
|
604
883
|
/** Selector specifying which fields to include in a partial response. */
|
|
605
|
-
fields?:
|
|
884
|
+
fields?:
|
|
885
|
+
string;
|
|
606
886
|
/** 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. */
|
|
607
|
-
key?:
|
|
887
|
+
key?:
|
|
888
|
+
string;
|
|
608
889
|
/** Required. A name of the certificate map entry to describe. Must be in the format `projects/*/locations/*/certificateMaps/*/certificateMapEntries/*`. */
|
|
609
|
-
name:
|
|
890
|
+
name:
|
|
891
|
+
string;
|
|
610
892
|
/** OAuth 2.0 token for the current user. */
|
|
611
|
-
oauth_token?:
|
|
893
|
+
oauth_token?:
|
|
894
|
+
string;
|
|
612
895
|
/** Returns response with indentations and line breaks. */
|
|
613
|
-
prettyPrint?:
|
|
896
|
+
prettyPrint?:
|
|
897
|
+
boolean;
|
|
614
898
|
/** 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. */
|
|
615
|
-
quotaUser?:
|
|
899
|
+
quotaUser?:
|
|
900
|
+
string;
|
|
616
901
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
617
|
-
upload_protocol?:
|
|
902
|
+
upload_protocol?:
|
|
903
|
+
string;
|
|
618
904
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
619
|
-
uploadType?:
|
|
905
|
+
uploadType?:
|
|
906
|
+
string;
|
|
620
907
|
}): Request<CertificateMapEntry>;
|
|
621
908
|
/** Lists CertificateMapEntries in a given project and location. */
|
|
622
909
|
list(request?: {
|
|
623
910
|
/** V1 error format. */
|
|
624
|
-
"$.xgafv"?:
|
|
911
|
+
"$.xgafv"?:
|
|
912
|
+
string;
|
|
625
913
|
/** OAuth access token. */
|
|
626
|
-
access_token?:
|
|
914
|
+
access_token?:
|
|
915
|
+
string;
|
|
627
916
|
/** Data format for response. */
|
|
628
|
-
alt?:
|
|
917
|
+
alt?:
|
|
918
|
+
string;
|
|
629
919
|
/** JSONP */
|
|
630
|
-
callback?:
|
|
920
|
+
callback?:
|
|
921
|
+
string;
|
|
631
922
|
/** Selector specifying which fields to include in a partial response. */
|
|
632
|
-
fields?:
|
|
923
|
+
fields?:
|
|
924
|
+
string;
|
|
633
925
|
/** Filter expression to restrict the returned Certificate Map Entries. */
|
|
634
|
-
filter?:
|
|
926
|
+
filter?:
|
|
927
|
+
string;
|
|
635
928
|
/** 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. */
|
|
636
|
-
key?:
|
|
929
|
+
key?:
|
|
930
|
+
string;
|
|
637
931
|
/** OAuth 2.0 token for the current user. */
|
|
638
|
-
oauth_token?:
|
|
932
|
+
oauth_token?:
|
|
933
|
+
string;
|
|
639
934
|
/**
|
|
640
935
|
* A list of Certificate Map Entry field names used to specify the order of the returned results. The default sorting order is ascending. To specify descending order for a field,
|
|
641
936
|
* add a suffix " desc".
|
|
642
937
|
*/
|
|
643
|
-
orderBy?:
|
|
938
|
+
orderBy?:
|
|
939
|
+
string;
|
|
644
940
|
/**
|
|
645
941
|
* Maximum number of certificate map entries to return. The service may return fewer than this value. If unspecified, at most 50 certificate map entries will be returned. The
|
|
646
942
|
* maximum value is 1000; values above 1000 will be coerced to 1000.
|
|
647
943
|
*/
|
|
648
|
-
pageSize?:
|
|
944
|
+
pageSize?:
|
|
945
|
+
number;
|
|
649
946
|
/**
|
|
650
947
|
* The value returned by the last `ListCertificateMapEntriesResponse`. Indicates that this is a continuation of a prior `ListCertificateMapEntries` call, and that the system should
|
|
651
948
|
* return the next page of data.
|
|
652
949
|
*/
|
|
653
|
-
pageToken?:
|
|
950
|
+
pageToken?:
|
|
951
|
+
string;
|
|
654
952
|
/**
|
|
655
953
|
* Required. The project, location and certificate map from which the certificate map entries should be listed, specified in the format
|
|
656
954
|
* `projects/*/locations/*/certificateMaps/*`.
|
|
657
955
|
*/
|
|
658
|
-
parent:
|
|
956
|
+
parent:
|
|
957
|
+
string;
|
|
659
958
|
/** Returns response with indentations and line breaks. */
|
|
660
|
-
prettyPrint?:
|
|
959
|
+
prettyPrint?:
|
|
960
|
+
boolean;
|
|
661
961
|
/** 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. */
|
|
662
|
-
quotaUser?:
|
|
962
|
+
quotaUser?:
|
|
963
|
+
string;
|
|
663
964
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
664
|
-
upload_protocol?:
|
|
965
|
+
upload_protocol?:
|
|
966
|
+
string;
|
|
665
967
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
666
|
-
uploadType?:
|
|
968
|
+
uploadType?:
|
|
969
|
+
string;
|
|
667
970
|
}): Request<ListCertificateMapEntriesResponse>;
|
|
668
971
|
/** Updates a CertificateMapEntry. */
|
|
669
972
|
patch(request: {
|
|
670
973
|
/** V1 error format. */
|
|
671
|
-
"$.xgafv"?:
|
|
974
|
+
"$.xgafv"?:
|
|
975
|
+
string;
|
|
672
976
|
/** OAuth access token. */
|
|
673
|
-
access_token?:
|
|
977
|
+
access_token?:
|
|
978
|
+
string;
|
|
674
979
|
/** Data format for response. */
|
|
675
|
-
alt?:
|
|
980
|
+
alt?:
|
|
981
|
+
string;
|
|
676
982
|
/** JSONP */
|
|
677
|
-
callback?:
|
|
983
|
+
callback?:
|
|
984
|
+
string;
|
|
678
985
|
/** Selector specifying which fields to include in a partial response. */
|
|
679
|
-
fields?:
|
|
986
|
+
fields?:
|
|
987
|
+
string;
|
|
680
988
|
/** 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. */
|
|
681
|
-
key?:
|
|
989
|
+
key?:
|
|
990
|
+
string;
|
|
682
991
|
/**
|
|
683
992
|
* A user-defined name of the Certificate Map Entry. Certificate Map Entry names must be unique globally and match pattern
|
|
684
993
|
* `projects/*/locations/*/certificateMaps/*/certificateMapEntries/*`.
|
|
685
994
|
*/
|
|
686
|
-
name:
|
|
995
|
+
name:
|
|
996
|
+
string;
|
|
687
997
|
/** OAuth 2.0 token for the current user. */
|
|
688
|
-
oauth_token?:
|
|
998
|
+
oauth_token?:
|
|
999
|
+
string;
|
|
689
1000
|
/** Returns response with indentations and line breaks. */
|
|
690
|
-
prettyPrint?:
|
|
1001
|
+
prettyPrint?:
|
|
1002
|
+
boolean;
|
|
691
1003
|
/** 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. */
|
|
692
|
-
quotaUser?:
|
|
1004
|
+
quotaUser?:
|
|
1005
|
+
string;
|
|
693
1006
|
/** Required. The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask. */
|
|
694
|
-
updateMask?:
|
|
1007
|
+
updateMask?:
|
|
1008
|
+
string;
|
|
695
1009
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
696
|
-
upload_protocol?:
|
|
1010
|
+
upload_protocol?:
|
|
1011
|
+
string;
|
|
697
1012
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
698
|
-
uploadType?:
|
|
1013
|
+
uploadType?:
|
|
1014
|
+
string;
|
|
699
1015
|
/** Request body */
|
|
700
|
-
resource:
|
|
1016
|
+
resource:
|
|
1017
|
+
CertificateMapEntry;
|
|
701
1018
|
}): Request<Operation>;
|
|
702
1019
|
patch(request: {
|
|
703
1020
|
/** V1 error format. */
|
|
704
|
-
"$.xgafv"?:
|
|
1021
|
+
"$.xgafv"?:
|
|
1022
|
+
string;
|
|
705
1023
|
/** OAuth access token. */
|
|
706
|
-
access_token?:
|
|
1024
|
+
access_token?:
|
|
1025
|
+
string;
|
|
707
1026
|
/** Data format for response. */
|
|
708
|
-
alt?:
|
|
1027
|
+
alt?:
|
|
1028
|
+
string;
|
|
709
1029
|
/** JSONP */
|
|
710
|
-
callback?:
|
|
1030
|
+
callback?:
|
|
1031
|
+
string;
|
|
711
1032
|
/** Selector specifying which fields to include in a partial response. */
|
|
712
|
-
fields?:
|
|
1033
|
+
fields?:
|
|
1034
|
+
string;
|
|
713
1035
|
/** 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. */
|
|
714
|
-
key?:
|
|
1036
|
+
key?:
|
|
1037
|
+
string;
|
|
715
1038
|
/**
|
|
716
1039
|
* A user-defined name of the Certificate Map Entry. Certificate Map Entry names must be unique globally and match pattern
|
|
717
1040
|
* `projects/*/locations/*/certificateMaps/*/certificateMapEntries/*`.
|
|
718
1041
|
*/
|
|
719
|
-
name:
|
|
1042
|
+
name:
|
|
1043
|
+
string;
|
|
720
1044
|
/** OAuth 2.0 token for the current user. */
|
|
721
|
-
oauth_token?:
|
|
1045
|
+
oauth_token?:
|
|
1046
|
+
string;
|
|
722
1047
|
/** Returns response with indentations and line breaks. */
|
|
723
|
-
prettyPrint?:
|
|
1048
|
+
prettyPrint?:
|
|
1049
|
+
boolean;
|
|
724
1050
|
/** 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. */
|
|
725
|
-
quotaUser?:
|
|
1051
|
+
quotaUser?:
|
|
1052
|
+
string;
|
|
726
1053
|
/** Required. The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask. */
|
|
727
|
-
updateMask?:
|
|
1054
|
+
updateMask?:
|
|
1055
|
+
string;
|
|
728
1056
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
729
|
-
upload_protocol?:
|
|
1057
|
+
upload_protocol?:
|
|
1058
|
+
string;
|
|
730
1059
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
731
|
-
uploadType?:
|
|
1060
|
+
uploadType?:
|
|
1061
|
+
string;
|
|
732
1062
|
},
|
|
733
1063
|
body: CertificateMapEntry): Request<Operation>;
|
|
734
1064
|
}
|
|
@@ -736,434 +1066,623 @@ declare namespace gapi.client {
|
|
|
736
1066
|
/** Creates a new CertificateMap in a given project and location. */
|
|
737
1067
|
create(request: {
|
|
738
1068
|
/** V1 error format. */
|
|
739
|
-
"$.xgafv"?:
|
|
1069
|
+
"$.xgafv"?:
|
|
1070
|
+
string;
|
|
740
1071
|
/** OAuth access token. */
|
|
741
|
-
access_token?:
|
|
1072
|
+
access_token?:
|
|
1073
|
+
string;
|
|
742
1074
|
/** Data format for response. */
|
|
743
|
-
alt?:
|
|
1075
|
+
alt?:
|
|
1076
|
+
string;
|
|
744
1077
|
/** JSONP */
|
|
745
|
-
callback?:
|
|
1078
|
+
callback?:
|
|
1079
|
+
string;
|
|
746
1080
|
/** Required. A user-provided name of the certificate map. */
|
|
747
|
-
certificateMapId?:
|
|
1081
|
+
certificateMapId?:
|
|
1082
|
+
string;
|
|
748
1083
|
/** Selector specifying which fields to include in a partial response. */
|
|
749
|
-
fields?:
|
|
1084
|
+
fields?:
|
|
1085
|
+
string;
|
|
750
1086
|
/** 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. */
|
|
751
|
-
key?:
|
|
1087
|
+
key?:
|
|
1088
|
+
string;
|
|
752
1089
|
/** OAuth 2.0 token for the current user. */
|
|
753
|
-
oauth_token?:
|
|
1090
|
+
oauth_token?:
|
|
1091
|
+
string;
|
|
754
1092
|
/** Required. The parent resource of the certificate map. Must be in the format `projects/*/locations/*`. */
|
|
755
|
-
parent:
|
|
1093
|
+
parent:
|
|
1094
|
+
string;
|
|
756
1095
|
/** Returns response with indentations and line breaks. */
|
|
757
|
-
prettyPrint?:
|
|
1096
|
+
prettyPrint?:
|
|
1097
|
+
boolean;
|
|
758
1098
|
/** 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. */
|
|
759
|
-
quotaUser?:
|
|
1099
|
+
quotaUser?:
|
|
1100
|
+
string;
|
|
760
1101
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
761
|
-
upload_protocol?:
|
|
1102
|
+
upload_protocol?:
|
|
1103
|
+
string;
|
|
762
1104
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
763
|
-
uploadType?:
|
|
1105
|
+
uploadType?:
|
|
1106
|
+
string;
|
|
764
1107
|
/** Request body */
|
|
765
|
-
resource:
|
|
1108
|
+
resource:
|
|
1109
|
+
CertificateMap;
|
|
766
1110
|
}): Request<Operation>;
|
|
767
1111
|
create(request: {
|
|
768
1112
|
/** V1 error format. */
|
|
769
|
-
"$.xgafv"?:
|
|
1113
|
+
"$.xgafv"?:
|
|
1114
|
+
string;
|
|
770
1115
|
/** OAuth access token. */
|
|
771
|
-
access_token?:
|
|
1116
|
+
access_token?:
|
|
1117
|
+
string;
|
|
772
1118
|
/** Data format for response. */
|
|
773
|
-
alt?:
|
|
1119
|
+
alt?:
|
|
1120
|
+
string;
|
|
774
1121
|
/** JSONP */
|
|
775
|
-
callback?:
|
|
1122
|
+
callback?:
|
|
1123
|
+
string;
|
|
776
1124
|
/** Required. A user-provided name of the certificate map. */
|
|
777
|
-
certificateMapId?:
|
|
1125
|
+
certificateMapId?:
|
|
1126
|
+
string;
|
|
778
1127
|
/** Selector specifying which fields to include in a partial response. */
|
|
779
|
-
fields?:
|
|
1128
|
+
fields?:
|
|
1129
|
+
string;
|
|
780
1130
|
/** 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. */
|
|
781
|
-
key?:
|
|
1131
|
+
key?:
|
|
1132
|
+
string;
|
|
782
1133
|
/** OAuth 2.0 token for the current user. */
|
|
783
|
-
oauth_token?:
|
|
1134
|
+
oauth_token?:
|
|
1135
|
+
string;
|
|
784
1136
|
/** Required. The parent resource of the certificate map. Must be in the format `projects/*/locations/*`. */
|
|
785
|
-
parent:
|
|
1137
|
+
parent:
|
|
1138
|
+
string;
|
|
786
1139
|
/** Returns response with indentations and line breaks. */
|
|
787
|
-
prettyPrint?:
|
|
1140
|
+
prettyPrint?:
|
|
1141
|
+
boolean;
|
|
788
1142
|
/** 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. */
|
|
789
|
-
quotaUser?:
|
|
1143
|
+
quotaUser?:
|
|
1144
|
+
string;
|
|
790
1145
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
791
|
-
upload_protocol?:
|
|
1146
|
+
upload_protocol?:
|
|
1147
|
+
string;
|
|
792
1148
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
793
|
-
uploadType?:
|
|
1149
|
+
uploadType?:
|
|
1150
|
+
string;
|
|
794
1151
|
},
|
|
795
1152
|
body: CertificateMap): Request<Operation>;
|
|
796
1153
|
/** Deletes a single CertificateMap. A Certificate Map can't be deleted if it contains Certificate Map Entries. Remove all the entries from the map before calling this method. */
|
|
797
1154
|
delete(request?: {
|
|
798
1155
|
/** V1 error format. */
|
|
799
|
-
"$.xgafv"?:
|
|
1156
|
+
"$.xgafv"?:
|
|
1157
|
+
string;
|
|
800
1158
|
/** OAuth access token. */
|
|
801
|
-
access_token?:
|
|
1159
|
+
access_token?:
|
|
1160
|
+
string;
|
|
802
1161
|
/** Data format for response. */
|
|
803
|
-
alt?:
|
|
1162
|
+
alt?:
|
|
1163
|
+
string;
|
|
804
1164
|
/** JSONP */
|
|
805
|
-
callback?:
|
|
1165
|
+
callback?:
|
|
1166
|
+
string;
|
|
806
1167
|
/** Selector specifying which fields to include in a partial response. */
|
|
807
|
-
fields?:
|
|
1168
|
+
fields?:
|
|
1169
|
+
string;
|
|
808
1170
|
/** 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. */
|
|
809
|
-
key?:
|
|
1171
|
+
key?:
|
|
1172
|
+
string;
|
|
810
1173
|
/** Required. A name of the certificate map to delete. Must be in the format `projects/*/locations/*/certificateMaps/*`. */
|
|
811
|
-
name:
|
|
1174
|
+
name:
|
|
1175
|
+
string;
|
|
812
1176
|
/** OAuth 2.0 token for the current user. */
|
|
813
|
-
oauth_token?:
|
|
1177
|
+
oauth_token?:
|
|
1178
|
+
string;
|
|
814
1179
|
/** Returns response with indentations and line breaks. */
|
|
815
|
-
prettyPrint?:
|
|
1180
|
+
prettyPrint?:
|
|
1181
|
+
boolean;
|
|
816
1182
|
/** 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. */
|
|
817
|
-
quotaUser?:
|
|
1183
|
+
quotaUser?:
|
|
1184
|
+
string;
|
|
818
1185
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
819
|
-
upload_protocol?:
|
|
1186
|
+
upload_protocol?:
|
|
1187
|
+
string;
|
|
820
1188
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
821
|
-
uploadType?:
|
|
1189
|
+
uploadType?:
|
|
1190
|
+
string;
|
|
822
1191
|
}): Request<Operation>;
|
|
823
1192
|
/** Gets details of a single CertificateMap. */
|
|
824
1193
|
get(request?: {
|
|
825
1194
|
/** V1 error format. */
|
|
826
|
-
"$.xgafv"?:
|
|
1195
|
+
"$.xgafv"?:
|
|
1196
|
+
string;
|
|
827
1197
|
/** OAuth access token. */
|
|
828
|
-
access_token?:
|
|
1198
|
+
access_token?:
|
|
1199
|
+
string;
|
|
829
1200
|
/** Data format for response. */
|
|
830
|
-
alt?:
|
|
1201
|
+
alt?:
|
|
1202
|
+
string;
|
|
831
1203
|
/** JSONP */
|
|
832
|
-
callback?:
|
|
1204
|
+
callback?:
|
|
1205
|
+
string;
|
|
833
1206
|
/** Selector specifying which fields to include in a partial response. */
|
|
834
|
-
fields?:
|
|
1207
|
+
fields?:
|
|
1208
|
+
string;
|
|
835
1209
|
/** 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. */
|
|
836
|
-
key?:
|
|
1210
|
+
key?:
|
|
1211
|
+
string;
|
|
837
1212
|
/** Required. A name of the certificate map to describe. Must be in the format `projects/*/locations/*/certificateMaps/*`. */
|
|
838
|
-
name:
|
|
1213
|
+
name:
|
|
1214
|
+
string;
|
|
839
1215
|
/** OAuth 2.0 token for the current user. */
|
|
840
|
-
oauth_token?:
|
|
1216
|
+
oauth_token?:
|
|
1217
|
+
string;
|
|
841
1218
|
/** Returns response with indentations and line breaks. */
|
|
842
|
-
prettyPrint?:
|
|
1219
|
+
prettyPrint?:
|
|
1220
|
+
boolean;
|
|
843
1221
|
/** 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. */
|
|
844
|
-
quotaUser?:
|
|
1222
|
+
quotaUser?:
|
|
1223
|
+
string;
|
|
845
1224
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
846
|
-
upload_protocol?:
|
|
1225
|
+
upload_protocol?:
|
|
1226
|
+
string;
|
|
847
1227
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
848
|
-
uploadType?:
|
|
1228
|
+
uploadType?:
|
|
1229
|
+
string;
|
|
849
1230
|
}): Request<CertificateMap>;
|
|
850
1231
|
/** Lists CertificateMaps in a given project and location. */
|
|
851
1232
|
list(request?: {
|
|
852
1233
|
/** V1 error format. */
|
|
853
|
-
"$.xgafv"?:
|
|
1234
|
+
"$.xgafv"?:
|
|
1235
|
+
string;
|
|
854
1236
|
/** OAuth access token. */
|
|
855
|
-
access_token?:
|
|
1237
|
+
access_token?:
|
|
1238
|
+
string;
|
|
856
1239
|
/** Data format for response. */
|
|
857
|
-
alt?:
|
|
1240
|
+
alt?:
|
|
1241
|
+
string;
|
|
858
1242
|
/** JSONP */
|
|
859
|
-
callback?:
|
|
1243
|
+
callback?:
|
|
1244
|
+
string;
|
|
860
1245
|
/** Selector specifying which fields to include in a partial response. */
|
|
861
|
-
fields?:
|
|
1246
|
+
fields?:
|
|
1247
|
+
string;
|
|
862
1248
|
/** Filter expression to restrict the Certificates Maps returned. */
|
|
863
|
-
filter?:
|
|
1249
|
+
filter?:
|
|
1250
|
+
string;
|
|
864
1251
|
/** 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. */
|
|
865
|
-
key?:
|
|
1252
|
+
key?:
|
|
1253
|
+
string;
|
|
866
1254
|
/** OAuth 2.0 token for the current user. */
|
|
867
|
-
oauth_token?:
|
|
1255
|
+
oauth_token?:
|
|
1256
|
+
string;
|
|
868
1257
|
/**
|
|
869
1258
|
* A list of Certificate Map 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
|
|
870
1259
|
* suffix " desc".
|
|
871
1260
|
*/
|
|
872
|
-
orderBy?:
|
|
1261
|
+
orderBy?:
|
|
1262
|
+
string;
|
|
873
1263
|
/** Maximum number of certificate maps to return per call. */
|
|
874
|
-
pageSize?:
|
|
1264
|
+
pageSize?:
|
|
1265
|
+
number;
|
|
875
1266
|
/**
|
|
876
1267
|
* The value returned by the last `ListCertificateMapsResponse`. Indicates that this is a continuation of a prior `ListCertificateMaps` call, and that the system should return the
|
|
877
1268
|
* next page of data.
|
|
878
1269
|
*/
|
|
879
|
-
pageToken?:
|
|
1270
|
+
pageToken?:
|
|
1271
|
+
string;
|
|
880
1272
|
/** Required. The project and location from which the certificate maps should be listed, specified in the format `projects/*/locations/*`. */
|
|
881
|
-
parent:
|
|
1273
|
+
parent:
|
|
1274
|
+
string;
|
|
882
1275
|
/** Returns response with indentations and line breaks. */
|
|
883
|
-
prettyPrint?:
|
|
1276
|
+
prettyPrint?:
|
|
1277
|
+
boolean;
|
|
884
1278
|
/** 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. */
|
|
885
|
-
quotaUser?:
|
|
1279
|
+
quotaUser?:
|
|
1280
|
+
string;
|
|
886
1281
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
887
|
-
upload_protocol?:
|
|
1282
|
+
upload_protocol?:
|
|
1283
|
+
string;
|
|
888
1284
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
889
|
-
uploadType?:
|
|
1285
|
+
uploadType?:
|
|
1286
|
+
string;
|
|
890
1287
|
}): Request<ListCertificateMapsResponse>;
|
|
891
1288
|
/** Updates a CertificateMap. */
|
|
892
1289
|
patch(request: {
|
|
893
1290
|
/** V1 error format. */
|
|
894
|
-
"$.xgafv"?:
|
|
1291
|
+
"$.xgafv"?:
|
|
1292
|
+
string;
|
|
895
1293
|
/** OAuth access token. */
|
|
896
|
-
access_token?:
|
|
1294
|
+
access_token?:
|
|
1295
|
+
string;
|
|
897
1296
|
/** Data format for response. */
|
|
898
|
-
alt?:
|
|
1297
|
+
alt?:
|
|
1298
|
+
string;
|
|
899
1299
|
/** JSONP */
|
|
900
|
-
callback?:
|
|
1300
|
+
callback?:
|
|
1301
|
+
string;
|
|
901
1302
|
/** Selector specifying which fields to include in a partial response. */
|
|
902
|
-
fields?:
|
|
1303
|
+
fields?:
|
|
1304
|
+
string;
|
|
903
1305
|
/** 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. */
|
|
904
|
-
key?:
|
|
1306
|
+
key?:
|
|
1307
|
+
string;
|
|
905
1308
|
/** A user-defined name of the Certificate Map. Certificate Map names must be unique globally and match pattern `projects/*/locations/*/certificateMaps/*`. */
|
|
906
|
-
name:
|
|
1309
|
+
name:
|
|
1310
|
+
string;
|
|
907
1311
|
/** OAuth 2.0 token for the current user. */
|
|
908
|
-
oauth_token?:
|
|
1312
|
+
oauth_token?:
|
|
1313
|
+
string;
|
|
909
1314
|
/** Returns response with indentations and line breaks. */
|
|
910
|
-
prettyPrint?:
|
|
1315
|
+
prettyPrint?:
|
|
1316
|
+
boolean;
|
|
911
1317
|
/** 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. */
|
|
912
|
-
quotaUser?:
|
|
1318
|
+
quotaUser?:
|
|
1319
|
+
string;
|
|
913
1320
|
/** Required. The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask. */
|
|
914
|
-
updateMask?:
|
|
1321
|
+
updateMask?:
|
|
1322
|
+
string;
|
|
915
1323
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
916
|
-
upload_protocol?:
|
|
1324
|
+
upload_protocol?:
|
|
1325
|
+
string;
|
|
917
1326
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
918
|
-
uploadType?:
|
|
1327
|
+
uploadType?:
|
|
1328
|
+
string;
|
|
919
1329
|
/** Request body */
|
|
920
|
-
resource:
|
|
1330
|
+
resource:
|
|
1331
|
+
CertificateMap;
|
|
921
1332
|
}): Request<Operation>;
|
|
922
1333
|
patch(request: {
|
|
923
1334
|
/** V1 error format. */
|
|
924
|
-
"$.xgafv"?:
|
|
1335
|
+
"$.xgafv"?:
|
|
1336
|
+
string;
|
|
925
1337
|
/** OAuth access token. */
|
|
926
|
-
access_token?:
|
|
1338
|
+
access_token?:
|
|
1339
|
+
string;
|
|
927
1340
|
/** Data format for response. */
|
|
928
|
-
alt?:
|
|
1341
|
+
alt?:
|
|
1342
|
+
string;
|
|
929
1343
|
/** JSONP */
|
|
930
|
-
callback?:
|
|
1344
|
+
callback?:
|
|
1345
|
+
string;
|
|
931
1346
|
/** Selector specifying which fields to include in a partial response. */
|
|
932
|
-
fields?:
|
|
1347
|
+
fields?:
|
|
1348
|
+
string;
|
|
933
1349
|
/** 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. */
|
|
934
|
-
key?:
|
|
1350
|
+
key?:
|
|
1351
|
+
string;
|
|
935
1352
|
/** A user-defined name of the Certificate Map. Certificate Map names must be unique globally and match pattern `projects/*/locations/*/certificateMaps/*`. */
|
|
936
|
-
name:
|
|
1353
|
+
name:
|
|
1354
|
+
string;
|
|
937
1355
|
/** OAuth 2.0 token for the current user. */
|
|
938
|
-
oauth_token?:
|
|
1356
|
+
oauth_token?:
|
|
1357
|
+
string;
|
|
939
1358
|
/** Returns response with indentations and line breaks. */
|
|
940
|
-
prettyPrint?:
|
|
1359
|
+
prettyPrint?:
|
|
1360
|
+
boolean;
|
|
941
1361
|
/** 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. */
|
|
942
|
-
quotaUser?:
|
|
1362
|
+
quotaUser?:
|
|
1363
|
+
string;
|
|
943
1364
|
/** Required. The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask. */
|
|
944
|
-
updateMask?:
|
|
1365
|
+
updateMask?:
|
|
1366
|
+
string;
|
|
945
1367
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
946
|
-
upload_protocol?:
|
|
1368
|
+
upload_protocol?:
|
|
1369
|
+
string;
|
|
947
1370
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
948
|
-
uploadType?:
|
|
1371
|
+
uploadType?:
|
|
1372
|
+
string;
|
|
949
1373
|
},
|
|
950
1374
|
body: CertificateMap): Request<Operation>;
|
|
951
|
-
certificateMapEntries:
|
|
1375
|
+
certificateMapEntries:
|
|
1376
|
+
CertificateMapEntriesResource;
|
|
952
1377
|
}
|
|
953
1378
|
interface CertificatesResource {
|
|
954
1379
|
/** Creates a new Certificate in a given project and location. */
|
|
955
1380
|
create(request: {
|
|
956
1381
|
/** V1 error format. */
|
|
957
|
-
"$.xgafv"?:
|
|
1382
|
+
"$.xgafv"?:
|
|
1383
|
+
string;
|
|
958
1384
|
/** OAuth access token. */
|
|
959
|
-
access_token?:
|
|
1385
|
+
access_token?:
|
|
1386
|
+
string;
|
|
960
1387
|
/** Data format for response. */
|
|
961
|
-
alt?:
|
|
1388
|
+
alt?:
|
|
1389
|
+
string;
|
|
962
1390
|
/** JSONP */
|
|
963
|
-
callback?:
|
|
1391
|
+
callback?:
|
|
1392
|
+
string;
|
|
964
1393
|
/** Required. A user-provided name of the certificate. */
|
|
965
|
-
certificateId?:
|
|
1394
|
+
certificateId?:
|
|
1395
|
+
string;
|
|
966
1396
|
/** Selector specifying which fields to include in a partial response. */
|
|
967
|
-
fields?:
|
|
1397
|
+
fields?:
|
|
1398
|
+
string;
|
|
968
1399
|
/** 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. */
|
|
969
|
-
key?:
|
|
1400
|
+
key?:
|
|
1401
|
+
string;
|
|
970
1402
|
/** OAuth 2.0 token for the current user. */
|
|
971
|
-
oauth_token?:
|
|
1403
|
+
oauth_token?:
|
|
1404
|
+
string;
|
|
972
1405
|
/** Required. The parent resource of the certificate. Must be in the format `projects/*/locations/*`. */
|
|
973
|
-
parent:
|
|
1406
|
+
parent:
|
|
1407
|
+
string;
|
|
974
1408
|
/** Returns response with indentations and line breaks. */
|
|
975
|
-
prettyPrint?:
|
|
1409
|
+
prettyPrint?:
|
|
1410
|
+
boolean;
|
|
976
1411
|
/** 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. */
|
|
977
|
-
quotaUser?:
|
|
1412
|
+
quotaUser?:
|
|
1413
|
+
string;
|
|
978
1414
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
979
|
-
upload_protocol?:
|
|
1415
|
+
upload_protocol?:
|
|
1416
|
+
string;
|
|
980
1417
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
981
|
-
uploadType?:
|
|
1418
|
+
uploadType?:
|
|
1419
|
+
string;
|
|
982
1420
|
/** Request body */
|
|
983
|
-
resource:
|
|
1421
|
+
resource:
|
|
1422
|
+
Certificate;
|
|
984
1423
|
}): Request<Operation>;
|
|
985
1424
|
create(request: {
|
|
986
1425
|
/** V1 error format. */
|
|
987
|
-
"$.xgafv"?:
|
|
1426
|
+
"$.xgafv"?:
|
|
1427
|
+
string;
|
|
988
1428
|
/** OAuth access token. */
|
|
989
|
-
access_token?:
|
|
1429
|
+
access_token?:
|
|
1430
|
+
string;
|
|
990
1431
|
/** Data format for response. */
|
|
991
|
-
alt?:
|
|
1432
|
+
alt?:
|
|
1433
|
+
string;
|
|
992
1434
|
/** JSONP */
|
|
993
|
-
callback?:
|
|
1435
|
+
callback?:
|
|
1436
|
+
string;
|
|
994
1437
|
/** Required. A user-provided name of the certificate. */
|
|
995
|
-
certificateId?:
|
|
1438
|
+
certificateId?:
|
|
1439
|
+
string;
|
|
996
1440
|
/** Selector specifying which fields to include in a partial response. */
|
|
997
|
-
fields?:
|
|
1441
|
+
fields?:
|
|
1442
|
+
string;
|
|
998
1443
|
/** 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. */
|
|
999
|
-
key?:
|
|
1444
|
+
key?:
|
|
1445
|
+
string;
|
|
1000
1446
|
/** OAuth 2.0 token for the current user. */
|
|
1001
|
-
oauth_token?:
|
|
1447
|
+
oauth_token?:
|
|
1448
|
+
string;
|
|
1002
1449
|
/** Required. The parent resource of the certificate. Must be in the format `projects/*/locations/*`. */
|
|
1003
|
-
parent:
|
|
1450
|
+
parent:
|
|
1451
|
+
string;
|
|
1004
1452
|
/** Returns response with indentations and line breaks. */
|
|
1005
|
-
prettyPrint?:
|
|
1453
|
+
prettyPrint?:
|
|
1454
|
+
boolean;
|
|
1006
1455
|
/** 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. */
|
|
1007
|
-
quotaUser?:
|
|
1456
|
+
quotaUser?:
|
|
1457
|
+
string;
|
|
1008
1458
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1009
|
-
upload_protocol?:
|
|
1459
|
+
upload_protocol?:
|
|
1460
|
+
string;
|
|
1010
1461
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1011
|
-
uploadType?:
|
|
1462
|
+
uploadType?:
|
|
1463
|
+
string;
|
|
1012
1464
|
},
|
|
1013
1465
|
body: Certificate): Request<Operation>;
|
|
1014
1466
|
/** Deletes a single Certificate. */
|
|
1015
1467
|
delete(request?: {
|
|
1016
1468
|
/** V1 error format. */
|
|
1017
|
-
"$.xgafv"?:
|
|
1469
|
+
"$.xgafv"?:
|
|
1470
|
+
string;
|
|
1018
1471
|
/** OAuth access token. */
|
|
1019
|
-
access_token?:
|
|
1472
|
+
access_token?:
|
|
1473
|
+
string;
|
|
1020
1474
|
/** Data format for response. */
|
|
1021
|
-
alt?:
|
|
1475
|
+
alt?:
|
|
1476
|
+
string;
|
|
1022
1477
|
/** JSONP */
|
|
1023
|
-
callback?:
|
|
1478
|
+
callback?:
|
|
1479
|
+
string;
|
|
1024
1480
|
/** Selector specifying which fields to include in a partial response. */
|
|
1025
|
-
fields?:
|
|
1481
|
+
fields?:
|
|
1482
|
+
string;
|
|
1026
1483
|
/** 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. */
|
|
1027
|
-
key?:
|
|
1484
|
+
key?:
|
|
1485
|
+
string;
|
|
1028
1486
|
/** Required. A name of the certificate to delete. Must be in the format `projects/*/locations/*/certificates/*`. */
|
|
1029
|
-
name:
|
|
1487
|
+
name:
|
|
1488
|
+
string;
|
|
1030
1489
|
/** OAuth 2.0 token for the current user. */
|
|
1031
|
-
oauth_token?:
|
|
1490
|
+
oauth_token?:
|
|
1491
|
+
string;
|
|
1032
1492
|
/** Returns response with indentations and line breaks. */
|
|
1033
|
-
prettyPrint?:
|
|
1493
|
+
prettyPrint?:
|
|
1494
|
+
boolean;
|
|
1034
1495
|
/** 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. */
|
|
1035
|
-
quotaUser?:
|
|
1496
|
+
quotaUser?:
|
|
1497
|
+
string;
|
|
1036
1498
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1037
|
-
upload_protocol?:
|
|
1499
|
+
upload_protocol?:
|
|
1500
|
+
string;
|
|
1038
1501
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1039
|
-
uploadType?:
|
|
1502
|
+
uploadType?:
|
|
1503
|
+
string;
|
|
1040
1504
|
}): Request<Operation>;
|
|
1041
1505
|
/** Gets details of a single Certificate. */
|
|
1042
1506
|
get(request?: {
|
|
1043
1507
|
/** V1 error format. */
|
|
1044
|
-
"$.xgafv"?:
|
|
1508
|
+
"$.xgafv"?:
|
|
1509
|
+
string;
|
|
1045
1510
|
/** OAuth access token. */
|
|
1046
|
-
access_token?:
|
|
1511
|
+
access_token?:
|
|
1512
|
+
string;
|
|
1047
1513
|
/** Data format for response. */
|
|
1048
|
-
alt?:
|
|
1514
|
+
alt?:
|
|
1515
|
+
string;
|
|
1049
1516
|
/** JSONP */
|
|
1050
|
-
callback?:
|
|
1517
|
+
callback?:
|
|
1518
|
+
string;
|
|
1051
1519
|
/** Selector specifying which fields to include in a partial response. */
|
|
1052
|
-
fields?:
|
|
1520
|
+
fields?:
|
|
1521
|
+
string;
|
|
1053
1522
|
/** 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. */
|
|
1054
|
-
key?:
|
|
1523
|
+
key?:
|
|
1524
|
+
string;
|
|
1055
1525
|
/** Required. A name of the certificate to describe. Must be in the format `projects/*/locations/*/certificates/*`. */
|
|
1056
|
-
name:
|
|
1526
|
+
name:
|
|
1527
|
+
string;
|
|
1057
1528
|
/** OAuth 2.0 token for the current user. */
|
|
1058
|
-
oauth_token?:
|
|
1529
|
+
oauth_token?:
|
|
1530
|
+
string;
|
|
1059
1531
|
/** Returns response with indentations and line breaks. */
|
|
1060
|
-
prettyPrint?:
|
|
1532
|
+
prettyPrint?:
|
|
1533
|
+
boolean;
|
|
1061
1534
|
/** 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. */
|
|
1062
|
-
quotaUser?:
|
|
1535
|
+
quotaUser?:
|
|
1536
|
+
string;
|
|
1063
1537
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1064
|
-
upload_protocol?:
|
|
1538
|
+
upload_protocol?:
|
|
1539
|
+
string;
|
|
1065
1540
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1066
|
-
uploadType?:
|
|
1541
|
+
uploadType?:
|
|
1542
|
+
string;
|
|
1067
1543
|
}): Request<Certificate>;
|
|
1068
1544
|
/** Lists Certificates in a given project and location. */
|
|
1069
1545
|
list(request?: {
|
|
1070
1546
|
/** V1 error format. */
|
|
1071
|
-
"$.xgafv"?:
|
|
1547
|
+
"$.xgafv"?:
|
|
1548
|
+
string;
|
|
1072
1549
|
/** OAuth access token. */
|
|
1073
|
-
access_token?:
|
|
1550
|
+
access_token?:
|
|
1551
|
+
string;
|
|
1074
1552
|
/** Data format for response. */
|
|
1075
|
-
alt?:
|
|
1553
|
+
alt?:
|
|
1554
|
+
string;
|
|
1076
1555
|
/** JSONP */
|
|
1077
|
-
callback?:
|
|
1556
|
+
callback?:
|
|
1557
|
+
string;
|
|
1078
1558
|
/** Selector specifying which fields to include in a partial response. */
|
|
1079
|
-
fields?:
|
|
1559
|
+
fields?:
|
|
1560
|
+
string;
|
|
1080
1561
|
/** Filter expression to restrict the Certificates returned. */
|
|
1081
|
-
filter?:
|
|
1562
|
+
filter?:
|
|
1563
|
+
string;
|
|
1082
1564
|
/** 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. */
|
|
1083
|
-
key?:
|
|
1565
|
+
key?:
|
|
1566
|
+
string;
|
|
1084
1567
|
/** OAuth 2.0 token for the current user. */
|
|
1085
|
-
oauth_token?:
|
|
1568
|
+
oauth_token?:
|
|
1569
|
+
string;
|
|
1086
1570
|
/**
|
|
1087
1571
|
* A list of Certificate 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
|
|
1088
1572
|
* suffix " desc".
|
|
1089
1573
|
*/
|
|
1090
|
-
orderBy?:
|
|
1574
|
+
orderBy?:
|
|
1575
|
+
string;
|
|
1091
1576
|
/** Maximum number of certificates to return per call. */
|
|
1092
|
-
pageSize?:
|
|
1577
|
+
pageSize?:
|
|
1578
|
+
number;
|
|
1093
1579
|
/**
|
|
1094
1580
|
* The value returned by the last `ListCertificatesResponse`. Indicates that this is a continuation of a prior `ListCertificates` call, and that the system should return the next
|
|
1095
1581
|
* page of data.
|
|
1096
1582
|
*/
|
|
1097
|
-
pageToken?:
|
|
1583
|
+
pageToken?:
|
|
1584
|
+
string;
|
|
1098
1585
|
/** Required. The project and location from which the certificate should be listed, specified in the format `projects/*/locations/*`. */
|
|
1099
|
-
parent:
|
|
1586
|
+
parent:
|
|
1587
|
+
string;
|
|
1100
1588
|
/** Returns response with indentations and line breaks. */
|
|
1101
|
-
prettyPrint?:
|
|
1589
|
+
prettyPrint?:
|
|
1590
|
+
boolean;
|
|
1102
1591
|
/** 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. */
|
|
1103
|
-
quotaUser?:
|
|
1592
|
+
quotaUser?:
|
|
1593
|
+
string;
|
|
1104
1594
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1105
|
-
upload_protocol?:
|
|
1595
|
+
upload_protocol?:
|
|
1596
|
+
string;
|
|
1106
1597
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1107
|
-
uploadType?:
|
|
1598
|
+
uploadType?:
|
|
1599
|
+
string;
|
|
1108
1600
|
}): Request<ListCertificatesResponse>;
|
|
1109
1601
|
/** Updates a Certificate. */
|
|
1110
1602
|
patch(request: {
|
|
1111
1603
|
/** V1 error format. */
|
|
1112
|
-
"$.xgafv"?:
|
|
1604
|
+
"$.xgafv"?:
|
|
1605
|
+
string;
|
|
1113
1606
|
/** OAuth access token. */
|
|
1114
|
-
access_token?:
|
|
1607
|
+
access_token?:
|
|
1608
|
+
string;
|
|
1115
1609
|
/** Data format for response. */
|
|
1116
|
-
alt?:
|
|
1610
|
+
alt?:
|
|
1611
|
+
string;
|
|
1117
1612
|
/** JSONP */
|
|
1118
|
-
callback?:
|
|
1613
|
+
callback?:
|
|
1614
|
+
string;
|
|
1119
1615
|
/** Selector specifying which fields to include in a partial response. */
|
|
1120
|
-
fields?:
|
|
1616
|
+
fields?:
|
|
1617
|
+
string;
|
|
1121
1618
|
/** 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. */
|
|
1122
|
-
key?:
|
|
1619
|
+
key?:
|
|
1620
|
+
string;
|
|
1123
1621
|
/** A user-defined name of the certificate. Certificate names must be unique globally and match pattern `projects/*/locations/*/certificates/*`. */
|
|
1124
|
-
name:
|
|
1622
|
+
name:
|
|
1623
|
+
string;
|
|
1125
1624
|
/** OAuth 2.0 token for the current user. */
|
|
1126
|
-
oauth_token?:
|
|
1625
|
+
oauth_token?:
|
|
1626
|
+
string;
|
|
1127
1627
|
/** Returns response with indentations and line breaks. */
|
|
1128
|
-
prettyPrint?:
|
|
1628
|
+
prettyPrint?:
|
|
1629
|
+
boolean;
|
|
1129
1630
|
/** 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. */
|
|
1130
|
-
quotaUser?:
|
|
1631
|
+
quotaUser?:
|
|
1632
|
+
string;
|
|
1131
1633
|
/** Required. The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask. */
|
|
1132
|
-
updateMask?:
|
|
1634
|
+
updateMask?:
|
|
1635
|
+
string;
|
|
1133
1636
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1134
|
-
upload_protocol?:
|
|
1637
|
+
upload_protocol?:
|
|
1638
|
+
string;
|
|
1135
1639
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1136
|
-
uploadType?:
|
|
1640
|
+
uploadType?:
|
|
1641
|
+
string;
|
|
1137
1642
|
/** Request body */
|
|
1138
|
-
resource:
|
|
1643
|
+
resource:
|
|
1644
|
+
Certificate;
|
|
1139
1645
|
}): Request<Operation>;
|
|
1140
1646
|
patch(request: {
|
|
1141
1647
|
/** V1 error format. */
|
|
1142
|
-
"$.xgafv"?:
|
|
1648
|
+
"$.xgafv"?:
|
|
1649
|
+
string;
|
|
1143
1650
|
/** OAuth access token. */
|
|
1144
|
-
access_token?:
|
|
1651
|
+
access_token?:
|
|
1652
|
+
string;
|
|
1145
1653
|
/** Data format for response. */
|
|
1146
|
-
alt?:
|
|
1654
|
+
alt?:
|
|
1655
|
+
string;
|
|
1147
1656
|
/** JSONP */
|
|
1148
|
-
callback?:
|
|
1657
|
+
callback?:
|
|
1658
|
+
string;
|
|
1149
1659
|
/** Selector specifying which fields to include in a partial response. */
|
|
1150
|
-
fields?:
|
|
1660
|
+
fields?:
|
|
1661
|
+
string;
|
|
1151
1662
|
/** 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. */
|
|
1152
|
-
key?:
|
|
1663
|
+
key?:
|
|
1664
|
+
string;
|
|
1153
1665
|
/** A user-defined name of the certificate. Certificate names must be unique globally and match pattern `projects/*/locations/*/certificates/*`. */
|
|
1154
|
-
name:
|
|
1666
|
+
name:
|
|
1667
|
+
string;
|
|
1155
1668
|
/** OAuth 2.0 token for the current user. */
|
|
1156
|
-
oauth_token?:
|
|
1669
|
+
oauth_token?:
|
|
1670
|
+
string;
|
|
1157
1671
|
/** Returns response with indentations and line breaks. */
|
|
1158
|
-
prettyPrint?:
|
|
1672
|
+
prettyPrint?:
|
|
1673
|
+
boolean;
|
|
1159
1674
|
/** 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. */
|
|
1160
|
-
quotaUser?:
|
|
1675
|
+
quotaUser?:
|
|
1676
|
+
string;
|
|
1161
1677
|
/** Required. The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask. */
|
|
1162
|
-
updateMask?:
|
|
1678
|
+
updateMask?:
|
|
1679
|
+
string;
|
|
1163
1680
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1164
|
-
upload_protocol?:
|
|
1681
|
+
upload_protocol?:
|
|
1682
|
+
string;
|
|
1165
1683
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1166
|
-
uploadType?:
|
|
1684
|
+
uploadType?:
|
|
1685
|
+
string;
|
|
1167
1686
|
},
|
|
1168
1687
|
body: Certificate): Request<Operation>;
|
|
1169
1688
|
}
|
|
@@ -1171,216 +1690,310 @@ declare namespace gapi.client {
|
|
|
1171
1690
|
/** Creates a new DnsAuthorization in a given project and location. */
|
|
1172
1691
|
create(request: {
|
|
1173
1692
|
/** V1 error format. */
|
|
1174
|
-
"$.xgafv"?:
|
|
1693
|
+
"$.xgafv"?:
|
|
1694
|
+
string;
|
|
1175
1695
|
/** OAuth access token. */
|
|
1176
|
-
access_token?:
|
|
1696
|
+
access_token?:
|
|
1697
|
+
string;
|
|
1177
1698
|
/** Data format for response. */
|
|
1178
|
-
alt?:
|
|
1699
|
+
alt?:
|
|
1700
|
+
string;
|
|
1179
1701
|
/** JSONP */
|
|
1180
|
-
callback?:
|
|
1702
|
+
callback?:
|
|
1703
|
+
string;
|
|
1181
1704
|
/** Required. A user-provided name of the dns authorization. */
|
|
1182
|
-
dnsAuthorizationId?:
|
|
1705
|
+
dnsAuthorizationId?:
|
|
1706
|
+
string;
|
|
1183
1707
|
/** Selector specifying which fields to include in a partial response. */
|
|
1184
|
-
fields?:
|
|
1708
|
+
fields?:
|
|
1709
|
+
string;
|
|
1185
1710
|
/** 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. */
|
|
1186
|
-
key?:
|
|
1711
|
+
key?:
|
|
1712
|
+
string;
|
|
1187
1713
|
/** OAuth 2.0 token for the current user. */
|
|
1188
|
-
oauth_token?:
|
|
1714
|
+
oauth_token?:
|
|
1715
|
+
string;
|
|
1189
1716
|
/** Required. The parent resource of the dns authorization. Must be in the format `projects/*/locations/*`. */
|
|
1190
|
-
parent:
|
|
1717
|
+
parent:
|
|
1718
|
+
string;
|
|
1191
1719
|
/** Returns response with indentations and line breaks. */
|
|
1192
|
-
prettyPrint?:
|
|
1720
|
+
prettyPrint?:
|
|
1721
|
+
boolean;
|
|
1193
1722
|
/** 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. */
|
|
1194
|
-
quotaUser?:
|
|
1723
|
+
quotaUser?:
|
|
1724
|
+
string;
|
|
1195
1725
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1196
|
-
upload_protocol?:
|
|
1726
|
+
upload_protocol?:
|
|
1727
|
+
string;
|
|
1197
1728
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1198
|
-
uploadType?:
|
|
1729
|
+
uploadType?:
|
|
1730
|
+
string;
|
|
1199
1731
|
/** Request body */
|
|
1200
|
-
resource:
|
|
1732
|
+
resource:
|
|
1733
|
+
DnsAuthorization;
|
|
1201
1734
|
}): Request<Operation>;
|
|
1202
1735
|
create(request: {
|
|
1203
1736
|
/** V1 error format. */
|
|
1204
|
-
"$.xgafv"?:
|
|
1737
|
+
"$.xgafv"?:
|
|
1738
|
+
string;
|
|
1205
1739
|
/** OAuth access token. */
|
|
1206
|
-
access_token?:
|
|
1740
|
+
access_token?:
|
|
1741
|
+
string;
|
|
1207
1742
|
/** Data format for response. */
|
|
1208
|
-
alt?:
|
|
1743
|
+
alt?:
|
|
1744
|
+
string;
|
|
1209
1745
|
/** JSONP */
|
|
1210
|
-
callback?:
|
|
1746
|
+
callback?:
|
|
1747
|
+
string;
|
|
1211
1748
|
/** Required. A user-provided name of the dns authorization. */
|
|
1212
|
-
dnsAuthorizationId?:
|
|
1749
|
+
dnsAuthorizationId?:
|
|
1750
|
+
string;
|
|
1213
1751
|
/** Selector specifying which fields to include in a partial response. */
|
|
1214
|
-
fields?:
|
|
1752
|
+
fields?:
|
|
1753
|
+
string;
|
|
1215
1754
|
/** 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. */
|
|
1216
|
-
key?:
|
|
1755
|
+
key?:
|
|
1756
|
+
string;
|
|
1217
1757
|
/** OAuth 2.0 token for the current user. */
|
|
1218
|
-
oauth_token?:
|
|
1758
|
+
oauth_token?:
|
|
1759
|
+
string;
|
|
1219
1760
|
/** Required. The parent resource of the dns authorization. Must be in the format `projects/*/locations/*`. */
|
|
1220
|
-
parent:
|
|
1761
|
+
parent:
|
|
1762
|
+
string;
|
|
1221
1763
|
/** Returns response with indentations and line breaks. */
|
|
1222
|
-
prettyPrint?:
|
|
1764
|
+
prettyPrint?:
|
|
1765
|
+
boolean;
|
|
1223
1766
|
/** 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. */
|
|
1224
|
-
quotaUser?:
|
|
1767
|
+
quotaUser?:
|
|
1768
|
+
string;
|
|
1225
1769
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1226
|
-
upload_protocol?:
|
|
1770
|
+
upload_protocol?:
|
|
1771
|
+
string;
|
|
1227
1772
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1228
|
-
uploadType?:
|
|
1773
|
+
uploadType?:
|
|
1774
|
+
string;
|
|
1229
1775
|
},
|
|
1230
1776
|
body: DnsAuthorization): Request<Operation>;
|
|
1231
1777
|
/** Deletes a single DnsAuthorization. */
|
|
1232
1778
|
delete(request?: {
|
|
1233
1779
|
/** V1 error format. */
|
|
1234
|
-
"$.xgafv"?:
|
|
1780
|
+
"$.xgafv"?:
|
|
1781
|
+
string;
|
|
1235
1782
|
/** OAuth access token. */
|
|
1236
|
-
access_token?:
|
|
1783
|
+
access_token?:
|
|
1784
|
+
string;
|
|
1237
1785
|
/** Data format for response. */
|
|
1238
|
-
alt?:
|
|
1786
|
+
alt?:
|
|
1787
|
+
string;
|
|
1239
1788
|
/** JSONP */
|
|
1240
|
-
callback?:
|
|
1789
|
+
callback?:
|
|
1790
|
+
string;
|
|
1241
1791
|
/** Selector specifying which fields to include in a partial response. */
|
|
1242
|
-
fields?:
|
|
1792
|
+
fields?:
|
|
1793
|
+
string;
|
|
1243
1794
|
/** 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. */
|
|
1244
|
-
key?:
|
|
1795
|
+
key?:
|
|
1796
|
+
string;
|
|
1245
1797
|
/** Required. A name of the dns authorization to delete. Must be in the format `projects/*/locations/*/dnsAuthorizations/*`. */
|
|
1246
|
-
name:
|
|
1798
|
+
name:
|
|
1799
|
+
string;
|
|
1247
1800
|
/** OAuth 2.0 token for the current user. */
|
|
1248
|
-
oauth_token?:
|
|
1801
|
+
oauth_token?:
|
|
1802
|
+
string;
|
|
1249
1803
|
/** Returns response with indentations and line breaks. */
|
|
1250
|
-
prettyPrint?:
|
|
1804
|
+
prettyPrint?:
|
|
1805
|
+
boolean;
|
|
1251
1806
|
/** 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. */
|
|
1252
|
-
quotaUser?:
|
|
1807
|
+
quotaUser?:
|
|
1808
|
+
string;
|
|
1253
1809
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1254
|
-
upload_protocol?:
|
|
1810
|
+
upload_protocol?:
|
|
1811
|
+
string;
|
|
1255
1812
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1256
|
-
uploadType?:
|
|
1813
|
+
uploadType?:
|
|
1814
|
+
string;
|
|
1257
1815
|
}): Request<Operation>;
|
|
1258
1816
|
/** Gets details of a single DnsAuthorization. */
|
|
1259
1817
|
get(request?: {
|
|
1260
1818
|
/** V1 error format. */
|
|
1261
|
-
"$.xgafv"?:
|
|
1819
|
+
"$.xgafv"?:
|
|
1820
|
+
string;
|
|
1262
1821
|
/** OAuth access token. */
|
|
1263
|
-
access_token?:
|
|
1822
|
+
access_token?:
|
|
1823
|
+
string;
|
|
1264
1824
|
/** Data format for response. */
|
|
1265
|
-
alt?:
|
|
1825
|
+
alt?:
|
|
1826
|
+
string;
|
|
1266
1827
|
/** JSONP */
|
|
1267
|
-
callback?:
|
|
1828
|
+
callback?:
|
|
1829
|
+
string;
|
|
1268
1830
|
/** Selector specifying which fields to include in a partial response. */
|
|
1269
|
-
fields?:
|
|
1831
|
+
fields?:
|
|
1832
|
+
string;
|
|
1270
1833
|
/** 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. */
|
|
1271
|
-
key?:
|
|
1834
|
+
key?:
|
|
1835
|
+
string;
|
|
1272
1836
|
/** Required. A name of the dns authorization to describe. Must be in the format `projects/*/locations/*/dnsAuthorizations/*`. */
|
|
1273
|
-
name:
|
|
1837
|
+
name:
|
|
1838
|
+
string;
|
|
1274
1839
|
/** OAuth 2.0 token for the current user. */
|
|
1275
|
-
oauth_token?:
|
|
1840
|
+
oauth_token?:
|
|
1841
|
+
string;
|
|
1276
1842
|
/** Returns response with indentations and line breaks. */
|
|
1277
|
-
prettyPrint?:
|
|
1843
|
+
prettyPrint?:
|
|
1844
|
+
boolean;
|
|
1278
1845
|
/** 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. */
|
|
1279
|
-
quotaUser?:
|
|
1846
|
+
quotaUser?:
|
|
1847
|
+
string;
|
|
1280
1848
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1281
|
-
upload_protocol?:
|
|
1849
|
+
upload_protocol?:
|
|
1850
|
+
string;
|
|
1282
1851
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1283
|
-
uploadType?:
|
|
1852
|
+
uploadType?:
|
|
1853
|
+
string;
|
|
1284
1854
|
}): Request<DnsAuthorization>;
|
|
1285
1855
|
/** Lists DnsAuthorizations in a given project and location. */
|
|
1286
1856
|
list(request?: {
|
|
1287
1857
|
/** V1 error format. */
|
|
1288
|
-
"$.xgafv"?:
|
|
1858
|
+
"$.xgafv"?:
|
|
1859
|
+
string;
|
|
1289
1860
|
/** OAuth access token. */
|
|
1290
|
-
access_token?:
|
|
1861
|
+
access_token?:
|
|
1862
|
+
string;
|
|
1291
1863
|
/** Data format for response. */
|
|
1292
|
-
alt?:
|
|
1864
|
+
alt?:
|
|
1865
|
+
string;
|
|
1293
1866
|
/** JSONP */
|
|
1294
|
-
callback?:
|
|
1867
|
+
callback?:
|
|
1868
|
+
string;
|
|
1295
1869
|
/** Selector specifying which fields to include in a partial response. */
|
|
1296
|
-
fields?:
|
|
1870
|
+
fields?:
|
|
1871
|
+
string;
|
|
1297
1872
|
/** Filter expression to restrict the Dns Authorizations returned. */
|
|
1298
|
-
filter?:
|
|
1873
|
+
filter?:
|
|
1874
|
+
string;
|
|
1299
1875
|
/** 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. */
|
|
1300
|
-
key?:
|
|
1876
|
+
key?:
|
|
1877
|
+
string;
|
|
1301
1878
|
/** OAuth 2.0 token for the current user. */
|
|
1302
|
-
oauth_token?:
|
|
1879
|
+
oauth_token?:
|
|
1880
|
+
string;
|
|
1303
1881
|
/**
|
|
1304
1882
|
* A list of Dns Authorization 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
|
|
1305
1883
|
* suffix " desc".
|
|
1306
1884
|
*/
|
|
1307
|
-
orderBy?:
|
|
1885
|
+
orderBy?:
|
|
1886
|
+
string;
|
|
1308
1887
|
/** Maximum number of dns authorizations to return per call. */
|
|
1309
|
-
pageSize?:
|
|
1888
|
+
pageSize?:
|
|
1889
|
+
number;
|
|
1310
1890
|
/**
|
|
1311
1891
|
* The value returned by the last `ListDnsAuthorizationsResponse`. Indicates that this is a continuation of a prior `ListDnsAuthorizations` call, and that the system should return
|
|
1312
1892
|
* the next page of data.
|
|
1313
1893
|
*/
|
|
1314
|
-
pageToken?:
|
|
1894
|
+
pageToken?:
|
|
1895
|
+
string;
|
|
1315
1896
|
/** Required. The project and location from which the dns authorizations should be listed, specified in the format `projects/*/locations/*`. */
|
|
1316
|
-
parent:
|
|
1897
|
+
parent:
|
|
1898
|
+
string;
|
|
1317
1899
|
/** Returns response with indentations and line breaks. */
|
|
1318
|
-
prettyPrint?:
|
|
1900
|
+
prettyPrint?:
|
|
1901
|
+
boolean;
|
|
1319
1902
|
/** 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. */
|
|
1320
|
-
quotaUser?:
|
|
1903
|
+
quotaUser?:
|
|
1904
|
+
string;
|
|
1321
1905
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1322
|
-
upload_protocol?:
|
|
1906
|
+
upload_protocol?:
|
|
1907
|
+
string;
|
|
1323
1908
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1324
|
-
uploadType?:
|
|
1909
|
+
uploadType?:
|
|
1910
|
+
string;
|
|
1325
1911
|
}): Request<ListDnsAuthorizationsResponse>;
|
|
1326
1912
|
/** Updates a DnsAuthorization. */
|
|
1327
1913
|
patch(request: {
|
|
1328
1914
|
/** V1 error format. */
|
|
1329
|
-
"$.xgafv"?:
|
|
1915
|
+
"$.xgafv"?:
|
|
1916
|
+
string;
|
|
1330
1917
|
/** OAuth access token. */
|
|
1331
|
-
access_token?:
|
|
1918
|
+
access_token?:
|
|
1919
|
+
string;
|
|
1332
1920
|
/** Data format for response. */
|
|
1333
|
-
alt?:
|
|
1921
|
+
alt?:
|
|
1922
|
+
string;
|
|
1334
1923
|
/** JSONP */
|
|
1335
|
-
callback?:
|
|
1924
|
+
callback?:
|
|
1925
|
+
string;
|
|
1336
1926
|
/** Selector specifying which fields to include in a partial response. */
|
|
1337
|
-
fields?:
|
|
1927
|
+
fields?:
|
|
1928
|
+
string;
|
|
1338
1929
|
/** 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. */
|
|
1339
|
-
key?:
|
|
1930
|
+
key?:
|
|
1931
|
+
string;
|
|
1340
1932
|
/** A user-defined name of the dns authorization. DnsAuthorization names must be unique globally and match pattern `projects/*/locations/*/dnsAuthorizations/*`. */
|
|
1341
|
-
name:
|
|
1933
|
+
name:
|
|
1934
|
+
string;
|
|
1342
1935
|
/** OAuth 2.0 token for the current user. */
|
|
1343
|
-
oauth_token?:
|
|
1936
|
+
oauth_token?:
|
|
1937
|
+
string;
|
|
1344
1938
|
/** Returns response with indentations and line breaks. */
|
|
1345
|
-
prettyPrint?:
|
|
1939
|
+
prettyPrint?:
|
|
1940
|
+
boolean;
|
|
1346
1941
|
/** 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. */
|
|
1347
|
-
quotaUser?:
|
|
1942
|
+
quotaUser?:
|
|
1943
|
+
string;
|
|
1348
1944
|
/** Required. The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask. */
|
|
1349
|
-
updateMask?:
|
|
1945
|
+
updateMask?:
|
|
1946
|
+
string;
|
|
1350
1947
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1351
|
-
upload_protocol?:
|
|
1948
|
+
upload_protocol?:
|
|
1949
|
+
string;
|
|
1352
1950
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1353
|
-
uploadType?:
|
|
1951
|
+
uploadType?:
|
|
1952
|
+
string;
|
|
1354
1953
|
/** Request body */
|
|
1355
|
-
resource:
|
|
1954
|
+
resource:
|
|
1955
|
+
DnsAuthorization;
|
|
1356
1956
|
}): Request<Operation>;
|
|
1357
1957
|
patch(request: {
|
|
1358
1958
|
/** V1 error format. */
|
|
1359
|
-
"$.xgafv"?:
|
|
1959
|
+
"$.xgafv"?:
|
|
1960
|
+
string;
|
|
1360
1961
|
/** OAuth access token. */
|
|
1361
|
-
access_token?:
|
|
1962
|
+
access_token?:
|
|
1963
|
+
string;
|
|
1362
1964
|
/** Data format for response. */
|
|
1363
|
-
alt?:
|
|
1965
|
+
alt?:
|
|
1966
|
+
string;
|
|
1364
1967
|
/** JSONP */
|
|
1365
|
-
callback?:
|
|
1968
|
+
callback?:
|
|
1969
|
+
string;
|
|
1366
1970
|
/** Selector specifying which fields to include in a partial response. */
|
|
1367
|
-
fields?:
|
|
1971
|
+
fields?:
|
|
1972
|
+
string;
|
|
1368
1973
|
/** 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. */
|
|
1369
|
-
key?:
|
|
1974
|
+
key?:
|
|
1975
|
+
string;
|
|
1370
1976
|
/** A user-defined name of the dns authorization. DnsAuthorization names must be unique globally and match pattern `projects/*/locations/*/dnsAuthorizations/*`. */
|
|
1371
|
-
name:
|
|
1977
|
+
name:
|
|
1978
|
+
string;
|
|
1372
1979
|
/** OAuth 2.0 token for the current user. */
|
|
1373
|
-
oauth_token?:
|
|
1980
|
+
oauth_token?:
|
|
1981
|
+
string;
|
|
1374
1982
|
/** Returns response with indentations and line breaks. */
|
|
1375
|
-
prettyPrint?:
|
|
1983
|
+
prettyPrint?:
|
|
1984
|
+
boolean;
|
|
1376
1985
|
/** 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. */
|
|
1377
|
-
quotaUser?:
|
|
1986
|
+
quotaUser?:
|
|
1987
|
+
string;
|
|
1378
1988
|
/** Required. The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask. */
|
|
1379
|
-
updateMask?:
|
|
1989
|
+
updateMask?:
|
|
1990
|
+
string;
|
|
1380
1991
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1381
|
-
upload_protocol?:
|
|
1992
|
+
upload_protocol?:
|
|
1993
|
+
string;
|
|
1382
1994
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1383
|
-
uploadType?:
|
|
1995
|
+
uploadType?:
|
|
1996
|
+
string;
|
|
1384
1997
|
},
|
|
1385
1998
|
body: DnsAuthorization): Request<Operation>;
|
|
1386
1999
|
}
|
|
@@ -1393,57 +2006,82 @@ declare namespace gapi.client {
|
|
|
1393
2006
|
*/
|
|
1394
2007
|
cancel(request: {
|
|
1395
2008
|
/** V1 error format. */
|
|
1396
|
-
"$.xgafv"?:
|
|
2009
|
+
"$.xgafv"?:
|
|
2010
|
+
string;
|
|
1397
2011
|
/** OAuth access token. */
|
|
1398
|
-
access_token?:
|
|
2012
|
+
access_token?:
|
|
2013
|
+
string;
|
|
1399
2014
|
/** Data format for response. */
|
|
1400
|
-
alt?:
|
|
2015
|
+
alt?:
|
|
2016
|
+
string;
|
|
1401
2017
|
/** JSONP */
|
|
1402
|
-
callback?:
|
|
2018
|
+
callback?:
|
|
2019
|
+
string;
|
|
1403
2020
|
/** Selector specifying which fields to include in a partial response. */
|
|
1404
|
-
fields?:
|
|
2021
|
+
fields?:
|
|
2022
|
+
string;
|
|
1405
2023
|
/** 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. */
|
|
1406
|
-
key?:
|
|
2024
|
+
key?:
|
|
2025
|
+
string;
|
|
1407
2026
|
/** The name of the operation resource to be cancelled. */
|
|
1408
|
-
name:
|
|
2027
|
+
name:
|
|
2028
|
+
string;
|
|
1409
2029
|
/** OAuth 2.0 token for the current user. */
|
|
1410
|
-
oauth_token?:
|
|
2030
|
+
oauth_token?:
|
|
2031
|
+
string;
|
|
1411
2032
|
/** Returns response with indentations and line breaks. */
|
|
1412
|
-
prettyPrint?:
|
|
2033
|
+
prettyPrint?:
|
|
2034
|
+
boolean;
|
|
1413
2035
|
/** 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. */
|
|
1414
|
-
quotaUser?:
|
|
2036
|
+
quotaUser?:
|
|
2037
|
+
string;
|
|
1415
2038
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1416
|
-
upload_protocol?:
|
|
2039
|
+
upload_protocol?:
|
|
2040
|
+
string;
|
|
1417
2041
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1418
|
-
uploadType?:
|
|
2042
|
+
uploadType?:
|
|
2043
|
+
string;
|
|
1419
2044
|
/** Request body */
|
|
1420
|
-
resource:
|
|
2045
|
+
resource:
|
|
2046
|
+
CancelOperationRequest;
|
|
1421
2047
|
}): Request<{}>;
|
|
1422
2048
|
cancel(request: {
|
|
1423
2049
|
/** V1 error format. */
|
|
1424
|
-
"$.xgafv"?:
|
|
2050
|
+
"$.xgafv"?:
|
|
2051
|
+
string;
|
|
1425
2052
|
/** OAuth access token. */
|
|
1426
|
-
access_token?:
|
|
2053
|
+
access_token?:
|
|
2054
|
+
string;
|
|
1427
2055
|
/** Data format for response. */
|
|
1428
|
-
alt?:
|
|
2056
|
+
alt?:
|
|
2057
|
+
string;
|
|
1429
2058
|
/** JSONP */
|
|
1430
|
-
callback?:
|
|
2059
|
+
callback?:
|
|
2060
|
+
string;
|
|
1431
2061
|
/** Selector specifying which fields to include in a partial response. */
|
|
1432
|
-
fields?:
|
|
2062
|
+
fields?:
|
|
2063
|
+
string;
|
|
1433
2064
|
/** 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. */
|
|
1434
|
-
key?:
|
|
2065
|
+
key?:
|
|
2066
|
+
string;
|
|
1435
2067
|
/** The name of the operation resource to be cancelled. */
|
|
1436
|
-
name:
|
|
2068
|
+
name:
|
|
2069
|
+
string;
|
|
1437
2070
|
/** OAuth 2.0 token for the current user. */
|
|
1438
|
-
oauth_token?:
|
|
2071
|
+
oauth_token?:
|
|
2072
|
+
string;
|
|
1439
2073
|
/** Returns response with indentations and line breaks. */
|
|
1440
|
-
prettyPrint?:
|
|
2074
|
+
prettyPrint?:
|
|
2075
|
+
boolean;
|
|
1441
2076
|
/** 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. */
|
|
1442
|
-
quotaUser?:
|
|
2077
|
+
quotaUser?:
|
|
2078
|
+
string;
|
|
1443
2079
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1444
|
-
upload_protocol?:
|
|
2080
|
+
upload_protocol?:
|
|
2081
|
+
string;
|
|
1445
2082
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1446
|
-
uploadType?:
|
|
2083
|
+
uploadType?:
|
|
2084
|
+
string;
|
|
1447
2085
|
},
|
|
1448
2086
|
body: CancelOperationRequest): Request<{}>;
|
|
1449
2087
|
/**
|
|
@@ -1452,163 +2090,551 @@ declare namespace gapi.client {
|
|
|
1452
2090
|
*/
|
|
1453
2091
|
delete(request?: {
|
|
1454
2092
|
/** V1 error format. */
|
|
1455
|
-
"$.xgafv"?:
|
|
2093
|
+
"$.xgafv"?:
|
|
2094
|
+
string;
|
|
1456
2095
|
/** OAuth access token. */
|
|
1457
|
-
access_token?:
|
|
2096
|
+
access_token?:
|
|
2097
|
+
string;
|
|
1458
2098
|
/** Data format for response. */
|
|
1459
|
-
alt?:
|
|
2099
|
+
alt?:
|
|
2100
|
+
string;
|
|
1460
2101
|
/** JSONP */
|
|
1461
|
-
callback?:
|
|
2102
|
+
callback?:
|
|
2103
|
+
string;
|
|
1462
2104
|
/** Selector specifying which fields to include in a partial response. */
|
|
1463
|
-
fields?:
|
|
2105
|
+
fields?:
|
|
2106
|
+
string;
|
|
1464
2107
|
/** 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. */
|
|
1465
|
-
key?:
|
|
2108
|
+
key?:
|
|
2109
|
+
string;
|
|
1466
2110
|
/** The name of the operation resource to be deleted. */
|
|
1467
|
-
name:
|
|
2111
|
+
name:
|
|
2112
|
+
string;
|
|
1468
2113
|
/** OAuth 2.0 token for the current user. */
|
|
1469
|
-
oauth_token?:
|
|
2114
|
+
oauth_token?:
|
|
2115
|
+
string;
|
|
1470
2116
|
/** Returns response with indentations and line breaks. */
|
|
1471
|
-
prettyPrint?:
|
|
2117
|
+
prettyPrint?:
|
|
2118
|
+
boolean;
|
|
1472
2119
|
/** 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. */
|
|
1473
|
-
quotaUser?:
|
|
2120
|
+
quotaUser?:
|
|
2121
|
+
string;
|
|
1474
2122
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1475
|
-
upload_protocol?:
|
|
2123
|
+
upload_protocol?:
|
|
2124
|
+
string;
|
|
1476
2125
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1477
|
-
uploadType?:
|
|
2126
|
+
uploadType?:
|
|
2127
|
+
string;
|
|
1478
2128
|
}): Request<{}>;
|
|
1479
2129
|
/** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
|
|
1480
2130
|
get(request?: {
|
|
1481
2131
|
/** V1 error format. */
|
|
1482
|
-
"$.xgafv"?:
|
|
2132
|
+
"$.xgafv"?:
|
|
2133
|
+
string;
|
|
1483
2134
|
/** OAuth access token. */
|
|
1484
|
-
access_token?:
|
|
2135
|
+
access_token?:
|
|
2136
|
+
string;
|
|
1485
2137
|
/** Data format for response. */
|
|
1486
|
-
alt?:
|
|
2138
|
+
alt?:
|
|
2139
|
+
string;
|
|
1487
2140
|
/** JSONP */
|
|
1488
|
-
callback?:
|
|
2141
|
+
callback?:
|
|
2142
|
+
string;
|
|
1489
2143
|
/** Selector specifying which fields to include in a partial response. */
|
|
1490
|
-
fields?:
|
|
2144
|
+
fields?:
|
|
2145
|
+
string;
|
|
1491
2146
|
/** 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. */
|
|
1492
|
-
key?:
|
|
2147
|
+
key?:
|
|
2148
|
+
string;
|
|
1493
2149
|
/** The name of the operation resource. */
|
|
1494
|
-
name:
|
|
2150
|
+
name:
|
|
2151
|
+
string;
|
|
1495
2152
|
/** OAuth 2.0 token for the current user. */
|
|
1496
|
-
oauth_token?:
|
|
2153
|
+
oauth_token?:
|
|
2154
|
+
string;
|
|
1497
2155
|
/** Returns response with indentations and line breaks. */
|
|
1498
|
-
prettyPrint?:
|
|
2156
|
+
prettyPrint?:
|
|
2157
|
+
boolean;
|
|
1499
2158
|
/** 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. */
|
|
1500
|
-
quotaUser?:
|
|
2159
|
+
quotaUser?:
|
|
2160
|
+
string;
|
|
1501
2161
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1502
|
-
upload_protocol?:
|
|
2162
|
+
upload_protocol?:
|
|
2163
|
+
string;
|
|
1503
2164
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1504
|
-
uploadType?:
|
|
2165
|
+
uploadType?:
|
|
2166
|
+
string;
|
|
1505
2167
|
}): Request<Operation>;
|
|
1506
2168
|
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
1507
2169
|
list(request?: {
|
|
1508
2170
|
/** V1 error format. */
|
|
1509
|
-
"$.xgafv"?:
|
|
2171
|
+
"$.xgafv"?:
|
|
2172
|
+
string;
|
|
1510
2173
|
/** OAuth access token. */
|
|
1511
|
-
access_token?:
|
|
2174
|
+
access_token?:
|
|
2175
|
+
string;
|
|
1512
2176
|
/** Data format for response. */
|
|
1513
|
-
alt?:
|
|
2177
|
+
alt?:
|
|
2178
|
+
string;
|
|
1514
2179
|
/** JSONP */
|
|
1515
|
-
callback?:
|
|
2180
|
+
callback?:
|
|
2181
|
+
string;
|
|
1516
2182
|
/** Selector specifying which fields to include in a partial response. */
|
|
1517
|
-
fields?:
|
|
2183
|
+
fields?:
|
|
2184
|
+
string;
|
|
1518
2185
|
/** The standard list filter. */
|
|
1519
|
-
filter?:
|
|
2186
|
+
filter?:
|
|
2187
|
+
string;
|
|
1520
2188
|
/** 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. */
|
|
1521
|
-
key?:
|
|
2189
|
+
key?:
|
|
2190
|
+
string;
|
|
1522
2191
|
/** The name of the operation's parent resource. */
|
|
1523
|
-
name:
|
|
2192
|
+
name:
|
|
2193
|
+
string;
|
|
1524
2194
|
/** OAuth 2.0 token for the current user. */
|
|
1525
|
-
oauth_token?:
|
|
2195
|
+
oauth_token?:
|
|
2196
|
+
string;
|
|
1526
2197
|
/** The standard list page size. */
|
|
1527
|
-
pageSize?:
|
|
2198
|
+
pageSize?:
|
|
2199
|
+
number;
|
|
1528
2200
|
/** The standard list page token. */
|
|
1529
|
-
pageToken?:
|
|
2201
|
+
pageToken?:
|
|
2202
|
+
string;
|
|
1530
2203
|
/** Returns response with indentations and line breaks. */
|
|
1531
|
-
prettyPrint?:
|
|
2204
|
+
prettyPrint?:
|
|
2205
|
+
boolean;
|
|
1532
2206
|
/** 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. */
|
|
1533
|
-
quotaUser?:
|
|
2207
|
+
quotaUser?:
|
|
2208
|
+
string;
|
|
1534
2209
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1535
|
-
upload_protocol?:
|
|
2210
|
+
upload_protocol?:
|
|
2211
|
+
string;
|
|
1536
2212
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1537
|
-
uploadType?:
|
|
2213
|
+
uploadType?:
|
|
2214
|
+
string;
|
|
1538
2215
|
}): Request<ListOperationsResponse>;
|
|
1539
2216
|
}
|
|
2217
|
+
interface TrustConfigsResource {
|
|
2218
|
+
/** Creates a new TrustConfig in a given project and location. */
|
|
2219
|
+
create(request: {
|
|
2220
|
+
/** V1 error format. */
|
|
2221
|
+
"$.xgafv"?:
|
|
2222
|
+
string;
|
|
2223
|
+
/** OAuth access token. */
|
|
2224
|
+
access_token?:
|
|
2225
|
+
string;
|
|
2226
|
+
/** Data format for response. */
|
|
2227
|
+
alt?:
|
|
2228
|
+
string;
|
|
2229
|
+
/** JSONP */
|
|
2230
|
+
callback?:
|
|
2231
|
+
string;
|
|
2232
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2233
|
+
fields?:
|
|
2234
|
+
string;
|
|
2235
|
+
/** 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. */
|
|
2236
|
+
key?:
|
|
2237
|
+
string;
|
|
2238
|
+
/** OAuth 2.0 token for the current user. */
|
|
2239
|
+
oauth_token?:
|
|
2240
|
+
string;
|
|
2241
|
+
/** Required. The parent resource of the TrustConfig. Must be in the format `projects/*/locations/*`. */
|
|
2242
|
+
parent:
|
|
2243
|
+
string;
|
|
2244
|
+
/** Returns response with indentations and line breaks. */
|
|
2245
|
+
prettyPrint?:
|
|
2246
|
+
boolean;
|
|
2247
|
+
/** 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. */
|
|
2248
|
+
quotaUser?:
|
|
2249
|
+
string;
|
|
2250
|
+
/** Required. A user-provided name of the TrustConfig. */
|
|
2251
|
+
trustConfigId?:
|
|
2252
|
+
string;
|
|
2253
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2254
|
+
upload_protocol?:
|
|
2255
|
+
string;
|
|
2256
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2257
|
+
uploadType?:
|
|
2258
|
+
string;
|
|
2259
|
+
/** Request body */
|
|
2260
|
+
resource:
|
|
2261
|
+
TrustConfig;
|
|
2262
|
+
}): Request<Operation>;
|
|
2263
|
+
create(request: {
|
|
2264
|
+
/** V1 error format. */
|
|
2265
|
+
"$.xgafv"?:
|
|
2266
|
+
string;
|
|
2267
|
+
/** OAuth access token. */
|
|
2268
|
+
access_token?:
|
|
2269
|
+
string;
|
|
2270
|
+
/** Data format for response. */
|
|
2271
|
+
alt?:
|
|
2272
|
+
string;
|
|
2273
|
+
/** JSONP */
|
|
2274
|
+
callback?:
|
|
2275
|
+
string;
|
|
2276
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2277
|
+
fields?:
|
|
2278
|
+
string;
|
|
2279
|
+
/** 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. */
|
|
2280
|
+
key?:
|
|
2281
|
+
string;
|
|
2282
|
+
/** OAuth 2.0 token for the current user. */
|
|
2283
|
+
oauth_token?:
|
|
2284
|
+
string;
|
|
2285
|
+
/** Required. The parent resource of the TrustConfig. Must be in the format `projects/*/locations/*`. */
|
|
2286
|
+
parent:
|
|
2287
|
+
string;
|
|
2288
|
+
/** Returns response with indentations and line breaks. */
|
|
2289
|
+
prettyPrint?:
|
|
2290
|
+
boolean;
|
|
2291
|
+
/** 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. */
|
|
2292
|
+
quotaUser?:
|
|
2293
|
+
string;
|
|
2294
|
+
/** Required. A user-provided name of the TrustConfig. */
|
|
2295
|
+
trustConfigId?:
|
|
2296
|
+
string;
|
|
2297
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2298
|
+
upload_protocol?:
|
|
2299
|
+
string;
|
|
2300
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2301
|
+
uploadType?:
|
|
2302
|
+
string;
|
|
2303
|
+
},
|
|
2304
|
+
body: TrustConfig): Request<Operation>;
|
|
2305
|
+
/** Deletes a single TrustConfig. */
|
|
2306
|
+
delete(request?: {
|
|
2307
|
+
/** V1 error format. */
|
|
2308
|
+
"$.xgafv"?:
|
|
2309
|
+
string;
|
|
2310
|
+
/** OAuth access token. */
|
|
2311
|
+
access_token?:
|
|
2312
|
+
string;
|
|
2313
|
+
/** Data format for response. */
|
|
2314
|
+
alt?:
|
|
2315
|
+
string;
|
|
2316
|
+
/** JSONP */
|
|
2317
|
+
callback?:
|
|
2318
|
+
string;
|
|
2319
|
+
/** 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. */
|
|
2320
|
+
etag?:
|
|
2321
|
+
string;
|
|
2322
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2323
|
+
fields?:
|
|
2324
|
+
string;
|
|
2325
|
+
/** 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. */
|
|
2326
|
+
key?:
|
|
2327
|
+
string;
|
|
2328
|
+
/** Required. A name of the TrustConfig to delete. Must be in the format `projects/*/locations/*/trustConfigs/*`. */
|
|
2329
|
+
name:
|
|
2330
|
+
string;
|
|
2331
|
+
/** OAuth 2.0 token for the current user. */
|
|
2332
|
+
oauth_token?:
|
|
2333
|
+
string;
|
|
2334
|
+
/** Returns response with indentations and line breaks. */
|
|
2335
|
+
prettyPrint?:
|
|
2336
|
+
boolean;
|
|
2337
|
+
/** 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. */
|
|
2338
|
+
quotaUser?:
|
|
2339
|
+
string;
|
|
2340
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2341
|
+
upload_protocol?:
|
|
2342
|
+
string;
|
|
2343
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2344
|
+
uploadType?:
|
|
2345
|
+
string;
|
|
2346
|
+
}): Request<Operation>;
|
|
2347
|
+
/** Gets details of a single TrustConfig. */
|
|
2348
|
+
get(request?: {
|
|
2349
|
+
/** V1 error format. */
|
|
2350
|
+
"$.xgafv"?:
|
|
2351
|
+
string;
|
|
2352
|
+
/** OAuth access token. */
|
|
2353
|
+
access_token?:
|
|
2354
|
+
string;
|
|
2355
|
+
/** Data format for response. */
|
|
2356
|
+
alt?:
|
|
2357
|
+
string;
|
|
2358
|
+
/** JSONP */
|
|
2359
|
+
callback?:
|
|
2360
|
+
string;
|
|
2361
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2362
|
+
fields?:
|
|
2363
|
+
string;
|
|
2364
|
+
/** 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. */
|
|
2365
|
+
key?:
|
|
2366
|
+
string;
|
|
2367
|
+
/** Required. A name of the TrustConfig to describe. Must be in the format `projects/*/locations/*/trustConfigs/*`. */
|
|
2368
|
+
name:
|
|
2369
|
+
string;
|
|
2370
|
+
/** OAuth 2.0 token for the current user. */
|
|
2371
|
+
oauth_token?:
|
|
2372
|
+
string;
|
|
2373
|
+
/** Returns response with indentations and line breaks. */
|
|
2374
|
+
prettyPrint?:
|
|
2375
|
+
boolean;
|
|
2376
|
+
/** 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. */
|
|
2377
|
+
quotaUser?:
|
|
2378
|
+
string;
|
|
2379
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2380
|
+
upload_protocol?:
|
|
2381
|
+
string;
|
|
2382
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2383
|
+
uploadType?:
|
|
2384
|
+
string;
|
|
2385
|
+
}): Request<TrustConfig>;
|
|
2386
|
+
/** Lists TrustConfigs in a given project and location. */
|
|
2387
|
+
list(request?: {
|
|
2388
|
+
/** V1 error format. */
|
|
2389
|
+
"$.xgafv"?:
|
|
2390
|
+
string;
|
|
2391
|
+
/** OAuth access token. */
|
|
2392
|
+
access_token?:
|
|
2393
|
+
string;
|
|
2394
|
+
/** Data format for response. */
|
|
2395
|
+
alt?:
|
|
2396
|
+
string;
|
|
2397
|
+
/** JSONP */
|
|
2398
|
+
callback?:
|
|
2399
|
+
string;
|
|
2400
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2401
|
+
fields?:
|
|
2402
|
+
string;
|
|
2403
|
+
/** Filter expression to restrict the TrustConfigs returned. */
|
|
2404
|
+
filter?:
|
|
2405
|
+
string;
|
|
2406
|
+
/** 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. */
|
|
2407
|
+
key?:
|
|
2408
|
+
string;
|
|
2409
|
+
/** OAuth 2.0 token for the current user. */
|
|
2410
|
+
oauth_token?:
|
|
2411
|
+
string;
|
|
2412
|
+
/**
|
|
2413
|
+
* 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
|
|
2414
|
+
* suffix " desc".
|
|
2415
|
+
*/
|
|
2416
|
+
orderBy?:
|
|
2417
|
+
string;
|
|
2418
|
+
/** Maximum number of TrustConfigs to return per call. */
|
|
2419
|
+
pageSize?:
|
|
2420
|
+
number;
|
|
2421
|
+
/**
|
|
2422
|
+
* 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
|
|
2423
|
+
* page of data.
|
|
2424
|
+
*/
|
|
2425
|
+
pageToken?:
|
|
2426
|
+
string;
|
|
2427
|
+
/** Required. The project and location from which the TrustConfigs should be listed, specified in the format `projects/*/locations/*`. */
|
|
2428
|
+
parent:
|
|
2429
|
+
string;
|
|
2430
|
+
/** Returns response with indentations and line breaks. */
|
|
2431
|
+
prettyPrint?:
|
|
2432
|
+
boolean;
|
|
2433
|
+
/** 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. */
|
|
2434
|
+
quotaUser?:
|
|
2435
|
+
string;
|
|
2436
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2437
|
+
upload_protocol?:
|
|
2438
|
+
string;
|
|
2439
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2440
|
+
uploadType?:
|
|
2441
|
+
string;
|
|
2442
|
+
}): Request<ListTrustConfigsResponse>;
|
|
2443
|
+
/** Updates a TrustConfig. */
|
|
2444
|
+
patch(request: {
|
|
2445
|
+
/** V1 error format. */
|
|
2446
|
+
"$.xgafv"?:
|
|
2447
|
+
string;
|
|
2448
|
+
/** OAuth access token. */
|
|
2449
|
+
access_token?:
|
|
2450
|
+
string;
|
|
2451
|
+
/** Data format for response. */
|
|
2452
|
+
alt?:
|
|
2453
|
+
string;
|
|
2454
|
+
/** JSONP */
|
|
2455
|
+
callback?:
|
|
2456
|
+
string;
|
|
2457
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2458
|
+
fields?:
|
|
2459
|
+
string;
|
|
2460
|
+
/** 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. */
|
|
2461
|
+
key?:
|
|
2462
|
+
string;
|
|
2463
|
+
/** A user-defined name of the trust config. TrustConfig names must be unique globally and match pattern `projects/*/locations/*/trustConfigs/*`. */
|
|
2464
|
+
name:
|
|
2465
|
+
string;
|
|
2466
|
+
/** OAuth 2.0 token for the current user. */
|
|
2467
|
+
oauth_token?:
|
|
2468
|
+
string;
|
|
2469
|
+
/** Returns response with indentations and line breaks. */
|
|
2470
|
+
prettyPrint?:
|
|
2471
|
+
boolean;
|
|
2472
|
+
/** 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. */
|
|
2473
|
+
quotaUser?:
|
|
2474
|
+
string;
|
|
2475
|
+
/** Required. The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask. */
|
|
2476
|
+
updateMask?:
|
|
2477
|
+
string;
|
|
2478
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2479
|
+
upload_protocol?:
|
|
2480
|
+
string;
|
|
2481
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2482
|
+
uploadType?:
|
|
2483
|
+
string;
|
|
2484
|
+
/** Request body */
|
|
2485
|
+
resource:
|
|
2486
|
+
TrustConfig;
|
|
2487
|
+
}): Request<Operation>;
|
|
2488
|
+
patch(request: {
|
|
2489
|
+
/** V1 error format. */
|
|
2490
|
+
"$.xgafv"?:
|
|
2491
|
+
string;
|
|
2492
|
+
/** OAuth access token. */
|
|
2493
|
+
access_token?:
|
|
2494
|
+
string;
|
|
2495
|
+
/** Data format for response. */
|
|
2496
|
+
alt?:
|
|
2497
|
+
string;
|
|
2498
|
+
/** JSONP */
|
|
2499
|
+
callback?:
|
|
2500
|
+
string;
|
|
2501
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2502
|
+
fields?:
|
|
2503
|
+
string;
|
|
2504
|
+
/** 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. */
|
|
2505
|
+
key?:
|
|
2506
|
+
string;
|
|
2507
|
+
/** A user-defined name of the trust config. TrustConfig names must be unique globally and match pattern `projects/*/locations/*/trustConfigs/*`. */
|
|
2508
|
+
name:
|
|
2509
|
+
string;
|
|
2510
|
+
/** OAuth 2.0 token for the current user. */
|
|
2511
|
+
oauth_token?:
|
|
2512
|
+
string;
|
|
2513
|
+
/** Returns response with indentations and line breaks. */
|
|
2514
|
+
prettyPrint?:
|
|
2515
|
+
boolean;
|
|
2516
|
+
/** 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. */
|
|
2517
|
+
quotaUser?:
|
|
2518
|
+
string;
|
|
2519
|
+
/** Required. The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask. */
|
|
2520
|
+
updateMask?:
|
|
2521
|
+
string;
|
|
2522
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2523
|
+
upload_protocol?:
|
|
2524
|
+
string;
|
|
2525
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2526
|
+
uploadType?:
|
|
2527
|
+
string;
|
|
2528
|
+
},
|
|
2529
|
+
body: TrustConfig): Request<Operation>;
|
|
2530
|
+
}
|
|
1540
2531
|
interface LocationsResource {
|
|
1541
2532
|
/** Gets information about a location. */
|
|
1542
2533
|
get(request?: {
|
|
1543
2534
|
/** V1 error format. */
|
|
1544
|
-
"$.xgafv"?:
|
|
2535
|
+
"$.xgafv"?:
|
|
2536
|
+
string;
|
|
1545
2537
|
/** OAuth access token. */
|
|
1546
|
-
access_token?:
|
|
2538
|
+
access_token?:
|
|
2539
|
+
string;
|
|
1547
2540
|
/** Data format for response. */
|
|
1548
|
-
alt?:
|
|
2541
|
+
alt?:
|
|
2542
|
+
string;
|
|
1549
2543
|
/** JSONP */
|
|
1550
|
-
callback?:
|
|
2544
|
+
callback?:
|
|
2545
|
+
string;
|
|
1551
2546
|
/** Selector specifying which fields to include in a partial response. */
|
|
1552
|
-
fields?:
|
|
2547
|
+
fields?:
|
|
2548
|
+
string;
|
|
1553
2549
|
/** 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. */
|
|
1554
|
-
key?:
|
|
2550
|
+
key?:
|
|
2551
|
+
string;
|
|
1555
2552
|
/** Resource name for the location. */
|
|
1556
|
-
name:
|
|
2553
|
+
name:
|
|
2554
|
+
string;
|
|
1557
2555
|
/** OAuth 2.0 token for the current user. */
|
|
1558
|
-
oauth_token?:
|
|
2556
|
+
oauth_token?:
|
|
2557
|
+
string;
|
|
1559
2558
|
/** Returns response with indentations and line breaks. */
|
|
1560
|
-
prettyPrint?:
|
|
2559
|
+
prettyPrint?:
|
|
2560
|
+
boolean;
|
|
1561
2561
|
/** 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. */
|
|
1562
|
-
quotaUser?:
|
|
2562
|
+
quotaUser?:
|
|
2563
|
+
string;
|
|
1563
2564
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1564
|
-
upload_protocol?:
|
|
2565
|
+
upload_protocol?:
|
|
2566
|
+
string;
|
|
1565
2567
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1566
|
-
uploadType?:
|
|
2568
|
+
uploadType?:
|
|
2569
|
+
string;
|
|
1567
2570
|
}): Request<Location>;
|
|
1568
2571
|
/** Lists information about the supported locations for this service. */
|
|
1569
2572
|
list(request?: {
|
|
1570
2573
|
/** V1 error format. */
|
|
1571
|
-
"$.xgafv"?:
|
|
2574
|
+
"$.xgafv"?:
|
|
2575
|
+
string;
|
|
1572
2576
|
/** OAuth access token. */
|
|
1573
|
-
access_token?:
|
|
2577
|
+
access_token?:
|
|
2578
|
+
string;
|
|
1574
2579
|
/** Data format for response. */
|
|
1575
|
-
alt?:
|
|
2580
|
+
alt?:
|
|
2581
|
+
string;
|
|
1576
2582
|
/** JSONP */
|
|
1577
|
-
callback?:
|
|
2583
|
+
callback?:
|
|
2584
|
+
string;
|
|
1578
2585
|
/** Selector specifying which fields to include in a partial response. */
|
|
1579
|
-
fields?:
|
|
2586
|
+
fields?:
|
|
2587
|
+
string;
|
|
1580
2588
|
/**
|
|
1581
2589
|
* A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in
|
|
1582
2590
|
* [AIP-160](https://google.aip.dev/160).
|
|
1583
2591
|
*/
|
|
1584
|
-
filter?:
|
|
2592
|
+
filter?:
|
|
2593
|
+
string;
|
|
1585
2594
|
/** 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. */
|
|
1586
|
-
key?:
|
|
2595
|
+
key?:
|
|
2596
|
+
string;
|
|
1587
2597
|
/** The resource that owns the locations collection, if applicable. */
|
|
1588
|
-
name:
|
|
2598
|
+
name:
|
|
2599
|
+
string;
|
|
1589
2600
|
/** OAuth 2.0 token for the current user. */
|
|
1590
|
-
oauth_token?:
|
|
2601
|
+
oauth_token?:
|
|
2602
|
+
string;
|
|
1591
2603
|
/** The maximum number of results to return. If not set, the service selects a default. */
|
|
1592
|
-
pageSize?:
|
|
2604
|
+
pageSize?:
|
|
2605
|
+
number;
|
|
1593
2606
|
/** A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page. */
|
|
1594
|
-
pageToken?:
|
|
2607
|
+
pageToken?:
|
|
2608
|
+
string;
|
|
1595
2609
|
/** Returns response with indentations and line breaks. */
|
|
1596
|
-
prettyPrint?:
|
|
2610
|
+
prettyPrint?:
|
|
2611
|
+
boolean;
|
|
1597
2612
|
/** 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. */
|
|
1598
|
-
quotaUser?:
|
|
2613
|
+
quotaUser?:
|
|
2614
|
+
string;
|
|
1599
2615
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1600
|
-
upload_protocol?:
|
|
2616
|
+
upload_protocol?:
|
|
2617
|
+
string;
|
|
1601
2618
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1602
|
-
uploadType?:
|
|
2619
|
+
uploadType?:
|
|
2620
|
+
string;
|
|
1603
2621
|
}): Request<ListLocationsResponse>;
|
|
1604
|
-
certificateIssuanceConfigs:
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
2622
|
+
certificateIssuanceConfigs:
|
|
2623
|
+
CertificateIssuanceConfigsResource;
|
|
2624
|
+
certificateMaps:
|
|
2625
|
+
CertificateMapsResource;
|
|
2626
|
+
certificates:
|
|
2627
|
+
CertificatesResource;
|
|
2628
|
+
dnsAuthorizations:
|
|
2629
|
+
DnsAuthorizationsResource;
|
|
2630
|
+
operations:
|
|
2631
|
+
OperationsResource;
|
|
2632
|
+
trustConfigs:
|
|
2633
|
+
TrustConfigsResource;
|
|
1609
2634
|
}
|
|
1610
2635
|
interface ProjectsResource {
|
|
1611
|
-
locations:
|
|
2636
|
+
locations:
|
|
2637
|
+
LocationsResource;
|
|
1612
2638
|
}
|
|
1613
2639
|
|
|
1614
2640
|
const projects: ProjectsResource;
|