@aws-sdk/client-workspaces 3.504.0 → 3.507.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/dist-cjs/index.js +181 -2107
- package/dist-es/protocols/Aws_json1_1.js +293 -2219
- package/dist-types/models/models_0.d.ts +70 -0
- package/package.json +3 -3
|
@@ -1891,6 +1891,76 @@ export interface Workspace {
|
|
|
1891
1891
|
/**
|
|
1892
1892
|
* @public
|
|
1893
1893
|
* <p>The operational state of the WorkSpace.</p>
|
|
1894
|
+
* <ul>
|
|
1895
|
+
* <li>
|
|
1896
|
+
* <p>
|
|
1897
|
+
* <code>PENDING</code> – The WorkSpace is in a waiting state (for example, the WorkSpace is being created).</p>
|
|
1898
|
+
* </li>
|
|
1899
|
+
* <li>
|
|
1900
|
+
* <p>
|
|
1901
|
+
* <code>AVAILABLE</code> – The WorkSpace is running and has passed the health checks.</p>
|
|
1902
|
+
* </li>
|
|
1903
|
+
* <li>
|
|
1904
|
+
* <p>
|
|
1905
|
+
* <code>IMPAIRED</code> – Refer to <code>UNHEALTHY</code> state.</p>
|
|
1906
|
+
* </li>
|
|
1907
|
+
* <li>
|
|
1908
|
+
* <p>
|
|
1909
|
+
* <code>UNHEALTHY</code> – The WorkSpace is not responding to health checks.</p>
|
|
1910
|
+
* </li>
|
|
1911
|
+
* <li>
|
|
1912
|
+
* <p>
|
|
1913
|
+
* <code>REBOOTING</code> – The WorkSpace is being rebooted (restarted).</p>
|
|
1914
|
+
* </li>
|
|
1915
|
+
* <li>
|
|
1916
|
+
* <p>
|
|
1917
|
+
* <code>STARTING</code> – The WorkSpace is starting up and health checks are being run.</p>
|
|
1918
|
+
* </li>
|
|
1919
|
+
* <li>
|
|
1920
|
+
* <p>
|
|
1921
|
+
* <code>REBUILDING</code> – The WorkSpace is being rebuilt.</p>
|
|
1922
|
+
* </li>
|
|
1923
|
+
* <li>
|
|
1924
|
+
* <p>
|
|
1925
|
+
* <code>RESTORING</code> – The WorkSpace is being restored.</p>
|
|
1926
|
+
* </li>
|
|
1927
|
+
* <li>
|
|
1928
|
+
* <p>
|
|
1929
|
+
* <code>MAINTENANCE</code> – The WorkSpace is undergoing scheduled maintenance by Amazon Web Services.</p>
|
|
1930
|
+
* </li>
|
|
1931
|
+
* <li>
|
|
1932
|
+
* <p>
|
|
1933
|
+
* <code>ADMIN_MAINTENANCE</code> – The WorkSpace is undergoing maintenance by the WorkSpaces administrator.</p>
|
|
1934
|
+
* </li>
|
|
1935
|
+
* <li>
|
|
1936
|
+
* <p>
|
|
1937
|
+
* <code>TERMINATING</code> – The WorkSpace is being deleted.</p>
|
|
1938
|
+
* </li>
|
|
1939
|
+
* <li>
|
|
1940
|
+
* <p>
|
|
1941
|
+
* <code>TERMINATED</code> – The WorkSpace has been deleted.</p>
|
|
1942
|
+
* </li>
|
|
1943
|
+
* <li>
|
|
1944
|
+
* <p>
|
|
1945
|
+
* <code>SUSPENDED</code> – The WorkSpace has been suspended for image creation.</p>
|
|
1946
|
+
* </li>
|
|
1947
|
+
* <li>
|
|
1948
|
+
* <p>
|
|
1949
|
+
* <code>UPDATING</code> – The WorkSpace is undergoing an update.</p>
|
|
1950
|
+
* </li>
|
|
1951
|
+
* <li>
|
|
1952
|
+
* <p>
|
|
1953
|
+
* <code>STOPPING</code> – The WorkSpace is being stopped.</p>
|
|
1954
|
+
* </li>
|
|
1955
|
+
* <li>
|
|
1956
|
+
* <p>
|
|
1957
|
+
* <code>STOPPED</code> – The WorkSpace has been stopped.</p>
|
|
1958
|
+
* </li>
|
|
1959
|
+
* <li>
|
|
1960
|
+
* <p>
|
|
1961
|
+
* <code>ERROR </code> – The WorkSpace is an error state (for example, an error occurred during startup).</p>
|
|
1962
|
+
* </li>
|
|
1963
|
+
* </ul>
|
|
1894
1964
|
* <note>
|
|
1895
1965
|
* <p>After a WorkSpace is terminated, the <code>TERMINATED</code> state is returned only
|
|
1896
1966
|
* briefly before the WorkSpace directory metadata is cleaned up, so this state is rarely
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-workspaces",
|
|
3
3
|
"description": "AWS SDK for JavaScript Workspaces Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.507.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-workspaces",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.507.0",
|
|
24
24
|
"@aws-sdk/core": "3.496.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.507.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.502.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.502.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.502.0",
|