@maxim_mazurok/gapi.client.servicemanagement-v1 0.0.20250127 → 0.0.20250202
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 +6 -2
- 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: 20250202
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -338,6 +338,8 @@ declare namespace gapi.client {
|
|
|
338
338
|
protobufPythonicTypesEnabled?: boolean;
|
|
339
339
|
/** Enables generation of asynchronous REST clients if `rest` transport is enabled. By default, asynchronous REST clients will not be generated. This feature will be enabled by default 1 month after launching the feature in preview packages. */
|
|
340
340
|
restAsyncIoEnabled?: boolean;
|
|
341
|
+
/** Disables generation of an unversioned Python package for this client library. This means that the module names will need to be versioned in import statements. For example `import google.cloud.library_v2` instead of `import google.cloud.library`. */
|
|
342
|
+
unversionedPackageDisabled?: boolean;
|
|
341
343
|
}
|
|
342
344
|
interface Expr {
|
|
343
345
|
/** Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. */
|
|
@@ -676,7 +678,7 @@ declare namespace gapi.client {
|
|
|
676
678
|
value?: {[P in string]: any};
|
|
677
679
|
}
|
|
678
680
|
interface Page {
|
|
679
|
-
/** The Markdown content of the page. You can use (== include {path} ==) to include content from a Markdown file. The content can be used to produce the documentation page such as HTML format page. */
|
|
681
|
+
/** The Markdown content of the page. You can use ```(== include {path} ==)``` to include content from a Markdown file. The content can be used to produce the documentation page such as HTML format page. */
|
|
680
682
|
content?: string;
|
|
681
683
|
/** The name of the page. It will be used as an identity of the page to generate URI of the page, text of the link to this page in navigation, etc. The full page name (start from the root page name to this page concatenated with `.`) can be used as reference to the page in your documentation. For example: pages: - name: Tutorial content: (== include tutorial.md ==) subpages: - name: Java content: (== include tutorial_java.md ==) You can reference `Java` page using Markdown reference link syntax: `Java`. */
|
|
682
684
|
name?: string;
|
|
@@ -782,6 +784,8 @@ declare namespace gapi.client {
|
|
|
782
784
|
common?: CommonLanguageSettings;
|
|
783
785
|
}
|
|
784
786
|
interface SelectiveGapicGeneration {
|
|
787
|
+
/** Setting this to true indicates to the client generators that methods that would be excluded from the generation should instead be generated in a way that indicates these methods should not be consumed by end users. How this is expressed is up to individual language implementations to decide. Some examples may be: added annotations, obfuscated identifiers, or other language idiomatic patterns. */
|
|
788
|
+
generateOmittedAsInternal?: boolean;
|
|
785
789
|
/** An allowlist of the fully qualified names of RPCs that should be included on public client surfaces. */
|
|
786
790
|
methods?: string[];
|
|
787
791
|
}
|