@aws-sdk/client-appstream 3.118.0 → 3.121.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 +30 -0
- package/dist-cjs/models/models_0.js +16 -4
- package/dist-cjs/protocols/Aws_json1_1.js +347 -261
- package/dist-es/models/models_0.js +10 -0
- package/dist-es/protocols/Aws_json1_1.js +345 -263
- package/dist-types/AppStream.d.ts +1 -1
- package/dist-types/commands/UpdateFleetCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +32 -0
- package/dist-types/ts3.4/models/models_0.d.ts +20 -0
- package/package.json +6 -6
|
@@ -497,6 +497,15 @@ export var StorageConnector;
|
|
|
497
497
|
(function (StorageConnector) {
|
|
498
498
|
StorageConnector.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
499
499
|
})(StorageConnector || (StorageConnector = {}));
|
|
500
|
+
export var PreferredProtocol;
|
|
501
|
+
(function (PreferredProtocol) {
|
|
502
|
+
PreferredProtocol["TCP"] = "TCP";
|
|
503
|
+
PreferredProtocol["UDP"] = "UDP";
|
|
504
|
+
})(PreferredProtocol || (PreferredProtocol = {}));
|
|
505
|
+
export var StreamingExperienceSettings;
|
|
506
|
+
(function (StreamingExperienceSettings) {
|
|
507
|
+
StreamingExperienceSettings.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
508
|
+
})(StreamingExperienceSettings || (StreamingExperienceSettings = {}));
|
|
500
509
|
export var Permission;
|
|
501
510
|
(function (Permission) {
|
|
502
511
|
Permission["DISABLED"] = "DISABLED";
|
|
@@ -1050,6 +1059,7 @@ export var StackAttribute;
|
|
|
1050
1059
|
StackAttribute["STORAGE_CONNECTOR_GOOGLE_DRIVE"] = "STORAGE_CONNECTOR_GOOGLE_DRIVE";
|
|
1051
1060
|
StackAttribute["STORAGE_CONNECTOR_HOMEFOLDERS"] = "STORAGE_CONNECTOR_HOMEFOLDERS";
|
|
1052
1061
|
StackAttribute["STORAGE_CONNECTOR_ONE_DRIVE"] = "STORAGE_CONNECTOR_ONE_DRIVE";
|
|
1062
|
+
StackAttribute["STREAMING_EXPERIENCE_SETTINGS"] = "STREAMING_EXPERIENCE_SETTINGS";
|
|
1053
1063
|
StackAttribute["THEME_NAME"] = "THEME_NAME";
|
|
1054
1064
|
StackAttribute["USER_SETTINGS"] = "USER_SETTINGS";
|
|
1055
1065
|
})(StackAttribute || (StackAttribute = {}));
|