@aws-sdk/client-imagebuilder 3.245.0 → 3.252.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.
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
27
27
  defaultSigningName: string;
28
28
  };
29
29
  export interface EndpointParameters extends __EndpointParameters {
30
- Region?: string;
30
+ Region: string;
31
31
  UseDualStack?: boolean;
32
32
  UseFIPS?: boolean;
33
33
  Endpoint?: string;
@@ -151,6 +151,8 @@ export interface Component {
151
151
  encrypted?: boolean;
152
152
  dateCreated?: string;
153
153
  tags?: Record<string, string>;
154
+ publisher?: string;
155
+ obfuscate?: boolean;
154
156
  }
155
157
  export interface ComponentParameter {
156
158
  name: string | undefined;
@@ -176,6 +178,8 @@ export interface ComponentSummary {
176
178
  changeDescription?: string;
177
179
  dateCreated?: string;
178
180
  tags?: Record<string, string>;
181
+ publisher?: string;
182
+ obfuscate?: boolean;
179
183
  }
180
184
  export interface ComponentVersion {
181
185
  arn?: string;
@@ -633,6 +637,12 @@ export interface ImageRecipe {
633
637
  workingDirectory?: string;
634
638
  additionalInstanceConfiguration?: AdditionalInstanceConfiguration;
635
639
  }
640
+ export declare enum ImageSource {
641
+ AMAZON_MANAGED = "AMAZON_MANAGED",
642
+ AWS_MARKETPLACE = "AWS_MARKETPLACE",
643
+ CUSTOM = "CUSTOM",
644
+ IMPORTED = "IMPORTED",
645
+ }
636
646
  export interface InfrastructureConfiguration {
637
647
  arn?: string;
638
648
  name?: string;
@@ -675,6 +685,7 @@ export interface Image {
675
685
  outputResources?: OutputResources;
676
686
  tags?: Record<string, string>;
677
687
  buildType?: BuildType | string;
688
+ imageSource?: ImageSource | string;
678
689
  }
679
690
  export interface GetImageResponse {
680
691
  requestId?: string;
@@ -792,6 +803,7 @@ export declare enum Ownership {
792
803
  AMAZON = "Amazon",
793
804
  SELF = "Self",
794
805
  SHARED = "Shared",
806
+ THIRDPARTY = "ThirdParty",
795
807
  }
796
808
  export interface ListComponentsRequest {
797
809
  owner?: Ownership | string;
@@ -845,6 +857,7 @@ export interface ImageSummary {
845
857
  outputResources?: OutputResources;
846
858
  tags?: Record<string, string>;
847
859
  buildType?: BuildType | string;
860
+ imageSource?: ImageSource | string;
848
861
  }
849
862
  export interface ListImageBuildVersionsResponse {
850
863
  requestId?: string;
@@ -924,6 +937,7 @@ export interface ImageVersion {
924
937
  owner?: string;
925
938
  dateCreated?: string;
926
939
  buildType?: BuildType | string;
940
+ imageSource?: ImageSource | string;
927
941
  }
928
942
  export interface ListImagesResponse {
929
943
  requestId?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-imagebuilder",
3
3
  "description": "AWS SDK for JavaScript Imagebuilder Client for Node.js, Browser and React Native",
4
- "version": "3.245.0",
4
+ "version": "3.252.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",
@@ -11,7 +11,7 @@
11
11
  "build:types": "tsc -p tsconfig.types.json",
12
12
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13
13
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
14
- "generate:client": "(cd ../../ && yarn generate-clients -g ./codegen/sdk-codegen/aws-models/imagebuilder.json --keepFiles)"
14
+ "generate:client": "node ../../scripts/generate-clients/single-service --solo imagebuilder"
15
15
  },
16
16
  "main": "./dist-cjs/index.js",
17
17
  "types": "./dist-types/index.d.ts",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "2.0.0",
22
22
  "@aws-crypto/sha256-js": "2.0.0",
23
- "@aws-sdk/client-sts": "3.245.0",
23
+ "@aws-sdk/client-sts": "3.252.0",
24
24
  "@aws-sdk/config-resolver": "3.234.0",
25
- "@aws-sdk/credential-provider-node": "3.245.0",
25
+ "@aws-sdk/credential-provider-node": "3.252.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.226.0",
27
27
  "@aws-sdk/hash-node": "3.226.0",
28
28
  "@aws-sdk/invalid-dependency": "3.226.0",