@maxim_mazurok/gapi.client.servicemanagement-v1 0.0.20240916 → 0.0.20240927
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 +7 -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://servicemanagement.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240927
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -172,6 +172,8 @@ declare namespace gapi.client {
|
|
|
172
172
|
destinations?: string[];
|
|
173
173
|
/** Link to automatically generated reference documentation. Example: https://cloud.google.com/nodejs/docs/reference/asset/latest */
|
|
174
174
|
referenceDocsUri?: string;
|
|
175
|
+
/** Configuration for which RPCs should be generated in the GAPIC client. */
|
|
176
|
+
selectiveGapicGeneration?: SelectiveGapicGeneration;
|
|
175
177
|
}
|
|
176
178
|
interface ConfigChange {
|
|
177
179
|
/** Collection of advice provided for this change, useful for determining the possible impact of this change. */
|
|
@@ -773,6 +775,10 @@ declare namespace gapi.client {
|
|
|
773
775
|
/** Some settings. */
|
|
774
776
|
common?: CommonLanguageSettings;
|
|
775
777
|
}
|
|
778
|
+
interface SelectiveGapicGeneration {
|
|
779
|
+
/** An allowlist of the fully qualified names of RPCs that should be included on public client surfaces. */
|
|
780
|
+
methods?: string[];
|
|
781
|
+
}
|
|
776
782
|
interface Service {
|
|
777
783
|
/** A list of API interfaces exported by this service. Only the `name` field of the google.protobuf.Api needs to be provided by the configuration author, as the remaining fields will be derived from the IDL during the normalization process. It is an error to specify an API interface here which cannot be resolved against the associated IDL files. */
|
|
778
784
|
apis?: Api[];
|