@aws-sdk/client-workspaces-web 3.296.0 → 3.297.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.
Files changed (65) hide show
  1. package/dist-types/WorkSpacesWeb.d.ts +52 -0
  2. package/dist-types/WorkSpacesWebClient.d.ts +24 -4
  3. package/dist-types/commands/AssociateBrowserSettingsCommand.d.ts +16 -0
  4. package/dist-types/commands/AssociateNetworkSettingsCommand.d.ts +16 -0
  5. package/dist-types/commands/AssociateTrustStoreCommand.d.ts +16 -0
  6. package/dist-types/commands/AssociateUserAccessLoggingSettingsCommand.d.ts +16 -0
  7. package/dist-types/commands/AssociateUserSettingsCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateBrowserSettingsCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateIdentityProviderCommand.d.ts +16 -0
  10. package/dist-types/commands/CreateNetworkSettingsCommand.d.ts +16 -0
  11. package/dist-types/commands/CreatePortalCommand.d.ts +16 -0
  12. package/dist-types/commands/CreateTrustStoreCommand.d.ts +16 -0
  13. package/dist-types/commands/CreateUserAccessLoggingSettingsCommand.d.ts +16 -0
  14. package/dist-types/commands/CreateUserSettingsCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteBrowserSettingsCommand.d.ts +16 -0
  16. package/dist-types/commands/DeleteIdentityProviderCommand.d.ts +16 -0
  17. package/dist-types/commands/DeleteNetworkSettingsCommand.d.ts +16 -0
  18. package/dist-types/commands/DeletePortalCommand.d.ts +16 -0
  19. package/dist-types/commands/DeleteTrustStoreCommand.d.ts +16 -0
  20. package/dist-types/commands/DeleteUserAccessLoggingSettingsCommand.d.ts +16 -0
  21. package/dist-types/commands/DeleteUserSettingsCommand.d.ts +16 -0
  22. package/dist-types/commands/DisassociateBrowserSettingsCommand.d.ts +16 -0
  23. package/dist-types/commands/DisassociateNetworkSettingsCommand.d.ts +16 -0
  24. package/dist-types/commands/DisassociateTrustStoreCommand.d.ts +16 -0
  25. package/dist-types/commands/DisassociateUserAccessLoggingSettingsCommand.d.ts +16 -0
  26. package/dist-types/commands/DisassociateUserSettingsCommand.d.ts +16 -0
  27. package/dist-types/commands/GetBrowserSettingsCommand.d.ts +16 -0
  28. package/dist-types/commands/GetIdentityProviderCommand.d.ts +16 -0
  29. package/dist-types/commands/GetNetworkSettingsCommand.d.ts +16 -0
  30. package/dist-types/commands/GetPortalCommand.d.ts +16 -0
  31. package/dist-types/commands/GetPortalServiceProviderMetadataCommand.d.ts +16 -0
  32. package/dist-types/commands/GetTrustStoreCertificateCommand.d.ts +16 -0
  33. package/dist-types/commands/GetTrustStoreCommand.d.ts +16 -0
  34. package/dist-types/commands/GetUserAccessLoggingSettingsCommand.d.ts +16 -0
  35. package/dist-types/commands/GetUserSettingsCommand.d.ts +16 -0
  36. package/dist-types/commands/ListBrowserSettingsCommand.d.ts +16 -0
  37. package/dist-types/commands/ListIdentityProvidersCommand.d.ts +16 -0
  38. package/dist-types/commands/ListNetworkSettingsCommand.d.ts +16 -0
  39. package/dist-types/commands/ListPortalsCommand.d.ts +16 -0
  40. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  41. package/dist-types/commands/ListTrustStoreCertificatesCommand.d.ts +16 -0
  42. package/dist-types/commands/ListTrustStoresCommand.d.ts +16 -0
  43. package/dist-types/commands/ListUserAccessLoggingSettingsCommand.d.ts +16 -0
  44. package/dist-types/commands/ListUserSettingsCommand.d.ts +16 -0
  45. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  46. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  47. package/dist-types/commands/UpdateBrowserSettingsCommand.d.ts +16 -0
  48. package/dist-types/commands/UpdateIdentityProviderCommand.d.ts +16 -0
  49. package/dist-types/commands/UpdateNetworkSettingsCommand.d.ts +16 -0
  50. package/dist-types/commands/UpdatePortalCommand.d.ts +16 -0
  51. package/dist-types/commands/UpdateTrustStoreCommand.d.ts +16 -0
  52. package/dist-types/commands/UpdateUserAccessLoggingSettingsCommand.d.ts +16 -0
  53. package/dist-types/commands/UpdateUserSettingsCommand.d.ts +16 -0
  54. package/dist-types/models/WorkSpacesWebServiceException.d.ts +2 -0
  55. package/dist-types/models/models_0.d.ts +353 -0
  56. package/dist-types/pagination/Interfaces.d.ts +3 -0
  57. package/dist-types/pagination/ListBrowserSettingsPaginator.d.ts +3 -0
  58. package/dist-types/pagination/ListIdentityProvidersPaginator.d.ts +3 -0
  59. package/dist-types/pagination/ListNetworkSettingsPaginator.d.ts +3 -0
  60. package/dist-types/pagination/ListPortalsPaginator.d.ts +3 -0
  61. package/dist-types/pagination/ListTrustStoreCertificatesPaginator.d.ts +3 -0
  62. package/dist-types/pagination/ListTrustStoresPaginator.d.ts +3 -0
  63. package/dist-types/pagination/ListUserAccessLoggingSettingsPaginator.d.ts +3 -0
  64. package/dist-types/pagination/ListUserSettingsPaginator.d.ts +3 -0
  65. package/package.json +3 -3
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { WorkSpacesWebClient } from "../WorkSpacesWebClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface WorkSpacesWebPaginationConfiguration extends PaginationConfiguration {
4
7
  client: WorkSpacesWebClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListBrowserSettingsCommandInput, ListBrowserSettingsCommandOutput } from "../commands/ListBrowserSettingsCommand";
3
3
  import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListBrowserSettings(config: WorkSpacesWebPaginationConfiguration, input: ListBrowserSettingsCommandInput, ...additionalArguments: any): Paginator<ListBrowserSettingsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput } from "../commands/ListIdentityProvidersCommand";
3
3
  import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListIdentityProviders(config: WorkSpacesWebPaginationConfiguration, input: ListIdentityProvidersCommandInput, ...additionalArguments: any): Paginator<ListIdentityProvidersCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListNetworkSettingsCommandInput, ListNetworkSettingsCommandOutput } from "../commands/ListNetworkSettingsCommand";
3
3
  import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListNetworkSettings(config: WorkSpacesWebPaginationConfiguration, input: ListNetworkSettingsCommandInput, ...additionalArguments: any): Paginator<ListNetworkSettingsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListPortalsCommandInput, ListPortalsCommandOutput } from "../commands/ListPortalsCommand";
3
3
  import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListPortals(config: WorkSpacesWebPaginationConfiguration, input: ListPortalsCommandInput, ...additionalArguments: any): Paginator<ListPortalsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListTrustStoreCertificatesCommandInput, ListTrustStoreCertificatesCommandOutput } from "../commands/ListTrustStoreCertificatesCommand";
3
3
  import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListTrustStoreCertificates(config: WorkSpacesWebPaginationConfiguration, input: ListTrustStoreCertificatesCommandInput, ...additionalArguments: any): Paginator<ListTrustStoreCertificatesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListTrustStoresCommandInput, ListTrustStoresCommandOutput } from "../commands/ListTrustStoresCommand";
3
3
  import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListTrustStores(config: WorkSpacesWebPaginationConfiguration, input: ListTrustStoresCommandInput, ...additionalArguments: any): Paginator<ListTrustStoresCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListUserAccessLoggingSettingsCommandInput, ListUserAccessLoggingSettingsCommandOutput } from "../commands/ListUserAccessLoggingSettingsCommand";
3
3
  import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListUserAccessLoggingSettings(config: WorkSpacesWebPaginationConfiguration, input: ListUserAccessLoggingSettingsCommandInput, ...additionalArguments: any): Paginator<ListUserAccessLoggingSettingsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListUserSettingsCommandInput, ListUserSettingsCommandOutput } from "../commands/ListUserSettingsCommand";
3
3
  import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListUserSettings(config: WorkSpacesWebPaginationConfiguration, input: ListUserSettingsCommandInput, ...additionalArguments: any): Paginator<ListUserSettingsCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-workspaces-web",
3
3
  "description": "AWS SDK for JavaScript Workspaces Web Client for Node.js, Browser and React Native",
4
- "version": "3.296.0",
4
+ "version": "3.297.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -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.296.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
24
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
27
  "@aws-sdk/hash-node": "3.296.0",
28
28
  "@aws-sdk/invalid-dependency": "3.296.0",