@maxim_mazurok/gapi.client.logging-v2 0.0.20240618 → 0.0.20240620
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 +395 -31
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://logging.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240620
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -187,9 +187,9 @@ declare namespace gapi.client {
|
|
|
187
187
|
cacheLookup?: boolean;
|
|
188
188
|
/** Whether or not the response was validated with the origin server before being served from cache. This field is only meaningful if cache_hit is True. */
|
|
189
189
|
cacheValidatedWithOriginServer?: boolean;
|
|
190
|
-
/** The request processing latency on the server, from the time the request was received until the response was sent. */
|
|
190
|
+
/** The request processing latency on the server, from the time the request was received until the response was sent. For WebSocket connections, this field refers to the entire time duration of the connection. */
|
|
191
191
|
latency?: string;
|
|
192
|
-
/** Protocol used for the request. Examples: "HTTP/1.1", "HTTP/2"
|
|
192
|
+
/** Protocol used for the request. Examples: "HTTP/1.1", "HTTP/2" */
|
|
193
193
|
protocol?: string;
|
|
194
194
|
/** The referer URL of the request, as defined in HTTP/1.1 Header Field Definitions (https://datatracker.ietf.org/doc/html/rfc2616#section-14.36). */
|
|
195
195
|
referer?: string;
|
|
@@ -1981,6 +1981,8 @@ declare namespace gapi.client {
|
|
|
1981
1981
|
callback?: string;
|
|
1982
1982
|
/** Selector specifying which fields to include in a partial response. */
|
|
1983
1983
|
fields?: string;
|
|
1984
|
+
/** Optional. Specifies the type ("Logging" or "OpsAnalytics") of the recent queries to list. The only valid value for this field is one of the two allowable type function calls, which are the following: type("Logging") type("OpsAnalytics") */
|
|
1985
|
+
filter?: string;
|
|
1984
1986
|
/** 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. */
|
|
1985
1987
|
key?: string;
|
|
1986
1988
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -2091,6 +2093,33 @@ declare namespace gapi.client {
|
|
|
2091
2093
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2092
2094
|
uploadType?: string;
|
|
2093
2095
|
}): Request<{}>;
|
|
2096
|
+
/** Returns all data associated with the requested query. */
|
|
2097
|
+
get(request?: {
|
|
2098
|
+
/** V1 error format. */
|
|
2099
|
+
'$.xgafv'?: string;
|
|
2100
|
+
/** OAuth access token. */
|
|
2101
|
+
access_token?: string;
|
|
2102
|
+
/** Data format for response. */
|
|
2103
|
+
alt?: string;
|
|
2104
|
+
/** JSONP */
|
|
2105
|
+
callback?: string;
|
|
2106
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2107
|
+
fields?: string;
|
|
2108
|
+
/** 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. */
|
|
2109
|
+
key?: string;
|
|
2110
|
+
/** Required. The resource name of the saved query. "projects/[PROJECT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" "organizations/[ORGANIZATION_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" "billingAccounts/[BILLING_ACCOUNT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" "folders/[FOLDER_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" For example: "projects/my-project/locations/global/savedQueries/my-saved-query" */
|
|
2111
|
+
name: string;
|
|
2112
|
+
/** OAuth 2.0 token for the current user. */
|
|
2113
|
+
oauth_token?: string;
|
|
2114
|
+
/** Returns response with indentations and line breaks. */
|
|
2115
|
+
prettyPrint?: boolean;
|
|
2116
|
+
/** 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. */
|
|
2117
|
+
quotaUser?: string;
|
|
2118
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2119
|
+
upload_protocol?: string;
|
|
2120
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2121
|
+
uploadType?: string;
|
|
2122
|
+
}): Request<SavedQuery>;
|
|
2094
2123
|
/** Lists the SavedQueries that were created by the user making the request. */
|
|
2095
2124
|
list(request?: {
|
|
2096
2125
|
/** V1 error format. */
|
|
@@ -2122,6 +2151,68 @@ declare namespace gapi.client {
|
|
|
2122
2151
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2123
2152
|
uploadType?: string;
|
|
2124
2153
|
}): Request<ListSavedQueriesResponse>;
|
|
2154
|
+
/** Updates an existing SavedQuery. */
|
|
2155
|
+
patch(request: {
|
|
2156
|
+
/** V1 error format. */
|
|
2157
|
+
'$.xgafv'?: string;
|
|
2158
|
+
/** OAuth access token. */
|
|
2159
|
+
access_token?: string;
|
|
2160
|
+
/** Data format for response. */
|
|
2161
|
+
alt?: string;
|
|
2162
|
+
/** JSONP */
|
|
2163
|
+
callback?: string;
|
|
2164
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2165
|
+
fields?: string;
|
|
2166
|
+
/** 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. */
|
|
2167
|
+
key?: string;
|
|
2168
|
+
/** Output only. Resource name of the saved query.In the format: "projects/[PROJECT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" For a list of supported locations, see Supported Regions (https://cloud.google.com/logging/docs/region-support#bucket-regions)After the saved query is created, the location cannot be changed.If the user doesn't provide a QUERY_ID, the system will generate an alphanumeric ID. */
|
|
2169
|
+
name: string;
|
|
2170
|
+
/** OAuth 2.0 token for the current user. */
|
|
2171
|
+
oauth_token?: string;
|
|
2172
|
+
/** Returns response with indentations and line breaks. */
|
|
2173
|
+
prettyPrint?: boolean;
|
|
2174
|
+
/** 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. */
|
|
2175
|
+
quotaUser?: string;
|
|
2176
|
+
/** Required. A non-empty list of fields to change in the existing saved query. Fields are relative to the saved_query and new values for the fields are taken from the corresponding fields in the SavedQuery included in this request. Fields not mentioned in update_mask are not changed and are ignored in the request.To update all mutable fields, specify an update_mask of *.For example, to change the description and query filter text of a saved query, specify an update_mask of "description, query.filter". */
|
|
2177
|
+
updateMask?: string;
|
|
2178
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2179
|
+
upload_protocol?: string;
|
|
2180
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2181
|
+
uploadType?: string;
|
|
2182
|
+
/** Request body */
|
|
2183
|
+
resource: SavedQuery;
|
|
2184
|
+
}): Request<SavedQuery>;
|
|
2185
|
+
patch(
|
|
2186
|
+
request: {
|
|
2187
|
+
/** V1 error format. */
|
|
2188
|
+
'$.xgafv'?: string;
|
|
2189
|
+
/** OAuth access token. */
|
|
2190
|
+
access_token?: string;
|
|
2191
|
+
/** Data format for response. */
|
|
2192
|
+
alt?: string;
|
|
2193
|
+
/** JSONP */
|
|
2194
|
+
callback?: string;
|
|
2195
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2196
|
+
fields?: string;
|
|
2197
|
+
/** 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. */
|
|
2198
|
+
key?: string;
|
|
2199
|
+
/** Output only. Resource name of the saved query.In the format: "projects/[PROJECT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" For a list of supported locations, see Supported Regions (https://cloud.google.com/logging/docs/region-support#bucket-regions)After the saved query is created, the location cannot be changed.If the user doesn't provide a QUERY_ID, the system will generate an alphanumeric ID. */
|
|
2200
|
+
name: string;
|
|
2201
|
+
/** OAuth 2.0 token for the current user. */
|
|
2202
|
+
oauth_token?: string;
|
|
2203
|
+
/** Returns response with indentations and line breaks. */
|
|
2204
|
+
prettyPrint?: boolean;
|
|
2205
|
+
/** 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. */
|
|
2206
|
+
quotaUser?: string;
|
|
2207
|
+
/** Required. A non-empty list of fields to change in the existing saved query. Fields are relative to the saved_query and new values for the fields are taken from the corresponding fields in the SavedQuery included in this request. Fields not mentioned in update_mask are not changed and are ignored in the request.To update all mutable fields, specify an update_mask of *.For example, to change the description and query filter text of a saved query, specify an update_mask of "description, query.filter". */
|
|
2208
|
+
updateMask?: string;
|
|
2209
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2210
|
+
upload_protocol?: string;
|
|
2211
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2212
|
+
uploadType?: string;
|
|
2213
|
+
},
|
|
2214
|
+
body: SavedQuery
|
|
2215
|
+
): Request<SavedQuery>;
|
|
2125
2216
|
}
|
|
2126
2217
|
interface LocationsResource {
|
|
2127
2218
|
/** Gets information about a location. */
|
|
@@ -2262,7 +2353,7 @@ declare namespace gapi.client {
|
|
|
2262
2353
|
alt?: string;
|
|
2263
2354
|
/** JSONP */
|
|
2264
2355
|
callback?: string;
|
|
2265
|
-
/** Optional.
|
|
2356
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
2266
2357
|
customWriterIdentity?: string;
|
|
2267
2358
|
/** Selector specifying which fields to include in a partial response. */
|
|
2268
2359
|
fields?: string;
|
|
@@ -2295,7 +2386,7 @@ declare namespace gapi.client {
|
|
|
2295
2386
|
alt?: string;
|
|
2296
2387
|
/** JSONP */
|
|
2297
2388
|
callback?: string;
|
|
2298
|
-
/** Optional.
|
|
2389
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
2299
2390
|
customWriterIdentity?: string;
|
|
2300
2391
|
/** Selector specifying which fields to include in a partial response. */
|
|
2301
2392
|
fields?: string;
|
|
@@ -2415,7 +2506,7 @@ declare namespace gapi.client {
|
|
|
2415
2506
|
alt?: string;
|
|
2416
2507
|
/** JSONP */
|
|
2417
2508
|
callback?: string;
|
|
2418
|
-
/** Optional.
|
|
2509
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
2419
2510
|
customWriterIdentity?: string;
|
|
2420
2511
|
/** Selector specifying which fields to include in a partial response. */
|
|
2421
2512
|
fields?: string;
|
|
@@ -2450,7 +2541,7 @@ declare namespace gapi.client {
|
|
|
2450
2541
|
alt?: string;
|
|
2451
2542
|
/** JSONP */
|
|
2452
2543
|
callback?: string;
|
|
2453
|
-
/** Optional.
|
|
2544
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
2454
2545
|
customWriterIdentity?: string;
|
|
2455
2546
|
/** Selector specifying which fields to include in a partial response. */
|
|
2456
2547
|
fields?: string;
|
|
@@ -2485,7 +2576,7 @@ declare namespace gapi.client {
|
|
|
2485
2576
|
alt?: string;
|
|
2486
2577
|
/** JSONP */
|
|
2487
2578
|
callback?: string;
|
|
2488
|
-
/** Optional.
|
|
2579
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
2489
2580
|
customWriterIdentity?: string;
|
|
2490
2581
|
/** Selector specifying which fields to include in a partial response. */
|
|
2491
2582
|
fields?: string;
|
|
@@ -2520,7 +2611,7 @@ declare namespace gapi.client {
|
|
|
2520
2611
|
alt?: string;
|
|
2521
2612
|
/** JSONP */
|
|
2522
2613
|
callback?: string;
|
|
2523
|
-
/** Optional.
|
|
2614
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
2524
2615
|
customWriterIdentity?: string;
|
|
2525
2616
|
/** Selector specifying which fields to include in a partial response. */
|
|
2526
2617
|
fields?: string;
|
|
@@ -4252,6 +4343,8 @@ declare namespace gapi.client {
|
|
|
4252
4343
|
callback?: string;
|
|
4253
4344
|
/** Selector specifying which fields to include in a partial response. */
|
|
4254
4345
|
fields?: string;
|
|
4346
|
+
/** Optional. Specifies the type ("Logging" or "OpsAnalytics") of the recent queries to list. The only valid value for this field is one of the two allowable type function calls, which are the following: type("Logging") type("OpsAnalytics") */
|
|
4347
|
+
filter?: string;
|
|
4255
4348
|
/** 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. */
|
|
4256
4349
|
key?: string;
|
|
4257
4350
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -4362,6 +4455,33 @@ declare namespace gapi.client {
|
|
|
4362
4455
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4363
4456
|
uploadType?: string;
|
|
4364
4457
|
}): Request<{}>;
|
|
4458
|
+
/** Returns all data associated with the requested query. */
|
|
4459
|
+
get(request?: {
|
|
4460
|
+
/** V1 error format. */
|
|
4461
|
+
'$.xgafv'?: string;
|
|
4462
|
+
/** OAuth access token. */
|
|
4463
|
+
access_token?: string;
|
|
4464
|
+
/** Data format for response. */
|
|
4465
|
+
alt?: string;
|
|
4466
|
+
/** JSONP */
|
|
4467
|
+
callback?: string;
|
|
4468
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4469
|
+
fields?: string;
|
|
4470
|
+
/** 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. */
|
|
4471
|
+
key?: string;
|
|
4472
|
+
/** Required. The resource name of the saved query. "projects/[PROJECT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" "organizations/[ORGANIZATION_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" "billingAccounts/[BILLING_ACCOUNT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" "folders/[FOLDER_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" For example: "projects/my-project/locations/global/savedQueries/my-saved-query" */
|
|
4473
|
+
name: string;
|
|
4474
|
+
/** OAuth 2.0 token for the current user. */
|
|
4475
|
+
oauth_token?: string;
|
|
4476
|
+
/** Returns response with indentations and line breaks. */
|
|
4477
|
+
prettyPrint?: boolean;
|
|
4478
|
+
/** 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. */
|
|
4479
|
+
quotaUser?: string;
|
|
4480
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4481
|
+
upload_protocol?: string;
|
|
4482
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4483
|
+
uploadType?: string;
|
|
4484
|
+
}): Request<SavedQuery>;
|
|
4365
4485
|
/** Lists the SavedQueries that were created by the user making the request. */
|
|
4366
4486
|
list(request?: {
|
|
4367
4487
|
/** V1 error format. */
|
|
@@ -4393,6 +4513,68 @@ declare namespace gapi.client {
|
|
|
4393
4513
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4394
4514
|
uploadType?: string;
|
|
4395
4515
|
}): Request<ListSavedQueriesResponse>;
|
|
4516
|
+
/** Updates an existing SavedQuery. */
|
|
4517
|
+
patch(request: {
|
|
4518
|
+
/** V1 error format. */
|
|
4519
|
+
'$.xgafv'?: string;
|
|
4520
|
+
/** OAuth access token. */
|
|
4521
|
+
access_token?: string;
|
|
4522
|
+
/** Data format for response. */
|
|
4523
|
+
alt?: string;
|
|
4524
|
+
/** JSONP */
|
|
4525
|
+
callback?: string;
|
|
4526
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4527
|
+
fields?: string;
|
|
4528
|
+
/** 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. */
|
|
4529
|
+
key?: string;
|
|
4530
|
+
/** Output only. Resource name of the saved query.In the format: "projects/[PROJECT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" For a list of supported locations, see Supported Regions (https://cloud.google.com/logging/docs/region-support#bucket-regions)After the saved query is created, the location cannot be changed.If the user doesn't provide a QUERY_ID, the system will generate an alphanumeric ID. */
|
|
4531
|
+
name: string;
|
|
4532
|
+
/** OAuth 2.0 token for the current user. */
|
|
4533
|
+
oauth_token?: string;
|
|
4534
|
+
/** Returns response with indentations and line breaks. */
|
|
4535
|
+
prettyPrint?: boolean;
|
|
4536
|
+
/** 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. */
|
|
4537
|
+
quotaUser?: string;
|
|
4538
|
+
/** Required. A non-empty list of fields to change in the existing saved query. Fields are relative to the saved_query and new values for the fields are taken from the corresponding fields in the SavedQuery included in this request. Fields not mentioned in update_mask are not changed and are ignored in the request.To update all mutable fields, specify an update_mask of *.For example, to change the description and query filter text of a saved query, specify an update_mask of "description, query.filter". */
|
|
4539
|
+
updateMask?: string;
|
|
4540
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4541
|
+
upload_protocol?: string;
|
|
4542
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4543
|
+
uploadType?: string;
|
|
4544
|
+
/** Request body */
|
|
4545
|
+
resource: SavedQuery;
|
|
4546
|
+
}): Request<SavedQuery>;
|
|
4547
|
+
patch(
|
|
4548
|
+
request: {
|
|
4549
|
+
/** V1 error format. */
|
|
4550
|
+
'$.xgafv'?: string;
|
|
4551
|
+
/** OAuth access token. */
|
|
4552
|
+
access_token?: string;
|
|
4553
|
+
/** Data format for response. */
|
|
4554
|
+
alt?: string;
|
|
4555
|
+
/** JSONP */
|
|
4556
|
+
callback?: string;
|
|
4557
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4558
|
+
fields?: string;
|
|
4559
|
+
/** 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. */
|
|
4560
|
+
key?: string;
|
|
4561
|
+
/** Output only. Resource name of the saved query.In the format: "projects/[PROJECT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" For a list of supported locations, see Supported Regions (https://cloud.google.com/logging/docs/region-support#bucket-regions)After the saved query is created, the location cannot be changed.If the user doesn't provide a QUERY_ID, the system will generate an alphanumeric ID. */
|
|
4562
|
+
name: string;
|
|
4563
|
+
/** OAuth 2.0 token for the current user. */
|
|
4564
|
+
oauth_token?: string;
|
|
4565
|
+
/** Returns response with indentations and line breaks. */
|
|
4566
|
+
prettyPrint?: boolean;
|
|
4567
|
+
/** 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. */
|
|
4568
|
+
quotaUser?: string;
|
|
4569
|
+
/** Required. A non-empty list of fields to change in the existing saved query. Fields are relative to the saved_query and new values for the fields are taken from the corresponding fields in the SavedQuery included in this request. Fields not mentioned in update_mask are not changed and are ignored in the request.To update all mutable fields, specify an update_mask of *.For example, to change the description and query filter text of a saved query, specify an update_mask of "description, query.filter". */
|
|
4570
|
+
updateMask?: string;
|
|
4571
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4572
|
+
upload_protocol?: string;
|
|
4573
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4574
|
+
uploadType?: string;
|
|
4575
|
+
},
|
|
4576
|
+
body: SavedQuery
|
|
4577
|
+
): Request<SavedQuery>;
|
|
4396
4578
|
}
|
|
4397
4579
|
interface LocationsResource {
|
|
4398
4580
|
/** Gets information about a location. */
|
|
@@ -4533,7 +4715,7 @@ declare namespace gapi.client {
|
|
|
4533
4715
|
alt?: string;
|
|
4534
4716
|
/** JSONP */
|
|
4535
4717
|
callback?: string;
|
|
4536
|
-
/** Optional.
|
|
4718
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
4537
4719
|
customWriterIdentity?: string;
|
|
4538
4720
|
/** Selector specifying which fields to include in a partial response. */
|
|
4539
4721
|
fields?: string;
|
|
@@ -4566,7 +4748,7 @@ declare namespace gapi.client {
|
|
|
4566
4748
|
alt?: string;
|
|
4567
4749
|
/** JSONP */
|
|
4568
4750
|
callback?: string;
|
|
4569
|
-
/** Optional.
|
|
4751
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
4570
4752
|
customWriterIdentity?: string;
|
|
4571
4753
|
/** Selector specifying which fields to include in a partial response. */
|
|
4572
4754
|
fields?: string;
|
|
@@ -4686,7 +4868,7 @@ declare namespace gapi.client {
|
|
|
4686
4868
|
alt?: string;
|
|
4687
4869
|
/** JSONP */
|
|
4688
4870
|
callback?: string;
|
|
4689
|
-
/** Optional.
|
|
4871
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
4690
4872
|
customWriterIdentity?: string;
|
|
4691
4873
|
/** Selector specifying which fields to include in a partial response. */
|
|
4692
4874
|
fields?: string;
|
|
@@ -4721,7 +4903,7 @@ declare namespace gapi.client {
|
|
|
4721
4903
|
alt?: string;
|
|
4722
4904
|
/** JSONP */
|
|
4723
4905
|
callback?: string;
|
|
4724
|
-
/** Optional.
|
|
4906
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
4725
4907
|
customWriterIdentity?: string;
|
|
4726
4908
|
/** Selector specifying which fields to include in a partial response. */
|
|
4727
4909
|
fields?: string;
|
|
@@ -4756,7 +4938,7 @@ declare namespace gapi.client {
|
|
|
4756
4938
|
alt?: string;
|
|
4757
4939
|
/** JSONP */
|
|
4758
4940
|
callback?: string;
|
|
4759
|
-
/** Optional.
|
|
4941
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
4760
4942
|
customWriterIdentity?: string;
|
|
4761
4943
|
/** Selector specifying which fields to include in a partial response. */
|
|
4762
4944
|
fields?: string;
|
|
@@ -4791,7 +4973,7 @@ declare namespace gapi.client {
|
|
|
4791
4973
|
alt?: string;
|
|
4792
4974
|
/** JSONP */
|
|
4793
4975
|
callback?: string;
|
|
4794
|
-
/** Optional.
|
|
4976
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
4795
4977
|
customWriterIdentity?: string;
|
|
4796
4978
|
/** Selector specifying which fields to include in a partial response. */
|
|
4797
4979
|
fields?: string;
|
|
@@ -7282,6 +7464,8 @@ declare namespace gapi.client {
|
|
|
7282
7464
|
callback?: string;
|
|
7283
7465
|
/** Selector specifying which fields to include in a partial response. */
|
|
7284
7466
|
fields?: string;
|
|
7467
|
+
/** Optional. Specifies the type ("Logging" or "OpsAnalytics") of the recent queries to list. The only valid value for this field is one of the two allowable type function calls, which are the following: type("Logging") type("OpsAnalytics") */
|
|
7468
|
+
filter?: string;
|
|
7285
7469
|
/** 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. */
|
|
7286
7470
|
key?: string;
|
|
7287
7471
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -7392,6 +7576,33 @@ declare namespace gapi.client {
|
|
|
7392
7576
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7393
7577
|
uploadType?: string;
|
|
7394
7578
|
}): Request<{}>;
|
|
7579
|
+
/** Returns all data associated with the requested query. */
|
|
7580
|
+
get(request?: {
|
|
7581
|
+
/** V1 error format. */
|
|
7582
|
+
'$.xgafv'?: string;
|
|
7583
|
+
/** OAuth access token. */
|
|
7584
|
+
access_token?: string;
|
|
7585
|
+
/** Data format for response. */
|
|
7586
|
+
alt?: string;
|
|
7587
|
+
/** JSONP */
|
|
7588
|
+
callback?: string;
|
|
7589
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7590
|
+
fields?: string;
|
|
7591
|
+
/** 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. */
|
|
7592
|
+
key?: string;
|
|
7593
|
+
/** Required. The resource name of the saved query. "projects/[PROJECT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" "organizations/[ORGANIZATION_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" "billingAccounts/[BILLING_ACCOUNT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" "folders/[FOLDER_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" For example: "projects/my-project/locations/global/savedQueries/my-saved-query" */
|
|
7594
|
+
name: string;
|
|
7595
|
+
/** OAuth 2.0 token for the current user. */
|
|
7596
|
+
oauth_token?: string;
|
|
7597
|
+
/** Returns response with indentations and line breaks. */
|
|
7598
|
+
prettyPrint?: boolean;
|
|
7599
|
+
/** 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. */
|
|
7600
|
+
quotaUser?: string;
|
|
7601
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7602
|
+
upload_protocol?: string;
|
|
7603
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7604
|
+
uploadType?: string;
|
|
7605
|
+
}): Request<SavedQuery>;
|
|
7395
7606
|
/** Lists the SavedQueries that were created by the user making the request. */
|
|
7396
7607
|
list(request?: {
|
|
7397
7608
|
/** V1 error format. */
|
|
@@ -7423,6 +7634,68 @@ declare namespace gapi.client {
|
|
|
7423
7634
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7424
7635
|
uploadType?: string;
|
|
7425
7636
|
}): Request<ListSavedQueriesResponse>;
|
|
7637
|
+
/** Updates an existing SavedQuery. */
|
|
7638
|
+
patch(request: {
|
|
7639
|
+
/** V1 error format. */
|
|
7640
|
+
'$.xgafv'?: string;
|
|
7641
|
+
/** OAuth access token. */
|
|
7642
|
+
access_token?: string;
|
|
7643
|
+
/** Data format for response. */
|
|
7644
|
+
alt?: string;
|
|
7645
|
+
/** JSONP */
|
|
7646
|
+
callback?: string;
|
|
7647
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7648
|
+
fields?: string;
|
|
7649
|
+
/** 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. */
|
|
7650
|
+
key?: string;
|
|
7651
|
+
/** Output only. Resource name of the saved query.In the format: "projects/[PROJECT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" For a list of supported locations, see Supported Regions (https://cloud.google.com/logging/docs/region-support#bucket-regions)After the saved query is created, the location cannot be changed.If the user doesn't provide a QUERY_ID, the system will generate an alphanumeric ID. */
|
|
7652
|
+
name: string;
|
|
7653
|
+
/** OAuth 2.0 token for the current user. */
|
|
7654
|
+
oauth_token?: string;
|
|
7655
|
+
/** Returns response with indentations and line breaks. */
|
|
7656
|
+
prettyPrint?: boolean;
|
|
7657
|
+
/** 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. */
|
|
7658
|
+
quotaUser?: string;
|
|
7659
|
+
/** Required. A non-empty list of fields to change in the existing saved query. Fields are relative to the saved_query and new values for the fields are taken from the corresponding fields in the SavedQuery included in this request. Fields not mentioned in update_mask are not changed and are ignored in the request.To update all mutable fields, specify an update_mask of *.For example, to change the description and query filter text of a saved query, specify an update_mask of "description, query.filter". */
|
|
7660
|
+
updateMask?: string;
|
|
7661
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7662
|
+
upload_protocol?: string;
|
|
7663
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7664
|
+
uploadType?: string;
|
|
7665
|
+
/** Request body */
|
|
7666
|
+
resource: SavedQuery;
|
|
7667
|
+
}): Request<SavedQuery>;
|
|
7668
|
+
patch(
|
|
7669
|
+
request: {
|
|
7670
|
+
/** V1 error format. */
|
|
7671
|
+
'$.xgafv'?: string;
|
|
7672
|
+
/** OAuth access token. */
|
|
7673
|
+
access_token?: string;
|
|
7674
|
+
/** Data format for response. */
|
|
7675
|
+
alt?: string;
|
|
7676
|
+
/** JSONP */
|
|
7677
|
+
callback?: string;
|
|
7678
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7679
|
+
fields?: string;
|
|
7680
|
+
/** 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. */
|
|
7681
|
+
key?: string;
|
|
7682
|
+
/** Output only. Resource name of the saved query.In the format: "projects/[PROJECT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" For a list of supported locations, see Supported Regions (https://cloud.google.com/logging/docs/region-support#bucket-regions)After the saved query is created, the location cannot be changed.If the user doesn't provide a QUERY_ID, the system will generate an alphanumeric ID. */
|
|
7683
|
+
name: string;
|
|
7684
|
+
/** OAuth 2.0 token for the current user. */
|
|
7685
|
+
oauth_token?: string;
|
|
7686
|
+
/** Returns response with indentations and line breaks. */
|
|
7687
|
+
prettyPrint?: boolean;
|
|
7688
|
+
/** 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. */
|
|
7689
|
+
quotaUser?: string;
|
|
7690
|
+
/** Required. A non-empty list of fields to change in the existing saved query. Fields are relative to the saved_query and new values for the fields are taken from the corresponding fields in the SavedQuery included in this request. Fields not mentioned in update_mask are not changed and are ignored in the request.To update all mutable fields, specify an update_mask of *.For example, to change the description and query filter text of a saved query, specify an update_mask of "description, query.filter". */
|
|
7691
|
+
updateMask?: string;
|
|
7692
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7693
|
+
upload_protocol?: string;
|
|
7694
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7695
|
+
uploadType?: string;
|
|
7696
|
+
},
|
|
7697
|
+
body: SavedQuery
|
|
7698
|
+
): Request<SavedQuery>;
|
|
7426
7699
|
}
|
|
7427
7700
|
interface LocationsResource {
|
|
7428
7701
|
/** Gets information about a location. */
|
|
@@ -7563,7 +7836,7 @@ declare namespace gapi.client {
|
|
|
7563
7836
|
alt?: string;
|
|
7564
7837
|
/** JSONP */
|
|
7565
7838
|
callback?: string;
|
|
7566
|
-
/** Optional.
|
|
7839
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
7567
7840
|
customWriterIdentity?: string;
|
|
7568
7841
|
/** Selector specifying which fields to include in a partial response. */
|
|
7569
7842
|
fields?: string;
|
|
@@ -7596,7 +7869,7 @@ declare namespace gapi.client {
|
|
|
7596
7869
|
alt?: string;
|
|
7597
7870
|
/** JSONP */
|
|
7598
7871
|
callback?: string;
|
|
7599
|
-
/** Optional.
|
|
7872
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
7600
7873
|
customWriterIdentity?: string;
|
|
7601
7874
|
/** Selector specifying which fields to include in a partial response. */
|
|
7602
7875
|
fields?: string;
|
|
@@ -7716,7 +7989,7 @@ declare namespace gapi.client {
|
|
|
7716
7989
|
alt?: string;
|
|
7717
7990
|
/** JSONP */
|
|
7718
7991
|
callback?: string;
|
|
7719
|
-
/** Optional.
|
|
7992
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
7720
7993
|
customWriterIdentity?: string;
|
|
7721
7994
|
/** Selector specifying which fields to include in a partial response. */
|
|
7722
7995
|
fields?: string;
|
|
@@ -7751,7 +8024,7 @@ declare namespace gapi.client {
|
|
|
7751
8024
|
alt?: string;
|
|
7752
8025
|
/** JSONP */
|
|
7753
8026
|
callback?: string;
|
|
7754
|
-
/** Optional.
|
|
8027
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
7755
8028
|
customWriterIdentity?: string;
|
|
7756
8029
|
/** Selector specifying which fields to include in a partial response. */
|
|
7757
8030
|
fields?: string;
|
|
@@ -7786,7 +8059,7 @@ declare namespace gapi.client {
|
|
|
7786
8059
|
alt?: string;
|
|
7787
8060
|
/** JSONP */
|
|
7788
8061
|
callback?: string;
|
|
7789
|
-
/** Optional.
|
|
8062
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
7790
8063
|
customWriterIdentity?: string;
|
|
7791
8064
|
/** Selector specifying which fields to include in a partial response. */
|
|
7792
8065
|
fields?: string;
|
|
@@ -7821,7 +8094,7 @@ declare namespace gapi.client {
|
|
|
7821
8094
|
alt?: string;
|
|
7822
8095
|
/** JSONP */
|
|
7823
8096
|
callback?: string;
|
|
7824
|
-
/** Optional.
|
|
8097
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
7825
8098
|
customWriterIdentity?: string;
|
|
7826
8099
|
/** Selector specifying which fields to include in a partial response. */
|
|
7827
8100
|
fields?: string;
|
|
@@ -9252,6 +9525,8 @@ declare namespace gapi.client {
|
|
|
9252
9525
|
callback?: string;
|
|
9253
9526
|
/** Selector specifying which fields to include in a partial response. */
|
|
9254
9527
|
fields?: string;
|
|
9528
|
+
/** Optional. Specifies the type ("Logging" or "OpsAnalytics") of the recent queries to list. The only valid value for this field is one of the two allowable type function calls, which are the following: type("Logging") type("OpsAnalytics") */
|
|
9529
|
+
filter?: string;
|
|
9255
9530
|
/** 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. */
|
|
9256
9531
|
key?: string;
|
|
9257
9532
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -9362,6 +9637,33 @@ declare namespace gapi.client {
|
|
|
9362
9637
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9363
9638
|
uploadType?: string;
|
|
9364
9639
|
}): Request<{}>;
|
|
9640
|
+
/** Returns all data associated with the requested query. */
|
|
9641
|
+
get(request?: {
|
|
9642
|
+
/** V1 error format. */
|
|
9643
|
+
'$.xgafv'?: string;
|
|
9644
|
+
/** OAuth access token. */
|
|
9645
|
+
access_token?: string;
|
|
9646
|
+
/** Data format for response. */
|
|
9647
|
+
alt?: string;
|
|
9648
|
+
/** JSONP */
|
|
9649
|
+
callback?: string;
|
|
9650
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
9651
|
+
fields?: string;
|
|
9652
|
+
/** 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. */
|
|
9653
|
+
key?: string;
|
|
9654
|
+
/** Required. The resource name of the saved query. "projects/[PROJECT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" "organizations/[ORGANIZATION_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" "billingAccounts/[BILLING_ACCOUNT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" "folders/[FOLDER_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" For example: "projects/my-project/locations/global/savedQueries/my-saved-query" */
|
|
9655
|
+
name: string;
|
|
9656
|
+
/** OAuth 2.0 token for the current user. */
|
|
9657
|
+
oauth_token?: string;
|
|
9658
|
+
/** Returns response with indentations and line breaks. */
|
|
9659
|
+
prettyPrint?: boolean;
|
|
9660
|
+
/** 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. */
|
|
9661
|
+
quotaUser?: string;
|
|
9662
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
9663
|
+
upload_protocol?: string;
|
|
9664
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9665
|
+
uploadType?: string;
|
|
9666
|
+
}): Request<SavedQuery>;
|
|
9365
9667
|
/** Lists the SavedQueries that were created by the user making the request. */
|
|
9366
9668
|
list(request?: {
|
|
9367
9669
|
/** V1 error format. */
|
|
@@ -9393,6 +9695,68 @@ declare namespace gapi.client {
|
|
|
9393
9695
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9394
9696
|
uploadType?: string;
|
|
9395
9697
|
}): Request<ListSavedQueriesResponse>;
|
|
9698
|
+
/** Updates an existing SavedQuery. */
|
|
9699
|
+
patch(request: {
|
|
9700
|
+
/** V1 error format. */
|
|
9701
|
+
'$.xgafv'?: string;
|
|
9702
|
+
/** OAuth access token. */
|
|
9703
|
+
access_token?: string;
|
|
9704
|
+
/** Data format for response. */
|
|
9705
|
+
alt?: string;
|
|
9706
|
+
/** JSONP */
|
|
9707
|
+
callback?: string;
|
|
9708
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
9709
|
+
fields?: string;
|
|
9710
|
+
/** 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. */
|
|
9711
|
+
key?: string;
|
|
9712
|
+
/** Output only. Resource name of the saved query.In the format: "projects/[PROJECT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" For a list of supported locations, see Supported Regions (https://cloud.google.com/logging/docs/region-support#bucket-regions)After the saved query is created, the location cannot be changed.If the user doesn't provide a QUERY_ID, the system will generate an alphanumeric ID. */
|
|
9713
|
+
name: string;
|
|
9714
|
+
/** OAuth 2.0 token for the current user. */
|
|
9715
|
+
oauth_token?: string;
|
|
9716
|
+
/** Returns response with indentations and line breaks. */
|
|
9717
|
+
prettyPrint?: boolean;
|
|
9718
|
+
/** 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. */
|
|
9719
|
+
quotaUser?: string;
|
|
9720
|
+
/** Required. A non-empty list of fields to change in the existing saved query. Fields are relative to the saved_query and new values for the fields are taken from the corresponding fields in the SavedQuery included in this request. Fields not mentioned in update_mask are not changed and are ignored in the request.To update all mutable fields, specify an update_mask of *.For example, to change the description and query filter text of a saved query, specify an update_mask of "description, query.filter". */
|
|
9721
|
+
updateMask?: string;
|
|
9722
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
9723
|
+
upload_protocol?: string;
|
|
9724
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9725
|
+
uploadType?: string;
|
|
9726
|
+
/** Request body */
|
|
9727
|
+
resource: SavedQuery;
|
|
9728
|
+
}): Request<SavedQuery>;
|
|
9729
|
+
patch(
|
|
9730
|
+
request: {
|
|
9731
|
+
/** V1 error format. */
|
|
9732
|
+
'$.xgafv'?: string;
|
|
9733
|
+
/** OAuth access token. */
|
|
9734
|
+
access_token?: string;
|
|
9735
|
+
/** Data format for response. */
|
|
9736
|
+
alt?: string;
|
|
9737
|
+
/** JSONP */
|
|
9738
|
+
callback?: string;
|
|
9739
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
9740
|
+
fields?: string;
|
|
9741
|
+
/** 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. */
|
|
9742
|
+
key?: string;
|
|
9743
|
+
/** Output only. Resource name of the saved query.In the format: "projects/[PROJECT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]" For a list of supported locations, see Supported Regions (https://cloud.google.com/logging/docs/region-support#bucket-regions)After the saved query is created, the location cannot be changed.If the user doesn't provide a QUERY_ID, the system will generate an alphanumeric ID. */
|
|
9744
|
+
name: string;
|
|
9745
|
+
/** OAuth 2.0 token for the current user. */
|
|
9746
|
+
oauth_token?: string;
|
|
9747
|
+
/** Returns response with indentations and line breaks. */
|
|
9748
|
+
prettyPrint?: boolean;
|
|
9749
|
+
/** 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. */
|
|
9750
|
+
quotaUser?: string;
|
|
9751
|
+
/** Required. A non-empty list of fields to change in the existing saved query. Fields are relative to the saved_query and new values for the fields are taken from the corresponding fields in the SavedQuery included in this request. Fields not mentioned in update_mask are not changed and are ignored in the request.To update all mutable fields, specify an update_mask of *.For example, to change the description and query filter text of a saved query, specify an update_mask of "description, query.filter". */
|
|
9752
|
+
updateMask?: string;
|
|
9753
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
9754
|
+
upload_protocol?: string;
|
|
9755
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9756
|
+
uploadType?: string;
|
|
9757
|
+
},
|
|
9758
|
+
body: SavedQuery
|
|
9759
|
+
): Request<SavedQuery>;
|
|
9396
9760
|
}
|
|
9397
9761
|
interface LocationsResource {
|
|
9398
9762
|
/** Gets information about a location. */
|
|
@@ -9736,7 +10100,7 @@ declare namespace gapi.client {
|
|
|
9736
10100
|
alt?: string;
|
|
9737
10101
|
/** JSONP */
|
|
9738
10102
|
callback?: string;
|
|
9739
|
-
/** Optional.
|
|
10103
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
9740
10104
|
customWriterIdentity?: string;
|
|
9741
10105
|
/** Selector specifying which fields to include in a partial response. */
|
|
9742
10106
|
fields?: string;
|
|
@@ -9769,7 +10133,7 @@ declare namespace gapi.client {
|
|
|
9769
10133
|
alt?: string;
|
|
9770
10134
|
/** JSONP */
|
|
9771
10135
|
callback?: string;
|
|
9772
|
-
/** Optional.
|
|
10136
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
9773
10137
|
customWriterIdentity?: string;
|
|
9774
10138
|
/** Selector specifying which fields to include in a partial response. */
|
|
9775
10139
|
fields?: string;
|
|
@@ -9889,7 +10253,7 @@ declare namespace gapi.client {
|
|
|
9889
10253
|
alt?: string;
|
|
9890
10254
|
/** JSONP */
|
|
9891
10255
|
callback?: string;
|
|
9892
|
-
/** Optional.
|
|
10256
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
9893
10257
|
customWriterIdentity?: string;
|
|
9894
10258
|
/** Selector specifying which fields to include in a partial response. */
|
|
9895
10259
|
fields?: string;
|
|
@@ -9924,7 +10288,7 @@ declare namespace gapi.client {
|
|
|
9924
10288
|
alt?: string;
|
|
9925
10289
|
/** JSONP */
|
|
9926
10290
|
callback?: string;
|
|
9927
|
-
/** Optional.
|
|
10291
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
9928
10292
|
customWriterIdentity?: string;
|
|
9929
10293
|
/** Selector specifying which fields to include in a partial response. */
|
|
9930
10294
|
fields?: string;
|
|
@@ -9959,7 +10323,7 @@ declare namespace gapi.client {
|
|
|
9959
10323
|
alt?: string;
|
|
9960
10324
|
/** JSONP */
|
|
9961
10325
|
callback?: string;
|
|
9962
|
-
/** Optional.
|
|
10326
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
9963
10327
|
customWriterIdentity?: string;
|
|
9964
10328
|
/** Selector specifying which fields to include in a partial response. */
|
|
9965
10329
|
fields?: string;
|
|
@@ -9994,7 +10358,7 @@ declare namespace gapi.client {
|
|
|
9994
10358
|
alt?: string;
|
|
9995
10359
|
/** JSONP */
|
|
9996
10360
|
callback?: string;
|
|
9997
|
-
/** Optional.
|
|
10361
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
9998
10362
|
customWriterIdentity?: string;
|
|
9999
10363
|
/** Selector specifying which fields to include in a partial response. */
|
|
10000
10364
|
fields?: string;
|
|
@@ -10092,7 +10456,7 @@ declare namespace gapi.client {
|
|
|
10092
10456
|
alt?: string;
|
|
10093
10457
|
/** JSONP */
|
|
10094
10458
|
callback?: string;
|
|
10095
|
-
/** Optional.
|
|
10459
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
10096
10460
|
customWriterIdentity?: string;
|
|
10097
10461
|
/** Selector specifying which fields to include in a partial response. */
|
|
10098
10462
|
fields?: string;
|
|
@@ -10125,7 +10489,7 @@ declare namespace gapi.client {
|
|
|
10125
10489
|
alt?: string;
|
|
10126
10490
|
/** JSONP */
|
|
10127
10491
|
callback?: string;
|
|
10128
|
-
/** Optional.
|
|
10492
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
10129
10493
|
customWriterIdentity?: string;
|
|
10130
10494
|
/** Selector specifying which fields to include in a partial response. */
|
|
10131
10495
|
fields?: string;
|
|
@@ -10245,7 +10609,7 @@ declare namespace gapi.client {
|
|
|
10245
10609
|
alt?: string;
|
|
10246
10610
|
/** JSONP */
|
|
10247
10611
|
callback?: string;
|
|
10248
|
-
/** Optional.
|
|
10612
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
10249
10613
|
customWriterIdentity?: string;
|
|
10250
10614
|
/** Selector specifying which fields to include in a partial response. */
|
|
10251
10615
|
fields?: string;
|
|
@@ -10280,7 +10644,7 @@ declare namespace gapi.client {
|
|
|
10280
10644
|
alt?: string;
|
|
10281
10645
|
/** JSONP */
|
|
10282
10646
|
callback?: string;
|
|
10283
|
-
/** Optional.
|
|
10647
|
+
/** Optional. The service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified when you are routing logs to a log bucket that is in a different project than the sink. When not specified, a Logging service account will automatically be generated. */
|
|
10284
10648
|
customWriterIdentity?: string;
|
|
10285
10649
|
/** Selector specifying which fields to include in a partial response. */
|
|
10286
10650
|
fields?: string;
|