@maxim_mazurok/gapi.client.osconfig-v1alpha 0.0.20250504 → 0.0.20250511
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 +14 -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://osconfig.googleapis.com/$discovery/rest?version=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250511
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -306,6 +306,7 @@ declare namespace gapi.client {
|
|
|
306
306
|
/** List of vulnerabilityReport objects. */
|
|
307
307
|
vulnerabilityReports?: VulnerabilityReport[];
|
|
308
308
|
}
|
|
309
|
+
interface MessageSet {}
|
|
309
310
|
interface Operation {
|
|
310
311
|
/** If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. */
|
|
311
312
|
done?: boolean;
|
|
@@ -660,6 +661,18 @@ declare namespace gapi.client {
|
|
|
660
661
|
/** A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. */
|
|
661
662
|
message?: string;
|
|
662
663
|
}
|
|
664
|
+
interface StatusProto {
|
|
665
|
+
/** copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional int32 canonical_code = 6; */
|
|
666
|
+
canonicalCode?: number;
|
|
667
|
+
/** Numeric code drawn from the space specified below. Often, this is the canonical error space, and code is drawn from google3/util/task/codes.proto copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional int32 code = 1; */
|
|
668
|
+
code?: number;
|
|
669
|
+
/** Detail message copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional string message = 3; */
|
|
670
|
+
message?: string;
|
|
671
|
+
/** message_set associates an arbitrary proto message with the status. copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional proto2.bridge.MessageSet message_set = 5; */
|
|
672
|
+
messageSet?: any;
|
|
673
|
+
/** copybara:strip_begin(b/383363683) Space to which this status belongs copybara:strip_end_and_replace optional string space = 2; // Space to which this status belongs */
|
|
674
|
+
space?: string;
|
|
675
|
+
}
|
|
663
676
|
interface VulnerabilityReport {
|
|
664
677
|
/** Output only. The `vulnerabilityReport` API resource name. Format: `projects/{project_number}/locations/{location}/instances/{instance_id}/vulnerabilityReport` */
|
|
665
678
|
name?: string;
|