@aws-sdk/client-device-farm 3.798.0 → 3.803.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 CHANGED
@@ -2473,6 +2473,7 @@ var se_GetDevicePoolCompatibilityRequest = /* @__PURE__ */ __name((input, contex
2473
2473
  appArn: [],
2474
2474
  configuration: /* @__PURE__ */ __name((_) => se_ScheduleRunConfiguration(_, context), "configuration"),
2475
2475
  devicePoolArn: [],
2476
+ projectArn: [],
2476
2477
  test: import_smithy_client._json,
2477
2478
  testType: []
2478
2479
  });
@@ -29,6 +29,7 @@ const getRuntimeConfig = (config) => {
29
29
  ...config,
30
30
  runtime: "node",
31
31
  defaultsMode,
32
+ authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, profileConfig),
32
33
  bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
33
34
  credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
34
35
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
@@ -1631,6 +1631,7 @@ const se_GetDevicePoolCompatibilityRequest = (input, context) => {
1631
1631
  appArn: [],
1632
1632
  configuration: (_) => se_ScheduleRunConfiguration(_, context),
1633
1633
  devicePoolArn: [],
1634
+ projectArn: [],
1634
1635
  test: _json,
1635
1636
  testType: [],
1636
1637
  });
@@ -1,5 +1,5 @@
1
1
  import packageInfo from "../package.json";
2
- import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core";
2
+ import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core";
3
3
  import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
4
4
  import { NODE_APP_ID_CONFIG_OPTIONS, createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-node";
5
5
  import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
@@ -25,6 +25,7 @@ export const getRuntimeConfig = (config) => {
25
25
  ...config,
26
26
  runtime: "node",
27
27
  defaultsMode,
28
+ authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, profileConfig),
28
29
  bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
29
30
  credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
30
31
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
@@ -84,6 +84,7 @@ declare const GetDevicePoolCompatibilityCommand_base: {
84
84
  * ],
85
85
  * billingMethod: "METERED" || "UNMETERED",
86
86
  * },
87
+ * projectArn: "STRING_VALUE",
87
88
  * };
88
89
  * const command = new GetDevicePoolCompatibilityCommand(input);
89
90
  * const response = await client.send(command);
@@ -2891,6 +2891,12 @@ export interface GetDevicePoolCompatibilityRequest {
2891
2891
  * @public
2892
2892
  */
2893
2893
  configuration?: ScheduleRunConfiguration | undefined;
2894
+ /**
2895
+ * <p>The ARN of the project for which you want to check
2896
+ * device pool compatibility.</p>
2897
+ * @public
2898
+ */
2899
+ projectArn?: string | undefined;
2894
2900
  }
2895
2901
  /**
2896
2902
  * <p>Represents information about incompatibility.</p>
@@ -6,6 +6,7 @@ import { DeviceFarmClientConfig } from "./DeviceFarmClient";
6
6
  export declare const getRuntimeConfig: (config: DeviceFarmClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
9
10
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
11
  credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
11
12
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
@@ -38,7 +39,6 @@ export declare const getRuntimeConfig: (config: DeviceFarmClientConfig) => {
38
39
  }) => import("@smithy/types").EndpointV2;
39
40
  tls?: boolean | undefined;
40
41
  serviceConfiguredEndpoint?: undefined;
41
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]> | undefined;
42
42
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
43
43
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DeviceFarmHttpAuthSchemeProvider;
44
44
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
@@ -647,6 +647,7 @@ export interface GetDevicePoolCompatibilityRequest {
647
647
  testType?: TestType | undefined;
648
648
  test?: ScheduleRunTest | undefined;
649
649
  configuration?: ScheduleRunConfiguration | undefined;
650
+ projectArn?: string | undefined;
650
651
  }
651
652
  export interface IncompatibilityMessage {
652
653
  message?: string | undefined;
@@ -5,6 +5,7 @@ export declare const getRuntimeConfig: (config: DeviceFarmClientConfig) => {
5
5
  defaultsMode: import("@smithy/types").Provider<
6
6
  import("@smithy/smithy-client").ResolvedDefaultsMode
7
7
  >;
8
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
8
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
10
  credentialDefaultProvider:
10
11
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
@@ -73,10 +74,6 @@ export declare const getRuntimeConfig: (config: DeviceFarmClientConfig) => {
73
74
  ) => import("@smithy/types").EndpointV2;
74
75
  tls?: boolean | undefined;
75
76
  serviceConfiguredEndpoint?: undefined;
76
- authSchemePreference?:
77
- | string[]
78
- | import("@smithy/types").Provider<string[]>
79
- | undefined;
80
77
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
81
78
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DeviceFarmHttpAuthSchemeProvider;
82
79
  credentials?:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-device-farm",
3
3
  "description": "AWS SDK for JavaScript Device Farm Client for Node.js, Browser and React Native",
4
- "version": "3.798.0",
4
+ "version": "3.803.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-device-farm",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.798.0",
24
- "@aws-sdk/credential-provider-node": "3.798.0",
23
+ "@aws-sdk/core": "3.799.0",
24
+ "@aws-sdk/credential-provider-node": "3.803.0",
25
25
  "@aws-sdk/middleware-host-header": "3.775.0",
26
26
  "@aws-sdk/middleware-logger": "3.775.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.775.0",
28
- "@aws-sdk/middleware-user-agent": "3.798.0",
28
+ "@aws-sdk/middleware-user-agent": "3.799.0",
29
29
  "@aws-sdk/region-config-resolver": "3.775.0",
30
30
  "@aws-sdk/types": "3.775.0",
31
31
  "@aws-sdk/util-endpoints": "3.787.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.775.0",
33
- "@aws-sdk/util-user-agent-node": "3.798.0",
33
+ "@aws-sdk/util-user-agent-node": "3.799.0",
34
34
  "@smithy/config-resolver": "^4.1.0",
35
35
  "@smithy/core": "^3.3.0",
36
36
  "@smithy/fetch-http-handler": "^5.0.2",
@@ -38,7 +38,7 @@
38
38
  "@smithy/invalid-dependency": "^4.0.2",
39
39
  "@smithy/middleware-content-length": "^4.0.2",
40
40
  "@smithy/middleware-endpoint": "^4.1.1",
41
- "@smithy/middleware-retry": "^4.1.1",
41
+ "@smithy/middleware-retry": "^4.1.2",
42
42
  "@smithy/middleware-serde": "^4.0.3",
43
43
  "@smithy/middleware-stack": "^4.0.2",
44
44
  "@smithy/node-config-provider": "^4.0.2",
@@ -54,7 +54,7 @@
54
54
  "@smithy/util-defaults-mode-node": "^4.0.9",
55
55
  "@smithy/util-endpoints": "^3.0.2",
56
56
  "@smithy/util-middleware": "^4.0.2",
57
- "@smithy/util-retry": "^4.0.2",
57
+ "@smithy/util-retry": "^4.0.3",
58
58
  "@smithy/util-utf8": "^4.0.0",
59
59
  "tslib": "^2.6.2"
60
60
  },