@maxim_mazurok/gapi.client.prod_tt_sasportal-v1alpha1 0.0.20231217 → 0.0.20231219

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 +30 -1
  2. package/package.json +1 -1
  3. package/readme.md +5 -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://prod-tt-sasportal.googleapis.com/$discovery/rest?version=v1alpha1
12
- // Revision: 20231217
12
+ // Revision: 20231219
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -240,6 +240,10 @@ declare namespace gapi.client {
240
240
  /** A pagination token returned from a previous call to ListDevices that indicates from where listing should continue. If the field is missing or empty, it means there is no more devices. */
241
241
  nextPageToken?: string;
242
242
  }
243
+ interface SasPortalListLegacyOrganizationsResponse {
244
+ /** Optional. IDs of legacy SAS organizations. */
245
+ organizationIds?: string[];
246
+ }
243
247
  interface SasPortalListNodesResponse {
244
248
  /** A pagination token returned from a previous call to ListNodes that indicates from where listing should continue. If the field is missing or empty, it means there is no more nodes. */
245
249
  nextPageToken?: string;
@@ -1920,6 +1924,31 @@ declare namespace gapi.client {
1920
1924
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1921
1925
  uploadType?: string;
1922
1926
  }): Request<SasPortalListCustomersResponse>;
1927
+ /** Checks whether account is legacy. */
1928
+ listLegacyOrganizations(request?: {
1929
+ /** V1 error format. */
1930
+ '$.xgafv'?: string;
1931
+ /** OAuth access token. */
1932
+ access_token?: string;
1933
+ /** Data format for response. */
1934
+ alt?: string;
1935
+ /** JSONP */
1936
+ callback?: string;
1937
+ /** Selector specifying which fields to include in a partial response. */
1938
+ fields?: string;
1939
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1940
+ key?: string;
1941
+ /** OAuth 2.0 token for the current user. */
1942
+ oauth_token?: string;
1943
+ /** Returns response with indentations and line breaks. */
1944
+ prettyPrint?: boolean;
1945
+ /** 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. */
1946
+ quotaUser?: string;
1947
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
1948
+ upload_protocol?: string;
1949
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1950
+ uploadType?: string;
1951
+ }): Request<SasPortalListLegacyOrganizationsResponse>;
1923
1952
  /** Migrates a SAS organization to the cloud. This will create GCP projects for each deployment and associate them. The SAS Organization is linked to the gcp project that called the command. go/sas-legacy-customer-migration */
1924
1953
  migrateOrganization(request: {
1925
1954
  /** V1 error format. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.prod_tt_sasportal-v1alpha1",
3
- "version": "0.0.20231217",
3
+ "version": "0.0.20231219",
4
4
  "description": "TypeScript typings for SAS Portal API (Testing) v1alpha1",
5
5
  "repository": {
6
6
  "type": "git",
package/readme.md CHANGED
@@ -86,6 +86,11 @@ Returns a list of requested customers.
86
86
  */
87
87
  await gapi.client.prod_tt_sasportal.customers.list({});
88
88
 
89
+ /*
90
+ Checks whether account is legacy.
91
+ */
92
+ await gapi.client.prod_tt_sasportal.customers.listLegacyOrganizations({});
93
+
89
94
  /*
90
95
  Migrates a SAS organization to the cloud. This will create GCP projects for each deployment and associate them. The SAS Organization is linked to the gcp project that called the command. go/sas-legacy-customer-migration
91
96
  */