@google-cloud/logging-api 0.1.0
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/README.md +111 -0
- package/build/protos/google/logging/type/http_request.proto +95 -0
- package/build/protos/google/logging/type/log_severity.proto +71 -0
- package/build/protos/google/logging/v2/log_entry.proto +280 -0
- package/build/protos/google/logging/v2/logging.proto +483 -0
- package/build/protos/google/logging/v2/logging_config.proto +2317 -0
- package/build/protos/google/logging/v2/logging_metrics.proto +339 -0
- package/build/protos/protos.d.ts +19677 -0
- package/build/protos/protos.js +1 -0
- package/build/protos/protos.json +1 -0
- package/build/src/index.d.ts +17 -0
- package/build/src/index.js +32 -0
- package/build/src/index.js.map +1 -0
- package/build/src/v2/config_service_v2_client.d.ts +2879 -0
- package/build/src/v2/config_service_v2_client.js +3801 -0
- package/build/src/v2/config_service_v2_client.js.map +1 -0
- package/build/src/v2/config_service_v2_client_config.json +169 -0
- package/build/src/v2/config_service_v2_proto_list.json +8 -0
- package/build/src/v2/gapic_metadata.json +512 -0
- package/build/src/v2/index.d.ts +3 -0
- package/build/src/v2/index.js +27 -0
- package/build/src/v2/index.js.map +1 -0
- package/build/src/v2/logging_service_v2_client.d.ts +1617 -0
- package/build/src/v2/logging_service_v2_client.js +2177 -0
- package/build/src/v2/logging_service_v2_client.js.map +1 -0
- package/build/src/v2/logging_service_v2_client_config.json +61 -0
- package/build/src/v2/logging_service_v2_proto_list.json +8 -0
- package/build/src/v2/metrics_service_v2_client.d.ts +1249 -0
- package/build/src/v2/metrics_service_v2_client.js +1911 -0
- package/build/src/v2/metrics_service_v2_client.js.map +1 -0
- package/build/src/v2/metrics_service_v2_client_config.json +56 -0
- package/build/src/v2/metrics_service_v2_proto_list.json +8 -0
- package/package.json +67 -0
|
@@ -0,0 +1,1249 @@
|
|
|
1
|
+
import type * as gax from 'google-gax';
|
|
2
|
+
import type { Callback, CallOptions, Descriptors, ClientOptions, PaginationCallback } from 'google-gax';
|
|
3
|
+
import { Transform } from 'stream';
|
|
4
|
+
import * as protos from '../../protos/protos';
|
|
5
|
+
/**
|
|
6
|
+
* Service for configuring logs-based metrics.
|
|
7
|
+
* @class
|
|
8
|
+
* @memberof v2
|
|
9
|
+
*/
|
|
10
|
+
export declare class MetricsServiceV2Client {
|
|
11
|
+
private _terminated;
|
|
12
|
+
private _opts;
|
|
13
|
+
private _providedCustomServicePath;
|
|
14
|
+
private _gaxModule;
|
|
15
|
+
private _gaxGrpc;
|
|
16
|
+
private _protos;
|
|
17
|
+
private _defaults;
|
|
18
|
+
private _universeDomain;
|
|
19
|
+
private _servicePath;
|
|
20
|
+
private _log;
|
|
21
|
+
auth: gax.GoogleAuth;
|
|
22
|
+
descriptors: Descriptors;
|
|
23
|
+
warn: (code: string, message: string, warnType?: string) => void;
|
|
24
|
+
innerApiCalls: {
|
|
25
|
+
[name: string]: Function;
|
|
26
|
+
};
|
|
27
|
+
pathTemplates: {
|
|
28
|
+
[name: string]: gax.PathTemplate;
|
|
29
|
+
};
|
|
30
|
+
metricsServiceV2Stub?: Promise<{
|
|
31
|
+
[name: string]: Function;
|
|
32
|
+
}>;
|
|
33
|
+
/**
|
|
34
|
+
* Construct an instance of MetricsServiceV2Client.
|
|
35
|
+
*
|
|
36
|
+
* @param {object} [options] - The configuration object.
|
|
37
|
+
* The options accepted by the constructor are described in detail
|
|
38
|
+
* in [this document](https://github.com/googleapis/gax-nodejs/blob/main/client-libraries.md#creating-the-client-instance).
|
|
39
|
+
* The common options are:
|
|
40
|
+
* @param {object} [options.credentials] - Credentials object.
|
|
41
|
+
* @param {string} [options.credentials.client_email]
|
|
42
|
+
* @param {string} [options.credentials.private_key]
|
|
43
|
+
* @param {string} [options.email] - Account email address. Required when
|
|
44
|
+
* using a .pem or .p12 keyFilename.
|
|
45
|
+
* @param {string} [options.keyFilename] - Full path to the a .json, .pem, or
|
|
46
|
+
* .p12 key downloaded from the Google Developers Console. If you provide
|
|
47
|
+
* a path to a JSON file, the projectId option below is not necessary.
|
|
48
|
+
* NOTE: .pem and .p12 require you to specify options.email as well.
|
|
49
|
+
* @param {number} [options.port] - The port on which to connect to
|
|
50
|
+
* the remote host.
|
|
51
|
+
* @param {string} [options.projectId] - The project ID from the Google
|
|
52
|
+
* Developer's Console, e.g. 'grape-spaceship-123'. We will also check
|
|
53
|
+
* the environment variable GCLOUD_PROJECT for your project ID. If your
|
|
54
|
+
* app is running in an environment which supports
|
|
55
|
+
* {@link https://cloud.google.com/docs/authentication/application-default-credentials Application Default Credentials},
|
|
56
|
+
* your project ID will be detected automatically.
|
|
57
|
+
* @param {string} [options.apiEndpoint] - The domain name of the
|
|
58
|
+
* API remote host.
|
|
59
|
+
* @param {gax.ClientConfig} [options.clientConfig] - Client configuration override.
|
|
60
|
+
* Follows the structure of {@link gapicConfig}.
|
|
61
|
+
* @param {boolean} [options.fallback] - Use HTTP/1.1 REST mode.
|
|
62
|
+
* For more information, please check the
|
|
63
|
+
* {@link https://github.com/googleapis/gax-nodejs/blob/main/client-libraries.md#http11-rest-api-mode documentation}.
|
|
64
|
+
* @param {gax} [gaxInstance]: loaded instance of `google-gax`. Useful if you
|
|
65
|
+
* need to avoid loading the default gRPC version and want to use the fallback
|
|
66
|
+
* HTTP implementation. Load only fallback version and pass it to the constructor:
|
|
67
|
+
* ```
|
|
68
|
+
* const gax = require('google-gax/build/src/fallback'); // avoids loading google-gax with gRPC
|
|
69
|
+
* const client = new MetricsServiceV2Client({fallback: true}, gax);
|
|
70
|
+
* ```
|
|
71
|
+
*/
|
|
72
|
+
constructor(opts?: ClientOptions, gaxInstance?: typeof gax | typeof gax.fallback);
|
|
73
|
+
/**
|
|
74
|
+
* Initialize the client.
|
|
75
|
+
* Performs asynchronous operations (such as authentication) and prepares the client.
|
|
76
|
+
* This function will be called automatically when any class method is called for the
|
|
77
|
+
* first time, but if you need to initialize it before calling an actual method,
|
|
78
|
+
* feel free to call initialize() directly.
|
|
79
|
+
*
|
|
80
|
+
* You can await on this method if you want to make sure the client is initialized.
|
|
81
|
+
*
|
|
82
|
+
* @returns {Promise} A promise that resolves to an authenticated service stub.
|
|
83
|
+
*/
|
|
84
|
+
initialize(): Promise<{
|
|
85
|
+
[name: string]: Function;
|
|
86
|
+
}>;
|
|
87
|
+
/**
|
|
88
|
+
* The DNS address for this API service.
|
|
89
|
+
* @deprecated Use the apiEndpoint method of the client instance.
|
|
90
|
+
* @returns {string} The DNS address for this service.
|
|
91
|
+
*/
|
|
92
|
+
static get servicePath(): string;
|
|
93
|
+
/**
|
|
94
|
+
* The DNS address for this API service - same as servicePath.
|
|
95
|
+
* @deprecated Use the apiEndpoint method of the client instance.
|
|
96
|
+
* @returns {string} The DNS address for this service.
|
|
97
|
+
*/
|
|
98
|
+
static get apiEndpoint(): string;
|
|
99
|
+
/**
|
|
100
|
+
* The DNS address for this API service.
|
|
101
|
+
* @returns {string} The DNS address for this service.
|
|
102
|
+
*/
|
|
103
|
+
get apiEndpoint(): string;
|
|
104
|
+
get universeDomain(): string;
|
|
105
|
+
/**
|
|
106
|
+
* The port for this API service.
|
|
107
|
+
* @returns {number} The default port for this service.
|
|
108
|
+
*/
|
|
109
|
+
static get port(): number;
|
|
110
|
+
/**
|
|
111
|
+
* The scopes needed to make gRPC calls for every method defined
|
|
112
|
+
* in this service.
|
|
113
|
+
* @returns {string[]} List of default scopes.
|
|
114
|
+
*/
|
|
115
|
+
static get scopes(): string[];
|
|
116
|
+
getProjectId(): Promise<string>;
|
|
117
|
+
getProjectId(callback: Callback<string, undefined, undefined>): void;
|
|
118
|
+
/**
|
|
119
|
+
* Gets a logs-based metric.
|
|
120
|
+
*
|
|
121
|
+
* @param {Object} request
|
|
122
|
+
* The request object that will be sent.
|
|
123
|
+
* @param {string} request.metricName
|
|
124
|
+
* Required. The resource name of the desired metric:
|
|
125
|
+
*
|
|
126
|
+
* "projects/[PROJECT_ID]/metrics/[METRIC_ID]"
|
|
127
|
+
* @param {object} [options]
|
|
128
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
129
|
+
* @returns {Promise} - The promise which resolves to an array.
|
|
130
|
+
* The first element of the array is an object representing {@link protos.google.logging.v2.LogMetric|LogMetric}.
|
|
131
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
|
132
|
+
* for more details and examples.
|
|
133
|
+
* @example <caption>include:samples/generated/v2/metrics_service_v2.get_log_metric.js</caption>
|
|
134
|
+
* region_tag:logging_v2_generated_MetricsServiceV2_GetLogMetric_async
|
|
135
|
+
*/
|
|
136
|
+
getLogMetric(request?: protos.google.logging.v2.IGetLogMetricRequest, options?: CallOptions): Promise<[
|
|
137
|
+
protos.google.logging.v2.ILogMetric,
|
|
138
|
+
protos.google.logging.v2.IGetLogMetricRequest | undefined,
|
|
139
|
+
{} | undefined
|
|
140
|
+
]>;
|
|
141
|
+
getLogMetric(request: protos.google.logging.v2.IGetLogMetricRequest, options: CallOptions, callback: Callback<protos.google.logging.v2.ILogMetric, protos.google.logging.v2.IGetLogMetricRequest | null | undefined, {} | null | undefined>): void;
|
|
142
|
+
getLogMetric(request: protos.google.logging.v2.IGetLogMetricRequest, callback: Callback<protos.google.logging.v2.ILogMetric, protos.google.logging.v2.IGetLogMetricRequest | null | undefined, {} | null | undefined>): void;
|
|
143
|
+
/**
|
|
144
|
+
* Creates a logs-based metric.
|
|
145
|
+
*
|
|
146
|
+
* @param {Object} request
|
|
147
|
+
* The request object that will be sent.
|
|
148
|
+
* @param {string} request.parent
|
|
149
|
+
* Required. The resource name of the project in which to create the metric:
|
|
150
|
+
*
|
|
151
|
+
* "projects/[PROJECT_ID]"
|
|
152
|
+
*
|
|
153
|
+
* The new metric must be provided in the request.
|
|
154
|
+
* @param {google.logging.v2.LogMetric} request.metric
|
|
155
|
+
* Required. The new logs-based metric, which must not have an identifier that
|
|
156
|
+
* already exists.
|
|
157
|
+
* @param {object} [options]
|
|
158
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
159
|
+
* @returns {Promise} - The promise which resolves to an array.
|
|
160
|
+
* The first element of the array is an object representing {@link protos.google.logging.v2.LogMetric|LogMetric}.
|
|
161
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
|
162
|
+
* for more details and examples.
|
|
163
|
+
* @example <caption>include:samples/generated/v2/metrics_service_v2.create_log_metric.js</caption>
|
|
164
|
+
* region_tag:logging_v2_generated_MetricsServiceV2_CreateLogMetric_async
|
|
165
|
+
*/
|
|
166
|
+
createLogMetric(request?: protos.google.logging.v2.ICreateLogMetricRequest, options?: CallOptions): Promise<[
|
|
167
|
+
protos.google.logging.v2.ILogMetric,
|
|
168
|
+
protos.google.logging.v2.ICreateLogMetricRequest | undefined,
|
|
169
|
+
{} | undefined
|
|
170
|
+
]>;
|
|
171
|
+
createLogMetric(request: protos.google.logging.v2.ICreateLogMetricRequest, options: CallOptions, callback: Callback<protos.google.logging.v2.ILogMetric, protos.google.logging.v2.ICreateLogMetricRequest | null | undefined, {} | null | undefined>): void;
|
|
172
|
+
createLogMetric(request: protos.google.logging.v2.ICreateLogMetricRequest, callback: Callback<protos.google.logging.v2.ILogMetric, protos.google.logging.v2.ICreateLogMetricRequest | null | undefined, {} | null | undefined>): void;
|
|
173
|
+
/**
|
|
174
|
+
* Creates or updates a logs-based metric.
|
|
175
|
+
*
|
|
176
|
+
* @param {Object} request
|
|
177
|
+
* The request object that will be sent.
|
|
178
|
+
* @param {string} request.metricName
|
|
179
|
+
* Required. The resource name of the metric to update:
|
|
180
|
+
*
|
|
181
|
+
* "projects/[PROJECT_ID]/metrics/[METRIC_ID]"
|
|
182
|
+
*
|
|
183
|
+
* The updated metric must be provided in the request and it's
|
|
184
|
+
* `name` field must be the same as `[METRIC_ID]` If the metric
|
|
185
|
+
* does not exist in `[PROJECT_ID]`, then a new metric is created.
|
|
186
|
+
* @param {google.logging.v2.LogMetric} request.metric
|
|
187
|
+
* Required. The updated metric.
|
|
188
|
+
* @param {object} [options]
|
|
189
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
190
|
+
* @returns {Promise} - The promise which resolves to an array.
|
|
191
|
+
* The first element of the array is an object representing {@link protos.google.logging.v2.LogMetric|LogMetric}.
|
|
192
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
|
193
|
+
* for more details and examples.
|
|
194
|
+
* @example <caption>include:samples/generated/v2/metrics_service_v2.update_log_metric.js</caption>
|
|
195
|
+
* region_tag:logging_v2_generated_MetricsServiceV2_UpdateLogMetric_async
|
|
196
|
+
*/
|
|
197
|
+
updateLogMetric(request?: protos.google.logging.v2.IUpdateLogMetricRequest, options?: CallOptions): Promise<[
|
|
198
|
+
protos.google.logging.v2.ILogMetric,
|
|
199
|
+
protos.google.logging.v2.IUpdateLogMetricRequest | undefined,
|
|
200
|
+
{} | undefined
|
|
201
|
+
]>;
|
|
202
|
+
updateLogMetric(request: protos.google.logging.v2.IUpdateLogMetricRequest, options: CallOptions, callback: Callback<protos.google.logging.v2.ILogMetric, protos.google.logging.v2.IUpdateLogMetricRequest | null | undefined, {} | null | undefined>): void;
|
|
203
|
+
updateLogMetric(request: protos.google.logging.v2.IUpdateLogMetricRequest, callback: Callback<protos.google.logging.v2.ILogMetric, protos.google.logging.v2.IUpdateLogMetricRequest | null | undefined, {} | null | undefined>): void;
|
|
204
|
+
/**
|
|
205
|
+
* Deletes a logs-based metric.
|
|
206
|
+
*
|
|
207
|
+
* @param {Object} request
|
|
208
|
+
* The request object that will be sent.
|
|
209
|
+
* @param {string} request.metricName
|
|
210
|
+
* Required. The resource name of the metric to delete:
|
|
211
|
+
*
|
|
212
|
+
* "projects/[PROJECT_ID]/metrics/[METRIC_ID]"
|
|
213
|
+
* @param {object} [options]
|
|
214
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
215
|
+
* @returns {Promise} - The promise which resolves to an array.
|
|
216
|
+
* The first element of the array is an object representing {@link protos.google.protobuf.Empty|Empty}.
|
|
217
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
|
218
|
+
* for more details and examples.
|
|
219
|
+
* @example <caption>include:samples/generated/v2/metrics_service_v2.delete_log_metric.js</caption>
|
|
220
|
+
* region_tag:logging_v2_generated_MetricsServiceV2_DeleteLogMetric_async
|
|
221
|
+
*/
|
|
222
|
+
deleteLogMetric(request?: protos.google.logging.v2.IDeleteLogMetricRequest, options?: CallOptions): Promise<[
|
|
223
|
+
protos.google.protobuf.IEmpty,
|
|
224
|
+
protos.google.logging.v2.IDeleteLogMetricRequest | undefined,
|
|
225
|
+
{} | undefined
|
|
226
|
+
]>;
|
|
227
|
+
deleteLogMetric(request: protos.google.logging.v2.IDeleteLogMetricRequest, options: CallOptions, callback: Callback<protos.google.protobuf.IEmpty, protos.google.logging.v2.IDeleteLogMetricRequest | null | undefined, {} | null | undefined>): void;
|
|
228
|
+
deleteLogMetric(request: protos.google.logging.v2.IDeleteLogMetricRequest, callback: Callback<protos.google.protobuf.IEmpty, protos.google.logging.v2.IDeleteLogMetricRequest | null | undefined, {} | null | undefined>): void;
|
|
229
|
+
/**
|
|
230
|
+
* Lists logs-based metrics.
|
|
231
|
+
*
|
|
232
|
+
* @param {Object} request
|
|
233
|
+
* The request object that will be sent.
|
|
234
|
+
* @param {string} request.parent
|
|
235
|
+
* Required. The name of the project containing the metrics:
|
|
236
|
+
*
|
|
237
|
+
* "projects/[PROJECT_ID]"
|
|
238
|
+
* @param {string} [request.pageToken]
|
|
239
|
+
* Optional. If present, then retrieve the next batch of results from the
|
|
240
|
+
* preceding call to this method. `pageToken` must be the value of
|
|
241
|
+
* `nextPageToken` from the previous response. The values of other method
|
|
242
|
+
* parameters should be identical to those in the previous call.
|
|
243
|
+
* @param {number} [request.pageSize]
|
|
244
|
+
* Optional. The maximum number of results to return from this request.
|
|
245
|
+
* Non-positive values are ignored. The presence of `nextPageToken` in the
|
|
246
|
+
* response indicates that more results might be available.
|
|
247
|
+
* @param {object} [options]
|
|
248
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
249
|
+
* @returns {Promise} - The promise which resolves to an array.
|
|
250
|
+
* The first element of the array is Array of {@link protos.google.logging.v2.LogMetric|LogMetric}.
|
|
251
|
+
* The client library will perform auto-pagination by default: it will call the API as many
|
|
252
|
+
* times as needed and will merge results from all the pages into this array.
|
|
253
|
+
* Note that it can affect your quota.
|
|
254
|
+
* We recommend using `listLogMetricsAsync()`
|
|
255
|
+
* method described below for async iteration which you can stop as needed.
|
|
256
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
|
|
257
|
+
* for more details and examples.
|
|
258
|
+
*/
|
|
259
|
+
listLogMetrics(request?: protos.google.logging.v2.IListLogMetricsRequest, options?: CallOptions): Promise<[
|
|
260
|
+
protos.google.logging.v2.ILogMetric[],
|
|
261
|
+
protos.google.logging.v2.IListLogMetricsRequest | null,
|
|
262
|
+
protos.google.logging.v2.IListLogMetricsResponse
|
|
263
|
+
]>;
|
|
264
|
+
listLogMetrics(request: protos.google.logging.v2.IListLogMetricsRequest, options: CallOptions, callback: PaginationCallback<protos.google.logging.v2.IListLogMetricsRequest, protos.google.logging.v2.IListLogMetricsResponse | null | undefined, protos.google.logging.v2.ILogMetric>): void;
|
|
265
|
+
listLogMetrics(request: protos.google.logging.v2.IListLogMetricsRequest, callback: PaginationCallback<protos.google.logging.v2.IListLogMetricsRequest, protos.google.logging.v2.IListLogMetricsResponse | null | undefined, protos.google.logging.v2.ILogMetric>): void;
|
|
266
|
+
/**
|
|
267
|
+
* Equivalent to `listLogMetrics`, but returns a NodeJS Stream object.
|
|
268
|
+
* @param {Object} request
|
|
269
|
+
* The request object that will be sent.
|
|
270
|
+
* @param {string} request.parent
|
|
271
|
+
* Required. The name of the project containing the metrics:
|
|
272
|
+
*
|
|
273
|
+
* "projects/[PROJECT_ID]"
|
|
274
|
+
* @param {string} [request.pageToken]
|
|
275
|
+
* Optional. If present, then retrieve the next batch of results from the
|
|
276
|
+
* preceding call to this method. `pageToken` must be the value of
|
|
277
|
+
* `nextPageToken` from the previous response. The values of other method
|
|
278
|
+
* parameters should be identical to those in the previous call.
|
|
279
|
+
* @param {number} [request.pageSize]
|
|
280
|
+
* Optional. The maximum number of results to return from this request.
|
|
281
|
+
* Non-positive values are ignored. The presence of `nextPageToken` in the
|
|
282
|
+
* response indicates that more results might be available.
|
|
283
|
+
* @param {object} [options]
|
|
284
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
285
|
+
* @returns {Stream}
|
|
286
|
+
* An object stream which emits an object representing {@link protos.google.logging.v2.LogMetric|LogMetric} on 'data' event.
|
|
287
|
+
* The client library will perform auto-pagination by default: it will call the API as many
|
|
288
|
+
* times as needed. Note that it can affect your quota.
|
|
289
|
+
* We recommend using `listLogMetricsAsync()`
|
|
290
|
+
* method described below for async iteration which you can stop as needed.
|
|
291
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
|
|
292
|
+
* for more details and examples.
|
|
293
|
+
*/
|
|
294
|
+
listLogMetricsStream(request?: protos.google.logging.v2.IListLogMetricsRequest, options?: CallOptions): Transform;
|
|
295
|
+
/**
|
|
296
|
+
* Equivalent to `listLogMetrics`, but returns an iterable object.
|
|
297
|
+
*
|
|
298
|
+
* `for`-`await`-`of` syntax is used with the iterable to get response elements on-demand.
|
|
299
|
+
* @param {Object} request
|
|
300
|
+
* The request object that will be sent.
|
|
301
|
+
* @param {string} request.parent
|
|
302
|
+
* Required. The name of the project containing the metrics:
|
|
303
|
+
*
|
|
304
|
+
* "projects/[PROJECT_ID]"
|
|
305
|
+
* @param {string} [request.pageToken]
|
|
306
|
+
* Optional. If present, then retrieve the next batch of results from the
|
|
307
|
+
* preceding call to this method. `pageToken` must be the value of
|
|
308
|
+
* `nextPageToken` from the previous response. The values of other method
|
|
309
|
+
* parameters should be identical to those in the previous call.
|
|
310
|
+
* @param {number} [request.pageSize]
|
|
311
|
+
* Optional. The maximum number of results to return from this request.
|
|
312
|
+
* Non-positive values are ignored. The presence of `nextPageToken` in the
|
|
313
|
+
* response indicates that more results might be available.
|
|
314
|
+
* @param {object} [options]
|
|
315
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
316
|
+
* @returns {Object}
|
|
317
|
+
* An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
|
|
318
|
+
* When you iterate the returned iterable, each element will be an object representing
|
|
319
|
+
* {@link protos.google.logging.v2.LogMetric|LogMetric}. The API will be called under the hood as needed, once per the page,
|
|
320
|
+
* so you can stop the iteration when you don't need more results.
|
|
321
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
|
|
322
|
+
* for more details and examples.
|
|
323
|
+
* @example <caption>include:samples/generated/v2/metrics_service_v2.list_log_metrics.js</caption>
|
|
324
|
+
* region_tag:logging_v2_generated_MetricsServiceV2_ListLogMetrics_async
|
|
325
|
+
*/
|
|
326
|
+
listLogMetricsAsync(request?: protos.google.logging.v2.IListLogMetricsRequest, options?: CallOptions): AsyncIterable<protos.google.logging.v2.ILogMetric>;
|
|
327
|
+
/**
|
|
328
|
+
* Return a fully-qualified billingAccountCmekSettings resource name string.
|
|
329
|
+
*
|
|
330
|
+
* @param {string} billing_account
|
|
331
|
+
* @returns {string} Resource name string.
|
|
332
|
+
*/
|
|
333
|
+
billingAccountCmekSettingsPath(billingAccount: string): string;
|
|
334
|
+
/**
|
|
335
|
+
* Parse the billing_account from BillingAccountCmekSettings resource.
|
|
336
|
+
*
|
|
337
|
+
* @param {string} billingAccountCmekSettingsName
|
|
338
|
+
* A fully-qualified path representing billing_account_cmekSettings resource.
|
|
339
|
+
* @returns {string} A string representing the billing_account.
|
|
340
|
+
*/
|
|
341
|
+
matchBillingAccountFromBillingAccountCmekSettingsName(billingAccountCmekSettingsName: string): string | number;
|
|
342
|
+
/**
|
|
343
|
+
* Return a fully-qualified billingAccountExclusion resource name string.
|
|
344
|
+
*
|
|
345
|
+
* @param {string} billing_account
|
|
346
|
+
* @param {string} exclusion
|
|
347
|
+
* @returns {string} Resource name string.
|
|
348
|
+
*/
|
|
349
|
+
billingAccountExclusionPath(billingAccount: string, exclusion: string): string;
|
|
350
|
+
/**
|
|
351
|
+
* Parse the billing_account from BillingAccountExclusion resource.
|
|
352
|
+
*
|
|
353
|
+
* @param {string} billingAccountExclusionName
|
|
354
|
+
* A fully-qualified path representing billing_account_exclusion resource.
|
|
355
|
+
* @returns {string} A string representing the billing_account.
|
|
356
|
+
*/
|
|
357
|
+
matchBillingAccountFromBillingAccountExclusionName(billingAccountExclusionName: string): string | number;
|
|
358
|
+
/**
|
|
359
|
+
* Parse the exclusion from BillingAccountExclusion resource.
|
|
360
|
+
*
|
|
361
|
+
* @param {string} billingAccountExclusionName
|
|
362
|
+
* A fully-qualified path representing billing_account_exclusion resource.
|
|
363
|
+
* @returns {string} A string representing the exclusion.
|
|
364
|
+
*/
|
|
365
|
+
matchExclusionFromBillingAccountExclusionName(billingAccountExclusionName: string): string | number;
|
|
366
|
+
/**
|
|
367
|
+
* Return a fully-qualified billingAccountLocationBucket resource name string.
|
|
368
|
+
*
|
|
369
|
+
* @param {string} billing_account
|
|
370
|
+
* @param {string} location
|
|
371
|
+
* @param {string} bucket
|
|
372
|
+
* @returns {string} Resource name string.
|
|
373
|
+
*/
|
|
374
|
+
billingAccountLocationBucketPath(billingAccount: string, location: string, bucket: string): string;
|
|
375
|
+
/**
|
|
376
|
+
* Parse the billing_account from BillingAccountLocationBucket resource.
|
|
377
|
+
*
|
|
378
|
+
* @param {string} billingAccountLocationBucketName
|
|
379
|
+
* A fully-qualified path representing billing_account_location_bucket resource.
|
|
380
|
+
* @returns {string} A string representing the billing_account.
|
|
381
|
+
*/
|
|
382
|
+
matchBillingAccountFromBillingAccountLocationBucketName(billingAccountLocationBucketName: string): string | number;
|
|
383
|
+
/**
|
|
384
|
+
* Parse the location from BillingAccountLocationBucket resource.
|
|
385
|
+
*
|
|
386
|
+
* @param {string} billingAccountLocationBucketName
|
|
387
|
+
* A fully-qualified path representing billing_account_location_bucket resource.
|
|
388
|
+
* @returns {string} A string representing the location.
|
|
389
|
+
*/
|
|
390
|
+
matchLocationFromBillingAccountLocationBucketName(billingAccountLocationBucketName: string): string | number;
|
|
391
|
+
/**
|
|
392
|
+
* Parse the bucket from BillingAccountLocationBucket resource.
|
|
393
|
+
*
|
|
394
|
+
* @param {string} billingAccountLocationBucketName
|
|
395
|
+
* A fully-qualified path representing billing_account_location_bucket resource.
|
|
396
|
+
* @returns {string} A string representing the bucket.
|
|
397
|
+
*/
|
|
398
|
+
matchBucketFromBillingAccountLocationBucketName(billingAccountLocationBucketName: string): string | number;
|
|
399
|
+
/**
|
|
400
|
+
* Return a fully-qualified billingAccountLocationBucketLink resource name string.
|
|
401
|
+
*
|
|
402
|
+
* @param {string} billing_account
|
|
403
|
+
* @param {string} location
|
|
404
|
+
* @param {string} bucket
|
|
405
|
+
* @param {string} link
|
|
406
|
+
* @returns {string} Resource name string.
|
|
407
|
+
*/
|
|
408
|
+
billingAccountLocationBucketLinkPath(billingAccount: string, location: string, bucket: string, link: string): string;
|
|
409
|
+
/**
|
|
410
|
+
* Parse the billing_account from BillingAccountLocationBucketLink resource.
|
|
411
|
+
*
|
|
412
|
+
* @param {string} billingAccountLocationBucketLinkName
|
|
413
|
+
* A fully-qualified path representing billing_account_location_bucket_link resource.
|
|
414
|
+
* @returns {string} A string representing the billing_account.
|
|
415
|
+
*/
|
|
416
|
+
matchBillingAccountFromBillingAccountLocationBucketLinkName(billingAccountLocationBucketLinkName: string): string | number;
|
|
417
|
+
/**
|
|
418
|
+
* Parse the location from BillingAccountLocationBucketLink resource.
|
|
419
|
+
*
|
|
420
|
+
* @param {string} billingAccountLocationBucketLinkName
|
|
421
|
+
* A fully-qualified path representing billing_account_location_bucket_link resource.
|
|
422
|
+
* @returns {string} A string representing the location.
|
|
423
|
+
*/
|
|
424
|
+
matchLocationFromBillingAccountLocationBucketLinkName(billingAccountLocationBucketLinkName: string): string | number;
|
|
425
|
+
/**
|
|
426
|
+
* Parse the bucket from BillingAccountLocationBucketLink resource.
|
|
427
|
+
*
|
|
428
|
+
* @param {string} billingAccountLocationBucketLinkName
|
|
429
|
+
* A fully-qualified path representing billing_account_location_bucket_link resource.
|
|
430
|
+
* @returns {string} A string representing the bucket.
|
|
431
|
+
*/
|
|
432
|
+
matchBucketFromBillingAccountLocationBucketLinkName(billingAccountLocationBucketLinkName: string): string | number;
|
|
433
|
+
/**
|
|
434
|
+
* Parse the link from BillingAccountLocationBucketLink resource.
|
|
435
|
+
*
|
|
436
|
+
* @param {string} billingAccountLocationBucketLinkName
|
|
437
|
+
* A fully-qualified path representing billing_account_location_bucket_link resource.
|
|
438
|
+
* @returns {string} A string representing the link.
|
|
439
|
+
*/
|
|
440
|
+
matchLinkFromBillingAccountLocationBucketLinkName(billingAccountLocationBucketLinkName: string): string | number;
|
|
441
|
+
/**
|
|
442
|
+
* Return a fully-qualified billingAccountLocationBucketView resource name string.
|
|
443
|
+
*
|
|
444
|
+
* @param {string} billing_account
|
|
445
|
+
* @param {string} location
|
|
446
|
+
* @param {string} bucket
|
|
447
|
+
* @param {string} view
|
|
448
|
+
* @returns {string} Resource name string.
|
|
449
|
+
*/
|
|
450
|
+
billingAccountLocationBucketViewPath(billingAccount: string, location: string, bucket: string, view: string): string;
|
|
451
|
+
/**
|
|
452
|
+
* Parse the billing_account from BillingAccountLocationBucketView resource.
|
|
453
|
+
*
|
|
454
|
+
* @param {string} billingAccountLocationBucketViewName
|
|
455
|
+
* A fully-qualified path representing billing_account_location_bucket_view resource.
|
|
456
|
+
* @returns {string} A string representing the billing_account.
|
|
457
|
+
*/
|
|
458
|
+
matchBillingAccountFromBillingAccountLocationBucketViewName(billingAccountLocationBucketViewName: string): string | number;
|
|
459
|
+
/**
|
|
460
|
+
* Parse the location from BillingAccountLocationBucketView resource.
|
|
461
|
+
*
|
|
462
|
+
* @param {string} billingAccountLocationBucketViewName
|
|
463
|
+
* A fully-qualified path representing billing_account_location_bucket_view resource.
|
|
464
|
+
* @returns {string} A string representing the location.
|
|
465
|
+
*/
|
|
466
|
+
matchLocationFromBillingAccountLocationBucketViewName(billingAccountLocationBucketViewName: string): string | number;
|
|
467
|
+
/**
|
|
468
|
+
* Parse the bucket from BillingAccountLocationBucketView resource.
|
|
469
|
+
*
|
|
470
|
+
* @param {string} billingAccountLocationBucketViewName
|
|
471
|
+
* A fully-qualified path representing billing_account_location_bucket_view resource.
|
|
472
|
+
* @returns {string} A string representing the bucket.
|
|
473
|
+
*/
|
|
474
|
+
matchBucketFromBillingAccountLocationBucketViewName(billingAccountLocationBucketViewName: string): string | number;
|
|
475
|
+
/**
|
|
476
|
+
* Parse the view from BillingAccountLocationBucketView resource.
|
|
477
|
+
*
|
|
478
|
+
* @param {string} billingAccountLocationBucketViewName
|
|
479
|
+
* A fully-qualified path representing billing_account_location_bucket_view resource.
|
|
480
|
+
* @returns {string} A string representing the view.
|
|
481
|
+
*/
|
|
482
|
+
matchViewFromBillingAccountLocationBucketViewName(billingAccountLocationBucketViewName: string): string | number;
|
|
483
|
+
/**
|
|
484
|
+
* Return a fully-qualified billingAccountLog resource name string.
|
|
485
|
+
*
|
|
486
|
+
* @param {string} billing_account
|
|
487
|
+
* @param {string} log
|
|
488
|
+
* @returns {string} Resource name string.
|
|
489
|
+
*/
|
|
490
|
+
billingAccountLogPath(billingAccount: string, log: string): string;
|
|
491
|
+
/**
|
|
492
|
+
* Parse the billing_account from BillingAccountLog resource.
|
|
493
|
+
*
|
|
494
|
+
* @param {string} billingAccountLogName
|
|
495
|
+
* A fully-qualified path representing billing_account_log resource.
|
|
496
|
+
* @returns {string} A string representing the billing_account.
|
|
497
|
+
*/
|
|
498
|
+
matchBillingAccountFromBillingAccountLogName(billingAccountLogName: string): string | number;
|
|
499
|
+
/**
|
|
500
|
+
* Parse the log from BillingAccountLog resource.
|
|
501
|
+
*
|
|
502
|
+
* @param {string} billingAccountLogName
|
|
503
|
+
* A fully-qualified path representing billing_account_log resource.
|
|
504
|
+
* @returns {string} A string representing the log.
|
|
505
|
+
*/
|
|
506
|
+
matchLogFromBillingAccountLogName(billingAccountLogName: string): string | number;
|
|
507
|
+
/**
|
|
508
|
+
* Return a fully-qualified billingAccountSettings resource name string.
|
|
509
|
+
*
|
|
510
|
+
* @param {string} billing_account
|
|
511
|
+
* @returns {string} Resource name string.
|
|
512
|
+
*/
|
|
513
|
+
billingAccountSettingsPath(billingAccount: string): string;
|
|
514
|
+
/**
|
|
515
|
+
* Parse the billing_account from BillingAccountSettings resource.
|
|
516
|
+
*
|
|
517
|
+
* @param {string} billingAccountSettingsName
|
|
518
|
+
* A fully-qualified path representing billing_account_settings resource.
|
|
519
|
+
* @returns {string} A string representing the billing_account.
|
|
520
|
+
*/
|
|
521
|
+
matchBillingAccountFromBillingAccountSettingsName(billingAccountSettingsName: string): string | number;
|
|
522
|
+
/**
|
|
523
|
+
* Return a fully-qualified billingAccountSink resource name string.
|
|
524
|
+
*
|
|
525
|
+
* @param {string} billing_account
|
|
526
|
+
* @param {string} sink
|
|
527
|
+
* @returns {string} Resource name string.
|
|
528
|
+
*/
|
|
529
|
+
billingAccountSinkPath(billingAccount: string, sink: string): string;
|
|
530
|
+
/**
|
|
531
|
+
* Parse the billing_account from BillingAccountSink resource.
|
|
532
|
+
*
|
|
533
|
+
* @param {string} billingAccountSinkName
|
|
534
|
+
* A fully-qualified path representing billing_account_sink resource.
|
|
535
|
+
* @returns {string} A string representing the billing_account.
|
|
536
|
+
*/
|
|
537
|
+
matchBillingAccountFromBillingAccountSinkName(billingAccountSinkName: string): string | number;
|
|
538
|
+
/**
|
|
539
|
+
* Parse the sink from BillingAccountSink resource.
|
|
540
|
+
*
|
|
541
|
+
* @param {string} billingAccountSinkName
|
|
542
|
+
* A fully-qualified path representing billing_account_sink resource.
|
|
543
|
+
* @returns {string} A string representing the sink.
|
|
544
|
+
*/
|
|
545
|
+
matchSinkFromBillingAccountSinkName(billingAccountSinkName: string): string | number;
|
|
546
|
+
/**
|
|
547
|
+
* Return a fully-qualified folderCmekSettings resource name string.
|
|
548
|
+
*
|
|
549
|
+
* @param {string} folder
|
|
550
|
+
* @returns {string} Resource name string.
|
|
551
|
+
*/
|
|
552
|
+
folderCmekSettingsPath(folder: string): string;
|
|
553
|
+
/**
|
|
554
|
+
* Parse the folder from FolderCmekSettings resource.
|
|
555
|
+
*
|
|
556
|
+
* @param {string} folderCmekSettingsName
|
|
557
|
+
* A fully-qualified path representing folder_cmekSettings resource.
|
|
558
|
+
* @returns {string} A string representing the folder.
|
|
559
|
+
*/
|
|
560
|
+
matchFolderFromFolderCmekSettingsName(folderCmekSettingsName: string): string | number;
|
|
561
|
+
/**
|
|
562
|
+
* Return a fully-qualified folderExclusion resource name string.
|
|
563
|
+
*
|
|
564
|
+
* @param {string} folder
|
|
565
|
+
* @param {string} exclusion
|
|
566
|
+
* @returns {string} Resource name string.
|
|
567
|
+
*/
|
|
568
|
+
folderExclusionPath(folder: string, exclusion: string): string;
|
|
569
|
+
/**
|
|
570
|
+
* Parse the folder from FolderExclusion resource.
|
|
571
|
+
*
|
|
572
|
+
* @param {string} folderExclusionName
|
|
573
|
+
* A fully-qualified path representing folder_exclusion resource.
|
|
574
|
+
* @returns {string} A string representing the folder.
|
|
575
|
+
*/
|
|
576
|
+
matchFolderFromFolderExclusionName(folderExclusionName: string): string | number;
|
|
577
|
+
/**
|
|
578
|
+
* Parse the exclusion from FolderExclusion resource.
|
|
579
|
+
*
|
|
580
|
+
* @param {string} folderExclusionName
|
|
581
|
+
* A fully-qualified path representing folder_exclusion resource.
|
|
582
|
+
* @returns {string} A string representing the exclusion.
|
|
583
|
+
*/
|
|
584
|
+
matchExclusionFromFolderExclusionName(folderExclusionName: string): string | number;
|
|
585
|
+
/**
|
|
586
|
+
* Return a fully-qualified folderLocationBucket resource name string.
|
|
587
|
+
*
|
|
588
|
+
* @param {string} folder
|
|
589
|
+
* @param {string} location
|
|
590
|
+
* @param {string} bucket
|
|
591
|
+
* @returns {string} Resource name string.
|
|
592
|
+
*/
|
|
593
|
+
folderLocationBucketPath(folder: string, location: string, bucket: string): string;
|
|
594
|
+
/**
|
|
595
|
+
* Parse the folder from FolderLocationBucket resource.
|
|
596
|
+
*
|
|
597
|
+
* @param {string} folderLocationBucketName
|
|
598
|
+
* A fully-qualified path representing folder_location_bucket resource.
|
|
599
|
+
* @returns {string} A string representing the folder.
|
|
600
|
+
*/
|
|
601
|
+
matchFolderFromFolderLocationBucketName(folderLocationBucketName: string): string | number;
|
|
602
|
+
/**
|
|
603
|
+
* Parse the location from FolderLocationBucket resource.
|
|
604
|
+
*
|
|
605
|
+
* @param {string} folderLocationBucketName
|
|
606
|
+
* A fully-qualified path representing folder_location_bucket resource.
|
|
607
|
+
* @returns {string} A string representing the location.
|
|
608
|
+
*/
|
|
609
|
+
matchLocationFromFolderLocationBucketName(folderLocationBucketName: string): string | number;
|
|
610
|
+
/**
|
|
611
|
+
* Parse the bucket from FolderLocationBucket resource.
|
|
612
|
+
*
|
|
613
|
+
* @param {string} folderLocationBucketName
|
|
614
|
+
* A fully-qualified path representing folder_location_bucket resource.
|
|
615
|
+
* @returns {string} A string representing the bucket.
|
|
616
|
+
*/
|
|
617
|
+
matchBucketFromFolderLocationBucketName(folderLocationBucketName: string): string | number;
|
|
618
|
+
/**
|
|
619
|
+
* Return a fully-qualified folderLocationBucketLink resource name string.
|
|
620
|
+
*
|
|
621
|
+
* @param {string} folder
|
|
622
|
+
* @param {string} location
|
|
623
|
+
* @param {string} bucket
|
|
624
|
+
* @param {string} link
|
|
625
|
+
* @returns {string} Resource name string.
|
|
626
|
+
*/
|
|
627
|
+
folderLocationBucketLinkPath(folder: string, location: string, bucket: string, link: string): string;
|
|
628
|
+
/**
|
|
629
|
+
* Parse the folder from FolderLocationBucketLink resource.
|
|
630
|
+
*
|
|
631
|
+
* @param {string} folderLocationBucketLinkName
|
|
632
|
+
* A fully-qualified path representing folder_location_bucket_link resource.
|
|
633
|
+
* @returns {string} A string representing the folder.
|
|
634
|
+
*/
|
|
635
|
+
matchFolderFromFolderLocationBucketLinkName(folderLocationBucketLinkName: string): string | number;
|
|
636
|
+
/**
|
|
637
|
+
* Parse the location from FolderLocationBucketLink resource.
|
|
638
|
+
*
|
|
639
|
+
* @param {string} folderLocationBucketLinkName
|
|
640
|
+
* A fully-qualified path representing folder_location_bucket_link resource.
|
|
641
|
+
* @returns {string} A string representing the location.
|
|
642
|
+
*/
|
|
643
|
+
matchLocationFromFolderLocationBucketLinkName(folderLocationBucketLinkName: string): string | number;
|
|
644
|
+
/**
|
|
645
|
+
* Parse the bucket from FolderLocationBucketLink resource.
|
|
646
|
+
*
|
|
647
|
+
* @param {string} folderLocationBucketLinkName
|
|
648
|
+
* A fully-qualified path representing folder_location_bucket_link resource.
|
|
649
|
+
* @returns {string} A string representing the bucket.
|
|
650
|
+
*/
|
|
651
|
+
matchBucketFromFolderLocationBucketLinkName(folderLocationBucketLinkName: string): string | number;
|
|
652
|
+
/**
|
|
653
|
+
* Parse the link from FolderLocationBucketLink resource.
|
|
654
|
+
*
|
|
655
|
+
* @param {string} folderLocationBucketLinkName
|
|
656
|
+
* A fully-qualified path representing folder_location_bucket_link resource.
|
|
657
|
+
* @returns {string} A string representing the link.
|
|
658
|
+
*/
|
|
659
|
+
matchLinkFromFolderLocationBucketLinkName(folderLocationBucketLinkName: string): string | number;
|
|
660
|
+
/**
|
|
661
|
+
* Return a fully-qualified folderLocationBucketView resource name string.
|
|
662
|
+
*
|
|
663
|
+
* @param {string} folder
|
|
664
|
+
* @param {string} location
|
|
665
|
+
* @param {string} bucket
|
|
666
|
+
* @param {string} view
|
|
667
|
+
* @returns {string} Resource name string.
|
|
668
|
+
*/
|
|
669
|
+
folderLocationBucketViewPath(folder: string, location: string, bucket: string, view: string): string;
|
|
670
|
+
/**
|
|
671
|
+
* Parse the folder from FolderLocationBucketView resource.
|
|
672
|
+
*
|
|
673
|
+
* @param {string} folderLocationBucketViewName
|
|
674
|
+
* A fully-qualified path representing folder_location_bucket_view resource.
|
|
675
|
+
* @returns {string} A string representing the folder.
|
|
676
|
+
*/
|
|
677
|
+
matchFolderFromFolderLocationBucketViewName(folderLocationBucketViewName: string): string | number;
|
|
678
|
+
/**
|
|
679
|
+
* Parse the location from FolderLocationBucketView resource.
|
|
680
|
+
*
|
|
681
|
+
* @param {string} folderLocationBucketViewName
|
|
682
|
+
* A fully-qualified path representing folder_location_bucket_view resource.
|
|
683
|
+
* @returns {string} A string representing the location.
|
|
684
|
+
*/
|
|
685
|
+
matchLocationFromFolderLocationBucketViewName(folderLocationBucketViewName: string): string | number;
|
|
686
|
+
/**
|
|
687
|
+
* Parse the bucket from FolderLocationBucketView resource.
|
|
688
|
+
*
|
|
689
|
+
* @param {string} folderLocationBucketViewName
|
|
690
|
+
* A fully-qualified path representing folder_location_bucket_view resource.
|
|
691
|
+
* @returns {string} A string representing the bucket.
|
|
692
|
+
*/
|
|
693
|
+
matchBucketFromFolderLocationBucketViewName(folderLocationBucketViewName: string): string | number;
|
|
694
|
+
/**
|
|
695
|
+
* Parse the view from FolderLocationBucketView resource.
|
|
696
|
+
*
|
|
697
|
+
* @param {string} folderLocationBucketViewName
|
|
698
|
+
* A fully-qualified path representing folder_location_bucket_view resource.
|
|
699
|
+
* @returns {string} A string representing the view.
|
|
700
|
+
*/
|
|
701
|
+
matchViewFromFolderLocationBucketViewName(folderLocationBucketViewName: string): string | number;
|
|
702
|
+
/**
|
|
703
|
+
* Return a fully-qualified folderLog resource name string.
|
|
704
|
+
*
|
|
705
|
+
* @param {string} folder
|
|
706
|
+
* @param {string} log
|
|
707
|
+
* @returns {string} Resource name string.
|
|
708
|
+
*/
|
|
709
|
+
folderLogPath(folder: string, log: string): string;
|
|
710
|
+
/**
|
|
711
|
+
* Parse the folder from FolderLog resource.
|
|
712
|
+
*
|
|
713
|
+
* @param {string} folderLogName
|
|
714
|
+
* A fully-qualified path representing folder_log resource.
|
|
715
|
+
* @returns {string} A string representing the folder.
|
|
716
|
+
*/
|
|
717
|
+
matchFolderFromFolderLogName(folderLogName: string): string | number;
|
|
718
|
+
/**
|
|
719
|
+
* Parse the log from FolderLog resource.
|
|
720
|
+
*
|
|
721
|
+
* @param {string} folderLogName
|
|
722
|
+
* A fully-qualified path representing folder_log resource.
|
|
723
|
+
* @returns {string} A string representing the log.
|
|
724
|
+
*/
|
|
725
|
+
matchLogFromFolderLogName(folderLogName: string): string | number;
|
|
726
|
+
/**
|
|
727
|
+
* Return a fully-qualified folderSettings resource name string.
|
|
728
|
+
*
|
|
729
|
+
* @param {string} folder
|
|
730
|
+
* @returns {string} Resource name string.
|
|
731
|
+
*/
|
|
732
|
+
folderSettingsPath(folder: string): string;
|
|
733
|
+
/**
|
|
734
|
+
* Parse the folder from FolderSettings resource.
|
|
735
|
+
*
|
|
736
|
+
* @param {string} folderSettingsName
|
|
737
|
+
* A fully-qualified path representing folder_settings resource.
|
|
738
|
+
* @returns {string} A string representing the folder.
|
|
739
|
+
*/
|
|
740
|
+
matchFolderFromFolderSettingsName(folderSettingsName: string): string | number;
|
|
741
|
+
/**
|
|
742
|
+
* Return a fully-qualified folderSink resource name string.
|
|
743
|
+
*
|
|
744
|
+
* @param {string} folder
|
|
745
|
+
* @param {string} sink
|
|
746
|
+
* @returns {string} Resource name string.
|
|
747
|
+
*/
|
|
748
|
+
folderSinkPath(folder: string, sink: string): string;
|
|
749
|
+
/**
|
|
750
|
+
* Parse the folder from FolderSink resource.
|
|
751
|
+
*
|
|
752
|
+
* @param {string} folderSinkName
|
|
753
|
+
* A fully-qualified path representing folder_sink resource.
|
|
754
|
+
* @returns {string} A string representing the folder.
|
|
755
|
+
*/
|
|
756
|
+
matchFolderFromFolderSinkName(folderSinkName: string): string | number;
|
|
757
|
+
/**
|
|
758
|
+
* Parse the sink from FolderSink resource.
|
|
759
|
+
*
|
|
760
|
+
* @param {string} folderSinkName
|
|
761
|
+
* A fully-qualified path representing folder_sink resource.
|
|
762
|
+
* @returns {string} A string representing the sink.
|
|
763
|
+
*/
|
|
764
|
+
matchSinkFromFolderSinkName(folderSinkName: string): string | number;
|
|
765
|
+
/**
|
|
766
|
+
* Return a fully-qualified logMetric resource name string.
|
|
767
|
+
*
|
|
768
|
+
* @param {string} project
|
|
769
|
+
* @param {string} metric
|
|
770
|
+
* @returns {string} Resource name string.
|
|
771
|
+
*/
|
|
772
|
+
logMetricPath(project: string, metric: string): string;
|
|
773
|
+
/**
|
|
774
|
+
* Parse the project from LogMetric resource.
|
|
775
|
+
*
|
|
776
|
+
* @param {string} logMetricName
|
|
777
|
+
* A fully-qualified path representing LogMetric resource.
|
|
778
|
+
* @returns {string} A string representing the project.
|
|
779
|
+
*/
|
|
780
|
+
matchProjectFromLogMetricName(logMetricName: string): string | number;
|
|
781
|
+
/**
|
|
782
|
+
* Parse the metric from LogMetric resource.
|
|
783
|
+
*
|
|
784
|
+
* @param {string} logMetricName
|
|
785
|
+
* A fully-qualified path representing LogMetric resource.
|
|
786
|
+
* @returns {string} A string representing the metric.
|
|
787
|
+
*/
|
|
788
|
+
matchMetricFromLogMetricName(logMetricName: string): string | number;
|
|
789
|
+
/**
|
|
790
|
+
* Return a fully-qualified organizationCmekSettings resource name string.
|
|
791
|
+
*
|
|
792
|
+
* @param {string} organization
|
|
793
|
+
* @returns {string} Resource name string.
|
|
794
|
+
*/
|
|
795
|
+
organizationCmekSettingsPath(organization: string): string;
|
|
796
|
+
/**
|
|
797
|
+
* Parse the organization from OrganizationCmekSettings resource.
|
|
798
|
+
*
|
|
799
|
+
* @param {string} organizationCmekSettingsName
|
|
800
|
+
* A fully-qualified path representing organization_cmekSettings resource.
|
|
801
|
+
* @returns {string} A string representing the organization.
|
|
802
|
+
*/
|
|
803
|
+
matchOrganizationFromOrganizationCmekSettingsName(organizationCmekSettingsName: string): string | number;
|
|
804
|
+
/**
|
|
805
|
+
* Return a fully-qualified organizationExclusion resource name string.
|
|
806
|
+
*
|
|
807
|
+
* @param {string} organization
|
|
808
|
+
* @param {string} exclusion
|
|
809
|
+
* @returns {string} Resource name string.
|
|
810
|
+
*/
|
|
811
|
+
organizationExclusionPath(organization: string, exclusion: string): string;
|
|
812
|
+
/**
|
|
813
|
+
* Parse the organization from OrganizationExclusion resource.
|
|
814
|
+
*
|
|
815
|
+
* @param {string} organizationExclusionName
|
|
816
|
+
* A fully-qualified path representing organization_exclusion resource.
|
|
817
|
+
* @returns {string} A string representing the organization.
|
|
818
|
+
*/
|
|
819
|
+
matchOrganizationFromOrganizationExclusionName(organizationExclusionName: string): string | number;
|
|
820
|
+
/**
|
|
821
|
+
* Parse the exclusion from OrganizationExclusion resource.
|
|
822
|
+
*
|
|
823
|
+
* @param {string} organizationExclusionName
|
|
824
|
+
* A fully-qualified path representing organization_exclusion resource.
|
|
825
|
+
* @returns {string} A string representing the exclusion.
|
|
826
|
+
*/
|
|
827
|
+
matchExclusionFromOrganizationExclusionName(organizationExclusionName: string): string | number;
|
|
828
|
+
/**
|
|
829
|
+
* Return a fully-qualified organizationLocationBucket resource name string.
|
|
830
|
+
*
|
|
831
|
+
* @param {string} organization
|
|
832
|
+
* @param {string} location
|
|
833
|
+
* @param {string} bucket
|
|
834
|
+
* @returns {string} Resource name string.
|
|
835
|
+
*/
|
|
836
|
+
organizationLocationBucketPath(organization: string, location: string, bucket: string): string;
|
|
837
|
+
/**
|
|
838
|
+
* Parse the organization from OrganizationLocationBucket resource.
|
|
839
|
+
*
|
|
840
|
+
* @param {string} organizationLocationBucketName
|
|
841
|
+
* A fully-qualified path representing organization_location_bucket resource.
|
|
842
|
+
* @returns {string} A string representing the organization.
|
|
843
|
+
*/
|
|
844
|
+
matchOrganizationFromOrganizationLocationBucketName(organizationLocationBucketName: string): string | number;
|
|
845
|
+
/**
|
|
846
|
+
* Parse the location from OrganizationLocationBucket resource.
|
|
847
|
+
*
|
|
848
|
+
* @param {string} organizationLocationBucketName
|
|
849
|
+
* A fully-qualified path representing organization_location_bucket resource.
|
|
850
|
+
* @returns {string} A string representing the location.
|
|
851
|
+
*/
|
|
852
|
+
matchLocationFromOrganizationLocationBucketName(organizationLocationBucketName: string): string | number;
|
|
853
|
+
/**
|
|
854
|
+
* Parse the bucket from OrganizationLocationBucket resource.
|
|
855
|
+
*
|
|
856
|
+
* @param {string} organizationLocationBucketName
|
|
857
|
+
* A fully-qualified path representing organization_location_bucket resource.
|
|
858
|
+
* @returns {string} A string representing the bucket.
|
|
859
|
+
*/
|
|
860
|
+
matchBucketFromOrganizationLocationBucketName(organizationLocationBucketName: string): string | number;
|
|
861
|
+
/**
|
|
862
|
+
* Return a fully-qualified organizationLocationBucketLink resource name string.
|
|
863
|
+
*
|
|
864
|
+
* @param {string} organization
|
|
865
|
+
* @param {string} location
|
|
866
|
+
* @param {string} bucket
|
|
867
|
+
* @param {string} link
|
|
868
|
+
* @returns {string} Resource name string.
|
|
869
|
+
*/
|
|
870
|
+
organizationLocationBucketLinkPath(organization: string, location: string, bucket: string, link: string): string;
|
|
871
|
+
/**
|
|
872
|
+
* Parse the organization from OrganizationLocationBucketLink resource.
|
|
873
|
+
*
|
|
874
|
+
* @param {string} organizationLocationBucketLinkName
|
|
875
|
+
* A fully-qualified path representing organization_location_bucket_link resource.
|
|
876
|
+
* @returns {string} A string representing the organization.
|
|
877
|
+
*/
|
|
878
|
+
matchOrganizationFromOrganizationLocationBucketLinkName(organizationLocationBucketLinkName: string): string | number;
|
|
879
|
+
/**
|
|
880
|
+
* Parse the location from OrganizationLocationBucketLink resource.
|
|
881
|
+
*
|
|
882
|
+
* @param {string} organizationLocationBucketLinkName
|
|
883
|
+
* A fully-qualified path representing organization_location_bucket_link resource.
|
|
884
|
+
* @returns {string} A string representing the location.
|
|
885
|
+
*/
|
|
886
|
+
matchLocationFromOrganizationLocationBucketLinkName(organizationLocationBucketLinkName: string): string | number;
|
|
887
|
+
/**
|
|
888
|
+
* Parse the bucket from OrganizationLocationBucketLink resource.
|
|
889
|
+
*
|
|
890
|
+
* @param {string} organizationLocationBucketLinkName
|
|
891
|
+
* A fully-qualified path representing organization_location_bucket_link resource.
|
|
892
|
+
* @returns {string} A string representing the bucket.
|
|
893
|
+
*/
|
|
894
|
+
matchBucketFromOrganizationLocationBucketLinkName(organizationLocationBucketLinkName: string): string | number;
|
|
895
|
+
/**
|
|
896
|
+
* Parse the link from OrganizationLocationBucketLink resource.
|
|
897
|
+
*
|
|
898
|
+
* @param {string} organizationLocationBucketLinkName
|
|
899
|
+
* A fully-qualified path representing organization_location_bucket_link resource.
|
|
900
|
+
* @returns {string} A string representing the link.
|
|
901
|
+
*/
|
|
902
|
+
matchLinkFromOrganizationLocationBucketLinkName(organizationLocationBucketLinkName: string): string | number;
|
|
903
|
+
/**
|
|
904
|
+
* Return a fully-qualified organizationLocationBucketView resource name string.
|
|
905
|
+
*
|
|
906
|
+
* @param {string} organization
|
|
907
|
+
* @param {string} location
|
|
908
|
+
* @param {string} bucket
|
|
909
|
+
* @param {string} view
|
|
910
|
+
* @returns {string} Resource name string.
|
|
911
|
+
*/
|
|
912
|
+
organizationLocationBucketViewPath(organization: string, location: string, bucket: string, view: string): string;
|
|
913
|
+
/**
|
|
914
|
+
* Parse the organization from OrganizationLocationBucketView resource.
|
|
915
|
+
*
|
|
916
|
+
* @param {string} organizationLocationBucketViewName
|
|
917
|
+
* A fully-qualified path representing organization_location_bucket_view resource.
|
|
918
|
+
* @returns {string} A string representing the organization.
|
|
919
|
+
*/
|
|
920
|
+
matchOrganizationFromOrganizationLocationBucketViewName(organizationLocationBucketViewName: string): string | number;
|
|
921
|
+
/**
|
|
922
|
+
* Parse the location from OrganizationLocationBucketView resource.
|
|
923
|
+
*
|
|
924
|
+
* @param {string} organizationLocationBucketViewName
|
|
925
|
+
* A fully-qualified path representing organization_location_bucket_view resource.
|
|
926
|
+
* @returns {string} A string representing the location.
|
|
927
|
+
*/
|
|
928
|
+
matchLocationFromOrganizationLocationBucketViewName(organizationLocationBucketViewName: string): string | number;
|
|
929
|
+
/**
|
|
930
|
+
* Parse the bucket from OrganizationLocationBucketView resource.
|
|
931
|
+
*
|
|
932
|
+
* @param {string} organizationLocationBucketViewName
|
|
933
|
+
* A fully-qualified path representing organization_location_bucket_view resource.
|
|
934
|
+
* @returns {string} A string representing the bucket.
|
|
935
|
+
*/
|
|
936
|
+
matchBucketFromOrganizationLocationBucketViewName(organizationLocationBucketViewName: string): string | number;
|
|
937
|
+
/**
|
|
938
|
+
* Parse the view from OrganizationLocationBucketView resource.
|
|
939
|
+
*
|
|
940
|
+
* @param {string} organizationLocationBucketViewName
|
|
941
|
+
* A fully-qualified path representing organization_location_bucket_view resource.
|
|
942
|
+
* @returns {string} A string representing the view.
|
|
943
|
+
*/
|
|
944
|
+
matchViewFromOrganizationLocationBucketViewName(organizationLocationBucketViewName: string): string | number;
|
|
945
|
+
/**
|
|
946
|
+
* Return a fully-qualified organizationLog resource name string.
|
|
947
|
+
*
|
|
948
|
+
* @param {string} organization
|
|
949
|
+
* @param {string} log
|
|
950
|
+
* @returns {string} Resource name string.
|
|
951
|
+
*/
|
|
952
|
+
organizationLogPath(organization: string, log: string): string;
|
|
953
|
+
/**
|
|
954
|
+
* Parse the organization from OrganizationLog resource.
|
|
955
|
+
*
|
|
956
|
+
* @param {string} organizationLogName
|
|
957
|
+
* A fully-qualified path representing organization_log resource.
|
|
958
|
+
* @returns {string} A string representing the organization.
|
|
959
|
+
*/
|
|
960
|
+
matchOrganizationFromOrganizationLogName(organizationLogName: string): string | number;
|
|
961
|
+
/**
|
|
962
|
+
* Parse the log from OrganizationLog resource.
|
|
963
|
+
*
|
|
964
|
+
* @param {string} organizationLogName
|
|
965
|
+
* A fully-qualified path representing organization_log resource.
|
|
966
|
+
* @returns {string} A string representing the log.
|
|
967
|
+
*/
|
|
968
|
+
matchLogFromOrganizationLogName(organizationLogName: string): string | number;
|
|
969
|
+
/**
|
|
970
|
+
* Return a fully-qualified organizationSettings resource name string.
|
|
971
|
+
*
|
|
972
|
+
* @param {string} organization
|
|
973
|
+
* @returns {string} Resource name string.
|
|
974
|
+
*/
|
|
975
|
+
organizationSettingsPath(organization: string): string;
|
|
976
|
+
/**
|
|
977
|
+
* Parse the organization from OrganizationSettings resource.
|
|
978
|
+
*
|
|
979
|
+
* @param {string} organizationSettingsName
|
|
980
|
+
* A fully-qualified path representing organization_settings resource.
|
|
981
|
+
* @returns {string} A string representing the organization.
|
|
982
|
+
*/
|
|
983
|
+
matchOrganizationFromOrganizationSettingsName(organizationSettingsName: string): string | number;
|
|
984
|
+
/**
|
|
985
|
+
* Return a fully-qualified organizationSink resource name string.
|
|
986
|
+
*
|
|
987
|
+
* @param {string} organization
|
|
988
|
+
* @param {string} sink
|
|
989
|
+
* @returns {string} Resource name string.
|
|
990
|
+
*/
|
|
991
|
+
organizationSinkPath(organization: string, sink: string): string;
|
|
992
|
+
/**
|
|
993
|
+
* Parse the organization from OrganizationSink resource.
|
|
994
|
+
*
|
|
995
|
+
* @param {string} organizationSinkName
|
|
996
|
+
* A fully-qualified path representing organization_sink resource.
|
|
997
|
+
* @returns {string} A string representing the organization.
|
|
998
|
+
*/
|
|
999
|
+
matchOrganizationFromOrganizationSinkName(organizationSinkName: string): string | number;
|
|
1000
|
+
/**
|
|
1001
|
+
* Parse the sink from OrganizationSink resource.
|
|
1002
|
+
*
|
|
1003
|
+
* @param {string} organizationSinkName
|
|
1004
|
+
* A fully-qualified path representing organization_sink resource.
|
|
1005
|
+
* @returns {string} A string representing the sink.
|
|
1006
|
+
*/
|
|
1007
|
+
matchSinkFromOrganizationSinkName(organizationSinkName: string): string | number;
|
|
1008
|
+
/**
|
|
1009
|
+
* Return a fully-qualified project resource name string.
|
|
1010
|
+
*
|
|
1011
|
+
* @param {string} project
|
|
1012
|
+
* @returns {string} Resource name string.
|
|
1013
|
+
*/
|
|
1014
|
+
projectPath(project: string): string;
|
|
1015
|
+
/**
|
|
1016
|
+
* Parse the project from Project resource.
|
|
1017
|
+
*
|
|
1018
|
+
* @param {string} projectName
|
|
1019
|
+
* A fully-qualified path representing Project resource.
|
|
1020
|
+
* @returns {string} A string representing the project.
|
|
1021
|
+
*/
|
|
1022
|
+
matchProjectFromProjectName(projectName: string): string | number;
|
|
1023
|
+
/**
|
|
1024
|
+
* Return a fully-qualified projectCmekSettings resource name string.
|
|
1025
|
+
*
|
|
1026
|
+
* @param {string} project
|
|
1027
|
+
* @returns {string} Resource name string.
|
|
1028
|
+
*/
|
|
1029
|
+
projectCmekSettingsPath(project: string): string;
|
|
1030
|
+
/**
|
|
1031
|
+
* Parse the project from ProjectCmekSettings resource.
|
|
1032
|
+
*
|
|
1033
|
+
* @param {string} projectCmekSettingsName
|
|
1034
|
+
* A fully-qualified path representing project_cmekSettings resource.
|
|
1035
|
+
* @returns {string} A string representing the project.
|
|
1036
|
+
*/
|
|
1037
|
+
matchProjectFromProjectCmekSettingsName(projectCmekSettingsName: string): string | number;
|
|
1038
|
+
/**
|
|
1039
|
+
* Return a fully-qualified projectExclusion resource name string.
|
|
1040
|
+
*
|
|
1041
|
+
* @param {string} project
|
|
1042
|
+
* @param {string} exclusion
|
|
1043
|
+
* @returns {string} Resource name string.
|
|
1044
|
+
*/
|
|
1045
|
+
projectExclusionPath(project: string, exclusion: string): string;
|
|
1046
|
+
/**
|
|
1047
|
+
* Parse the project from ProjectExclusion resource.
|
|
1048
|
+
*
|
|
1049
|
+
* @param {string} projectExclusionName
|
|
1050
|
+
* A fully-qualified path representing project_exclusion resource.
|
|
1051
|
+
* @returns {string} A string representing the project.
|
|
1052
|
+
*/
|
|
1053
|
+
matchProjectFromProjectExclusionName(projectExclusionName: string): string | number;
|
|
1054
|
+
/**
|
|
1055
|
+
* Parse the exclusion from ProjectExclusion resource.
|
|
1056
|
+
*
|
|
1057
|
+
* @param {string} projectExclusionName
|
|
1058
|
+
* A fully-qualified path representing project_exclusion resource.
|
|
1059
|
+
* @returns {string} A string representing the exclusion.
|
|
1060
|
+
*/
|
|
1061
|
+
matchExclusionFromProjectExclusionName(projectExclusionName: string): string | number;
|
|
1062
|
+
/**
|
|
1063
|
+
* Return a fully-qualified projectLocationBucket resource name string.
|
|
1064
|
+
*
|
|
1065
|
+
* @param {string} project
|
|
1066
|
+
* @param {string} location
|
|
1067
|
+
* @param {string} bucket
|
|
1068
|
+
* @returns {string} Resource name string.
|
|
1069
|
+
*/
|
|
1070
|
+
projectLocationBucketPath(project: string, location: string, bucket: string): string;
|
|
1071
|
+
/**
|
|
1072
|
+
* Parse the project from ProjectLocationBucket resource.
|
|
1073
|
+
*
|
|
1074
|
+
* @param {string} projectLocationBucketName
|
|
1075
|
+
* A fully-qualified path representing project_location_bucket resource.
|
|
1076
|
+
* @returns {string} A string representing the project.
|
|
1077
|
+
*/
|
|
1078
|
+
matchProjectFromProjectLocationBucketName(projectLocationBucketName: string): string | number;
|
|
1079
|
+
/**
|
|
1080
|
+
* Parse the location from ProjectLocationBucket resource.
|
|
1081
|
+
*
|
|
1082
|
+
* @param {string} projectLocationBucketName
|
|
1083
|
+
* A fully-qualified path representing project_location_bucket resource.
|
|
1084
|
+
* @returns {string} A string representing the location.
|
|
1085
|
+
*/
|
|
1086
|
+
matchLocationFromProjectLocationBucketName(projectLocationBucketName: string): string | number;
|
|
1087
|
+
/**
|
|
1088
|
+
* Parse the bucket from ProjectLocationBucket resource.
|
|
1089
|
+
*
|
|
1090
|
+
* @param {string} projectLocationBucketName
|
|
1091
|
+
* A fully-qualified path representing project_location_bucket resource.
|
|
1092
|
+
* @returns {string} A string representing the bucket.
|
|
1093
|
+
*/
|
|
1094
|
+
matchBucketFromProjectLocationBucketName(projectLocationBucketName: string): string | number;
|
|
1095
|
+
/**
|
|
1096
|
+
* Return a fully-qualified projectLocationBucketLink resource name string.
|
|
1097
|
+
*
|
|
1098
|
+
* @param {string} project
|
|
1099
|
+
* @param {string} location
|
|
1100
|
+
* @param {string} bucket
|
|
1101
|
+
* @param {string} link
|
|
1102
|
+
* @returns {string} Resource name string.
|
|
1103
|
+
*/
|
|
1104
|
+
projectLocationBucketLinkPath(project: string, location: string, bucket: string, link: string): string;
|
|
1105
|
+
/**
|
|
1106
|
+
* Parse the project from ProjectLocationBucketLink resource.
|
|
1107
|
+
*
|
|
1108
|
+
* @param {string} projectLocationBucketLinkName
|
|
1109
|
+
* A fully-qualified path representing project_location_bucket_link resource.
|
|
1110
|
+
* @returns {string} A string representing the project.
|
|
1111
|
+
*/
|
|
1112
|
+
matchProjectFromProjectLocationBucketLinkName(projectLocationBucketLinkName: string): string | number;
|
|
1113
|
+
/**
|
|
1114
|
+
* Parse the location from ProjectLocationBucketLink resource.
|
|
1115
|
+
*
|
|
1116
|
+
* @param {string} projectLocationBucketLinkName
|
|
1117
|
+
* A fully-qualified path representing project_location_bucket_link resource.
|
|
1118
|
+
* @returns {string} A string representing the location.
|
|
1119
|
+
*/
|
|
1120
|
+
matchLocationFromProjectLocationBucketLinkName(projectLocationBucketLinkName: string): string | number;
|
|
1121
|
+
/**
|
|
1122
|
+
* Parse the bucket from ProjectLocationBucketLink resource.
|
|
1123
|
+
*
|
|
1124
|
+
* @param {string} projectLocationBucketLinkName
|
|
1125
|
+
* A fully-qualified path representing project_location_bucket_link resource.
|
|
1126
|
+
* @returns {string} A string representing the bucket.
|
|
1127
|
+
*/
|
|
1128
|
+
matchBucketFromProjectLocationBucketLinkName(projectLocationBucketLinkName: string): string | number;
|
|
1129
|
+
/**
|
|
1130
|
+
* Parse the link from ProjectLocationBucketLink resource.
|
|
1131
|
+
*
|
|
1132
|
+
* @param {string} projectLocationBucketLinkName
|
|
1133
|
+
* A fully-qualified path representing project_location_bucket_link resource.
|
|
1134
|
+
* @returns {string} A string representing the link.
|
|
1135
|
+
*/
|
|
1136
|
+
matchLinkFromProjectLocationBucketLinkName(projectLocationBucketLinkName: string): string | number;
|
|
1137
|
+
/**
|
|
1138
|
+
* Return a fully-qualified projectLocationBucketView resource name string.
|
|
1139
|
+
*
|
|
1140
|
+
* @param {string} project
|
|
1141
|
+
* @param {string} location
|
|
1142
|
+
* @param {string} bucket
|
|
1143
|
+
* @param {string} view
|
|
1144
|
+
* @returns {string} Resource name string.
|
|
1145
|
+
*/
|
|
1146
|
+
projectLocationBucketViewPath(project: string, location: string, bucket: string, view: string): string;
|
|
1147
|
+
/**
|
|
1148
|
+
* Parse the project from ProjectLocationBucketView resource.
|
|
1149
|
+
*
|
|
1150
|
+
* @param {string} projectLocationBucketViewName
|
|
1151
|
+
* A fully-qualified path representing project_location_bucket_view resource.
|
|
1152
|
+
* @returns {string} A string representing the project.
|
|
1153
|
+
*/
|
|
1154
|
+
matchProjectFromProjectLocationBucketViewName(projectLocationBucketViewName: string): string | number;
|
|
1155
|
+
/**
|
|
1156
|
+
* Parse the location from ProjectLocationBucketView resource.
|
|
1157
|
+
*
|
|
1158
|
+
* @param {string} projectLocationBucketViewName
|
|
1159
|
+
* A fully-qualified path representing project_location_bucket_view resource.
|
|
1160
|
+
* @returns {string} A string representing the location.
|
|
1161
|
+
*/
|
|
1162
|
+
matchLocationFromProjectLocationBucketViewName(projectLocationBucketViewName: string): string | number;
|
|
1163
|
+
/**
|
|
1164
|
+
* Parse the bucket from ProjectLocationBucketView resource.
|
|
1165
|
+
*
|
|
1166
|
+
* @param {string} projectLocationBucketViewName
|
|
1167
|
+
* A fully-qualified path representing project_location_bucket_view resource.
|
|
1168
|
+
* @returns {string} A string representing the bucket.
|
|
1169
|
+
*/
|
|
1170
|
+
matchBucketFromProjectLocationBucketViewName(projectLocationBucketViewName: string): string | number;
|
|
1171
|
+
/**
|
|
1172
|
+
* Parse the view from ProjectLocationBucketView resource.
|
|
1173
|
+
*
|
|
1174
|
+
* @param {string} projectLocationBucketViewName
|
|
1175
|
+
* A fully-qualified path representing project_location_bucket_view resource.
|
|
1176
|
+
* @returns {string} A string representing the view.
|
|
1177
|
+
*/
|
|
1178
|
+
matchViewFromProjectLocationBucketViewName(projectLocationBucketViewName: string): string | number;
|
|
1179
|
+
/**
|
|
1180
|
+
* Return a fully-qualified projectLog resource name string.
|
|
1181
|
+
*
|
|
1182
|
+
* @param {string} project
|
|
1183
|
+
* @param {string} log
|
|
1184
|
+
* @returns {string} Resource name string.
|
|
1185
|
+
*/
|
|
1186
|
+
projectLogPath(project: string, log: string): string;
|
|
1187
|
+
/**
|
|
1188
|
+
* Parse the project from ProjectLog resource.
|
|
1189
|
+
*
|
|
1190
|
+
* @param {string} projectLogName
|
|
1191
|
+
* A fully-qualified path representing project_log resource.
|
|
1192
|
+
* @returns {string} A string representing the project.
|
|
1193
|
+
*/
|
|
1194
|
+
matchProjectFromProjectLogName(projectLogName: string): string | number;
|
|
1195
|
+
/**
|
|
1196
|
+
* Parse the log from ProjectLog resource.
|
|
1197
|
+
*
|
|
1198
|
+
* @param {string} projectLogName
|
|
1199
|
+
* A fully-qualified path representing project_log resource.
|
|
1200
|
+
* @returns {string} A string representing the log.
|
|
1201
|
+
*/
|
|
1202
|
+
matchLogFromProjectLogName(projectLogName: string): string | number;
|
|
1203
|
+
/**
|
|
1204
|
+
* Return a fully-qualified projectSettings resource name string.
|
|
1205
|
+
*
|
|
1206
|
+
* @param {string} project
|
|
1207
|
+
* @returns {string} Resource name string.
|
|
1208
|
+
*/
|
|
1209
|
+
projectSettingsPath(project: string): string;
|
|
1210
|
+
/**
|
|
1211
|
+
* Parse the project from ProjectSettings resource.
|
|
1212
|
+
*
|
|
1213
|
+
* @param {string} projectSettingsName
|
|
1214
|
+
* A fully-qualified path representing project_settings resource.
|
|
1215
|
+
* @returns {string} A string representing the project.
|
|
1216
|
+
*/
|
|
1217
|
+
matchProjectFromProjectSettingsName(projectSettingsName: string): string | number;
|
|
1218
|
+
/**
|
|
1219
|
+
* Return a fully-qualified projectSink resource name string.
|
|
1220
|
+
*
|
|
1221
|
+
* @param {string} project
|
|
1222
|
+
* @param {string} sink
|
|
1223
|
+
* @returns {string} Resource name string.
|
|
1224
|
+
*/
|
|
1225
|
+
projectSinkPath(project: string, sink: string): string;
|
|
1226
|
+
/**
|
|
1227
|
+
* Parse the project from ProjectSink resource.
|
|
1228
|
+
*
|
|
1229
|
+
* @param {string} projectSinkName
|
|
1230
|
+
* A fully-qualified path representing project_sink resource.
|
|
1231
|
+
* @returns {string} A string representing the project.
|
|
1232
|
+
*/
|
|
1233
|
+
matchProjectFromProjectSinkName(projectSinkName: string): string | number;
|
|
1234
|
+
/**
|
|
1235
|
+
* Parse the sink from ProjectSink resource.
|
|
1236
|
+
*
|
|
1237
|
+
* @param {string} projectSinkName
|
|
1238
|
+
* A fully-qualified path representing project_sink resource.
|
|
1239
|
+
* @returns {string} A string representing the sink.
|
|
1240
|
+
*/
|
|
1241
|
+
matchSinkFromProjectSinkName(projectSinkName: string): string | number;
|
|
1242
|
+
/**
|
|
1243
|
+
* Terminate the gRPC channel and close the client.
|
|
1244
|
+
*
|
|
1245
|
+
* The client will no longer be usable and all future behavior is undefined.
|
|
1246
|
+
* @returns {Promise} A promise that resolves when the client is closed.
|
|
1247
|
+
*/
|
|
1248
|
+
close(): Promise<void>;
|
|
1249
|
+
}
|