@maxim_mazurok/gapi.client.servicemanagement-v1 0.1.20250617 → 0.1.20251001

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.
Files changed (2) hide show
  1. package/index.d.ts +14 -5
  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: 20250617
12
+ // Revision: 20251001
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 {
@@ -516,6 +519,8 @@ declare namespace gapi.client {
516
519
  nextPageToken?: string;
517
520
  /** A list of operations that matches the specified filter in the request. */
518
521
  operations?: Operation[];
522
+ /** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections e.g. when attempting to list all resources across all supported locations. */
523
+ unreachable?: string[];
519
524
  }
520
525
  interface ListServiceConfigsResponse {
521
526
  /** The token of the next page of results. */
@@ -574,6 +579,8 @@ declare namespace gapi.client {
574
579
  serviceName?: string;
575
580
  }
576
581
  interface Method {
582
+ /** 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. */
583
+ edition?: string;
577
584
  /** The simple name of this method. */
578
585
  name?: string;
579
586
  /** Any metadata attached to the method. */
@@ -586,7 +593,7 @@ declare namespace gapi.client {
586
593
  responseStreaming?: boolean;
587
594
  /** The URL of the output message type. */
588
595
  responseTypeUrl?: string;
589
- /** The source syntax of this method. */
596
+ /** 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
597
  syntax?: string;
591
598
  }
592
599
  interface MethodPolicy {
@@ -730,6 +737,8 @@ declare namespace gapi.client {
730
737
  interface PhpSettings {
731
738
  /** Some settings. */
732
739
  common?: CommonLanguageSettings;
740
+ /** 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 */
741
+ libraryPackage?: string;
733
742
  }
734
743
  interface Policy {
735
744
  /** Specifies cloud audit logging configuration for this policy. */
@@ -820,8 +829,6 @@ declare namespace gapi.client {
820
829
  status?: string;
821
830
  /** Google Service Control selects service configurations based on traffic percentage. */
822
831
  trafficPercentStrategy?: TrafficPercentStrategy;
823
- /** The TPC universe which the rollout will be rolled out to. */
824
- universe?: string;
825
832
  }
826
833
  interface RubySettings {
827
834
  /** Some settings. */
@@ -1053,6 +1060,8 @@ declare namespace gapi.client {
1053
1060
  prettyPrint?: boolean;
1054
1061
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1055
1062
  quotaUser?: string;
1063
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
1064
+ returnPartialSuccess?: boolean;
1056
1065
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1057
1066
  upload_protocol?: string;
1058
1067
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.servicemanagement-v1",
3
- "version": "0.1.20250617",
3
+ "version": "0.1.20251001",
4
4
  "description": "TypeScript typings for Service Management API v1",
5
5
  "repository": {
6
6
  "type": "git",