@googleapis/sasportal 6.0.0 → 7.0.0
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/CHANGELOG.md +18 -0
- package/build/v1alpha1.d.ts +330 -80
- package/build/v1alpha1.js.map +1 -1
- package/package.json +1 -1
- package/v1alpha1.ts +332 -81
package/build/v1alpha1.d.ts
CHANGED
|
@@ -634,9 +634,21 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
634
634
|
etag?: string | null;
|
|
635
635
|
}
|
|
636
636
|
/**
|
|
637
|
-
* Request for [ProvisionDeployment]. [spectrum.sas.portal.v1alpha1.Provisioning.ProvisionDeployment].
|
|
637
|
+
* Request for [ProvisionDeployment]. [spectrum.sas.portal.v1alpha1.Provisioning.ProvisionDeployment]. GCP Project, Organization Info, and caller’s GAIA ID should be retrieved from the RPC handler, and used as inputs to create a new SAS organization (if not exists) and a new SAS deployment.
|
|
638
638
|
*/
|
|
639
639
|
export interface Schema$SasPortalProvisionDeploymentRequest {
|
|
640
|
+
/**
|
|
641
|
+
* Optional. If this field is set, and a new SAS Portal Deployment needs to be created, its display name will be set to the value of this field.
|
|
642
|
+
*/
|
|
643
|
+
newDeploymentDisplayName?: string | null;
|
|
644
|
+
/**
|
|
645
|
+
* Optional. If this field is set, and a new SAS Portal Organization needs to be created, its display name will be set to the value of this field.
|
|
646
|
+
*/
|
|
647
|
+
newOrganizationDisplayName?: string | null;
|
|
648
|
+
/**
|
|
649
|
+
* Optional. If this field is set then a new deployment will be created under the organization specified by this id.
|
|
650
|
+
*/
|
|
651
|
+
organizationId?: string | null;
|
|
640
652
|
}
|
|
641
653
|
/**
|
|
642
654
|
* Response for [ProvisionDeployment]. [spectrum.sas.portal.v1alpha1.Provisioning.ProvisionDeployment].
|
|
@@ -773,7 +785,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
773
785
|
* async function main() {
|
|
774
786
|
* const auth = new google.auth.GoogleAuth({
|
|
775
787
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
776
|
-
* scopes: [
|
|
788
|
+
* scopes: [
|
|
789
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
790
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
791
|
+
* ],
|
|
777
792
|
* });
|
|
778
793
|
*
|
|
779
794
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -831,7 +846,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
831
846
|
* async function main() {
|
|
832
847
|
* const auth = new google.auth.GoogleAuth({
|
|
833
848
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
834
|
-
* scopes: [
|
|
849
|
+
* scopes: [
|
|
850
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
851
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
852
|
+
* ],
|
|
835
853
|
* });
|
|
836
854
|
*
|
|
837
855
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -890,7 +908,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
890
908
|
* async function main() {
|
|
891
909
|
* const auth = new google.auth.GoogleAuth({
|
|
892
910
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
893
|
-
* scopes: [
|
|
911
|
+
* scopes: [
|
|
912
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
913
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
914
|
+
* ],
|
|
894
915
|
* });
|
|
895
916
|
*
|
|
896
917
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -960,7 +981,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
960
981
|
* async function main() {
|
|
961
982
|
* const auth = new google.auth.GoogleAuth({
|
|
962
983
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
963
|
-
* scopes: [
|
|
984
|
+
* scopes: [
|
|
985
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
986
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
987
|
+
* ],
|
|
964
988
|
* });
|
|
965
989
|
*
|
|
966
990
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -972,7 +996,11 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
972
996
|
* // Request body metadata
|
|
973
997
|
* requestBody: {
|
|
974
998
|
* // request body parameters
|
|
975
|
-
* // {
|
|
999
|
+
* // {
|
|
1000
|
+
* // "newDeploymentDisplayName": "my_newDeploymentDisplayName",
|
|
1001
|
+
* // "newOrganizationDisplayName": "my_newOrganizationDisplayName",
|
|
1002
|
+
* // "organizationId": "my_organizationId"
|
|
1003
|
+
* // }
|
|
976
1004
|
* },
|
|
977
1005
|
* });
|
|
978
1006
|
* console.log(res.data);
|
|
@@ -1060,7 +1088,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
1060
1088
|
* async function main() {
|
|
1061
1089
|
* const auth = new google.auth.GoogleAuth({
|
|
1062
1090
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
1063
|
-
* scopes: [
|
|
1091
|
+
* scopes: [
|
|
1092
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
1093
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
1094
|
+
* ],
|
|
1064
1095
|
* });
|
|
1065
1096
|
*
|
|
1066
1097
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -1130,7 +1161,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
1130
1161
|
* async function main() {
|
|
1131
1162
|
* const auth = new google.auth.GoogleAuth({
|
|
1132
1163
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
1133
|
-
* scopes: [
|
|
1164
|
+
* scopes: [
|
|
1165
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
1166
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
1167
|
+
* ],
|
|
1134
1168
|
* });
|
|
1135
1169
|
*
|
|
1136
1170
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -1184,7 +1218,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
1184
1218
|
* async function main() {
|
|
1185
1219
|
* const auth = new google.auth.GoogleAuth({
|
|
1186
1220
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
1187
|
-
* scopes: [
|
|
1221
|
+
* scopes: [
|
|
1222
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
1223
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
1224
|
+
* ],
|
|
1188
1225
|
* });
|
|
1189
1226
|
*
|
|
1190
1227
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -1243,7 +1280,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
1243
1280
|
* async function main() {
|
|
1244
1281
|
* const auth = new google.auth.GoogleAuth({
|
|
1245
1282
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
1246
|
-
* scopes: [
|
|
1283
|
+
* scopes: [
|
|
1284
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
1285
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
1286
|
+
* ],
|
|
1247
1287
|
* });
|
|
1248
1288
|
*
|
|
1249
1289
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -1306,7 +1346,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
1306
1346
|
* async function main() {
|
|
1307
1347
|
* const auth = new google.auth.GoogleAuth({
|
|
1308
1348
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
1309
|
-
* scopes: [
|
|
1349
|
+
* scopes: [
|
|
1350
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
1351
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
1352
|
+
* ],
|
|
1310
1353
|
* });
|
|
1311
1354
|
*
|
|
1312
1355
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -1374,7 +1417,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
1374
1417
|
* async function main() {
|
|
1375
1418
|
* const auth = new google.auth.GoogleAuth({
|
|
1376
1419
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
1377
|
-
* scopes: [
|
|
1420
|
+
* scopes: [
|
|
1421
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
1422
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
1423
|
+
* ],
|
|
1378
1424
|
* });
|
|
1379
1425
|
*
|
|
1380
1426
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -1514,7 +1560,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
1514
1560
|
* async function main() {
|
|
1515
1561
|
* const auth = new google.auth.GoogleAuth({
|
|
1516
1562
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
1517
|
-
* scopes: [
|
|
1563
|
+
* scopes: [
|
|
1564
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
1565
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
1566
|
+
* ],
|
|
1518
1567
|
* });
|
|
1519
1568
|
*
|
|
1520
1569
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -1598,7 +1647,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
1598
1647
|
* async function main() {
|
|
1599
1648
|
* const auth = new google.auth.GoogleAuth({
|
|
1600
1649
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
1601
|
-
* scopes: [
|
|
1650
|
+
* scopes: [
|
|
1651
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
1652
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
1653
|
+
* ],
|
|
1602
1654
|
* });
|
|
1603
1655
|
*
|
|
1604
1656
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -1673,7 +1725,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
1673
1725
|
* async function main() {
|
|
1674
1726
|
* const auth = new google.auth.GoogleAuth({
|
|
1675
1727
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
1676
|
-
* scopes: [
|
|
1728
|
+
* scopes: [
|
|
1729
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
1730
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
1731
|
+
* ],
|
|
1677
1732
|
* });
|
|
1678
1733
|
*
|
|
1679
1734
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -1778,7 +1833,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
1778
1833
|
* async function main() {
|
|
1779
1834
|
* const auth = new google.auth.GoogleAuth({
|
|
1780
1835
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
1781
|
-
* scopes: [
|
|
1836
|
+
* scopes: [
|
|
1837
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
1838
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
1839
|
+
* ],
|
|
1782
1840
|
* });
|
|
1783
1841
|
*
|
|
1784
1842
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -1862,7 +1920,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
1862
1920
|
* async function main() {
|
|
1863
1921
|
* const auth = new google.auth.GoogleAuth({
|
|
1864
1922
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
1865
|
-
* scopes: [
|
|
1923
|
+
* scopes: [
|
|
1924
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
1925
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
1926
|
+
* ],
|
|
1866
1927
|
* });
|
|
1867
1928
|
*
|
|
1868
1929
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -1937,7 +1998,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
1937
1998
|
* async function main() {
|
|
1938
1999
|
* const auth = new google.auth.GoogleAuth({
|
|
1939
2000
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
1940
|
-
* scopes: [
|
|
2001
|
+
* scopes: [
|
|
2002
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
2003
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
2004
|
+
* ],
|
|
1941
2005
|
* });
|
|
1942
2006
|
*
|
|
1943
2007
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -1991,7 +2055,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
1991
2055
|
* async function main() {
|
|
1992
2056
|
* const auth = new google.auth.GoogleAuth({
|
|
1993
2057
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
1994
|
-
* scopes: [
|
|
2058
|
+
* scopes: [
|
|
2059
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
2060
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
2061
|
+
* ],
|
|
1995
2062
|
* });
|
|
1996
2063
|
*
|
|
1997
2064
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -2057,7 +2124,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
2057
2124
|
* async function main() {
|
|
2058
2125
|
* const auth = new google.auth.GoogleAuth({
|
|
2059
2126
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
2060
|
-
* scopes: [
|
|
2127
|
+
* scopes: [
|
|
2128
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
2129
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
2130
|
+
* ],
|
|
2061
2131
|
* });
|
|
2062
2132
|
*
|
|
2063
2133
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -2120,7 +2190,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
2120
2190
|
* async function main() {
|
|
2121
2191
|
* const auth = new google.auth.GoogleAuth({
|
|
2122
2192
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
2123
|
-
* scopes: [
|
|
2193
|
+
* scopes: [
|
|
2194
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
2195
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
2196
|
+
* ],
|
|
2124
2197
|
* });
|
|
2125
2198
|
*
|
|
2126
2199
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -2188,7 +2261,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
2188
2261
|
* async function main() {
|
|
2189
2262
|
* const auth = new google.auth.GoogleAuth({
|
|
2190
2263
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
2191
|
-
* scopes: [
|
|
2264
|
+
* scopes: [
|
|
2265
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
2266
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
2267
|
+
* ],
|
|
2192
2268
|
* });
|
|
2193
2269
|
*
|
|
2194
2270
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -2274,7 +2350,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
2274
2350
|
* async function main() {
|
|
2275
2351
|
* const auth = new google.auth.GoogleAuth({
|
|
2276
2352
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
2277
|
-
* scopes: [
|
|
2353
|
+
* scopes: [
|
|
2354
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
2355
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
2356
|
+
* ],
|
|
2278
2357
|
* });
|
|
2279
2358
|
*
|
|
2280
2359
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -2336,7 +2415,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
2336
2415
|
* async function main() {
|
|
2337
2416
|
* const auth = new google.auth.GoogleAuth({
|
|
2338
2417
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
2339
|
-
* scopes: [
|
|
2418
|
+
* scopes: [
|
|
2419
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
2420
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
2421
|
+
* ],
|
|
2340
2422
|
* });
|
|
2341
2423
|
*
|
|
2342
2424
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -2512,7 +2594,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
2512
2594
|
* async function main() {
|
|
2513
2595
|
* const auth = new google.auth.GoogleAuth({
|
|
2514
2596
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
2515
|
-
* scopes: [
|
|
2597
|
+
* scopes: [
|
|
2598
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
2599
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
2600
|
+
* ],
|
|
2516
2601
|
* });
|
|
2517
2602
|
*
|
|
2518
2603
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -2580,7 +2665,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
2580
2665
|
* async function main() {
|
|
2581
2666
|
* const auth = new google.auth.GoogleAuth({
|
|
2582
2667
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
2583
|
-
* scopes: [
|
|
2668
|
+
* scopes: [
|
|
2669
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
2670
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
2671
|
+
* ],
|
|
2584
2672
|
* });
|
|
2585
2673
|
*
|
|
2586
2674
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -2634,7 +2722,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
2634
2722
|
* async function main() {
|
|
2635
2723
|
* const auth = new google.auth.GoogleAuth({
|
|
2636
2724
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
2637
|
-
* scopes: [
|
|
2725
|
+
* scopes: [
|
|
2726
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
2727
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
2728
|
+
* ],
|
|
2638
2729
|
* });
|
|
2639
2730
|
*
|
|
2640
2731
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -2692,7 +2783,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
2692
2783
|
* async function main() {
|
|
2693
2784
|
* const auth = new google.auth.GoogleAuth({
|
|
2694
2785
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
2695
|
-
* scopes: [
|
|
2786
|
+
* scopes: [
|
|
2787
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
2788
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
2789
|
+
* ],
|
|
2696
2790
|
* });
|
|
2697
2791
|
*
|
|
2698
2792
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -2755,7 +2849,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
2755
2849
|
* async function main() {
|
|
2756
2850
|
* const auth = new google.auth.GoogleAuth({
|
|
2757
2851
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
2758
|
-
* scopes: [
|
|
2852
|
+
* scopes: [
|
|
2853
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
2854
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
2855
|
+
* ],
|
|
2759
2856
|
* });
|
|
2760
2857
|
*
|
|
2761
2858
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -2823,7 +2920,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
2823
2920
|
* async function main() {
|
|
2824
2921
|
* const auth = new google.auth.GoogleAuth({
|
|
2825
2922
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
2826
|
-
* scopes: [
|
|
2923
|
+
* scopes: [
|
|
2924
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
2925
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
2926
|
+
* ],
|
|
2827
2927
|
* });
|
|
2828
2928
|
*
|
|
2829
2929
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -2961,7 +3061,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
2961
3061
|
* async function main() {
|
|
2962
3062
|
* const auth = new google.auth.GoogleAuth({
|
|
2963
3063
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
2964
|
-
* scopes: [
|
|
3064
|
+
* scopes: [
|
|
3065
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
3066
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
3067
|
+
* ],
|
|
2965
3068
|
* });
|
|
2966
3069
|
*
|
|
2967
3070
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -3031,7 +3134,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
3031
3134
|
* async function main() {
|
|
3032
3135
|
* const auth = new google.auth.GoogleAuth({
|
|
3033
3136
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
3034
|
-
* scopes: [
|
|
3137
|
+
* scopes: [
|
|
3138
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
3139
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
3140
|
+
* ],
|
|
3035
3141
|
* });
|
|
3036
3142
|
*
|
|
3037
3143
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -3126,7 +3232,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
3126
3232
|
* async function main() {
|
|
3127
3233
|
* const auth = new google.auth.GoogleAuth({
|
|
3128
3234
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
3129
|
-
* scopes: [
|
|
3235
|
+
* scopes: [
|
|
3236
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
3237
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
3238
|
+
* ],
|
|
3130
3239
|
* });
|
|
3131
3240
|
*
|
|
3132
3241
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -3210,7 +3319,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
3210
3319
|
* async function main() {
|
|
3211
3320
|
* const auth = new google.auth.GoogleAuth({
|
|
3212
3321
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
3213
|
-
* scopes: [
|
|
3322
|
+
* scopes: [
|
|
3323
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
3324
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
3325
|
+
* ],
|
|
3214
3326
|
* });
|
|
3215
3327
|
*
|
|
3216
3328
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -3285,7 +3397,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
3285
3397
|
* async function main() {
|
|
3286
3398
|
* const auth = new google.auth.GoogleAuth({
|
|
3287
3399
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
3288
|
-
* scopes: [
|
|
3400
|
+
* scopes: [
|
|
3401
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
3402
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
3403
|
+
* ],
|
|
3289
3404
|
* });
|
|
3290
3405
|
*
|
|
3291
3406
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -3390,7 +3505,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
3390
3505
|
* async function main() {
|
|
3391
3506
|
* const auth = new google.auth.GoogleAuth({
|
|
3392
3507
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
3393
|
-
* scopes: [
|
|
3508
|
+
* scopes: [
|
|
3509
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
3510
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
3511
|
+
* ],
|
|
3394
3512
|
* });
|
|
3395
3513
|
*
|
|
3396
3514
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -3458,7 +3576,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
3458
3576
|
* async function main() {
|
|
3459
3577
|
* const auth = new google.auth.GoogleAuth({
|
|
3460
3578
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
3461
|
-
* scopes: [
|
|
3579
|
+
* scopes: [
|
|
3580
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
3581
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
3582
|
+
* ],
|
|
3462
3583
|
* });
|
|
3463
3584
|
*
|
|
3464
3585
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -3554,7 +3675,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
3554
3675
|
* async function main() {
|
|
3555
3676
|
* const auth = new google.auth.GoogleAuth({
|
|
3556
3677
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
3557
|
-
* scopes: [
|
|
3678
|
+
* scopes: [
|
|
3679
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
3680
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
3681
|
+
* ],
|
|
3558
3682
|
* });
|
|
3559
3683
|
*
|
|
3560
3684
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -3623,7 +3747,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
3623
3747
|
* async function main() {
|
|
3624
3748
|
* const auth = new google.auth.GoogleAuth({
|
|
3625
3749
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
3626
|
-
* scopes: [
|
|
3750
|
+
* scopes: [
|
|
3751
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
3752
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
3753
|
+
* ],
|
|
3627
3754
|
* });
|
|
3628
3755
|
*
|
|
3629
3756
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -3677,7 +3804,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
3677
3804
|
* async function main() {
|
|
3678
3805
|
* const auth = new google.auth.GoogleAuth({
|
|
3679
3806
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
3680
|
-
* scopes: [
|
|
3807
|
+
* scopes: [
|
|
3808
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
3809
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
3810
|
+
* ],
|
|
3681
3811
|
* });
|
|
3682
3812
|
*
|
|
3683
3813
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -3743,7 +3873,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
3743
3873
|
* async function main() {
|
|
3744
3874
|
* const auth = new google.auth.GoogleAuth({
|
|
3745
3875
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
3746
|
-
* scopes: [
|
|
3876
|
+
* scopes: [
|
|
3877
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
3878
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
3879
|
+
* ],
|
|
3747
3880
|
* });
|
|
3748
3881
|
*
|
|
3749
3882
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -3811,7 +3944,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
3811
3944
|
* async function main() {
|
|
3812
3945
|
* const auth = new google.auth.GoogleAuth({
|
|
3813
3946
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
3814
|
-
* scopes: [
|
|
3947
|
+
* scopes: [
|
|
3948
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
3949
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
3950
|
+
* ],
|
|
3815
3951
|
* });
|
|
3816
3952
|
*
|
|
3817
3953
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -3897,7 +4033,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
3897
4033
|
* async function main() {
|
|
3898
4034
|
* const auth = new google.auth.GoogleAuth({
|
|
3899
4035
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
3900
|
-
* scopes: [
|
|
4036
|
+
* scopes: [
|
|
4037
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
4038
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
4039
|
+
* ],
|
|
3901
4040
|
* });
|
|
3902
4041
|
*
|
|
3903
4042
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -3959,7 +4098,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
3959
4098
|
* async function main() {
|
|
3960
4099
|
* const auth = new google.auth.GoogleAuth({
|
|
3961
4100
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
3962
|
-
* scopes: [
|
|
4101
|
+
* scopes: [
|
|
4102
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
4103
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
4104
|
+
* ],
|
|
3963
4105
|
* });
|
|
3964
4106
|
*
|
|
3965
4107
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -4094,7 +4236,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
4094
4236
|
* async function main() {
|
|
4095
4237
|
* const auth = new google.auth.GoogleAuth({
|
|
4096
4238
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
4097
|
-
* scopes: [
|
|
4239
|
+
* scopes: [
|
|
4240
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
4241
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
4242
|
+
* ],
|
|
4098
4243
|
* });
|
|
4099
4244
|
*
|
|
4100
4245
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -4153,7 +4298,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
4153
4298
|
* async function main() {
|
|
4154
4299
|
* const auth = new google.auth.GoogleAuth({
|
|
4155
4300
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
4156
|
-
* scopes: [
|
|
4301
|
+
* scopes: [
|
|
4302
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
4303
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
4304
|
+
* ],
|
|
4157
4305
|
* });
|
|
4158
4306
|
*
|
|
4159
4307
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -4233,7 +4381,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
4233
4381
|
* async function main() {
|
|
4234
4382
|
* const auth = new google.auth.GoogleAuth({
|
|
4235
4383
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
4236
|
-
* scopes: [
|
|
4384
|
+
* scopes: [
|
|
4385
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
4386
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
4387
|
+
* ],
|
|
4237
4388
|
* });
|
|
4238
4389
|
*
|
|
4239
4390
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -4302,7 +4453,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
4302
4453
|
* async function main() {
|
|
4303
4454
|
* const auth = new google.auth.GoogleAuth({
|
|
4304
4455
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
4305
|
-
* scopes: [
|
|
4456
|
+
* scopes: [
|
|
4457
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
4458
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
4459
|
+
* ],
|
|
4306
4460
|
* });
|
|
4307
4461
|
*
|
|
4308
4462
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -4356,7 +4510,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
4356
4510
|
* async function main() {
|
|
4357
4511
|
* const auth = new google.auth.GoogleAuth({
|
|
4358
4512
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
4359
|
-
* scopes: [
|
|
4513
|
+
* scopes: [
|
|
4514
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
4515
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
4516
|
+
* ],
|
|
4360
4517
|
* });
|
|
4361
4518
|
*
|
|
4362
4519
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -4415,7 +4572,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
4415
4572
|
* async function main() {
|
|
4416
4573
|
* const auth = new google.auth.GoogleAuth({
|
|
4417
4574
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
4418
|
-
* scopes: [
|
|
4575
|
+
* scopes: [
|
|
4576
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
4577
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
4578
|
+
* ],
|
|
4419
4579
|
* });
|
|
4420
4580
|
*
|
|
4421
4581
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -4478,7 +4638,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
4478
4638
|
* async function main() {
|
|
4479
4639
|
* const auth = new google.auth.GoogleAuth({
|
|
4480
4640
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
4481
|
-
* scopes: [
|
|
4641
|
+
* scopes: [
|
|
4642
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
4643
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
4644
|
+
* ],
|
|
4482
4645
|
* });
|
|
4483
4646
|
*
|
|
4484
4647
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -4546,7 +4709,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
4546
4709
|
* async function main() {
|
|
4547
4710
|
* const auth = new google.auth.GoogleAuth({
|
|
4548
4711
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
4549
|
-
* scopes: [
|
|
4712
|
+
* scopes: [
|
|
4713
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
4714
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
4715
|
+
* ],
|
|
4550
4716
|
* });
|
|
4551
4717
|
*
|
|
4552
4718
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -4676,7 +4842,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
4676
4842
|
* async function main() {
|
|
4677
4843
|
* const auth = new google.auth.GoogleAuth({
|
|
4678
4844
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
4679
|
-
* scopes: [
|
|
4845
|
+
* scopes: [
|
|
4846
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
4847
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
4848
|
+
* ],
|
|
4680
4849
|
* });
|
|
4681
4850
|
*
|
|
4682
4851
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -4760,7 +4929,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
4760
4929
|
* async function main() {
|
|
4761
4930
|
* const auth = new google.auth.GoogleAuth({
|
|
4762
4931
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
4763
|
-
* scopes: [
|
|
4932
|
+
* scopes: [
|
|
4933
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
4934
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
4935
|
+
* ],
|
|
4764
4936
|
* });
|
|
4765
4937
|
*
|
|
4766
4938
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -4835,7 +5007,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
4835
5007
|
* async function main() {
|
|
4836
5008
|
* const auth = new google.auth.GoogleAuth({
|
|
4837
5009
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
4838
|
-
* scopes: [
|
|
5010
|
+
* scopes: [
|
|
5011
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
5012
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
5013
|
+
* ],
|
|
4839
5014
|
* });
|
|
4840
5015
|
*
|
|
4841
5016
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -4940,7 +5115,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
4940
5115
|
* async function main() {
|
|
4941
5116
|
* const auth = new google.auth.GoogleAuth({
|
|
4942
5117
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
4943
|
-
* scopes: [
|
|
5118
|
+
* scopes: [
|
|
5119
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
5120
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
5121
|
+
* ],
|
|
4944
5122
|
* });
|
|
4945
5123
|
*
|
|
4946
5124
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -5024,7 +5202,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
5024
5202
|
* async function main() {
|
|
5025
5203
|
* const auth = new google.auth.GoogleAuth({
|
|
5026
5204
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
5027
|
-
* scopes: [
|
|
5205
|
+
* scopes: [
|
|
5206
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
5207
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
5208
|
+
* ],
|
|
5028
5209
|
* });
|
|
5029
5210
|
*
|
|
5030
5211
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -5099,7 +5280,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
5099
5280
|
* async function main() {
|
|
5100
5281
|
* const auth = new google.auth.GoogleAuth({
|
|
5101
5282
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
5102
|
-
* scopes: [
|
|
5283
|
+
* scopes: [
|
|
5284
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
5285
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
5286
|
+
* ],
|
|
5103
5287
|
* });
|
|
5104
5288
|
*
|
|
5105
5289
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -5153,7 +5337,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
5153
5337
|
* async function main() {
|
|
5154
5338
|
* const auth = new google.auth.GoogleAuth({
|
|
5155
5339
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
5156
|
-
* scopes: [
|
|
5340
|
+
* scopes: [
|
|
5341
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
5342
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
5343
|
+
* ],
|
|
5157
5344
|
* });
|
|
5158
5345
|
*
|
|
5159
5346
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -5219,7 +5406,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
5219
5406
|
* async function main() {
|
|
5220
5407
|
* const auth = new google.auth.GoogleAuth({
|
|
5221
5408
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
5222
|
-
* scopes: [
|
|
5409
|
+
* scopes: [
|
|
5410
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
5411
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
5412
|
+
* ],
|
|
5223
5413
|
* });
|
|
5224
5414
|
*
|
|
5225
5415
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -5282,7 +5472,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
5282
5472
|
* async function main() {
|
|
5283
5473
|
* const auth = new google.auth.GoogleAuth({
|
|
5284
5474
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
5285
|
-
* scopes: [
|
|
5475
|
+
* scopes: [
|
|
5476
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
5477
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
5478
|
+
* ],
|
|
5286
5479
|
* });
|
|
5287
5480
|
*
|
|
5288
5481
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -5350,7 +5543,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
5350
5543
|
* async function main() {
|
|
5351
5544
|
* const auth = new google.auth.GoogleAuth({
|
|
5352
5545
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
5353
|
-
* scopes: [
|
|
5546
|
+
* scopes: [
|
|
5547
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
5548
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
5549
|
+
* ],
|
|
5354
5550
|
* });
|
|
5355
5551
|
*
|
|
5356
5552
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -5436,7 +5632,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
5436
5632
|
* async function main() {
|
|
5437
5633
|
* const auth = new google.auth.GoogleAuth({
|
|
5438
5634
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
5439
|
-
* scopes: [
|
|
5635
|
+
* scopes: [
|
|
5636
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
5637
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
5638
|
+
* ],
|
|
5440
5639
|
* });
|
|
5441
5640
|
*
|
|
5442
5641
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -5498,7 +5697,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
5498
5697
|
* async function main() {
|
|
5499
5698
|
* const auth = new google.auth.GoogleAuth({
|
|
5500
5699
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
5501
|
-
* scopes: [
|
|
5700
|
+
* scopes: [
|
|
5701
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
5702
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
5703
|
+
* ],
|
|
5502
5704
|
* });
|
|
5503
5705
|
*
|
|
5504
5706
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -5674,7 +5876,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
5674
5876
|
* async function main() {
|
|
5675
5877
|
* const auth = new google.auth.GoogleAuth({
|
|
5676
5878
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
5677
|
-
* scopes: [
|
|
5879
|
+
* scopes: [
|
|
5880
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
5881
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
5882
|
+
* ],
|
|
5678
5883
|
* });
|
|
5679
5884
|
*
|
|
5680
5885
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -5742,7 +5947,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
5742
5947
|
* async function main() {
|
|
5743
5948
|
* const auth = new google.auth.GoogleAuth({
|
|
5744
5949
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
5745
|
-
* scopes: [
|
|
5950
|
+
* scopes: [
|
|
5951
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
5952
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
5953
|
+
* ],
|
|
5746
5954
|
* });
|
|
5747
5955
|
*
|
|
5748
5956
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -5796,7 +6004,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
5796
6004
|
* async function main() {
|
|
5797
6005
|
* const auth = new google.auth.GoogleAuth({
|
|
5798
6006
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
5799
|
-
* scopes: [
|
|
6007
|
+
* scopes: [
|
|
6008
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
6009
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
6010
|
+
* ],
|
|
5800
6011
|
* });
|
|
5801
6012
|
*
|
|
5802
6013
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -5854,7 +6065,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
5854
6065
|
* async function main() {
|
|
5855
6066
|
* const auth = new google.auth.GoogleAuth({
|
|
5856
6067
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
5857
|
-
* scopes: [
|
|
6068
|
+
* scopes: [
|
|
6069
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
6070
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
6071
|
+
* ],
|
|
5858
6072
|
* });
|
|
5859
6073
|
*
|
|
5860
6074
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -5917,7 +6131,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
5917
6131
|
* async function main() {
|
|
5918
6132
|
* const auth = new google.auth.GoogleAuth({
|
|
5919
6133
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
5920
|
-
* scopes: [
|
|
6134
|
+
* scopes: [
|
|
6135
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
6136
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
6137
|
+
* ],
|
|
5921
6138
|
* });
|
|
5922
6139
|
*
|
|
5923
6140
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -5985,7 +6202,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
5985
6202
|
* async function main() {
|
|
5986
6203
|
* const auth = new google.auth.GoogleAuth({
|
|
5987
6204
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
5988
|
-
* scopes: [
|
|
6205
|
+
* scopes: [
|
|
6206
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
6207
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
6208
|
+
* ],
|
|
5989
6209
|
* });
|
|
5990
6210
|
*
|
|
5991
6211
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -6123,7 +6343,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
6123
6343
|
* async function main() {
|
|
6124
6344
|
* const auth = new google.auth.GoogleAuth({
|
|
6125
6345
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
6126
|
-
* scopes: [
|
|
6346
|
+
* scopes: [
|
|
6347
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
6348
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
6349
|
+
* ],
|
|
6127
6350
|
* });
|
|
6128
6351
|
*
|
|
6129
6352
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -6193,7 +6416,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
6193
6416
|
* async function main() {
|
|
6194
6417
|
* const auth = new google.auth.GoogleAuth({
|
|
6195
6418
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
6196
|
-
* scopes: [
|
|
6419
|
+
* scopes: [
|
|
6420
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
6421
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
6422
|
+
* ],
|
|
6197
6423
|
* });
|
|
6198
6424
|
*
|
|
6199
6425
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -6288,7 +6514,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
6288
6514
|
* async function main() {
|
|
6289
6515
|
* const auth = new google.auth.GoogleAuth({
|
|
6290
6516
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
6291
|
-
* scopes: [
|
|
6517
|
+
* scopes: [
|
|
6518
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
6519
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
6520
|
+
* ],
|
|
6292
6521
|
* });
|
|
6293
6522
|
*
|
|
6294
6523
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -6372,7 +6601,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
6372
6601
|
* async function main() {
|
|
6373
6602
|
* const auth = new google.auth.GoogleAuth({
|
|
6374
6603
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
6375
|
-
* scopes: [
|
|
6604
|
+
* scopes: [
|
|
6605
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
6606
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
6607
|
+
* ],
|
|
6376
6608
|
* });
|
|
6377
6609
|
*
|
|
6378
6610
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -6447,7 +6679,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
6447
6679
|
* async function main() {
|
|
6448
6680
|
* const auth = new google.auth.GoogleAuth({
|
|
6449
6681
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
6450
|
-
* scopes: [
|
|
6682
|
+
* scopes: [
|
|
6683
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
6684
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
6685
|
+
* ],
|
|
6451
6686
|
* });
|
|
6452
6687
|
*
|
|
6453
6688
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -6552,7 +6787,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
6552
6787
|
* async function main() {
|
|
6553
6788
|
* const auth = new google.auth.GoogleAuth({
|
|
6554
6789
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
6555
|
-
* scopes: [
|
|
6790
|
+
* scopes: [
|
|
6791
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
6792
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
6793
|
+
* ],
|
|
6556
6794
|
* });
|
|
6557
6795
|
*
|
|
6558
6796
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -6620,7 +6858,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
6620
6858
|
* async function main() {
|
|
6621
6859
|
* const auth = new google.auth.GoogleAuth({
|
|
6622
6860
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
6623
|
-
* scopes: [
|
|
6861
|
+
* scopes: [
|
|
6862
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
6863
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
6864
|
+
* ],
|
|
6624
6865
|
* });
|
|
6625
6866
|
*
|
|
6626
6867
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -6715,7 +6956,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
6715
6956
|
* async function main() {
|
|
6716
6957
|
* const auth = new google.auth.GoogleAuth({
|
|
6717
6958
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
6718
|
-
* scopes: [
|
|
6959
|
+
* scopes: [
|
|
6960
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
6961
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
6962
|
+
* ],
|
|
6719
6963
|
* });
|
|
6720
6964
|
*
|
|
6721
6965
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -6777,7 +7021,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
6777
7021
|
* async function main() {
|
|
6778
7022
|
* const auth = new google.auth.GoogleAuth({
|
|
6779
7023
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
6780
|
-
* scopes: [
|
|
7024
|
+
* scopes: [
|
|
7025
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
7026
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
7027
|
+
* ],
|
|
6781
7028
|
* });
|
|
6782
7029
|
*
|
|
6783
7030
|
* // Acquire an auth client, and bind it to all future calls
|
|
@@ -6841,7 +7088,10 @@ export declare namespace sasportal_v1alpha1 {
|
|
|
6841
7088
|
* async function main() {
|
|
6842
7089
|
* const auth = new google.auth.GoogleAuth({
|
|
6843
7090
|
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
6844
|
-
* scopes: [
|
|
7091
|
+
* scopes: [
|
|
7092
|
+
* 'https://www.googleapis.com/auth/cloud-platform',
|
|
7093
|
+
* 'https://www.googleapis.com/auth/sasportal',
|
|
7094
|
+
* ],
|
|
6845
7095
|
* });
|
|
6846
7096
|
*
|
|
6847
7097
|
* // Acquire an auth client, and bind it to all future calls
|