@maxim_mazurok/gapi.client.logging-v2 0.0.20250221 → 0.0.20250307
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 +35 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://logging.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250307
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -24,6 +24,38 @@ declare namespace gapi.client {
|
|
|
24
24
|
function load(name: 'logging', version: 'v2', callback: () => any): void;
|
|
25
25
|
|
|
26
26
|
namespace logging {
|
|
27
|
+
interface AppHub {
|
|
28
|
+
/** Metadata associated with the application. */
|
|
29
|
+
application?: AppHubApplication;
|
|
30
|
+
/** Metadata associated with the service. */
|
|
31
|
+
service?: AppHubService;
|
|
32
|
+
/** Metadata associated with the workload. */
|
|
33
|
+
workload?: AppHubWorkload;
|
|
34
|
+
}
|
|
35
|
+
interface AppHubApplication {
|
|
36
|
+
/** Resource container that owns the application. Example: "projects/management_project" */
|
|
37
|
+
container?: string;
|
|
38
|
+
/** Application Id. Example: "my-app" */
|
|
39
|
+
id?: string;
|
|
40
|
+
/** Location associated with the Application. Example: "us-east1" */
|
|
41
|
+
location?: string;
|
|
42
|
+
}
|
|
43
|
+
interface AppHubService {
|
|
44
|
+
/** Service criticality type Example: "CRITICAL" */
|
|
45
|
+
criticalityType?: string;
|
|
46
|
+
/** Service environment type Example: "DEV" */
|
|
47
|
+
environmentType?: string;
|
|
48
|
+
/** Service Id. Example: "my-service" */
|
|
49
|
+
id?: string;
|
|
50
|
+
}
|
|
51
|
+
interface AppHubWorkload {
|
|
52
|
+
/** Workload criticality type Example: "CRITICAL" */
|
|
53
|
+
criticalityType?: string;
|
|
54
|
+
/** Workload environment type Example: "DEV" */
|
|
55
|
+
environmentType?: string;
|
|
56
|
+
/** Workload Id. Example: "my-workload" */
|
|
57
|
+
id?: string;
|
|
58
|
+
}
|
|
27
59
|
interface BigQueryDataset {
|
|
28
60
|
/** Output only. The full resource name of the BigQuery dataset. The DATASET_ID will match the ID of the link, so the link must match the naming restrictions of BigQuery datasets (alphanumeric characters and underscores only).The dataset will have a resource path of "bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID" */
|
|
29
61
|
datasetId?: string;
|
|
@@ -389,6 +421,8 @@ declare namespace gapi.client {
|
|
|
389
421
|
updateTime?: string;
|
|
390
422
|
}
|
|
391
423
|
interface LogEntry {
|
|
424
|
+
/** Output only. AppHub application metadata associated with this LogEntry. May be empty if there is no associated AppHub application or multiple associated applications (such as for VPC flow logs) */
|
|
425
|
+
apphub?: AppHub;
|
|
392
426
|
/** Output only. The Error Reporting (https://cloud.google.com/error-reporting) error groups associated with this LogEntry. Error Reporting sets the values for this field during error group creation.For more information, see View error details( https://cloud.google.com/error-reporting/docs/viewing-errors#view_error_details)This field isn't available during log routing (https://cloud.google.com/logging/docs/routing/overview) */
|
|
393
427
|
errorGroups?: LogErrorGroup[];
|
|
394
428
|
/** Optional. Information about the HTTP request associated with this log entry, if applicable. */
|