@globus/sdk 6.3.0 → 6.3.1-canary.10.81f8e98
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/dist/cjs/core/authorization/index.js +2 -2
- package/dist/cjs/core/authorization/index.js.map +2 -2
- package/dist/cjs/core/info/index.js +1 -1
- package/dist/cjs/core/info/index.js.map +1 -1
- package/dist/cjs/index.js +5 -5
- package/dist/cjs/index.js.map +2 -2
- package/dist/cjs/services/globus-connect-server/client.js +5 -5
- package/dist/cjs/services/globus-connect-server/client.js.map +2 -2
- package/dist/esm/core/info/version.d.ts +1 -1
- package/dist/esm/core/info/version.js +1 -1
- package/dist/esm/open-api/types/gcs/v5.4.d.ts +102 -1
- package/dist/esm/open-api/types/gcs/v5.4.d.ts.map +1 -1
- package/dist/esm/open-api/types/transfer.d.ts +18 -290
- package/dist/esm/open-api/types/transfer.d.ts.map +1 -1
- package/dist/esm/package.json +1 -1
- package/dist/esm/services/globus-connect-server/client.d.ts.map +1 -1
- package/dist/esm/services/globus-connect-server/service/collections.d.ts.map +1 -1
- package/dist/esm/services/globus-connect-server/service/endpoint.d.ts.map +1 -1
- package/dist/esm/services/globus-connect-server/service/https.js +3 -3
- package/dist/esm/services/globus-connect-server/service/https.js.map +1 -1
- package/dist/esm/services/globus-connect-server/service/nodes.d.ts.map +1 -1
- package/dist/esm/services/globus-connect-server/service/roles.d.ts.map +1 -1
- package/dist/esm/services/globus-connect-server/service/storage-gateways.d.ts.map +1 -1
- package/dist/esm/services/globus-connect-server/service/user-credentials.d.ts.map +1 -1
- package/dist/esm/services/globus-connect-server/service/versioning.d.ts.map +1 -1
- package/dist/esm/services/shared.js +1 -1
- package/dist/esm/services/shared.js.map +1 -1
- package/dist/esm/services/transfer/service/stream-access-point.d.ts.map +1 -1
- package/dist/esm/services/transfer/service/tunnel.d.ts.map +1 -1
- package/dist/esm/services/transfer/service/v2/bookmarks.d.ts.map +1 -1
- package/dist/esm/services/types.d.ts +1 -0
- package/dist/esm/services/types.d.ts.map +1 -1
- package/dist/umd/globus.production.js +2 -2
- package/dist/umd/globus.production.js.map +2 -2
- package/package.json +2 -2
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "6.3.
|
|
1
|
+
export declare const VERSION = "6.3.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
|
@@ -8328,6 +8328,103 @@ export interface components {
|
|
|
8328
8328
|
/** @description List of mapped usernames denied access to this gateway. */
|
|
8329
8329
|
users_deny?: string[] | null;
|
|
8330
8330
|
};
|
|
8331
|
+
/**
|
|
8332
|
+
* StreamGateway_1_1_0
|
|
8333
|
+
* @description A stream gateway provides the access policies for the endpoint's
|
|
8334
|
+
* local and wide-area networks to create stream connections between
|
|
8335
|
+
* applications running on this endpoint's local network and another
|
|
8336
|
+
* endpoint's local network.
|
|
8337
|
+
*
|
|
8338
|
+
*
|
|
8339
|
+
* Version 1.1.0 adds support for executing the stream operations
|
|
8340
|
+
* as a mapped local user account.
|
|
8341
|
+
*/
|
|
8342
|
+
StreamGateway_1_1_0: {
|
|
8343
|
+
/**
|
|
8344
|
+
* @description Type of this document
|
|
8345
|
+
* @default stream_gateway#1.1.0
|
|
8346
|
+
* @enum {string}
|
|
8347
|
+
*/
|
|
8348
|
+
DATA_TYPE: "stream_gateway#1.1.0";
|
|
8349
|
+
/**
|
|
8350
|
+
* @description List of allowed domains. Users creating lan_secrets or accessing
|
|
8351
|
+
* tunnels on this gateway must have an identity in one of these
|
|
8352
|
+
* domains.
|
|
8353
|
+
*/
|
|
8354
|
+
allowed_domains?: string[];
|
|
8355
|
+
/**
|
|
8356
|
+
* @description Timeout (in minutes) during which a user is required to have
|
|
8357
|
+
* authenticated to create a tunnel on this gateway.
|
|
8358
|
+
*/
|
|
8359
|
+
authentication_timeout_mins?: number | null;
|
|
8360
|
+
/** @description Email address of the support contact for the stream access point */
|
|
8361
|
+
contact_email?: string;
|
|
8362
|
+
/**
|
|
8363
|
+
* @description Other non-email contact information for the stream access point,
|
|
8364
|
+
* e.g. phone and mailing address
|
|
8365
|
+
*/
|
|
8366
|
+
contact_info?: string;
|
|
8367
|
+
/** @description Flag indicating that this gateway has been deleted */
|
|
8368
|
+
deleted?: boolean;
|
|
8369
|
+
/** @description Department which operates the stream access point */
|
|
8370
|
+
department?: string;
|
|
8371
|
+
/** @description Description of the stream access point */
|
|
8372
|
+
description?: string;
|
|
8373
|
+
/** @description Name of the stream access point */
|
|
8374
|
+
display_name?: string;
|
|
8375
|
+
/** @description Read-only DNS domain. */
|
|
8376
|
+
domain_name?: string;
|
|
8377
|
+
/**
|
|
8378
|
+
* Format: uuid
|
|
8379
|
+
* @description Unique id for this stream gateway
|
|
8380
|
+
*/
|
|
8381
|
+
id?: string;
|
|
8382
|
+
/**
|
|
8383
|
+
* @description List of identity mappings to apply to user identities to determine
|
|
8384
|
+
* what connector-specific accounts are available for access.
|
|
8385
|
+
*/
|
|
8386
|
+
identity_mappings?: components["schemas"]["IdentityMapping"][] | null;
|
|
8387
|
+
/**
|
|
8388
|
+
* @description Link to a web page with more information about the stream
|
|
8389
|
+
* access point
|
|
8390
|
+
*/
|
|
8391
|
+
info_link?: string;
|
|
8392
|
+
/**
|
|
8393
|
+
* @description List of search keywords for the endpoint. Optional. Unicode string,
|
|
8394
|
+
* max 1024 characters total across all strings.
|
|
8395
|
+
*/
|
|
8396
|
+
keywords?: string[];
|
|
8397
|
+
/**
|
|
8398
|
+
* @description If set, the name of the lan to use when connecting to this
|
|
8399
|
+
* streaming gateway. This corresponds to the *network_name*
|
|
8400
|
+
* property associated with lan addresses in nodes associated with
|
|
8401
|
+
* this endpoint.
|
|
8402
|
+
*/
|
|
8403
|
+
lan_name?: string | null;
|
|
8404
|
+
/**
|
|
8405
|
+
* @description If true, users of this stream gateway must create and use a
|
|
8406
|
+
* lan secret to connect to a stream. Otherwise, that step
|
|
8407
|
+
* is optional.
|
|
8408
|
+
*/
|
|
8409
|
+
lan_secret_required?: boolean;
|
|
8410
|
+
/**
|
|
8411
|
+
* @description Organization that operates the stream access point.
|
|
8412
|
+
* Optional unicode string, max 1000 characters, no new lines.
|
|
8413
|
+
*/
|
|
8414
|
+
organization?: string;
|
|
8415
|
+
/**
|
|
8416
|
+
* @description If true, the identity mapping must result in a valid local account name.
|
|
8417
|
+
* The gridftp server will execute as that user. If false (the default), the
|
|
8418
|
+
* gridftp server runs as the gcsweb user.
|
|
8419
|
+
*/
|
|
8420
|
+
run_as_local_user?: boolean;
|
|
8421
|
+
/** @description URL for the TLSFTP server used for tunnel control. */
|
|
8422
|
+
readonly tlsftp_url?: string;
|
|
8423
|
+
/** @description List of mapped usernames allowed to access this gateway. */
|
|
8424
|
+
users_allow?: string[] | null;
|
|
8425
|
+
/** @description List of mapped usernames denied access to this gateway. */
|
|
8426
|
+
users_deny?: string[] | null;
|
|
8427
|
+
};
|
|
8331
8428
|
/**
|
|
8332
8429
|
* SubscriptionRequired_1_0_0
|
|
8333
8430
|
* @description Error details when the caller has attempted to access a feature
|
|
@@ -10197,8 +10294,12 @@ export interface components {
|
|
|
10197
10294
|
* local and wide-area networks to create stream connections between
|
|
10198
10295
|
* applications running on this endpoint's local network and another
|
|
10199
10296
|
* endpoint's local network.
|
|
10297
|
+
*
|
|
10298
|
+
*
|
|
10299
|
+
* Version 1.1.0 adds support for executing the stream operations
|
|
10300
|
+
* as a mapped local user account.
|
|
10200
10301
|
*/
|
|
10201
|
-
StreamGateway: components["schemas"]["StreamGateway_1_0_0"];
|
|
10302
|
+
StreamGateway: components["schemas"]["StreamGateway_1_0_0"] | components["schemas"]["StreamGateway_1_1_0"];
|
|
10202
10303
|
/**
|
|
10203
10304
|
* SubscriptionRequired
|
|
10204
10305
|
* @description Error details when the caller has attempted to access a feature
|