@maxim_mazurok/gapi.client.appengine-v1alpha 0.0.20230417 → 0.0.20230501
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 +861 -431
- package/package.json +1 -1
- package/tests.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://appengine.googleapis.com/$discovery/rest?version=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230501
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -24,255 +24,340 @@ declare namespace gapi.client {
|
|
|
24
24
|
namespace appengine {
|
|
25
25
|
interface AuthorizedCertificate {
|
|
26
26
|
/** The SSL certificate serving the AuthorizedCertificate resource. This must be obtained independently from a certificate authority. */
|
|
27
|
-
certificateRawData?:
|
|
27
|
+
certificateRawData?:
|
|
28
|
+
CertificateRawData;
|
|
28
29
|
/** The user-specified display name of the certificate. This is not guaranteed to be unique. Example: My Certificate. */
|
|
29
|
-
displayName?:
|
|
30
|
+
displayName?:
|
|
31
|
+
string;
|
|
30
32
|
/**
|
|
31
33
|
* Aggregate count of the domain mappings with this certificate mapped. This count includes domain mappings on applications for which the user does not have VIEWER permissions.Only
|
|
32
34
|
* returned by GET or LIST requests when specifically requested by the view=FULL_CERTIFICATE option.@OutputOnly
|
|
33
35
|
*/
|
|
34
|
-
domainMappingsCount?:
|
|
36
|
+
domainMappingsCount?:
|
|
37
|
+
number;
|
|
35
38
|
/** Topmost applicable domains of this certificate. This certificate applies to these domains and their subdomains. Example: example.com.@OutputOnly */
|
|
36
|
-
domainNames?:
|
|
39
|
+
domainNames?:
|
|
40
|
+
string[];
|
|
37
41
|
/**
|
|
38
42
|
* The time when this certificate expires. To update the renewal time on this certificate, upload an SSL certificate with a different expiration time using
|
|
39
43
|
* AuthorizedCertificates.UpdateAuthorizedCertificate.@OutputOnly
|
|
40
44
|
*/
|
|
41
|
-
expireTime?:
|
|
45
|
+
expireTime?:
|
|
46
|
+
string;
|
|
42
47
|
/** Relative name of the certificate. This is a unique value autogenerated on AuthorizedCertificate resource creation. Example: 12345.@OutputOnly */
|
|
43
|
-
id?:
|
|
48
|
+
id?:
|
|
49
|
+
string;
|
|
44
50
|
/**
|
|
45
51
|
* Only applicable if this certificate is managed by App Engine. Managed certificates are tied to the lifecycle of a DomainMapping and cannot be updated or deleted via the
|
|
46
52
|
* AuthorizedCertificates API. If this certificate is manually administered by the user, this field will be empty.@OutputOnly
|
|
47
53
|
*/
|
|
48
|
-
managedCertificate?:
|
|
54
|
+
managedCertificate?:
|
|
55
|
+
ManagedCertificate;
|
|
49
56
|
/** Full path to the AuthorizedCertificate resource in the API. Example: apps/myapp/authorizedCertificates/12345.@OutputOnly */
|
|
50
|
-
name?:
|
|
57
|
+
name?:
|
|
58
|
+
string;
|
|
51
59
|
/**
|
|
52
60
|
* The full paths to user visible Domain Mapping resources that have this certificate mapped. Example: apps/myapp/domainMappings/example.com.This may not represent the full list of
|
|
53
61
|
* mapped domain mappings if the user does not have VIEWER permissions on all of the applications that have this certificate mapped. See domain_mappings_count for a complete count.Only
|
|
54
62
|
* returned by GET or LIST requests when specifically requested by the view=FULL_CERTIFICATE option.@OutputOnly
|
|
55
63
|
*/
|
|
56
|
-
visibleDomainMappings?:
|
|
64
|
+
visibleDomainMappings?:
|
|
65
|
+
string[];
|
|
57
66
|
}
|
|
58
67
|
interface AuthorizedDomain {
|
|
59
68
|
/** Fully qualified domain name of the domain authorized for use. Example: example.com. */
|
|
60
|
-
id?:
|
|
69
|
+
id?:
|
|
70
|
+
string;
|
|
61
71
|
/** Full path to the AuthorizedDomain resource in the API. Example: apps/myapp/authorizedDomains/example.com.@OutputOnly */
|
|
62
|
-
name?:
|
|
72
|
+
name?:
|
|
73
|
+
string;
|
|
63
74
|
}
|
|
64
75
|
interface CertificateRawData {
|
|
65
76
|
/**
|
|
66
77
|
* Unencrypted PEM encoded RSA private key. This field is set once on certificate creation and then encrypted. The key size must be 2048 bits or fewer. Must include the header and
|
|
67
78
|
* footer. Example: -----BEGIN RSA PRIVATE KEY----- -----END RSA PRIVATE KEY----- @InputOnly
|
|
68
79
|
*/
|
|
69
|
-
privateKey?:
|
|
80
|
+
privateKey?:
|
|
81
|
+
string;
|
|
70
82
|
/**
|
|
71
83
|
* PEM encoded x.509 public key certificate. This field is set once on certificate creation. Must include the header and footer. Example: -----BEGIN CERTIFICATE----- -----END
|
|
72
84
|
* CERTIFICATE-----
|
|
73
85
|
*/
|
|
74
|
-
publicCertificate?:
|
|
86
|
+
publicCertificate?:
|
|
87
|
+
string;
|
|
75
88
|
}
|
|
76
89
|
interface CreateVersionMetadataV1 {
|
|
77
90
|
/** The Cloud Build ID if one was created as part of the version create. @OutputOnly */
|
|
78
|
-
cloudBuildId?:
|
|
91
|
+
cloudBuildId?:
|
|
92
|
+
string;
|
|
79
93
|
}
|
|
80
94
|
interface CreateVersionMetadataV1Alpha {
|
|
81
95
|
/** The Cloud Build ID if one was created as part of the version create. @OutputOnly */
|
|
82
|
-
cloudBuildId?:
|
|
96
|
+
cloudBuildId?:
|
|
97
|
+
string;
|
|
83
98
|
}
|
|
84
99
|
interface CreateVersionMetadataV1Beta {
|
|
85
100
|
/** The Cloud Build ID if one was created as part of the version create. @OutputOnly */
|
|
86
|
-
cloudBuildId?:
|
|
101
|
+
cloudBuildId?:
|
|
102
|
+
string;
|
|
87
103
|
}
|
|
88
104
|
interface DomainMapping {
|
|
89
105
|
/** Relative name of the domain serving the application. Example: example.com. */
|
|
90
|
-
id?:
|
|
106
|
+
id?:
|
|
107
|
+
string;
|
|
91
108
|
/** Full path to the DomainMapping resource in the API. Example: apps/myapp/domainMapping/example.com.@OutputOnly */
|
|
92
|
-
name?:
|
|
109
|
+
name?:
|
|
110
|
+
string;
|
|
93
111
|
/**
|
|
94
112
|
* The resource records required to configure this domain mapping. These records must be added to the domain's DNS configuration in order to serve the application via this domain
|
|
95
113
|
* mapping.@OutputOnly
|
|
96
114
|
*/
|
|
97
|
-
resourceRecords?:
|
|
115
|
+
resourceRecords?:
|
|
116
|
+
ResourceRecord[];
|
|
98
117
|
/** SSL configuration for this domain. If unconfigured, this domain will not serve with SSL. */
|
|
99
|
-
sslSettings?:
|
|
118
|
+
sslSettings?:
|
|
119
|
+
SslSettings;
|
|
100
120
|
}
|
|
101
121
|
// tslint:disable-next-line:no-empty-interface
|
|
102
122
|
interface Empty {
|
|
103
123
|
}
|
|
104
124
|
interface GoogleAppengineV1betaLocationMetadata {
|
|
105
125
|
/** App Engine flexible environment is available in the given location.@OutputOnly */
|
|
106
|
-
flexibleEnvironmentAvailable?:
|
|
126
|
+
flexibleEnvironmentAvailable?:
|
|
127
|
+
boolean;
|
|
107
128
|
/** Output only. Search API (https://cloud.google.com/appengine/docs/standard/python/search) is available in the given location. */
|
|
108
|
-
searchApiAvailable?:
|
|
129
|
+
searchApiAvailable?:
|
|
130
|
+
boolean;
|
|
109
131
|
/** App Engine standard environment is available in the given location.@OutputOnly */
|
|
110
|
-
standardEnvironmentAvailable?:
|
|
132
|
+
standardEnvironmentAvailable?:
|
|
133
|
+
boolean;
|
|
111
134
|
}
|
|
112
135
|
interface ListAuthorizedCertificatesResponse {
|
|
113
136
|
/** The SSL certificates the user is authorized to administer. */
|
|
114
|
-
certificates?:
|
|
137
|
+
certificates?:
|
|
138
|
+
AuthorizedCertificate[];
|
|
115
139
|
/** Continuation token for fetching the next page of results. */
|
|
116
|
-
nextPageToken?:
|
|
140
|
+
nextPageToken?:
|
|
141
|
+
string;
|
|
117
142
|
}
|
|
118
143
|
interface ListAuthorizedDomainsResponse {
|
|
119
144
|
/** The authorized domains belonging to the user. */
|
|
120
|
-
domains?:
|
|
145
|
+
domains?:
|
|
146
|
+
AuthorizedDomain[];
|
|
121
147
|
/** Continuation token for fetching the next page of results. */
|
|
122
|
-
nextPageToken?:
|
|
148
|
+
nextPageToken?:
|
|
149
|
+
string;
|
|
123
150
|
}
|
|
124
151
|
interface ListDomainMappingsResponse {
|
|
125
152
|
/** The domain mappings for the application. */
|
|
126
|
-
domainMappings?:
|
|
153
|
+
domainMappings?:
|
|
154
|
+
DomainMapping[];
|
|
127
155
|
/** Continuation token for fetching the next page of results. */
|
|
128
|
-
nextPageToken?:
|
|
156
|
+
nextPageToken?:
|
|
157
|
+
string;
|
|
129
158
|
}
|
|
130
159
|
interface ListLocationsResponse {
|
|
131
160
|
/** A list of locations that matches the specified filter in the request. */
|
|
132
|
-
locations?:
|
|
161
|
+
locations?:
|
|
162
|
+
Location[];
|
|
133
163
|
/** The standard List next-page token. */
|
|
134
|
-
nextPageToken?:
|
|
164
|
+
nextPageToken?:
|
|
165
|
+
string;
|
|
135
166
|
}
|
|
136
167
|
interface ListOperationsResponse {
|
|
137
168
|
/** The standard List next-page token. */
|
|
138
|
-
nextPageToken?:
|
|
169
|
+
nextPageToken?:
|
|
170
|
+
string;
|
|
139
171
|
/** A list of operations that matches the specified filter in the request. */
|
|
140
|
-
operations?:
|
|
172
|
+
operations?:
|
|
173
|
+
Operation[];
|
|
141
174
|
}
|
|
142
175
|
interface Location {
|
|
143
176
|
/** The friendly name for this location, typically a nearby city name. For example, "Tokyo". */
|
|
144
|
-
displayName?:
|
|
177
|
+
displayName?:
|
|
178
|
+
string;
|
|
145
179
|
/** Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"} */
|
|
146
|
-
labels?:
|
|
180
|
+
labels?:
|
|
181
|
+
{ [P in string]: string };
|
|
147
182
|
/** The canonical id for this location. For example: "us-east1". */
|
|
148
|
-
locationId?:
|
|
183
|
+
locationId?:
|
|
184
|
+
string;
|
|
149
185
|
/** Service-specific metadata. For example the available capacity at the given location. */
|
|
150
|
-
metadata?:
|
|
186
|
+
metadata?:
|
|
187
|
+
{ [P in string]: any };
|
|
151
188
|
/** Resource name for the location, which may vary between implementations. For example: "projects/example-project/locations/us-east1" */
|
|
152
|
-
name?:
|
|
189
|
+
name?:
|
|
190
|
+
string;
|
|
153
191
|
}
|
|
154
192
|
interface LocationMetadata {
|
|
155
193
|
/** App Engine flexible environment is available in the given location.@OutputOnly */
|
|
156
|
-
flexibleEnvironmentAvailable?:
|
|
194
|
+
flexibleEnvironmentAvailable?:
|
|
195
|
+
boolean;
|
|
157
196
|
/** Output only. Search API (https://cloud.google.com/appengine/docs/standard/python/search) is available in the given location. */
|
|
158
|
-
searchApiAvailable?:
|
|
197
|
+
searchApiAvailable?:
|
|
198
|
+
boolean;
|
|
159
199
|
/** App Engine standard environment is available in the given location.@OutputOnly */
|
|
160
|
-
standardEnvironmentAvailable?:
|
|
200
|
+
standardEnvironmentAvailable?:
|
|
201
|
+
boolean;
|
|
161
202
|
}
|
|
162
203
|
interface ManagedCertificate {
|
|
163
204
|
/**
|
|
164
205
|
* Time at which the certificate was last renewed. The renewal process is fully managed. Certificate renewal will automatically occur before the certificate expires. Renewal errors can
|
|
165
206
|
* be tracked via ManagementStatus.@OutputOnly
|
|
166
207
|
*/
|
|
167
|
-
lastRenewalTime?:
|
|
208
|
+
lastRenewalTime?:
|
|
209
|
+
string;
|
|
168
210
|
/** Status of certificate management. Refers to the most recent certificate acquisition or renewal attempt.@OutputOnly */
|
|
169
|
-
status?:
|
|
211
|
+
status?:
|
|
212
|
+
string;
|
|
170
213
|
}
|
|
171
214
|
interface Operation {
|
|
172
215
|
/** 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. */
|
|
173
|
-
done?:
|
|
216
|
+
done?:
|
|
217
|
+
boolean;
|
|
174
218
|
/** The error result of the operation in case of failure or cancellation. */
|
|
175
|
-
error?:
|
|
219
|
+
error?:
|
|
220
|
+
Status;
|
|
176
221
|
/**
|
|
177
222
|
* 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
|
|
178
223
|
* metadata. Any method that returns a long-running operation should document the metadata type, if any.
|
|
179
224
|
*/
|
|
180
|
-
metadata?:
|
|
225
|
+
metadata?:
|
|
226
|
+
{ [P in string]: any };
|
|
181
227
|
/**
|
|
182
228
|
* 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
|
|
183
229
|
* with operations/{unique_id}.
|
|
184
230
|
*/
|
|
185
|
-
name?:
|
|
231
|
+
name?:
|
|
232
|
+
string;
|
|
186
233
|
/**
|
|
187
234
|
* 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 original
|
|
188
235
|
* 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 original method name.
|
|
189
236
|
* For example, if the original method name is TakeSnapshot(), the inferred response type is TakeSnapshotResponse.
|
|
190
237
|
*/
|
|
191
|
-
response?:
|
|
238
|
+
response?:
|
|
239
|
+
{ [P in string]: any };
|
|
192
240
|
}
|
|
193
241
|
interface OperationMetadataV1 {
|
|
194
|
-
createVersionMetadata?:
|
|
242
|
+
createVersionMetadata?:
|
|
243
|
+
CreateVersionMetadataV1;
|
|
195
244
|
/** Time that this operation completed.@OutputOnly */
|
|
196
|
-
endTime?:
|
|
245
|
+
endTime?:
|
|
246
|
+
string;
|
|
197
247
|
/** Ephemeral message that may change every time the operation is polled. @OutputOnly */
|
|
198
|
-
ephemeralMessage?:
|
|
248
|
+
ephemeralMessage?:
|
|
249
|
+
string;
|
|
199
250
|
/** Time that this operation was created.@OutputOnly */
|
|
200
|
-
insertTime?:
|
|
251
|
+
insertTime?:
|
|
252
|
+
string;
|
|
201
253
|
/** API method that initiated this operation. Example: google.appengine.v1.Versions.CreateVersion.@OutputOnly */
|
|
202
|
-
method?:
|
|
254
|
+
method?:
|
|
255
|
+
string;
|
|
203
256
|
/** Name of the resource that this operation is acting on. Example: apps/myapp/services/default.@OutputOnly */
|
|
204
|
-
target?:
|
|
257
|
+
target?:
|
|
258
|
+
string;
|
|
205
259
|
/** User who requested this operation.@OutputOnly */
|
|
206
|
-
user?:
|
|
260
|
+
user?:
|
|
261
|
+
string;
|
|
207
262
|
/** Durable messages that persist on every operation poll. @OutputOnly */
|
|
208
|
-
warning?:
|
|
263
|
+
warning?:
|
|
264
|
+
string[];
|
|
209
265
|
}
|
|
210
266
|
interface OperationMetadataV1Alpha {
|
|
211
|
-
createVersionMetadata?:
|
|
267
|
+
createVersionMetadata?:
|
|
268
|
+
CreateVersionMetadataV1Alpha;
|
|
212
269
|
/** Time that this operation completed.@OutputOnly */
|
|
213
|
-
endTime?:
|
|
270
|
+
endTime?:
|
|
271
|
+
string;
|
|
214
272
|
/** Ephemeral message that may change every time the operation is polled. @OutputOnly */
|
|
215
|
-
ephemeralMessage?:
|
|
273
|
+
ephemeralMessage?:
|
|
274
|
+
string;
|
|
216
275
|
/** Time that this operation was created.@OutputOnly */
|
|
217
|
-
insertTime?:
|
|
276
|
+
insertTime?:
|
|
277
|
+
string;
|
|
218
278
|
/** API method that initiated this operation. Example: google.appengine.v1alpha.Versions.CreateVersion.@OutputOnly */
|
|
219
|
-
method?:
|
|
279
|
+
method?:
|
|
280
|
+
string;
|
|
220
281
|
/** Name of the resource that this operation is acting on. Example: apps/myapp/services/default.@OutputOnly */
|
|
221
|
-
target?:
|
|
282
|
+
target?:
|
|
283
|
+
string;
|
|
222
284
|
/** User who requested this operation.@OutputOnly */
|
|
223
|
-
user?:
|
|
285
|
+
user?:
|
|
286
|
+
string;
|
|
224
287
|
/** Durable messages that persist on every operation poll. @OutputOnly */
|
|
225
|
-
warning?:
|
|
288
|
+
warning?:
|
|
289
|
+
string[];
|
|
226
290
|
}
|
|
227
291
|
interface OperationMetadataV1Beta {
|
|
228
|
-
createVersionMetadata?:
|
|
292
|
+
createVersionMetadata?:
|
|
293
|
+
CreateVersionMetadataV1Beta;
|
|
229
294
|
/** Time that this operation completed.@OutputOnly */
|
|
230
|
-
endTime?:
|
|
295
|
+
endTime?:
|
|
296
|
+
string;
|
|
231
297
|
/** Ephemeral message that may change every time the operation is polled. @OutputOnly */
|
|
232
|
-
ephemeralMessage?:
|
|
298
|
+
ephemeralMessage?:
|
|
299
|
+
string;
|
|
233
300
|
/** Time that this operation was created.@OutputOnly */
|
|
234
|
-
insertTime?:
|
|
301
|
+
insertTime?:
|
|
302
|
+
string;
|
|
235
303
|
/** API method that initiated this operation. Example: google.appengine.v1beta.Versions.CreateVersion.@OutputOnly */
|
|
236
|
-
method?:
|
|
304
|
+
method?:
|
|
305
|
+
string;
|
|
237
306
|
/** Name of the resource that this operation is acting on. Example: apps/myapp/services/default.@OutputOnly */
|
|
238
|
-
target?:
|
|
307
|
+
target?:
|
|
308
|
+
string;
|
|
239
309
|
/** User who requested this operation.@OutputOnly */
|
|
240
|
-
user?:
|
|
310
|
+
user?:
|
|
311
|
+
string;
|
|
241
312
|
/** Durable messages that persist on every operation poll. @OutputOnly */
|
|
242
|
-
warning?:
|
|
313
|
+
warning?:
|
|
314
|
+
string[];
|
|
243
315
|
}
|
|
244
316
|
interface ProjectEvent {
|
|
245
317
|
/** The unique ID for this project event. CLHs can use this value to dedup repeated calls. required */
|
|
246
|
-
eventId?:
|
|
247
|
-
|
|
318
|
+
eventId?:
|
|
319
|
+
string;
|
|
320
|
+
phase?:
|
|
321
|
+
string;
|
|
248
322
|
/** The projects metadata for this project. required */
|
|
249
|
-
projectMetadata?:
|
|
323
|
+
projectMetadata?:
|
|
324
|
+
ProjectsMetadata;
|
|
250
325
|
/** The state of the project that led to this event. */
|
|
251
|
-
state?:
|
|
326
|
+
state?:
|
|
327
|
+
ProjectState;
|
|
252
328
|
}
|
|
253
329
|
interface ProjectsMetadata {
|
|
254
330
|
/** The consumer project id. */
|
|
255
|
-
consumerProjectId?:
|
|
331
|
+
consumerProjectId?:
|
|
332
|
+
string;
|
|
256
333
|
/** The consumer project number. */
|
|
257
|
-
consumerProjectNumber?:
|
|
334
|
+
consumerProjectNumber?:
|
|
335
|
+
string;
|
|
258
336
|
/**
|
|
259
337
|
* The CCFE state of the consumer project. It is the same state that is communicated to the CLH during project events. Notice that this field is not set in the DB, it is only set in
|
|
260
338
|
* this proto when communicated to CLH in the side channel.
|
|
261
339
|
*/
|
|
262
|
-
consumerProjectState?:
|
|
340
|
+
consumerProjectState?:
|
|
341
|
+
string;
|
|
263
342
|
/** The service account authorized to operate on the consumer project. Note: CCFE only propagates P4SA with default tag to CLH. */
|
|
264
|
-
p4ServiceAccount?:
|
|
343
|
+
p4ServiceAccount?:
|
|
344
|
+
string;
|
|
265
345
|
/** The producer project id. */
|
|
266
|
-
producerProjectId?:
|
|
346
|
+
producerProjectId?:
|
|
347
|
+
string;
|
|
267
348
|
/** The producer project number. */
|
|
268
|
-
producerProjectNumber?:
|
|
349
|
+
producerProjectNumber?:
|
|
350
|
+
string;
|
|
269
351
|
/** The tenant project id. */
|
|
270
|
-
tenantProjectId?:
|
|
352
|
+
tenantProjectId?:
|
|
353
|
+
string;
|
|
271
354
|
/** The tenant project number. */
|
|
272
|
-
tenantProjectNumber?:
|
|
355
|
+
tenantProjectNumber?:
|
|
356
|
+
string;
|
|
273
357
|
}
|
|
274
358
|
interface ProjectState {
|
|
275
|
-
currentReasons?:
|
|
359
|
+
currentReasons?:
|
|
360
|
+
Reasons;
|
|
276
361
|
/**
|
|
277
362
|
* The previous and current reasons for a project state will be sent for a project event. CLHs that need to know the signal that caused the project event to trigger (edges) as opposed
|
|
278
363
|
* to just knowing the state can act upon differences in the previous and current reasons.Reasons will be provided for every system: service management, data governance, abuse, and
|
|
@@ -280,23 +365,32 @@ declare namespace gapi.client {
|
|
|
280
365
|
* last known set of non-unknown non-control_plane_sync reasons for the state.Reasons fields are deprecated. New tenants should only use the state field. If you must know the reason(s)
|
|
281
366
|
* behind a specific state, please consult with CCFE team first (cloud-ccfe-discuss@google.com).
|
|
282
367
|
*/
|
|
283
|
-
previousReasons?:
|
|
368
|
+
previousReasons?:
|
|
369
|
+
Reasons;
|
|
284
370
|
/** The current state of the project. This state is the culmination of all of the opinions from external systems that CCFE knows about of the project. */
|
|
285
|
-
state?:
|
|
371
|
+
state?:
|
|
372
|
+
string;
|
|
286
373
|
}
|
|
287
374
|
interface Reasons {
|
|
288
|
-
abuse?:
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
375
|
+
abuse?:
|
|
376
|
+
string;
|
|
377
|
+
billing?:
|
|
378
|
+
string;
|
|
379
|
+
dataGovernance?:
|
|
380
|
+
string;
|
|
381
|
+
serviceManagement?:
|
|
382
|
+
string;
|
|
292
383
|
}
|
|
293
384
|
interface ResourceRecord {
|
|
294
385
|
/** Relative name of the object affected by this record. Only applicable for CNAME records. Example: 'www'. */
|
|
295
|
-
name?:
|
|
386
|
+
name?:
|
|
387
|
+
string;
|
|
296
388
|
/** Data for this record. Values vary by record type, as defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1). */
|
|
297
|
-
rrdata?:
|
|
389
|
+
rrdata?:
|
|
390
|
+
string;
|
|
298
391
|
/** Resource record type. Example: AAAA. */
|
|
299
|
-
type?:
|
|
392
|
+
type?:
|
|
393
|
+
string;
|
|
300
394
|
}
|
|
301
395
|
interface SslSettings {
|
|
302
396
|
/**
|
|
@@ -304,173 +398,245 @@ declare namespace gapi.client {
|
|
|
304
398
|
* for every domain mapping. To omit SSL support or to configure SSL manually, specify no_managed_certificate on a CREATE or UPDATE request. You must be authorized to administer the
|
|
305
399
|
* AuthorizedCertificate resource to manually map it to a DomainMapping resource. Example: 12345.
|
|
306
400
|
*/
|
|
307
|
-
certificateId?:
|
|
401
|
+
certificateId?:
|
|
402
|
+
string;
|
|
308
403
|
/**
|
|
309
404
|
* Whether the mapped certificate is an App Engine managed certificate. Managed certificates are created by default with a domain mapping. To opt out, specify no_managed_certificate on
|
|
310
405
|
* a CREATE or UPDATE request.@OutputOnly
|
|
311
406
|
*/
|
|
312
|
-
isManagedCertificate?:
|
|
407
|
+
isManagedCertificate?:
|
|
408
|
+
boolean;
|
|
313
409
|
}
|
|
314
410
|
interface Status {
|
|
315
411
|
/** The status code, which should be an enum value of google.rpc.Code. */
|
|
316
|
-
code?:
|
|
412
|
+
code?:
|
|
413
|
+
number;
|
|
317
414
|
/** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
|
|
318
|
-
details?:
|
|
415
|
+
details?:
|
|
416
|
+
Array<{ [P in string]: any }>;
|
|
319
417
|
/**
|
|
320
418
|
* 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
|
|
321
419
|
* client.
|
|
322
420
|
*/
|
|
323
|
-
message?:
|
|
421
|
+
message?:
|
|
422
|
+
string;
|
|
324
423
|
}
|
|
325
424
|
interface AuthorizedCertificatesResource {
|
|
326
425
|
/** Uploads the specified SSL certificate. */
|
|
327
426
|
create(request: {
|
|
328
427
|
/** V1 error format. */
|
|
329
|
-
"$.xgafv"?:
|
|
428
|
+
"$.xgafv"?:
|
|
429
|
+
string;
|
|
330
430
|
/** OAuth access token. */
|
|
331
|
-
access_token?:
|
|
431
|
+
access_token?:
|
|
432
|
+
string;
|
|
332
433
|
/** Data format for response. */
|
|
333
|
-
alt?:
|
|
434
|
+
alt?:
|
|
435
|
+
string;
|
|
334
436
|
/** Part of `parent`. Name of the parent Application resource. Example: apps/myapp. */
|
|
335
|
-
appsId:
|
|
437
|
+
appsId:
|
|
438
|
+
string;
|
|
336
439
|
/** JSONP */
|
|
337
|
-
callback?:
|
|
440
|
+
callback?:
|
|
441
|
+
string;
|
|
338
442
|
/** Selector specifying which fields to include in a partial response. */
|
|
339
|
-
fields?:
|
|
443
|
+
fields?:
|
|
444
|
+
string;
|
|
340
445
|
/** 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. */
|
|
341
|
-
key?:
|
|
446
|
+
key?:
|
|
447
|
+
string;
|
|
342
448
|
/** OAuth 2.0 token for the current user. */
|
|
343
|
-
oauth_token?:
|
|
449
|
+
oauth_token?:
|
|
450
|
+
string;
|
|
344
451
|
/** Returns response with indentations and line breaks. */
|
|
345
|
-
prettyPrint?:
|
|
452
|
+
prettyPrint?:
|
|
453
|
+
boolean;
|
|
346
454
|
/** 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. */
|
|
347
|
-
quotaUser?:
|
|
455
|
+
quotaUser?:
|
|
456
|
+
string;
|
|
348
457
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
349
|
-
upload_protocol?:
|
|
458
|
+
upload_protocol?:
|
|
459
|
+
string;
|
|
350
460
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
351
|
-
uploadType?:
|
|
461
|
+
uploadType?:
|
|
462
|
+
string;
|
|
352
463
|
/** Request body */
|
|
353
|
-
resource:
|
|
464
|
+
resource:
|
|
465
|
+
AuthorizedCertificate;
|
|
354
466
|
}): Request<AuthorizedCertificate>;
|
|
355
467
|
create(request: {
|
|
356
468
|
/** V1 error format. */
|
|
357
|
-
"$.xgafv"?:
|
|
469
|
+
"$.xgafv"?:
|
|
470
|
+
string;
|
|
358
471
|
/** OAuth access token. */
|
|
359
|
-
access_token?:
|
|
472
|
+
access_token?:
|
|
473
|
+
string;
|
|
360
474
|
/** Data format for response. */
|
|
361
|
-
alt?:
|
|
475
|
+
alt?:
|
|
476
|
+
string;
|
|
362
477
|
/** Part of `parent`. Name of the parent Application resource. Example: apps/myapp. */
|
|
363
|
-
appsId:
|
|
478
|
+
appsId:
|
|
479
|
+
string;
|
|
364
480
|
/** JSONP */
|
|
365
|
-
callback?:
|
|
481
|
+
callback?:
|
|
482
|
+
string;
|
|
366
483
|
/** Selector specifying which fields to include in a partial response. */
|
|
367
|
-
fields?:
|
|
484
|
+
fields?:
|
|
485
|
+
string;
|
|
368
486
|
/** 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. */
|
|
369
|
-
key?:
|
|
487
|
+
key?:
|
|
488
|
+
string;
|
|
370
489
|
/** OAuth 2.0 token for the current user. */
|
|
371
|
-
oauth_token?:
|
|
490
|
+
oauth_token?:
|
|
491
|
+
string;
|
|
372
492
|
/** Returns response with indentations and line breaks. */
|
|
373
|
-
prettyPrint?:
|
|
493
|
+
prettyPrint?:
|
|
494
|
+
boolean;
|
|
374
495
|
/** 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. */
|
|
375
|
-
quotaUser?:
|
|
496
|
+
quotaUser?:
|
|
497
|
+
string;
|
|
376
498
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
377
|
-
upload_protocol?:
|
|
499
|
+
upload_protocol?:
|
|
500
|
+
string;
|
|
378
501
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
379
|
-
uploadType?:
|
|
502
|
+
uploadType?:
|
|
503
|
+
string;
|
|
380
504
|
},
|
|
381
505
|
body: AuthorizedCertificate): Request<AuthorizedCertificate>;
|
|
382
506
|
/** Deletes the specified SSL certificate. */
|
|
383
507
|
delete(request?: {
|
|
384
508
|
/** V1 error format. */
|
|
385
|
-
"$.xgafv"?:
|
|
509
|
+
"$.xgafv"?:
|
|
510
|
+
string;
|
|
386
511
|
/** OAuth access token. */
|
|
387
|
-
access_token?:
|
|
512
|
+
access_token?:
|
|
513
|
+
string;
|
|
388
514
|
/** Data format for response. */
|
|
389
|
-
alt?:
|
|
515
|
+
alt?:
|
|
516
|
+
string;
|
|
390
517
|
/** Part of `name`. Name of the resource to delete. Example: apps/myapp/authorizedCertificates/12345. */
|
|
391
|
-
appsId:
|
|
518
|
+
appsId:
|
|
519
|
+
string;
|
|
392
520
|
/** Part of `name`. See documentation of `appsId`. */
|
|
393
|
-
authorizedCertificatesId:
|
|
521
|
+
authorizedCertificatesId:
|
|
522
|
+
string;
|
|
394
523
|
/** JSONP */
|
|
395
|
-
callback?:
|
|
524
|
+
callback?:
|
|
525
|
+
string;
|
|
396
526
|
/** Selector specifying which fields to include in a partial response. */
|
|
397
|
-
fields?:
|
|
527
|
+
fields?:
|
|
528
|
+
string;
|
|
398
529
|
/** 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. */
|
|
399
|
-
key?:
|
|
530
|
+
key?:
|
|
531
|
+
string;
|
|
400
532
|
/** OAuth 2.0 token for the current user. */
|
|
401
|
-
oauth_token?:
|
|
533
|
+
oauth_token?:
|
|
534
|
+
string;
|
|
402
535
|
/** Returns response with indentations and line breaks. */
|
|
403
|
-
prettyPrint?:
|
|
536
|
+
prettyPrint?:
|
|
537
|
+
boolean;
|
|
404
538
|
/** 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. */
|
|
405
|
-
quotaUser?:
|
|
539
|
+
quotaUser?:
|
|
540
|
+
string;
|
|
406
541
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
407
|
-
upload_protocol?:
|
|
542
|
+
upload_protocol?:
|
|
543
|
+
string;
|
|
408
544
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
409
|
-
uploadType?:
|
|
545
|
+
uploadType?:
|
|
546
|
+
string;
|
|
410
547
|
}): Request<{}>;
|
|
411
548
|
/** Gets the specified SSL certificate. */
|
|
412
549
|
get(request?: {
|
|
413
550
|
/** V1 error format. */
|
|
414
|
-
"$.xgafv"?:
|
|
551
|
+
"$.xgafv"?:
|
|
552
|
+
string;
|
|
415
553
|
/** OAuth access token. */
|
|
416
|
-
access_token?:
|
|
554
|
+
access_token?:
|
|
555
|
+
string;
|
|
417
556
|
/** Data format for response. */
|
|
418
|
-
alt?:
|
|
557
|
+
alt?:
|
|
558
|
+
string;
|
|
419
559
|
/** Part of `name`. Name of the resource requested. Example: apps/myapp/authorizedCertificates/12345. */
|
|
420
|
-
appsId:
|
|
560
|
+
appsId:
|
|
561
|
+
string;
|
|
421
562
|
/** Part of `name`. See documentation of `appsId`. */
|
|
422
|
-
authorizedCertificatesId:
|
|
563
|
+
authorizedCertificatesId:
|
|
564
|
+
string;
|
|
423
565
|
/** JSONP */
|
|
424
|
-
callback?:
|
|
566
|
+
callback?:
|
|
567
|
+
string;
|
|
425
568
|
/** Selector specifying which fields to include in a partial response. */
|
|
426
|
-
fields?:
|
|
569
|
+
fields?:
|
|
570
|
+
string;
|
|
427
571
|
/** 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. */
|
|
428
|
-
key?:
|
|
572
|
+
key?:
|
|
573
|
+
string;
|
|
429
574
|
/** OAuth 2.0 token for the current user. */
|
|
430
|
-
oauth_token?:
|
|
575
|
+
oauth_token?:
|
|
576
|
+
string;
|
|
431
577
|
/** Returns response with indentations and line breaks. */
|
|
432
|
-
prettyPrint?:
|
|
578
|
+
prettyPrint?:
|
|
579
|
+
boolean;
|
|
433
580
|
/** 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. */
|
|
434
|
-
quotaUser?:
|
|
581
|
+
quotaUser?:
|
|
582
|
+
string;
|
|
435
583
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
436
|
-
upload_protocol?:
|
|
584
|
+
upload_protocol?:
|
|
585
|
+
string;
|
|
437
586
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
438
|
-
uploadType?:
|
|
587
|
+
uploadType?:
|
|
588
|
+
string;
|
|
439
589
|
/** Controls the set of fields returned in the GET response. */
|
|
440
|
-
view?:
|
|
590
|
+
view?:
|
|
591
|
+
string;
|
|
441
592
|
}): Request<AuthorizedCertificate>;
|
|
442
593
|
/** Lists all SSL certificates the user is authorized to administer. */
|
|
443
594
|
list(request?: {
|
|
444
595
|
/** V1 error format. */
|
|
445
|
-
"$.xgafv"?:
|
|
596
|
+
"$.xgafv"?:
|
|
597
|
+
string;
|
|
446
598
|
/** OAuth access token. */
|
|
447
|
-
access_token?:
|
|
599
|
+
access_token?:
|
|
600
|
+
string;
|
|
448
601
|
/** Data format for response. */
|
|
449
|
-
alt?:
|
|
602
|
+
alt?:
|
|
603
|
+
string;
|
|
450
604
|
/** Part of `parent`. Name of the parent Application resource. Example: apps/myapp. */
|
|
451
|
-
appsId:
|
|
605
|
+
appsId:
|
|
606
|
+
string;
|
|
452
607
|
/** JSONP */
|
|
453
|
-
callback?:
|
|
608
|
+
callback?:
|
|
609
|
+
string;
|
|
454
610
|
/** Selector specifying which fields to include in a partial response. */
|
|
455
|
-
fields?:
|
|
611
|
+
fields?:
|
|
612
|
+
string;
|
|
456
613
|
/** 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. */
|
|
457
|
-
key?:
|
|
614
|
+
key?:
|
|
615
|
+
string;
|
|
458
616
|
/** OAuth 2.0 token for the current user. */
|
|
459
|
-
oauth_token?:
|
|
617
|
+
oauth_token?:
|
|
618
|
+
string;
|
|
460
619
|
/** Maximum results to return per page. */
|
|
461
|
-
pageSize?:
|
|
620
|
+
pageSize?:
|
|
621
|
+
number;
|
|
462
622
|
/** Continuation token for fetching the next page of results. */
|
|
463
|
-
pageToken?:
|
|
623
|
+
pageToken?:
|
|
624
|
+
string;
|
|
464
625
|
/** Returns response with indentations and line breaks. */
|
|
465
|
-
prettyPrint?:
|
|
626
|
+
prettyPrint?:
|
|
627
|
+
boolean;
|
|
466
628
|
/** 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. */
|
|
467
|
-
quotaUser?:
|
|
629
|
+
quotaUser?:
|
|
630
|
+
string;
|
|
468
631
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
469
|
-
upload_protocol?:
|
|
632
|
+
upload_protocol?:
|
|
633
|
+
string;
|
|
470
634
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
471
|
-
uploadType?:
|
|
635
|
+
uploadType?:
|
|
636
|
+
string;
|
|
472
637
|
/** Controls the set of fields returned in the LIST response. */
|
|
473
|
-
view?:
|
|
638
|
+
view?:
|
|
639
|
+
string;
|
|
474
640
|
}): Request<ListAuthorizedCertificatesResponse>;
|
|
475
641
|
/**
|
|
476
642
|
* Updates the specified SSL certificate. To renew a certificate and maintain its existing domain mappings, update certificate_data with a new certificate. The new certificate must be
|
|
@@ -478,65 +644,94 @@ declare namespace gapi.client {
|
|
|
478
644
|
*/
|
|
479
645
|
patch(request: {
|
|
480
646
|
/** V1 error format. */
|
|
481
|
-
"$.xgafv"?:
|
|
647
|
+
"$.xgafv"?:
|
|
648
|
+
string;
|
|
482
649
|
/** OAuth access token. */
|
|
483
|
-
access_token?:
|
|
650
|
+
access_token?:
|
|
651
|
+
string;
|
|
484
652
|
/** Data format for response. */
|
|
485
|
-
alt?:
|
|
653
|
+
alt?:
|
|
654
|
+
string;
|
|
486
655
|
/** Part of `name`. Name of the resource to update. Example: apps/myapp/authorizedCertificates/12345. */
|
|
487
|
-
appsId:
|
|
656
|
+
appsId:
|
|
657
|
+
string;
|
|
488
658
|
/** Part of `name`. See documentation of `appsId`. */
|
|
489
|
-
authorizedCertificatesId:
|
|
659
|
+
authorizedCertificatesId:
|
|
660
|
+
string;
|
|
490
661
|
/** JSONP */
|
|
491
|
-
callback?:
|
|
662
|
+
callback?:
|
|
663
|
+
string;
|
|
492
664
|
/** Selector specifying which fields to include in a partial response. */
|
|
493
|
-
fields?:
|
|
665
|
+
fields?:
|
|
666
|
+
string;
|
|
494
667
|
/** 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. */
|
|
495
|
-
key?:
|
|
668
|
+
key?:
|
|
669
|
+
string;
|
|
496
670
|
/** OAuth 2.0 token for the current user. */
|
|
497
|
-
oauth_token?:
|
|
671
|
+
oauth_token?:
|
|
672
|
+
string;
|
|
498
673
|
/** Returns response with indentations and line breaks. */
|
|
499
|
-
prettyPrint?:
|
|
674
|
+
prettyPrint?:
|
|
675
|
+
boolean;
|
|
500
676
|
/** 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. */
|
|
501
|
-
quotaUser?:
|
|
677
|
+
quotaUser?:
|
|
678
|
+
string;
|
|
502
679
|
/** Standard field mask for the set of fields to be updated. Updates are only supported on the certificate_raw_data and display_name fields. */
|
|
503
|
-
updateMask?:
|
|
680
|
+
updateMask?:
|
|
681
|
+
string;
|
|
504
682
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
505
|
-
upload_protocol?:
|
|
683
|
+
upload_protocol?:
|
|
684
|
+
string;
|
|
506
685
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
507
|
-
uploadType?:
|
|
686
|
+
uploadType?:
|
|
687
|
+
string;
|
|
508
688
|
/** Request body */
|
|
509
|
-
resource:
|
|
689
|
+
resource:
|
|
690
|
+
AuthorizedCertificate;
|
|
510
691
|
}): Request<AuthorizedCertificate>;
|
|
511
692
|
patch(request: {
|
|
512
693
|
/** V1 error format. */
|
|
513
|
-
"$.xgafv"?:
|
|
694
|
+
"$.xgafv"?:
|
|
695
|
+
string;
|
|
514
696
|
/** OAuth access token. */
|
|
515
|
-
access_token?:
|
|
697
|
+
access_token?:
|
|
698
|
+
string;
|
|
516
699
|
/** Data format for response. */
|
|
517
|
-
alt?:
|
|
700
|
+
alt?:
|
|
701
|
+
string;
|
|
518
702
|
/** Part of `name`. Name of the resource to update. Example: apps/myapp/authorizedCertificates/12345. */
|
|
519
|
-
appsId:
|
|
703
|
+
appsId:
|
|
704
|
+
string;
|
|
520
705
|
/** Part of `name`. See documentation of `appsId`. */
|
|
521
|
-
authorizedCertificatesId:
|
|
706
|
+
authorizedCertificatesId:
|
|
707
|
+
string;
|
|
522
708
|
/** JSONP */
|
|
523
|
-
callback?:
|
|
709
|
+
callback?:
|
|
710
|
+
string;
|
|
524
711
|
/** Selector specifying which fields to include in a partial response. */
|
|
525
|
-
fields?:
|
|
712
|
+
fields?:
|
|
713
|
+
string;
|
|
526
714
|
/** 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. */
|
|
527
|
-
key?:
|
|
715
|
+
key?:
|
|
716
|
+
string;
|
|
528
717
|
/** OAuth 2.0 token for the current user. */
|
|
529
|
-
oauth_token?:
|
|
718
|
+
oauth_token?:
|
|
719
|
+
string;
|
|
530
720
|
/** Returns response with indentations and line breaks. */
|
|
531
|
-
prettyPrint?:
|
|
721
|
+
prettyPrint?:
|
|
722
|
+
boolean;
|
|
532
723
|
/** 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. */
|
|
533
|
-
quotaUser?:
|
|
724
|
+
quotaUser?:
|
|
725
|
+
string;
|
|
534
726
|
/** Standard field mask for the set of fields to be updated. Updates are only supported on the certificate_raw_data and display_name fields. */
|
|
535
|
-
updateMask?:
|
|
727
|
+
updateMask?:
|
|
728
|
+
string;
|
|
536
729
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
537
|
-
upload_protocol?:
|
|
730
|
+
upload_protocol?:
|
|
731
|
+
string;
|
|
538
732
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
539
|
-
uploadType?:
|
|
733
|
+
uploadType?:
|
|
734
|
+
string;
|
|
540
735
|
},
|
|
541
736
|
body: AuthorizedCertificate): Request<AuthorizedCertificate>;
|
|
542
737
|
}
|
|
@@ -544,33 +739,47 @@ declare namespace gapi.client {
|
|
|
544
739
|
/** Lists all domains the user is authorized to administer. */
|
|
545
740
|
list(request?: {
|
|
546
741
|
/** V1 error format. */
|
|
547
|
-
"$.xgafv"?:
|
|
742
|
+
"$.xgafv"?:
|
|
743
|
+
string;
|
|
548
744
|
/** OAuth access token. */
|
|
549
|
-
access_token?:
|
|
745
|
+
access_token?:
|
|
746
|
+
string;
|
|
550
747
|
/** Data format for response. */
|
|
551
|
-
alt?:
|
|
748
|
+
alt?:
|
|
749
|
+
string;
|
|
552
750
|
/** Part of `parent`. Name of the parent Application resource. Example: apps/myapp. */
|
|
553
|
-
appsId:
|
|
751
|
+
appsId:
|
|
752
|
+
string;
|
|
554
753
|
/** JSONP */
|
|
555
|
-
callback?:
|
|
754
|
+
callback?:
|
|
755
|
+
string;
|
|
556
756
|
/** Selector specifying which fields to include in a partial response. */
|
|
557
|
-
fields?:
|
|
757
|
+
fields?:
|
|
758
|
+
string;
|
|
558
759
|
/** 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. */
|
|
559
|
-
key?:
|
|
760
|
+
key?:
|
|
761
|
+
string;
|
|
560
762
|
/** OAuth 2.0 token for the current user. */
|
|
561
|
-
oauth_token?:
|
|
763
|
+
oauth_token?:
|
|
764
|
+
string;
|
|
562
765
|
/** Maximum results to return per page. */
|
|
563
|
-
pageSize?:
|
|
766
|
+
pageSize?:
|
|
767
|
+
number;
|
|
564
768
|
/** Continuation token for fetching the next page of results. */
|
|
565
|
-
pageToken?:
|
|
769
|
+
pageToken?:
|
|
770
|
+
string;
|
|
566
771
|
/** Returns response with indentations and line breaks. */
|
|
567
|
-
prettyPrint?:
|
|
772
|
+
prettyPrint?:
|
|
773
|
+
boolean;
|
|
568
774
|
/** 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. */
|
|
569
|
-
quotaUser?:
|
|
775
|
+
quotaUser?:
|
|
776
|
+
string;
|
|
570
777
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
571
|
-
upload_protocol?:
|
|
778
|
+
upload_protocol?:
|
|
779
|
+
string;
|
|
572
780
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
573
|
-
uploadType?:
|
|
781
|
+
uploadType?:
|
|
782
|
+
string;
|
|
574
783
|
}): Request<ListAuthorizedDomainsResponse>;
|
|
575
784
|
}
|
|
576
785
|
interface DomainMappingsResource {
|
|
@@ -580,161 +789,230 @@ declare namespace gapi.client {
|
|
|
580
789
|
*/
|
|
581
790
|
create(request: {
|
|
582
791
|
/** V1 error format. */
|
|
583
|
-
"$.xgafv"?:
|
|
792
|
+
"$.xgafv"?:
|
|
793
|
+
string;
|
|
584
794
|
/** OAuth access token. */
|
|
585
|
-
access_token?:
|
|
795
|
+
access_token?:
|
|
796
|
+
string;
|
|
586
797
|
/** Data format for response. */
|
|
587
|
-
alt?:
|
|
798
|
+
alt?:
|
|
799
|
+
string;
|
|
588
800
|
/** Part of `parent`. Name of the parent Application resource. Example: apps/myapp. */
|
|
589
|
-
appsId:
|
|
801
|
+
appsId:
|
|
802
|
+
string;
|
|
590
803
|
/** JSONP */
|
|
591
|
-
callback?:
|
|
804
|
+
callback?:
|
|
805
|
+
string;
|
|
592
806
|
/** Selector specifying which fields to include in a partial response. */
|
|
593
|
-
fields?:
|
|
807
|
+
fields?:
|
|
808
|
+
string;
|
|
594
809
|
/** 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. */
|
|
595
|
-
key?:
|
|
810
|
+
key?:
|
|
811
|
+
string;
|
|
596
812
|
/**
|
|
597
813
|
* Whether a managed certificate should be provided by App Engine. If true, a certificate ID must be manaually set in the DomainMapping resource to configure SSL for this domain.
|
|
598
814
|
* If false, a managed certificate will be provisioned and a certificate ID will be automatically populated.
|
|
599
815
|
*/
|
|
600
|
-
noManagedCertificate?:
|
|
816
|
+
noManagedCertificate?:
|
|
817
|
+
boolean;
|
|
601
818
|
/** OAuth 2.0 token for the current user. */
|
|
602
|
-
oauth_token?:
|
|
819
|
+
oauth_token?:
|
|
820
|
+
string;
|
|
603
821
|
/** Whether the domain creation should override any existing mappings for this domain. By default, overrides are rejected. */
|
|
604
|
-
overrideStrategy?:
|
|
822
|
+
overrideStrategy?:
|
|
823
|
+
string;
|
|
605
824
|
/** Returns response with indentations and line breaks. */
|
|
606
|
-
prettyPrint?:
|
|
825
|
+
prettyPrint?:
|
|
826
|
+
boolean;
|
|
607
827
|
/** 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. */
|
|
608
|
-
quotaUser?:
|
|
828
|
+
quotaUser?:
|
|
829
|
+
string;
|
|
609
830
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
610
|
-
upload_protocol?:
|
|
831
|
+
upload_protocol?:
|
|
832
|
+
string;
|
|
611
833
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
612
|
-
uploadType?:
|
|
834
|
+
uploadType?:
|
|
835
|
+
string;
|
|
613
836
|
/** Request body */
|
|
614
|
-
resource:
|
|
837
|
+
resource:
|
|
838
|
+
DomainMapping;
|
|
615
839
|
}): Request<Operation>;
|
|
616
840
|
create(request: {
|
|
617
841
|
/** V1 error format. */
|
|
618
|
-
"$.xgafv"?:
|
|
842
|
+
"$.xgafv"?:
|
|
843
|
+
string;
|
|
619
844
|
/** OAuth access token. */
|
|
620
|
-
access_token?:
|
|
845
|
+
access_token?:
|
|
846
|
+
string;
|
|
621
847
|
/** Data format for response. */
|
|
622
|
-
alt?:
|
|
848
|
+
alt?:
|
|
849
|
+
string;
|
|
623
850
|
/** Part of `parent`. Name of the parent Application resource. Example: apps/myapp. */
|
|
624
|
-
appsId:
|
|
851
|
+
appsId:
|
|
852
|
+
string;
|
|
625
853
|
/** JSONP */
|
|
626
|
-
callback?:
|
|
854
|
+
callback?:
|
|
855
|
+
string;
|
|
627
856
|
/** Selector specifying which fields to include in a partial response. */
|
|
628
|
-
fields?:
|
|
857
|
+
fields?:
|
|
858
|
+
string;
|
|
629
859
|
/** 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. */
|
|
630
|
-
key?:
|
|
860
|
+
key?:
|
|
861
|
+
string;
|
|
631
862
|
/**
|
|
632
863
|
* Whether a managed certificate should be provided by App Engine. If true, a certificate ID must be manaually set in the DomainMapping resource to configure SSL for this domain.
|
|
633
864
|
* If false, a managed certificate will be provisioned and a certificate ID will be automatically populated.
|
|
634
865
|
*/
|
|
635
|
-
noManagedCertificate?:
|
|
866
|
+
noManagedCertificate?:
|
|
867
|
+
boolean;
|
|
636
868
|
/** OAuth 2.0 token for the current user. */
|
|
637
|
-
oauth_token?:
|
|
869
|
+
oauth_token?:
|
|
870
|
+
string;
|
|
638
871
|
/** Whether the domain creation should override any existing mappings for this domain. By default, overrides are rejected. */
|
|
639
|
-
overrideStrategy?:
|
|
872
|
+
overrideStrategy?:
|
|
873
|
+
string;
|
|
640
874
|
/** Returns response with indentations and line breaks. */
|
|
641
|
-
prettyPrint?:
|
|
875
|
+
prettyPrint?:
|
|
876
|
+
boolean;
|
|
642
877
|
/** 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. */
|
|
643
|
-
quotaUser?:
|
|
878
|
+
quotaUser?:
|
|
879
|
+
string;
|
|
644
880
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
645
|
-
upload_protocol?:
|
|
881
|
+
upload_protocol?:
|
|
882
|
+
string;
|
|
646
883
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
647
|
-
uploadType?:
|
|
884
|
+
uploadType?:
|
|
885
|
+
string;
|
|
648
886
|
},
|
|
649
887
|
body: DomainMapping): Request<Operation>;
|
|
650
888
|
/** Deletes the specified domain mapping. A user must be authorized to administer the associated domain in order to delete a DomainMapping resource. */
|
|
651
889
|
delete(request?: {
|
|
652
890
|
/** V1 error format. */
|
|
653
|
-
"$.xgafv"?:
|
|
891
|
+
"$.xgafv"?:
|
|
892
|
+
string;
|
|
654
893
|
/** OAuth access token. */
|
|
655
|
-
access_token?:
|
|
894
|
+
access_token?:
|
|
895
|
+
string;
|
|
656
896
|
/** Data format for response. */
|
|
657
|
-
alt?:
|
|
897
|
+
alt?:
|
|
898
|
+
string;
|
|
658
899
|
/** Part of `name`. Name of the resource to delete. Example: apps/myapp/domainMappings/example.com. */
|
|
659
|
-
appsId:
|
|
900
|
+
appsId:
|
|
901
|
+
string;
|
|
660
902
|
/** JSONP */
|
|
661
|
-
callback?:
|
|
903
|
+
callback?:
|
|
904
|
+
string;
|
|
662
905
|
/** Part of `name`. See documentation of `appsId`. */
|
|
663
|
-
domainMappingsId:
|
|
906
|
+
domainMappingsId:
|
|
907
|
+
string;
|
|
664
908
|
/** Selector specifying which fields to include in a partial response. */
|
|
665
|
-
fields?:
|
|
909
|
+
fields?:
|
|
910
|
+
string;
|
|
666
911
|
/** 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. */
|
|
667
|
-
key?:
|
|
912
|
+
key?:
|
|
913
|
+
string;
|
|
668
914
|
/** OAuth 2.0 token for the current user. */
|
|
669
|
-
oauth_token?:
|
|
915
|
+
oauth_token?:
|
|
916
|
+
string;
|
|
670
917
|
/** Returns response with indentations and line breaks. */
|
|
671
|
-
prettyPrint?:
|
|
918
|
+
prettyPrint?:
|
|
919
|
+
boolean;
|
|
672
920
|
/** 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. */
|
|
673
|
-
quotaUser?:
|
|
921
|
+
quotaUser?:
|
|
922
|
+
string;
|
|
674
923
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
675
|
-
upload_protocol?:
|
|
924
|
+
upload_protocol?:
|
|
925
|
+
string;
|
|
676
926
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
677
|
-
uploadType?:
|
|
927
|
+
uploadType?:
|
|
928
|
+
string;
|
|
678
929
|
}): Request<Operation>;
|
|
679
930
|
/** Gets the specified domain mapping. */
|
|
680
931
|
get(request?: {
|
|
681
932
|
/** V1 error format. */
|
|
682
|
-
"$.xgafv"?:
|
|
933
|
+
"$.xgafv"?:
|
|
934
|
+
string;
|
|
683
935
|
/** OAuth access token. */
|
|
684
|
-
access_token?:
|
|
936
|
+
access_token?:
|
|
937
|
+
string;
|
|
685
938
|
/** Data format for response. */
|
|
686
|
-
alt?:
|
|
939
|
+
alt?:
|
|
940
|
+
string;
|
|
687
941
|
/** Part of `name`. Name of the resource requested. Example: apps/myapp/domainMappings/example.com. */
|
|
688
|
-
appsId:
|
|
942
|
+
appsId:
|
|
943
|
+
string;
|
|
689
944
|
/** JSONP */
|
|
690
|
-
callback?:
|
|
945
|
+
callback?:
|
|
946
|
+
string;
|
|
691
947
|
/** Part of `name`. See documentation of `appsId`. */
|
|
692
|
-
domainMappingsId:
|
|
948
|
+
domainMappingsId:
|
|
949
|
+
string;
|
|
693
950
|
/** Selector specifying which fields to include in a partial response. */
|
|
694
|
-
fields?:
|
|
951
|
+
fields?:
|
|
952
|
+
string;
|
|
695
953
|
/** 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. */
|
|
696
|
-
key?:
|
|
954
|
+
key?:
|
|
955
|
+
string;
|
|
697
956
|
/** OAuth 2.0 token for the current user. */
|
|
698
|
-
oauth_token?:
|
|
957
|
+
oauth_token?:
|
|
958
|
+
string;
|
|
699
959
|
/** Returns response with indentations and line breaks. */
|
|
700
|
-
prettyPrint?:
|
|
960
|
+
prettyPrint?:
|
|
961
|
+
boolean;
|
|
701
962
|
/** 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. */
|
|
702
|
-
quotaUser?:
|
|
963
|
+
quotaUser?:
|
|
964
|
+
string;
|
|
703
965
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
704
|
-
upload_protocol?:
|
|
966
|
+
upload_protocol?:
|
|
967
|
+
string;
|
|
705
968
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
706
|
-
uploadType?:
|
|
969
|
+
uploadType?:
|
|
970
|
+
string;
|
|
707
971
|
}): Request<DomainMapping>;
|
|
708
972
|
/** Lists the domain mappings on an application. */
|
|
709
973
|
list(request?: {
|
|
710
974
|
/** V1 error format. */
|
|
711
|
-
"$.xgafv"?:
|
|
975
|
+
"$.xgafv"?:
|
|
976
|
+
string;
|
|
712
977
|
/** OAuth access token. */
|
|
713
|
-
access_token?:
|
|
978
|
+
access_token?:
|
|
979
|
+
string;
|
|
714
980
|
/** Data format for response. */
|
|
715
|
-
alt?:
|
|
981
|
+
alt?:
|
|
982
|
+
string;
|
|
716
983
|
/** Part of `parent`. Name of the parent Application resource. Example: apps/myapp. */
|
|
717
|
-
appsId:
|
|
984
|
+
appsId:
|
|
985
|
+
string;
|
|
718
986
|
/** JSONP */
|
|
719
|
-
callback?:
|
|
987
|
+
callback?:
|
|
988
|
+
string;
|
|
720
989
|
/** Selector specifying which fields to include in a partial response. */
|
|
721
|
-
fields?:
|
|
990
|
+
fields?:
|
|
991
|
+
string;
|
|
722
992
|
/** 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. */
|
|
723
|
-
key?:
|
|
993
|
+
key?:
|
|
994
|
+
string;
|
|
724
995
|
/** OAuth 2.0 token for the current user. */
|
|
725
|
-
oauth_token?:
|
|
996
|
+
oauth_token?:
|
|
997
|
+
string;
|
|
726
998
|
/** Maximum results to return per page. */
|
|
727
|
-
pageSize?:
|
|
999
|
+
pageSize?:
|
|
1000
|
+
number;
|
|
728
1001
|
/** Continuation token for fetching the next page of results. */
|
|
729
|
-
pageToken?:
|
|
1002
|
+
pageToken?:
|
|
1003
|
+
string;
|
|
730
1004
|
/** Returns response with indentations and line breaks. */
|
|
731
|
-
prettyPrint?:
|
|
1005
|
+
prettyPrint?:
|
|
1006
|
+
boolean;
|
|
732
1007
|
/** 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. */
|
|
733
|
-
quotaUser?:
|
|
1008
|
+
quotaUser?:
|
|
1009
|
+
string;
|
|
734
1010
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
735
|
-
upload_protocol?:
|
|
1011
|
+
upload_protocol?:
|
|
1012
|
+
string;
|
|
736
1013
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
737
|
-
uploadType?:
|
|
1014
|
+
uploadType?:
|
|
1015
|
+
string;
|
|
738
1016
|
}): Request<ListDomainMappingsResponse>;
|
|
739
1017
|
/**
|
|
740
1018
|
* Updates the specified domain mapping. To map an SSL certificate to a domain mapping, update certificate_id to point to an AuthorizedCertificate resource. A user must be authorized
|
|
@@ -742,77 +1020,108 @@ declare namespace gapi.client {
|
|
|
742
1020
|
*/
|
|
743
1021
|
patch(request: {
|
|
744
1022
|
/** V1 error format. */
|
|
745
|
-
"$.xgafv"?:
|
|
1023
|
+
"$.xgafv"?:
|
|
1024
|
+
string;
|
|
746
1025
|
/** OAuth access token. */
|
|
747
|
-
access_token?:
|
|
1026
|
+
access_token?:
|
|
1027
|
+
string;
|
|
748
1028
|
/** Data format for response. */
|
|
749
|
-
alt?:
|
|
1029
|
+
alt?:
|
|
1030
|
+
string;
|
|
750
1031
|
/** Part of `name`. Name of the resource to update. Example: apps/myapp/domainMappings/example.com. */
|
|
751
|
-
appsId:
|
|
1032
|
+
appsId:
|
|
1033
|
+
string;
|
|
752
1034
|
/** JSONP */
|
|
753
|
-
callback?:
|
|
1035
|
+
callback?:
|
|
1036
|
+
string;
|
|
754
1037
|
/** Part of `name`. See documentation of `appsId`. */
|
|
755
|
-
domainMappingsId:
|
|
1038
|
+
domainMappingsId:
|
|
1039
|
+
string;
|
|
756
1040
|
/** Selector specifying which fields to include in a partial response. */
|
|
757
|
-
fields?:
|
|
1041
|
+
fields?:
|
|
1042
|
+
string;
|
|
758
1043
|
/** 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. */
|
|
759
|
-
key?:
|
|
1044
|
+
key?:
|
|
1045
|
+
string;
|
|
760
1046
|
/**
|
|
761
1047
|
* Whether a managed certificate should be provided by App Engine. If true, a certificate ID must be manually set in the DomainMapping resource to configure SSL for this domain. If
|
|
762
1048
|
* false, a managed certificate will be provisioned and a certificate ID will be automatically populated. Only applicable if ssl_settings.certificate_id is specified in the update
|
|
763
1049
|
* mask.
|
|
764
1050
|
*/
|
|
765
|
-
noManagedCertificate?:
|
|
1051
|
+
noManagedCertificate?:
|
|
1052
|
+
boolean;
|
|
766
1053
|
/** OAuth 2.0 token for the current user. */
|
|
767
|
-
oauth_token?:
|
|
1054
|
+
oauth_token?:
|
|
1055
|
+
string;
|
|
768
1056
|
/** Returns response with indentations and line breaks. */
|
|
769
|
-
prettyPrint?:
|
|
1057
|
+
prettyPrint?:
|
|
1058
|
+
boolean;
|
|
770
1059
|
/** 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. */
|
|
771
|
-
quotaUser?:
|
|
1060
|
+
quotaUser?:
|
|
1061
|
+
string;
|
|
772
1062
|
/** Required. Standard field mask for the set of fields to be updated. */
|
|
773
|
-
updateMask?:
|
|
1063
|
+
updateMask?:
|
|
1064
|
+
string;
|
|
774
1065
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
775
|
-
upload_protocol?:
|
|
1066
|
+
upload_protocol?:
|
|
1067
|
+
string;
|
|
776
1068
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
777
|
-
uploadType?:
|
|
1069
|
+
uploadType?:
|
|
1070
|
+
string;
|
|
778
1071
|
/** Request body */
|
|
779
|
-
resource:
|
|
1072
|
+
resource:
|
|
1073
|
+
DomainMapping;
|
|
780
1074
|
}): Request<Operation>;
|
|
781
1075
|
patch(request: {
|
|
782
1076
|
/** V1 error format. */
|
|
783
|
-
"$.xgafv"?:
|
|
1077
|
+
"$.xgafv"?:
|
|
1078
|
+
string;
|
|
784
1079
|
/** OAuth access token. */
|
|
785
|
-
access_token?:
|
|
1080
|
+
access_token?:
|
|
1081
|
+
string;
|
|
786
1082
|
/** Data format for response. */
|
|
787
|
-
alt?:
|
|
1083
|
+
alt?:
|
|
1084
|
+
string;
|
|
788
1085
|
/** Part of `name`. Name of the resource to update. Example: apps/myapp/domainMappings/example.com. */
|
|
789
|
-
appsId:
|
|
1086
|
+
appsId:
|
|
1087
|
+
string;
|
|
790
1088
|
/** JSONP */
|
|
791
|
-
callback?:
|
|
1089
|
+
callback?:
|
|
1090
|
+
string;
|
|
792
1091
|
/** Part of `name`. See documentation of `appsId`. */
|
|
793
|
-
domainMappingsId:
|
|
1092
|
+
domainMappingsId:
|
|
1093
|
+
string;
|
|
794
1094
|
/** Selector specifying which fields to include in a partial response. */
|
|
795
|
-
fields?:
|
|
1095
|
+
fields?:
|
|
1096
|
+
string;
|
|
796
1097
|
/** 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. */
|
|
797
|
-
key?:
|
|
1098
|
+
key?:
|
|
1099
|
+
string;
|
|
798
1100
|
/**
|
|
799
1101
|
* Whether a managed certificate should be provided by App Engine. If true, a certificate ID must be manually set in the DomainMapping resource to configure SSL for this domain. If
|
|
800
1102
|
* false, a managed certificate will be provisioned and a certificate ID will be automatically populated. Only applicable if ssl_settings.certificate_id is specified in the update
|
|
801
1103
|
* mask.
|
|
802
1104
|
*/
|
|
803
|
-
noManagedCertificate?:
|
|
1105
|
+
noManagedCertificate?:
|
|
1106
|
+
boolean;
|
|
804
1107
|
/** OAuth 2.0 token for the current user. */
|
|
805
|
-
oauth_token?:
|
|
1108
|
+
oauth_token?:
|
|
1109
|
+
string;
|
|
806
1110
|
/** Returns response with indentations and line breaks. */
|
|
807
|
-
prettyPrint?:
|
|
1111
|
+
prettyPrint?:
|
|
1112
|
+
boolean;
|
|
808
1113
|
/** 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. */
|
|
809
|
-
quotaUser?:
|
|
1114
|
+
quotaUser?:
|
|
1115
|
+
string;
|
|
810
1116
|
/** Required. Standard field mask for the set of fields to be updated. */
|
|
811
|
-
updateMask?:
|
|
1117
|
+
updateMask?:
|
|
1118
|
+
string;
|
|
812
1119
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
813
|
-
upload_protocol?:
|
|
1120
|
+
upload_protocol?:
|
|
1121
|
+
string;
|
|
814
1122
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
815
|
-
uploadType?:
|
|
1123
|
+
uploadType?:
|
|
1124
|
+
string;
|
|
816
1125
|
},
|
|
817
1126
|
body: DomainMapping): Request<Operation>;
|
|
818
1127
|
}
|
|
@@ -820,278 +1129,399 @@ declare namespace gapi.client {
|
|
|
820
1129
|
/** Gets information about a location. */
|
|
821
1130
|
get(request?: {
|
|
822
1131
|
/** V1 error format. */
|
|
823
|
-
"$.xgafv"?:
|
|
1132
|
+
"$.xgafv"?:
|
|
1133
|
+
string;
|
|
824
1134
|
/** OAuth access token. */
|
|
825
|
-
access_token?:
|
|
1135
|
+
access_token?:
|
|
1136
|
+
string;
|
|
826
1137
|
/** Data format for response. */
|
|
827
|
-
alt?:
|
|
1138
|
+
alt?:
|
|
1139
|
+
string;
|
|
828
1140
|
/** Part of `name`. Resource name for the location. */
|
|
829
|
-
appsId:
|
|
1141
|
+
appsId:
|
|
1142
|
+
string;
|
|
830
1143
|
/** JSONP */
|
|
831
|
-
callback?:
|
|
1144
|
+
callback?:
|
|
1145
|
+
string;
|
|
832
1146
|
/** Selector specifying which fields to include in a partial response. */
|
|
833
|
-
fields?:
|
|
1147
|
+
fields?:
|
|
1148
|
+
string;
|
|
834
1149
|
/** 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. */
|
|
835
|
-
key?:
|
|
1150
|
+
key?:
|
|
1151
|
+
string;
|
|
836
1152
|
/** Part of `name`. See documentation of `appsId`. */
|
|
837
|
-
locationsId:
|
|
1153
|
+
locationsId:
|
|
1154
|
+
string;
|
|
838
1155
|
/** OAuth 2.0 token for the current user. */
|
|
839
|
-
oauth_token?:
|
|
1156
|
+
oauth_token?:
|
|
1157
|
+
string;
|
|
840
1158
|
/** Returns response with indentations and line breaks. */
|
|
841
|
-
prettyPrint?:
|
|
1159
|
+
prettyPrint?:
|
|
1160
|
+
boolean;
|
|
842
1161
|
/** 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. */
|
|
843
|
-
quotaUser?:
|
|
1162
|
+
quotaUser?:
|
|
1163
|
+
string;
|
|
844
1164
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
845
|
-
upload_protocol?:
|
|
1165
|
+
upload_protocol?:
|
|
1166
|
+
string;
|
|
846
1167
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
847
|
-
uploadType?:
|
|
1168
|
+
uploadType?:
|
|
1169
|
+
string;
|
|
848
1170
|
}): Request<Location>;
|
|
849
1171
|
/** Lists information about the supported locations for this service. */
|
|
850
1172
|
list(request?: {
|
|
851
1173
|
/** V1 error format. */
|
|
852
|
-
"$.xgafv"?:
|
|
1174
|
+
"$.xgafv"?:
|
|
1175
|
+
string;
|
|
853
1176
|
/** OAuth access token. */
|
|
854
|
-
access_token?:
|
|
1177
|
+
access_token?:
|
|
1178
|
+
string;
|
|
855
1179
|
/** Data format for response. */
|
|
856
|
-
alt?:
|
|
1180
|
+
alt?:
|
|
1181
|
+
string;
|
|
857
1182
|
/** Part of `name`. The resource that owns the locations collection, if applicable. */
|
|
858
|
-
appsId:
|
|
1183
|
+
appsId:
|
|
1184
|
+
string;
|
|
859
1185
|
/** JSONP */
|
|
860
|
-
callback?:
|
|
1186
|
+
callback?:
|
|
1187
|
+
string;
|
|
861
1188
|
/** Selector specifying which fields to include in a partial response. */
|
|
862
|
-
fields?:
|
|
1189
|
+
fields?:
|
|
1190
|
+
string;
|
|
863
1191
|
/**
|
|
864
1192
|
* 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 AIP-160
|
|
865
1193
|
* (https://google.aip.dev/160).
|
|
866
1194
|
*/
|
|
867
|
-
filter?:
|
|
1195
|
+
filter?:
|
|
1196
|
+
string;
|
|
868
1197
|
/** 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. */
|
|
869
|
-
key?:
|
|
1198
|
+
key?:
|
|
1199
|
+
string;
|
|
870
1200
|
/** OAuth 2.0 token for the current user. */
|
|
871
|
-
oauth_token?:
|
|
1201
|
+
oauth_token?:
|
|
1202
|
+
string;
|
|
872
1203
|
/** The maximum number of results to return. If not set, the service selects a default. */
|
|
873
|
-
pageSize?:
|
|
1204
|
+
pageSize?:
|
|
1205
|
+
number;
|
|
874
1206
|
/** A page token received from the next_page_token field in the response. Send that page token to receive the subsequent page. */
|
|
875
|
-
pageToken?:
|
|
1207
|
+
pageToken?:
|
|
1208
|
+
string;
|
|
876
1209
|
/** Returns response with indentations and line breaks. */
|
|
877
|
-
prettyPrint?:
|
|
1210
|
+
prettyPrint?:
|
|
1211
|
+
boolean;
|
|
878
1212
|
/** 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. */
|
|
879
|
-
quotaUser?:
|
|
1213
|
+
quotaUser?:
|
|
1214
|
+
string;
|
|
880
1215
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
881
|
-
upload_protocol?:
|
|
1216
|
+
upload_protocol?:
|
|
1217
|
+
string;
|
|
882
1218
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
883
|
-
uploadType?:
|
|
1219
|
+
uploadType?:
|
|
1220
|
+
string;
|
|
884
1221
|
}): Request<ListLocationsResponse>;
|
|
885
1222
|
}
|
|
886
1223
|
interface OperationsResource {
|
|
887
1224
|
/** 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. */
|
|
888
1225
|
get(request?: {
|
|
889
1226
|
/** V1 error format. */
|
|
890
|
-
"$.xgafv"?:
|
|
1227
|
+
"$.xgafv"?:
|
|
1228
|
+
string;
|
|
891
1229
|
/** OAuth access token. */
|
|
892
|
-
access_token?:
|
|
1230
|
+
access_token?:
|
|
1231
|
+
string;
|
|
893
1232
|
/** Data format for response. */
|
|
894
|
-
alt?:
|
|
1233
|
+
alt?:
|
|
1234
|
+
string;
|
|
895
1235
|
/** Part of `name`. The name of the operation resource. */
|
|
896
|
-
appsId:
|
|
1236
|
+
appsId:
|
|
1237
|
+
string;
|
|
897
1238
|
/** JSONP */
|
|
898
|
-
callback?:
|
|
1239
|
+
callback?:
|
|
1240
|
+
string;
|
|
899
1241
|
/** Selector specifying which fields to include in a partial response. */
|
|
900
|
-
fields?:
|
|
1242
|
+
fields?:
|
|
1243
|
+
string;
|
|
901
1244
|
/** 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. */
|
|
902
|
-
key?:
|
|
1245
|
+
key?:
|
|
1246
|
+
string;
|
|
903
1247
|
/** OAuth 2.0 token for the current user. */
|
|
904
|
-
oauth_token?:
|
|
1248
|
+
oauth_token?:
|
|
1249
|
+
string;
|
|
905
1250
|
/** Part of `name`. See documentation of `appsId`. */
|
|
906
|
-
operationsId:
|
|
1251
|
+
operationsId:
|
|
1252
|
+
string;
|
|
907
1253
|
/** Returns response with indentations and line breaks. */
|
|
908
|
-
prettyPrint?:
|
|
1254
|
+
prettyPrint?:
|
|
1255
|
+
boolean;
|
|
909
1256
|
/** 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. */
|
|
910
|
-
quotaUser?:
|
|
1257
|
+
quotaUser?:
|
|
1258
|
+
string;
|
|
911
1259
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
912
|
-
upload_protocol?:
|
|
1260
|
+
upload_protocol?:
|
|
1261
|
+
string;
|
|
913
1262
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
914
|
-
uploadType?:
|
|
1263
|
+
uploadType?:
|
|
1264
|
+
string;
|
|
915
1265
|
}): Request<Operation>;
|
|
916
1266
|
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns UNIMPLEMENTED. */
|
|
917
1267
|
list(request?: {
|
|
918
1268
|
/** V1 error format. */
|
|
919
|
-
"$.xgafv"?:
|
|
1269
|
+
"$.xgafv"?:
|
|
1270
|
+
string;
|
|
920
1271
|
/** OAuth access token. */
|
|
921
|
-
access_token?:
|
|
1272
|
+
access_token?:
|
|
1273
|
+
string;
|
|
922
1274
|
/** Data format for response. */
|
|
923
|
-
alt?:
|
|
1275
|
+
alt?:
|
|
1276
|
+
string;
|
|
924
1277
|
/** Part of `name`. The name of the operation's parent resource. */
|
|
925
|
-
appsId:
|
|
1278
|
+
appsId:
|
|
1279
|
+
string;
|
|
926
1280
|
/** JSONP */
|
|
927
|
-
callback?:
|
|
1281
|
+
callback?:
|
|
1282
|
+
string;
|
|
928
1283
|
/** Selector specifying which fields to include in a partial response. */
|
|
929
|
-
fields?:
|
|
1284
|
+
fields?:
|
|
1285
|
+
string;
|
|
930
1286
|
/** The standard list filter. */
|
|
931
|
-
filter?:
|
|
1287
|
+
filter?:
|
|
1288
|
+
string;
|
|
932
1289
|
/** 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. */
|
|
933
|
-
key?:
|
|
1290
|
+
key?:
|
|
1291
|
+
string;
|
|
934
1292
|
/** OAuth 2.0 token for the current user. */
|
|
935
|
-
oauth_token?:
|
|
1293
|
+
oauth_token?:
|
|
1294
|
+
string;
|
|
936
1295
|
/** The standard list page size. */
|
|
937
|
-
pageSize?:
|
|
1296
|
+
pageSize?:
|
|
1297
|
+
number;
|
|
938
1298
|
/** The standard list page token. */
|
|
939
|
-
pageToken?:
|
|
1299
|
+
pageToken?:
|
|
1300
|
+
string;
|
|
940
1301
|
/** Returns response with indentations and line breaks. */
|
|
941
|
-
prettyPrint?:
|
|
1302
|
+
prettyPrint?:
|
|
1303
|
+
boolean;
|
|
942
1304
|
/** 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. */
|
|
943
|
-
quotaUser?:
|
|
1305
|
+
quotaUser?:
|
|
1306
|
+
string;
|
|
944
1307
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
945
|
-
upload_protocol?:
|
|
1308
|
+
upload_protocol?:
|
|
1309
|
+
string;
|
|
946
1310
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
947
|
-
uploadType?:
|
|
1311
|
+
uploadType?:
|
|
1312
|
+
string;
|
|
948
1313
|
}): Request<ListOperationsResponse>;
|
|
949
1314
|
}
|
|
950
1315
|
interface AppsResource {
|
|
951
|
-
authorizedCertificates:
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
1316
|
+
authorizedCertificates:
|
|
1317
|
+
AuthorizedCertificatesResource;
|
|
1318
|
+
authorizedDomains:
|
|
1319
|
+
AuthorizedDomainsResource;
|
|
1320
|
+
domainMappings:
|
|
1321
|
+
DomainMappingsResource;
|
|
1322
|
+
locations:
|
|
1323
|
+
LocationsResource;
|
|
1324
|
+
operations:
|
|
1325
|
+
OperationsResource;
|
|
956
1326
|
}
|
|
957
1327
|
interface OperationsResource {
|
|
958
1328
|
/** 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. */
|
|
959
1329
|
get(request?: {
|
|
960
1330
|
/** V1 error format. */
|
|
961
|
-
"$.xgafv"?:
|
|
1331
|
+
"$.xgafv"?:
|
|
1332
|
+
string;
|
|
962
1333
|
/** OAuth access token. */
|
|
963
|
-
access_token?:
|
|
1334
|
+
access_token?:
|
|
1335
|
+
string;
|
|
964
1336
|
/** Data format for response. */
|
|
965
|
-
alt?:
|
|
1337
|
+
alt?:
|
|
1338
|
+
string;
|
|
966
1339
|
/** JSONP */
|
|
967
|
-
callback?:
|
|
1340
|
+
callback?:
|
|
1341
|
+
string;
|
|
968
1342
|
/** Selector specifying which fields to include in a partial response. */
|
|
969
|
-
fields?:
|
|
1343
|
+
fields?:
|
|
1344
|
+
string;
|
|
970
1345
|
/** 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. */
|
|
971
|
-
key?:
|
|
1346
|
+
key?:
|
|
1347
|
+
string;
|
|
972
1348
|
/** Part of `name`. See documentation of `projectsId`. */
|
|
973
|
-
locationsId:
|
|
1349
|
+
locationsId:
|
|
1350
|
+
string;
|
|
974
1351
|
/** OAuth 2.0 token for the current user. */
|
|
975
|
-
oauth_token?:
|
|
1352
|
+
oauth_token?:
|
|
1353
|
+
string;
|
|
976
1354
|
/** Part of `name`. See documentation of `projectsId`. */
|
|
977
|
-
operationsId:
|
|
1355
|
+
operationsId:
|
|
1356
|
+
string;
|
|
978
1357
|
/** Returns response with indentations and line breaks. */
|
|
979
|
-
prettyPrint?:
|
|
1358
|
+
prettyPrint?:
|
|
1359
|
+
boolean;
|
|
980
1360
|
/** Part of `name`. The name of the operation resource. */
|
|
981
|
-
projectsId:
|
|
1361
|
+
projectsId:
|
|
1362
|
+
string;
|
|
982
1363
|
/** 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. */
|
|
983
|
-
quotaUser?:
|
|
1364
|
+
quotaUser?:
|
|
1365
|
+
string;
|
|
984
1366
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
985
|
-
upload_protocol?:
|
|
1367
|
+
upload_protocol?:
|
|
1368
|
+
string;
|
|
986
1369
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
987
|
-
uploadType?:
|
|
1370
|
+
uploadType?:
|
|
1371
|
+
string;
|
|
988
1372
|
}): Request<Operation>;
|
|
989
1373
|
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns UNIMPLEMENTED. */
|
|
990
1374
|
list(request?: {
|
|
991
1375
|
/** V1 error format. */
|
|
992
|
-
"$.xgafv"?:
|
|
1376
|
+
"$.xgafv"?:
|
|
1377
|
+
string;
|
|
993
1378
|
/** OAuth access token. */
|
|
994
|
-
access_token?:
|
|
1379
|
+
access_token?:
|
|
1380
|
+
string;
|
|
995
1381
|
/** Data format for response. */
|
|
996
|
-
alt?:
|
|
1382
|
+
alt?:
|
|
1383
|
+
string;
|
|
997
1384
|
/** JSONP */
|
|
998
|
-
callback?:
|
|
1385
|
+
callback?:
|
|
1386
|
+
string;
|
|
999
1387
|
/** Selector specifying which fields to include in a partial response. */
|
|
1000
|
-
fields?:
|
|
1388
|
+
fields?:
|
|
1389
|
+
string;
|
|
1001
1390
|
/** The standard list filter. */
|
|
1002
|
-
filter?:
|
|
1391
|
+
filter?:
|
|
1392
|
+
string;
|
|
1003
1393
|
/** 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. */
|
|
1004
|
-
key?:
|
|
1394
|
+
key?:
|
|
1395
|
+
string;
|
|
1005
1396
|
/** Part of `name`. See documentation of `projectsId`. */
|
|
1006
|
-
locationsId:
|
|
1397
|
+
locationsId:
|
|
1398
|
+
string;
|
|
1007
1399
|
/** OAuth 2.0 token for the current user. */
|
|
1008
|
-
oauth_token?:
|
|
1400
|
+
oauth_token?:
|
|
1401
|
+
string;
|
|
1009
1402
|
/** The standard list page size. */
|
|
1010
|
-
pageSize?:
|
|
1403
|
+
pageSize?:
|
|
1404
|
+
number;
|
|
1011
1405
|
/** The standard list page token. */
|
|
1012
|
-
pageToken?:
|
|
1406
|
+
pageToken?:
|
|
1407
|
+
string;
|
|
1013
1408
|
/** Returns response with indentations and line breaks. */
|
|
1014
|
-
prettyPrint?:
|
|
1409
|
+
prettyPrint?:
|
|
1410
|
+
boolean;
|
|
1015
1411
|
/** Part of `name`. The name of the operation's parent resource. */
|
|
1016
|
-
projectsId:
|
|
1412
|
+
projectsId:
|
|
1413
|
+
string;
|
|
1017
1414
|
/** 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. */
|
|
1018
|
-
quotaUser?:
|
|
1415
|
+
quotaUser?:
|
|
1416
|
+
string;
|
|
1019
1417
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1020
|
-
upload_protocol?:
|
|
1418
|
+
upload_protocol?:
|
|
1419
|
+
string;
|
|
1021
1420
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1022
|
-
uploadType?:
|
|
1421
|
+
uploadType?:
|
|
1422
|
+
string;
|
|
1023
1423
|
}): Request<ListOperationsResponse>;
|
|
1024
1424
|
}
|
|
1025
1425
|
interface LocationsResource {
|
|
1026
1426
|
/** Gets information about a location. */
|
|
1027
1427
|
get(request?: {
|
|
1028
1428
|
/** V1 error format. */
|
|
1029
|
-
"$.xgafv"?:
|
|
1429
|
+
"$.xgafv"?:
|
|
1430
|
+
string;
|
|
1030
1431
|
/** OAuth access token. */
|
|
1031
|
-
access_token?:
|
|
1432
|
+
access_token?:
|
|
1433
|
+
string;
|
|
1032
1434
|
/** Data format for response. */
|
|
1033
|
-
alt?:
|
|
1435
|
+
alt?:
|
|
1436
|
+
string;
|
|
1034
1437
|
/** JSONP */
|
|
1035
|
-
callback?:
|
|
1438
|
+
callback?:
|
|
1439
|
+
string;
|
|
1036
1440
|
/** Selector specifying which fields to include in a partial response. */
|
|
1037
|
-
fields?:
|
|
1441
|
+
fields?:
|
|
1442
|
+
string;
|
|
1038
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. */
|
|
1039
|
-
key?:
|
|
1444
|
+
key?:
|
|
1445
|
+
string;
|
|
1040
1446
|
/** Part of `name`. See documentation of `projectsId`. */
|
|
1041
|
-
locationsId:
|
|
1447
|
+
locationsId:
|
|
1448
|
+
string;
|
|
1042
1449
|
/** OAuth 2.0 token for the current user. */
|
|
1043
|
-
oauth_token?:
|
|
1450
|
+
oauth_token?:
|
|
1451
|
+
string;
|
|
1044
1452
|
/** Returns response with indentations and line breaks. */
|
|
1045
|
-
prettyPrint?:
|
|
1453
|
+
prettyPrint?:
|
|
1454
|
+
boolean;
|
|
1046
1455
|
/** Part of `name`. Resource name for the location. */
|
|
1047
|
-
projectsId:
|
|
1456
|
+
projectsId:
|
|
1457
|
+
string;
|
|
1048
1458
|
/** 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. */
|
|
1049
|
-
quotaUser?:
|
|
1459
|
+
quotaUser?:
|
|
1460
|
+
string;
|
|
1050
1461
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1051
|
-
upload_protocol?:
|
|
1462
|
+
upload_protocol?:
|
|
1463
|
+
string;
|
|
1052
1464
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1053
|
-
uploadType?:
|
|
1465
|
+
uploadType?:
|
|
1466
|
+
string;
|
|
1054
1467
|
}): Request<Location>;
|
|
1055
1468
|
/** Lists information about the supported locations for this service. */
|
|
1056
1469
|
list(request?: {
|
|
1057
1470
|
/** V1 error format. */
|
|
1058
|
-
"$.xgafv"?:
|
|
1471
|
+
"$.xgafv"?:
|
|
1472
|
+
string;
|
|
1059
1473
|
/** OAuth access token. */
|
|
1060
|
-
access_token?:
|
|
1474
|
+
access_token?:
|
|
1475
|
+
string;
|
|
1061
1476
|
/** Data format for response. */
|
|
1062
|
-
alt?:
|
|
1477
|
+
alt?:
|
|
1478
|
+
string;
|
|
1063
1479
|
/** JSONP */
|
|
1064
|
-
callback?:
|
|
1480
|
+
callback?:
|
|
1481
|
+
string;
|
|
1065
1482
|
/** Selector specifying which fields to include in a partial response. */
|
|
1066
|
-
fields?:
|
|
1483
|
+
fields?:
|
|
1484
|
+
string;
|
|
1067
1485
|
/**
|
|
1068
1486
|
* 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 AIP-160
|
|
1069
1487
|
* (https://google.aip.dev/160).
|
|
1070
1488
|
*/
|
|
1071
|
-
filter?:
|
|
1489
|
+
filter?:
|
|
1490
|
+
string;
|
|
1072
1491
|
/** 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. */
|
|
1073
|
-
key?:
|
|
1492
|
+
key?:
|
|
1493
|
+
string;
|
|
1074
1494
|
/** OAuth 2.0 token for the current user. */
|
|
1075
|
-
oauth_token?:
|
|
1495
|
+
oauth_token?:
|
|
1496
|
+
string;
|
|
1076
1497
|
/** The maximum number of results to return. If not set, the service selects a default. */
|
|
1077
|
-
pageSize?:
|
|
1498
|
+
pageSize?:
|
|
1499
|
+
number;
|
|
1078
1500
|
/** A page token received from the next_page_token field in the response. Send that page token to receive the subsequent page. */
|
|
1079
|
-
pageToken?:
|
|
1501
|
+
pageToken?:
|
|
1502
|
+
string;
|
|
1080
1503
|
/** Returns response with indentations and line breaks. */
|
|
1081
|
-
prettyPrint?:
|
|
1504
|
+
prettyPrint?:
|
|
1505
|
+
boolean;
|
|
1082
1506
|
/** Part of `name`. The resource that owns the locations collection, if applicable. */
|
|
1083
|
-
projectsId:
|
|
1507
|
+
projectsId:
|
|
1508
|
+
string;
|
|
1084
1509
|
/** 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. */
|
|
1085
|
-
quotaUser?:
|
|
1510
|
+
quotaUser?:
|
|
1511
|
+
string;
|
|
1086
1512
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1087
|
-
upload_protocol?:
|
|
1513
|
+
upload_protocol?:
|
|
1514
|
+
string;
|
|
1088
1515
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1089
|
-
uploadType?:
|
|
1516
|
+
uploadType?:
|
|
1517
|
+
string;
|
|
1090
1518
|
}): Request<ListLocationsResponse>;
|
|
1091
|
-
operations:
|
|
1519
|
+
operations:
|
|
1520
|
+
OperationsResource;
|
|
1092
1521
|
}
|
|
1093
1522
|
interface ProjectsResource {
|
|
1094
|
-
locations:
|
|
1523
|
+
locations:
|
|
1524
|
+
LocationsResource;
|
|
1095
1525
|
}
|
|
1096
1526
|
|
|
1097
1527
|
const apps: AppsResource;
|