@maxim_mazurok/gapi.client.servicemanagement-v1 0.0.20250617 → 0.1.20250812
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 +10 -5
- package/package.json +1 -1
- package/readme.md +2 -0
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: 20250812
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -33,6 +33,8 @@ declare namespace gapi.client {
|
|
|
33
33
|
description?: string;
|
|
34
34
|
}
|
|
35
35
|
interface Api {
|
|
36
|
+
/** The source edition string, only valid when syntax is SYNTAX_EDITIONS. */
|
|
37
|
+
edition?: string;
|
|
36
38
|
/** The methods of this interface, in unspecified order. */
|
|
37
39
|
methods?: Method[];
|
|
38
40
|
/** Included interfaces. See Mixin. */
|
|
@@ -123,6 +125,7 @@ declare namespace gapi.client {
|
|
|
123
125
|
operationDeadline?: number;
|
|
124
126
|
/** The map between request protocol and the backend address. */
|
|
125
127
|
overridesByRequestProtocol?: {[P in string]: BackendRule};
|
|
128
|
+
/** no-lint */
|
|
126
129
|
pathTranslation?: string;
|
|
127
130
|
/** The protocol used for sending a request to the backend. The supported values are "http/1.1" and "h2". The default value is inferred from the scheme in the address field: SCHEME PROTOCOL http:// http/1.1 https:// http/1.1 grpc:// h2 grpcs:// h2 For secure HTTP backends (https://) that support HTTP/2, set this field to "h2" for improved performance. Configuring this field to non-default values is only supported for secure HTTP backends. This field will be ignored for all other backends. See https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml#alpn-protocol-ids for more details on the supported values. */
|
|
128
131
|
protocol?: string;
|
|
@@ -454,7 +457,7 @@ declare namespace gapi.client {
|
|
|
454
457
|
interface GoSettings {
|
|
455
458
|
/** Some settings. */
|
|
456
459
|
common?: CommonLanguageSettings;
|
|
457
|
-
/** Map of service names to renamed services. Keys are the package relative service names and values are the name to be used for the service client and call options. publishing: go_settings: renamed_services: Publisher: TopicAdmin */
|
|
460
|
+
/** Map of service names to renamed services. Keys are the package relative service names and values are the name to be used for the service client and call options. Example: publishing: go_settings: renamed_services: Publisher: TopicAdmin */
|
|
458
461
|
renamedServices?: {[P in string]: string};
|
|
459
462
|
}
|
|
460
463
|
interface Http {
|
|
@@ -574,6 +577,8 @@ declare namespace gapi.client {
|
|
|
574
577
|
serviceName?: string;
|
|
575
578
|
}
|
|
576
579
|
interface Method {
|
|
580
|
+
/** The source edition string, only valid when syntax is SYNTAX_EDITIONS. This field should be ignored, instead the edition should be inherited from Api. This is similar to Field and EnumValue. */
|
|
581
|
+
edition?: string;
|
|
577
582
|
/** The simple name of this method. */
|
|
578
583
|
name?: string;
|
|
579
584
|
/** Any metadata attached to the method. */
|
|
@@ -586,7 +591,7 @@ declare namespace gapi.client {
|
|
|
586
591
|
responseStreaming?: boolean;
|
|
587
592
|
/** The URL of the output message type. */
|
|
588
593
|
responseTypeUrl?: string;
|
|
589
|
-
/** The source syntax of this method. */
|
|
594
|
+
/** The source syntax of this method. This field should be ignored, instead the syntax should be inherited from Api. This is similar to Field and EnumValue. */
|
|
590
595
|
syntax?: string;
|
|
591
596
|
}
|
|
592
597
|
interface MethodPolicy {
|
|
@@ -730,6 +735,8 @@ declare namespace gapi.client {
|
|
|
730
735
|
interface PhpSettings {
|
|
731
736
|
/** Some settings. */
|
|
732
737
|
common?: CommonLanguageSettings;
|
|
738
|
+
/** The package name to use in Php. Clobbers the php_namespace option set in the protobuf. This should be used **only** by APIs who have already set the language_settings.php.package_name" field in gapic.yaml. API teams should use the protobuf php_namespace option where possible. Example of a YAML configuration:: publishing: library_settings: php_settings: library_package: Google\Cloud\PubSub\V1 */
|
|
739
|
+
libraryPackage?: string;
|
|
733
740
|
}
|
|
734
741
|
interface Policy {
|
|
735
742
|
/** Specifies cloud audit logging configuration for this policy. */
|
|
@@ -820,8 +827,6 @@ declare namespace gapi.client {
|
|
|
820
827
|
status?: string;
|
|
821
828
|
/** Google Service Control selects service configurations based on traffic percentage. */
|
|
822
829
|
trafficPercentStrategy?: TrafficPercentStrategy;
|
|
823
|
-
/** The TPC universe which the rollout will be rolled out to. */
|
|
824
|
-
universe?: string;
|
|
825
830
|
}
|
|
826
831
|
interface RubySettings {
|
|
827
832
|
/** Some settings. */
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -150,3 +150,5 @@ await gapi.client.servicemanagement.services.undelete({
|
|
|
150
150
|
serviceName: 'serviceName',
|
|
151
151
|
});
|
|
152
152
|
```
|
|
153
|
+
|
|
154
|
+
For provenance information see [Provenance section on NPM](https://www.npmjs.com/package/@maxim_mazurok/gapi.client.servicemanagement-v1#Provenance:~:text=none-,Provenance,-Built%20and%20signed)
|