@maxim_mazurok/gapi.client.servicenetworking-v1beta 0.0.20250126 → 0.0.20250129

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 (3) hide show
  1. package/index.d.ts +8 -8
  2. package/package.json +1 -1
  3. package/readme.md +2 -2
package/index.d.ts CHANGED
@@ -9,14 +9,14 @@
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://servicenetworking.googleapis.com/$discovery/rest?version=v1beta
12
- // Revision: 20250126
12
+ // Revision: 20250129
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
16
16
  declare namespace gapi.client {
17
17
  /** Load Service Networking API v1beta */
18
18
  function load(
19
- urlOrObject: 'https://servicenetworking.googleapis.com/$discovery/rest?version=v1beta'
19
+ urlOrObject: 'https://servicenetworking.googleapis.com/$discovery/rest?version=v1beta',
20
20
  ): Promise<void>;
21
21
  /** @deprecated Please load APIs with discovery documents. */
22
22
  function load(name: 'servicenetworking', version: 'v1beta'): Promise<void>;
@@ -24,7 +24,7 @@ declare namespace gapi.client {
24
24
  function load(
25
25
  name: 'servicenetworking',
26
26
  version: 'v1beta',
27
- callback: () => any
27
+ callback: () => any,
28
28
  ): void;
29
29
 
30
30
  namespace servicenetworking {
@@ -650,7 +650,7 @@ declare namespace gapi.client {
650
650
  value?: {[P in string]: any};
651
651
  }
652
652
  interface Page {
653
- /** 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. */
653
+ /** 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. */
654
654
  content?: string;
655
655
  /** 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`. */
656
656
  name?: string;
@@ -1002,7 +1002,7 @@ declare namespace gapi.client {
1002
1002
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1003
1003
  uploadType?: string;
1004
1004
  },
1005
- body: GoogleCloudServicenetworkingV1betaConnection
1005
+ body: GoogleCloudServicenetworkingV1betaConnection,
1006
1006
  ): Request<Operation>;
1007
1007
  /** List the private connections that are configured in a service consumer's VPC network. */
1008
1008
  list(request?: {
@@ -1091,7 +1091,7 @@ declare namespace gapi.client {
1091
1091
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1092
1092
  uploadType?: string;
1093
1093
  },
1094
- body: AddSubnetworkRequest
1094
+ body: AddSubnetworkRequest,
1095
1095
  ): Request<Operation>;
1096
1096
  /** Service producers can use this method to find a currently unused range within consumer allocated ranges. This returned range is not reserved, and not guaranteed to remain unused. It will validate previously provided allocated ranges, find non-conflicting sub-range of requested size (expressed in number of leading bits of ipv4 network mask, as in CIDR range notation). Operation */
1097
1097
  searchRange(request: {
@@ -1149,7 +1149,7 @@ declare namespace gapi.client {
1149
1149
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1150
1150
  uploadType?: string;
1151
1151
  },
1152
- body: SearchRangeRequest
1152
+ body: SearchRangeRequest,
1153
1153
  ): Request<Operation>;
1154
1154
  /** Updates the allocated ranges that are assigned to a connection. The response from the `get` operation will be of type `Connection` if the operation successfully completes. */
1155
1155
  updateConnections(request: {
@@ -1215,7 +1215,7 @@ declare namespace gapi.client {
1215
1215
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1216
1216
  uploadType?: string;
1217
1217
  },
1218
- body: GoogleCloudServicenetworkingV1betaConnection
1218
+ body: GoogleCloudServicenetworkingV1betaConnection,
1219
1219
  ): Request<Operation>;
1220
1220
  connections: ConnectionsResource;
1221
1221
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.servicenetworking-v1beta",
3
- "version": "0.0.20250126",
3
+ "version": "0.0.20250129",
4
4
  "description": "TypeScript typings for Service Networking API v1beta",
5
5
  "repository": {
6
6
  "type": "git",
package/readme.md CHANGED
@@ -30,7 +30,7 @@ gapi.client.load(
30
30
  () => {
31
31
  // now we can use:
32
32
  // gapi.client.servicenetworking
33
- }
33
+ },
34
34
  );
35
35
  ```
36
36
 
@@ -65,7 +65,7 @@ gapi.auth.authorize(
65
65
  } else {
66
66
  /* handle authorization error */
67
67
  }
68
- }
68
+ },
69
69
  );
70
70
  ```
71
71