@aws-sdk/client-iottwinmaker 3.427.0 → 3.429.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.
@@ -170,7 +170,7 @@ export interface FunctionRequest {
170
170
  * @public
171
171
  * <p>The scope of the function.</p>
172
172
  */
173
- scope?: Scope | string;
173
+ scope?: Scope;
174
174
  /**
175
175
  * @public
176
176
  * <p>The data connector.</p>
@@ -231,7 +231,7 @@ export interface PropertyGroupRequest {
231
231
  * @public
232
232
  * <p>The group type.</p>
233
233
  */
234
- groupType?: GroupType | string;
234
+ groupType?: GroupType;
235
235
  /**
236
236
  * @public
237
237
  * <p>The names of properties.</p>
@@ -271,7 +271,7 @@ export interface CreateComponentTypeResponse {
271
271
  * @public
272
272
  * <p>The current state of the component type.</p>
273
273
  */
274
- state: State | string | undefined;
274
+ state: State | undefined;
275
275
  }
276
276
  /**
277
277
  * @public
@@ -320,7 +320,7 @@ export interface ComponentPropertyGroupRequest {
320
320
  * @public
321
321
  * <p>The group type.</p>
322
322
  */
323
- groupType?: GroupType | string;
323
+ groupType?: GroupType;
324
324
  /**
325
325
  * @public
326
326
  * <p>The property names.</p>
@@ -330,7 +330,7 @@ export interface ComponentPropertyGroupRequest {
330
330
  * @public
331
331
  * <p>The update type.</p>
332
332
  */
333
- updateType?: PropertyGroupUpdateType | string;
333
+ updateType?: PropertyGroupUpdateType;
334
334
  }
335
335
  /**
336
336
  * @public
@@ -355,7 +355,7 @@ export interface CreateEntityResponse {
355
355
  * @public
356
356
  * <p>The current state of the entity.</p>
357
357
  */
358
- state: State | string | undefined;
358
+ state: State | undefined;
359
359
  }
360
360
  /**
361
361
  * @public
@@ -474,7 +474,7 @@ export interface CreateSyncJobResponse {
474
474
  * @public
475
475
  * <p>The SyncJob response state.</p>
476
476
  */
477
- state: SyncJobState | string | undefined;
477
+ state: SyncJobState | undefined;
478
478
  }
479
479
  /**
480
480
  * @public
@@ -545,7 +545,7 @@ export interface DeleteComponentTypeResponse {
545
545
  * @public
546
546
  * <p>The current state of the component type to be deleted.</p>
547
547
  */
548
- state: State | string | undefined;
548
+ state: State | undefined;
549
549
  }
550
550
  /**
551
551
  * @public
@@ -575,7 +575,7 @@ export interface DeleteEntityResponse {
575
575
  * @public
576
576
  * <p>The current state of the deleted entity.</p>
577
577
  */
578
- state: State | string | undefined;
578
+ state: State | undefined;
579
579
  }
580
580
  /**
581
581
  * @public
@@ -623,7 +623,7 @@ export interface DeleteSyncJobResponse {
623
623
  * @public
624
624
  * <p>The SyncJob response state.</p>
625
625
  */
626
- state: SyncJobState | string | undefined;
626
+ state: SyncJobState | undefined;
627
627
  }
628
628
  /**
629
629
  * @public
@@ -693,7 +693,7 @@ export interface ColumnDescription {
693
693
  * @public
694
694
  * <p>The type of the column description.</p>
695
695
  */
696
- type?: ColumnType | string;
696
+ type?: ColumnType;
697
697
  }
698
698
  /**
699
699
  * @public
@@ -768,7 +768,7 @@ export interface FunctionResponse {
768
768
  * @public
769
769
  * <p>The scope of the function.</p>
770
770
  */
771
- scope?: Scope | string;
771
+ scope?: Scope;
772
772
  /**
773
773
  * @public
774
774
  * <p>The data connector.</p>
@@ -789,7 +789,7 @@ export interface PropertyGroupResponse {
789
789
  * @public
790
790
  * <p>The group types.</p>
791
791
  */
792
- groupType: GroupType | string | undefined;
792
+ groupType: GroupType | undefined;
793
793
  /**
794
794
  * @public
795
795
  * <p>The names of properties.</p>
@@ -826,7 +826,7 @@ export interface ErrorDetails {
826
826
  * @public
827
827
  * <p>The error code.</p>
828
828
  */
829
- code?: ErrorCode | string;
829
+ code?: ErrorCode;
830
830
  /**
831
831
  * @public
832
832
  * <p>The error message.</p>
@@ -843,7 +843,7 @@ export interface Status {
843
843
  * @public
844
844
  * <p>The current state of the entity, component, component type, or workspace.</p>
845
845
  */
846
- state?: State | string;
846
+ state?: State;
847
847
  /**
848
848
  * @public
849
849
  * <p>The error message.</p>
@@ -874,7 +874,7 @@ export interface ComponentPropertyGroupResponse {
874
874
  * @public
875
875
  * <p>The group type.</p>
876
876
  */
877
- groupType: GroupType | string | undefined;
877
+ groupType: GroupType | undefined;
878
878
  /**
879
879
  * @public
880
880
  * <p>The names of properties</p>
@@ -920,7 +920,7 @@ export interface BundleInformation {
920
920
  * @public
921
921
  * <p>The pricing tier.</p>
922
922
  */
923
- pricingTier?: PricingTier | string;
923
+ pricingTier?: PricingTier;
924
924
  }
925
925
  /**
926
926
  * @public
@@ -974,7 +974,7 @@ export interface PricingPlan {
974
974
  * @public
975
975
  * <p>The pricing mode.</p>
976
976
  */
977
- pricingMode: PricingMode | string | undefined;
977
+ pricingMode: PricingMode | undefined;
978
978
  /**
979
979
  * @public
980
980
  * <p>The set date and time for updating a pricing plan.</p>
@@ -984,7 +984,7 @@ export interface PricingPlan {
984
984
  * @public
985
985
  * <p>The update reason for changing a pricing plan.</p>
986
986
  */
987
- updateReason: UpdateReason | string | undefined;
987
+ updateReason: UpdateReason | undefined;
988
988
  }
989
989
  /**
990
990
  * @public
@@ -1047,7 +1047,7 @@ export interface OrderBy {
1047
1047
  * @public
1048
1048
  * <p>The set order that filters results.</p>
1049
1049
  */
1050
- order?: Order | string;
1050
+ order?: Order;
1051
1051
  /**
1052
1052
  * @public
1053
1053
  * <p>The property name.</p>
@@ -1074,7 +1074,7 @@ export interface InterpolationParameters {
1074
1074
  * @public
1075
1075
  * <p>The interpolation type.</p>
1076
1076
  */
1077
- interpolationType?: InterpolationType | string;
1077
+ interpolationType?: InterpolationType;
1078
1078
  /**
1079
1079
  * @public
1080
1080
  * <p>The interpolation time interval in seconds.</p>
@@ -1128,7 +1128,7 @@ export interface SceneError {
1128
1128
  * @public
1129
1129
  * <p>The SceneError code.</p>
1130
1130
  */
1131
- code?: SceneErrorCode | string;
1131
+ code?: SceneErrorCode;
1132
1132
  /**
1133
1133
  * @public
1134
1134
  * <p>The SceneError message.</p>
@@ -1222,7 +1222,7 @@ export interface SyncJobStatus {
1222
1222
  * @public
1223
1223
  * <p>The SyncJob status state.</p>
1224
1224
  */
1225
- state?: SyncJobState | string;
1225
+ state?: SyncJobState;
1226
1226
  /**
1227
1227
  * @public
1228
1228
  * <p>The SyncJob error.</p>
@@ -1811,7 +1811,7 @@ export declare namespace SyncResourceFilter {
1811
1811
  * <p>The sync resource filter's state.</p>
1812
1812
  */
1813
1813
  interface StateMember {
1814
- state: SyncResourceState | string;
1814
+ state: SyncResourceState;
1815
1815
  resourceType?: never;
1816
1816
  resourceId?: never;
1817
1817
  externalId?: never;
@@ -1823,7 +1823,7 @@ export declare namespace SyncResourceFilter {
1823
1823
  */
1824
1824
  interface ResourceTypeMember {
1825
1825
  state?: never;
1826
- resourceType: SyncResourceType | string;
1826
+ resourceType: SyncResourceType;
1827
1827
  resourceId?: never;
1828
1828
  externalId?: never;
1829
1829
  $unknown?: never;
@@ -1861,8 +1861,8 @@ export declare namespace SyncResourceFilter {
1861
1861
  $unknown: [string, any];
1862
1862
  }
1863
1863
  interface Visitor<T> {
1864
- state: (value: SyncResourceState | string) => T;
1865
- resourceType: (value: SyncResourceType | string) => T;
1864
+ state: (value: SyncResourceState) => T;
1865
+ resourceType: (value: SyncResourceType) => T;
1866
1866
  resourceId: (value: string) => T;
1867
1867
  externalId: (value: string) => T;
1868
1868
  _: (name: string, value: any) => T;
@@ -1924,7 +1924,7 @@ export interface SyncResourceStatus {
1924
1924
  * @public
1925
1925
  * <p>The sync resource status state.</p>
1926
1926
  */
1927
- state?: SyncResourceState | string;
1927
+ state?: SyncResourceState;
1928
1928
  /**
1929
1929
  * @public
1930
1930
  * <p>The status error.</p>
@@ -1940,7 +1940,7 @@ export interface SyncResourceSummary {
1940
1940
  * @public
1941
1941
  * <p>The resource type.</p>
1942
1942
  */
1943
- resourceType?: SyncResourceType | string;
1943
+ resourceType?: SyncResourceType;
1944
1944
  /**
1945
1945
  * @public
1946
1946
  * <p>The external ID.</p>
@@ -2151,7 +2151,7 @@ export interface UpdateComponentTypeResponse {
2151
2151
  * @public
2152
2152
  * <p>The current state of the component type.</p>
2153
2153
  */
2154
- state: State | string | undefined;
2154
+ state: State | undefined;
2155
2155
  }
2156
2156
  /**
2157
2157
  * @public
@@ -2187,7 +2187,7 @@ export interface ParentEntityUpdateRequest {
2187
2187
  * @public
2188
2188
  * <p>The type of the update.</p>
2189
2189
  */
2190
- updateType: ParentEntityUpdateType | string | undefined;
2190
+ updateType: ParentEntityUpdateType | undefined;
2191
2191
  /**
2192
2192
  * @public
2193
2193
  * <p>The ID of the parent entity.</p>
@@ -2207,7 +2207,7 @@ export interface UpdateEntityResponse {
2207
2207
  * @public
2208
2208
  * <p>The current state of the entity update.</p>
2209
2209
  */
2210
- state: State | string | undefined;
2210
+ state: State | undefined;
2211
2211
  }
2212
2212
  /**
2213
2213
  * @public
@@ -2217,7 +2217,7 @@ export interface UpdatePricingPlanRequest {
2217
2217
  * @public
2218
2218
  * <p>The pricing mode.</p>
2219
2219
  */
2220
- pricingMode: PricingMode | string | undefined;
2220
+ pricingMode: PricingMode | undefined;
2221
2221
  /**
2222
2222
  * @public
2223
2223
  * <p>The bundle names.</p>
@@ -2477,7 +2477,7 @@ export interface DataType {
2477
2477
  * @public
2478
2478
  * <p>The underlying type of the data type.</p>
2479
2479
  */
2480
- type: Type | string | undefined;
2480
+ type: Type | undefined;
2481
2481
  /**
2482
2482
  * @public
2483
2483
  * <p>The nested type in the data type.</p>
@@ -2568,7 +2568,7 @@ export interface GetPropertyValueHistoryRequest {
2568
2568
  * @public
2569
2569
  * <p>The time direction to use in the result order.</p>
2570
2570
  */
2571
- orderByTime?: OrderByTime | string;
2571
+ orderByTime?: OrderByTime;
2572
2572
  /**
2573
2573
  * @public
2574
2574
  * <p>The ISO8601 DateTime of the earliest property value to return.</p>
@@ -3118,7 +3118,7 @@ export interface PropertyRequest {
3118
3118
  * @public
3119
3119
  * <p>The update type of the update property request.</p>
3120
3120
  */
3121
- updateType?: PropertyUpdateType | string;
3121
+ updateType?: PropertyUpdateType;
3122
3122
  }
3123
3123
  /**
3124
3124
  * @public
@@ -3220,7 +3220,7 @@ export interface ComponentUpdateRequest {
3220
3220
  * @public
3221
3221
  * <p>The update type of the component update request.</p>
3222
3222
  */
3223
- updateType?: ComponentUpdateType | string;
3223
+ updateType?: ComponentUpdateType;
3224
3224
  /**
3225
3225
  * @public
3226
3226
  * <p>The description of the component type.</p>
@@ -65,7 +65,7 @@ export declare const Scope: {
65
65
  export type Scope = (typeof Scope)[keyof typeof Scope];
66
66
  export interface FunctionRequest {
67
67
  requiredProperties?: string[];
68
- scope?: Scope | string;
68
+ scope?: Scope;
69
69
  implementedBy?: DataConnector;
70
70
  }
71
71
  export interface Relationship {
@@ -88,7 +88,7 @@ export declare const GroupType: {
88
88
  };
89
89
  export type GroupType = (typeof GroupType)[keyof typeof GroupType];
90
90
  export interface PropertyGroupRequest {
91
- groupType?: GroupType | string;
91
+ groupType?: GroupType;
92
92
  propertyNames?: string[];
93
93
  }
94
94
  export declare const State: {
@@ -102,7 +102,7 @@ export type State = (typeof State)[keyof typeof State];
102
102
  export interface CreateComponentTypeResponse {
103
103
  arn: string | undefined;
104
104
  creationDateTime: Date | undefined;
105
- state: State | string | undefined;
105
+ state: State | undefined;
106
106
  }
107
107
  export declare class ServiceQuotaExceededException extends __BaseException {
108
108
  readonly name: "ServiceQuotaExceededException";
@@ -126,15 +126,15 @@ export declare const PropertyGroupUpdateType: {
126
126
  export type PropertyGroupUpdateType =
127
127
  (typeof PropertyGroupUpdateType)[keyof typeof PropertyGroupUpdateType];
128
128
  export interface ComponentPropertyGroupRequest {
129
- groupType?: GroupType | string;
129
+ groupType?: GroupType;
130
130
  propertyNames?: string[];
131
- updateType?: PropertyGroupUpdateType | string;
131
+ updateType?: PropertyGroupUpdateType;
132
132
  }
133
133
  export interface CreateEntityResponse {
134
134
  entityId: string | undefined;
135
135
  arn: string | undefined;
136
136
  creationDateTime: Date | undefined;
137
- state: State | string | undefined;
137
+ state: State | undefined;
138
138
  }
139
139
  export interface CreateSceneRequest {
140
140
  workspaceId: string | undefined;
@@ -166,7 +166,7 @@ export type SyncJobState = (typeof SyncJobState)[keyof typeof SyncJobState];
166
166
  export interface CreateSyncJobResponse {
167
167
  arn: string | undefined;
168
168
  creationDateTime: Date | undefined;
169
- state: SyncJobState | string | undefined;
169
+ state: SyncJobState | undefined;
170
170
  }
171
171
  export interface CreateWorkspaceRequest {
172
172
  workspaceId: string | undefined;
@@ -184,7 +184,7 @@ export interface DeleteComponentTypeRequest {
184
184
  componentTypeId: string | undefined;
185
185
  }
186
186
  export interface DeleteComponentTypeResponse {
187
- state: State | string | undefined;
187
+ state: State | undefined;
188
188
  }
189
189
  export interface DeleteEntityRequest {
190
190
  workspaceId: string | undefined;
@@ -192,7 +192,7 @@ export interface DeleteEntityRequest {
192
192
  isRecursive?: boolean;
193
193
  }
194
194
  export interface DeleteEntityResponse {
195
- state: State | string | undefined;
195
+ state: State | undefined;
196
196
  }
197
197
  export interface DeleteSceneRequest {
198
198
  workspaceId: string | undefined;
@@ -204,7 +204,7 @@ export interface DeleteSyncJobRequest {
204
204
  syncSource: string | undefined;
205
205
  }
206
206
  export interface DeleteSyncJobResponse {
207
- state: SyncJobState | string | undefined;
207
+ state: SyncJobState | undefined;
208
208
  }
209
209
  export interface DeleteWorkspaceRequest {
210
210
  workspaceId: string | undefined;
@@ -224,7 +224,7 @@ export declare const ColumnType: {
224
224
  export type ColumnType = (typeof ColumnType)[keyof typeof ColumnType];
225
225
  export interface ColumnDescription {
226
226
  name?: string;
227
- type?: ColumnType | string;
227
+ type?: ColumnType;
228
228
  }
229
229
  export interface Row {
230
230
  rowData?: __DocumentType[];
@@ -248,12 +248,12 @@ export interface GetComponentTypeRequest {
248
248
  }
249
249
  export interface FunctionResponse {
250
250
  requiredProperties?: string[];
251
- scope?: Scope | string;
251
+ scope?: Scope;
252
252
  implementedBy?: DataConnector;
253
253
  isInherited?: boolean;
254
254
  }
255
255
  export interface PropertyGroupResponse {
256
- groupType: GroupType | string | undefined;
256
+ groupType: GroupType | undefined;
257
257
  propertyNames: string[] | undefined;
258
258
  isInherited: boolean | undefined;
259
259
  }
@@ -266,11 +266,11 @@ export declare const ErrorCode: {
266
266
  };
267
267
  export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
268
268
  export interface ErrorDetails {
269
- code?: ErrorCode | string;
269
+ code?: ErrorCode;
270
270
  message?: string;
271
271
  }
272
272
  export interface Status {
273
- state?: State | string;
273
+ state?: State;
274
274
  error?: ErrorDetails;
275
275
  }
276
276
  export interface GetEntityRequest {
@@ -278,7 +278,7 @@ export interface GetEntityRequest {
278
278
  entityId: string | undefined;
279
279
  }
280
280
  export interface ComponentPropertyGroupResponse {
281
- groupType: GroupType | string | undefined;
281
+ groupType: GroupType | undefined;
282
282
  propertyNames: string[] | undefined;
283
283
  isInherited: boolean | undefined;
284
284
  }
@@ -292,7 +292,7 @@ export declare const PricingTier: {
292
292
  export type PricingTier = (typeof PricingTier)[keyof typeof PricingTier];
293
293
  export interface BundleInformation {
294
294
  bundleNames: string[] | undefined;
295
- pricingTier?: PricingTier | string;
295
+ pricingTier?: PricingTier;
296
296
  }
297
297
  export declare const PricingMode: {
298
298
  readonly BASIC: "BASIC";
@@ -312,9 +312,9 @@ export interface PricingPlan {
312
312
  billableEntityCount?: number;
313
313
  bundleInformation?: BundleInformation;
314
314
  effectiveDateTime: Date | undefined;
315
- pricingMode: PricingMode | string | undefined;
315
+ pricingMode: PricingMode | undefined;
316
316
  updateDateTime: Date | undefined;
317
- updateReason: UpdateReason | string | undefined;
317
+ updateReason: UpdateReason | undefined;
318
318
  }
319
319
  export interface GetPricingPlanResponse {
320
320
  currentPricingPlan: PricingPlan | undefined;
@@ -340,7 +340,7 @@ export declare const Order: {
340
340
  };
341
341
  export type Order = (typeof Order)[keyof typeof Order];
342
342
  export interface OrderBy {
343
- order?: Order | string;
343
+ order?: Order;
344
344
  propertyName: string | undefined;
345
345
  }
346
346
  export declare const InterpolationType: {
@@ -349,7 +349,7 @@ export declare const InterpolationType: {
349
349
  export type InterpolationType =
350
350
  (typeof InterpolationType)[keyof typeof InterpolationType];
351
351
  export interface InterpolationParameters {
352
- interpolationType?: InterpolationType | string;
352
+ interpolationType?: InterpolationType;
353
353
  intervalInSeconds?: number;
354
354
  }
355
355
  export declare const OrderByTime: {
@@ -367,7 +367,7 @@ export declare const SceneErrorCode: {
367
367
  export type SceneErrorCode =
368
368
  (typeof SceneErrorCode)[keyof typeof SceneErrorCode];
369
369
  export interface SceneError {
370
- code?: SceneErrorCode | string;
370
+ code?: SceneErrorCode;
371
371
  message?: string;
372
372
  }
373
373
  export interface GetSceneResponse {
@@ -388,7 +388,7 @@ export interface GetSyncJobRequest {
388
388
  workspaceId?: string;
389
389
  }
390
390
  export interface SyncJobStatus {
391
- state?: SyncJobState | string;
391
+ state?: SyncJobState;
392
392
  error?: ErrorDetails;
393
393
  }
394
394
  export interface GetSyncJobResponse {
@@ -587,7 +587,7 @@ export type SyncResourceFilter =
587
587
  | SyncResourceFilter.$UnknownMember;
588
588
  export declare namespace SyncResourceFilter {
589
589
  interface StateMember {
590
- state: SyncResourceState | string;
590
+ state: SyncResourceState;
591
591
  resourceType?: never;
592
592
  resourceId?: never;
593
593
  externalId?: never;
@@ -595,7 +595,7 @@ export declare namespace SyncResourceFilter {
595
595
  }
596
596
  interface ResourceTypeMember {
597
597
  state?: never;
598
- resourceType: SyncResourceType | string;
598
+ resourceType: SyncResourceType;
599
599
  resourceId?: never;
600
600
  externalId?: never;
601
601
  $unknown?: never;
@@ -622,8 +622,8 @@ export declare namespace SyncResourceFilter {
622
622
  $unknown: [string, any];
623
623
  }
624
624
  interface Visitor<T> {
625
- state: (value: SyncResourceState | string) => T;
626
- resourceType: (value: SyncResourceType | string) => T;
625
+ state: (value: SyncResourceState) => T;
626
+ resourceType: (value: SyncResourceType) => T;
627
627
  resourceId: (value: string) => T;
628
628
  externalId: (value: string) => T;
629
629
  _: (name: string, value: any) => T;
@@ -638,11 +638,11 @@ export interface ListSyncResourcesRequest {
638
638
  nextToken?: string;
639
639
  }
640
640
  export interface SyncResourceStatus {
641
- state?: SyncResourceState | string;
641
+ state?: SyncResourceState;
642
642
  error?: ErrorDetails;
643
643
  }
644
644
  export interface SyncResourceSummary {
645
- resourceType?: SyncResourceType | string;
645
+ resourceType?: SyncResourceType;
646
646
  externalId?: string;
647
647
  resourceId?: string;
648
648
  status?: SyncResourceStatus;
@@ -697,7 +697,7 @@ export interface UpdateComponentTypeResponse {
697
697
  workspaceId: string | undefined;
698
698
  arn: string | undefined;
699
699
  componentTypeId: string | undefined;
700
- state: State | string | undefined;
700
+ state: State | undefined;
701
701
  }
702
702
  export declare const ComponentUpdateType: {
703
703
  readonly CREATE: "CREATE";
@@ -713,15 +713,15 @@ export declare const ParentEntityUpdateType: {
713
713
  export type ParentEntityUpdateType =
714
714
  (typeof ParentEntityUpdateType)[keyof typeof ParentEntityUpdateType];
715
715
  export interface ParentEntityUpdateRequest {
716
- updateType: ParentEntityUpdateType | string | undefined;
716
+ updateType: ParentEntityUpdateType | undefined;
717
717
  parentEntityId?: string;
718
718
  }
719
719
  export interface UpdateEntityResponse {
720
720
  updateDateTime: Date | undefined;
721
- state: State | string | undefined;
721
+ state: State | undefined;
722
722
  }
723
723
  export interface UpdatePricingPlanRequest {
724
- pricingMode: PricingMode | string | undefined;
724
+ pricingMode: PricingMode | undefined;
725
725
  bundleNames?: string[];
726
726
  }
727
727
  export interface UpdatePricingPlanResponse {
@@ -773,7 +773,7 @@ export interface PropertyValue {
773
773
  time?: string;
774
774
  }
775
775
  export interface DataType {
776
- type: Type | string | undefined;
776
+ type: Type | undefined;
777
777
  nestedType?: DataType;
778
778
  allowedValues?: DataValue[];
779
779
  unitOfMeasure?: string;
@@ -791,7 +791,7 @@ export interface GetPropertyValueHistoryRequest {
791
791
  interpolation?: InterpolationParameters;
792
792
  nextToken?: string;
793
793
  maxResults?: number;
794
- orderByTime?: OrderByTime | string;
794
+ orderByTime?: OrderByTime;
795
795
  startTime?: string;
796
796
  endTime?: string;
797
797
  }
@@ -909,7 +909,7 @@ export interface UpdateComponentTypeRequest {
909
909
  export interface PropertyRequest {
910
910
  definition?: PropertyDefinitionRequest;
911
911
  value?: DataValue;
912
- updateType?: PropertyUpdateType | string;
912
+ updateType?: PropertyUpdateType;
913
913
  }
914
914
  export interface PropertyResponse {
915
915
  definition?: PropertyDefinitionResponse;
@@ -932,7 +932,7 @@ export interface ComponentResponse {
932
932
  syncSource?: string;
933
933
  }
934
934
  export interface ComponentUpdateRequest {
935
- updateType?: ComponentUpdateType | string;
935
+ updateType?: ComponentUpdateType;
936
936
  description?: string;
937
937
  componentTypeId?: string;
938
938
  propertyUpdates?: Record<string, PropertyRequest>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-iottwinmaker",
3
3
  "description": "AWS SDK for JavaScript Iottwinmaker Client for Node.js, Browser and React Native",
4
- "version": "3.427.0",
4
+ "version": "3.429.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",
@@ -21,39 +21,39 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.427.0",
25
- "@aws-sdk/credential-provider-node": "3.427.0",
26
- "@aws-sdk/middleware-host-header": "3.425.0",
27
- "@aws-sdk/middleware-logger": "3.425.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.425.0",
29
- "@aws-sdk/middleware-signing": "3.425.0",
30
- "@aws-sdk/middleware-user-agent": "3.427.0",
31
- "@aws-sdk/region-config-resolver": "3.425.0",
32
- "@aws-sdk/types": "3.425.0",
33
- "@aws-sdk/util-endpoints": "3.427.0",
34
- "@aws-sdk/util-user-agent-browser": "3.425.0",
35
- "@aws-sdk/util-user-agent-node": "3.425.0",
36
- "@smithy/config-resolver": "^2.0.11",
37
- "@smithy/fetch-http-handler": "^2.2.1",
38
- "@smithy/hash-node": "^2.0.10",
39
- "@smithy/invalid-dependency": "^2.0.10",
40
- "@smithy/middleware-content-length": "^2.0.12",
41
- "@smithy/middleware-endpoint": "^2.0.10",
42
- "@smithy/middleware-retry": "^2.0.13",
43
- "@smithy/middleware-serde": "^2.0.10",
44
- "@smithy/middleware-stack": "^2.0.4",
45
- "@smithy/node-config-provider": "^2.0.13",
46
- "@smithy/node-http-handler": "^2.1.6",
47
- "@smithy/protocol-http": "^3.0.6",
48
- "@smithy/smithy-client": "^2.1.9",
49
- "@smithy/types": "^2.3.4",
50
- "@smithy/url-parser": "^2.0.10",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
+ "@aws-sdk/middleware-logger": "3.428.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
+ "@aws-sdk/middleware-signing": "3.428.0",
30
+ "@aws-sdk/middleware-user-agent": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.428.0",
32
+ "@aws-sdk/types": "3.428.0",
33
+ "@aws-sdk/util-endpoints": "3.428.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.428.0",
35
+ "@aws-sdk/util-user-agent-node": "3.428.0",
36
+ "@smithy/config-resolver": "^2.0.14",
37
+ "@smithy/fetch-http-handler": "^2.2.3",
38
+ "@smithy/hash-node": "^2.0.11",
39
+ "@smithy/invalid-dependency": "^2.0.11",
40
+ "@smithy/middleware-content-length": "^2.0.13",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
+ "@smithy/middleware-retry": "^2.0.16",
43
+ "@smithy/middleware-serde": "^2.0.11",
44
+ "@smithy/middleware-stack": "^2.0.5",
45
+ "@smithy/node-config-provider": "^2.1.1",
46
+ "@smithy/node-http-handler": "^2.1.7",
47
+ "@smithy/protocol-http": "^3.0.7",
48
+ "@smithy/smithy-client": "^2.1.11",
49
+ "@smithy/types": "^2.3.5",
50
+ "@smithy/url-parser": "^2.0.11",
51
51
  "@smithy/util-base64": "^2.0.0",
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
- "@smithy/util-defaults-mode-browser": "^2.0.13",
55
- "@smithy/util-defaults-mode-node": "^2.0.15",
56
- "@smithy/util-retry": "^2.0.3",
54
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
55
+ "@smithy/util-defaults-mode-node": "^2.0.19",
56
+ "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0"
59
59
  },