@maxim_mazurok/gapi.client.prod_tt_sasportal-v1alpha1 0.0.20240111 → 0.0.20240118
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 +37 -2
- package/package.json +1 -1
- package/readme.md +6 -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://prod-tt-sasportal.googleapis.com/$discovery/rest?version=v1alpha1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240118
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -183,6 +183,12 @@ declare namespace gapi.client {
|
|
|
183
183
|
/** The lowest frequency of the frequency range in MHz. */
|
|
184
184
|
lowFrequencyMhz?: number;
|
|
185
185
|
}
|
|
186
|
+
interface SasPortalGcpProjectDeployment {
|
|
187
|
+
/** Deployment associated with the GCP project. */
|
|
188
|
+
deployment?: SasPortalDeployment;
|
|
189
|
+
/** Whether SAS analytics has been enabled. */
|
|
190
|
+
hasEnabledAnalytics?: boolean;
|
|
191
|
+
}
|
|
186
192
|
interface SasPortalGenerateSecretRequest {}
|
|
187
193
|
interface SasPortalGenerateSecretResponse {
|
|
188
194
|
/** The secret generated by the string and used by ValidateInstaller. */
|
|
@@ -240,6 +246,10 @@ declare namespace gapi.client {
|
|
|
240
246
|
/** 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
247
|
nextPageToken?: string;
|
|
242
248
|
}
|
|
249
|
+
interface SasPortalListGcpProjectDeploymentsResponse {
|
|
250
|
+
/** Optional. Deployments associated with the GCP project */
|
|
251
|
+
deployments?: SasPortalGcpProjectDeployment[];
|
|
252
|
+
}
|
|
243
253
|
interface SasPortalListLegacyOrganizationsResponse {
|
|
244
254
|
/** Optional. Legacy SAS organizations. */
|
|
245
255
|
organizations?: SasPortalOrganization[];
|
|
@@ -1930,7 +1940,32 @@ declare namespace gapi.client {
|
|
|
1930
1940
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1931
1941
|
uploadType?: string;
|
|
1932
1942
|
}): Request<SasPortalListCustomersResponse>;
|
|
1933
|
-
/**
|
|
1943
|
+
/** Returns a list of SAS deployments associated with current GCP project. Includes whether SAS analytics has been enabled or not. */
|
|
1944
|
+
listGcpProjectDeployments(request?: {
|
|
1945
|
+
/** V1 error format. */
|
|
1946
|
+
'$.xgafv'?: string;
|
|
1947
|
+
/** OAuth access token. */
|
|
1948
|
+
access_token?: string;
|
|
1949
|
+
/** Data format for response. */
|
|
1950
|
+
alt?: string;
|
|
1951
|
+
/** JSONP */
|
|
1952
|
+
callback?: string;
|
|
1953
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1954
|
+
fields?: string;
|
|
1955
|
+
/** 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. */
|
|
1956
|
+
key?: string;
|
|
1957
|
+
/** OAuth 2.0 token for the current user. */
|
|
1958
|
+
oauth_token?: string;
|
|
1959
|
+
/** Returns response with indentations and line breaks. */
|
|
1960
|
+
prettyPrint?: boolean;
|
|
1961
|
+
/** 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. */
|
|
1962
|
+
quotaUser?: string;
|
|
1963
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1964
|
+
upload_protocol?: string;
|
|
1965
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1966
|
+
uploadType?: string;
|
|
1967
|
+
}): Request<SasPortalListGcpProjectDeploymentsResponse>;
|
|
1968
|
+
/** Returns a list of legacy organizations. */
|
|
1934
1969
|
listLegacyOrganizations(request?: {
|
|
1935
1970
|
/** V1 error format. */
|
|
1936
1971
|
'$.xgafv'?: string;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -87,7 +87,12 @@ Returns a list of requested customers.
|
|
|
87
87
|
await gapi.client.prod_tt_sasportal.customers.list({});
|
|
88
88
|
|
|
89
89
|
/*
|
|
90
|
-
|
|
90
|
+
Returns a list of SAS deployments associated with current GCP project. Includes whether SAS analytics has been enabled or not.
|
|
91
|
+
*/
|
|
92
|
+
await gapi.client.prod_tt_sasportal.customers.listGcpProjectDeployments({});
|
|
93
|
+
|
|
94
|
+
/*
|
|
95
|
+
Returns a list of legacy organizations.
|
|
91
96
|
*/
|
|
92
97
|
await gapi.client.prod_tt_sasportal.customers.listLegacyOrganizations({});
|
|
93
98
|
|