@@ -109,6 +109,11 @@ import {
109
109
DeleteAssetModelCompositeModelCommandInput,
110
110
DeleteAssetModelCompositeModelCommandOutput,
111
111
} from "./commands/DeleteAssetModelCompositeModelCommand";
112
+
import {
113
+
DeleteAssetModelInterfaceRelationshipCommand,
114
+
DeleteAssetModelInterfaceRelationshipCommandInput,
115
+
DeleteAssetModelInterfaceRelationshipCommandOutput,
116
+
} from "./commands/DeleteAssetModelInterfaceRelationshipCommand";
112
117
import {
113
118
DeleteComputationModelCommand,
114
119
DeleteComputationModelCommandInput,
@@ -174,6 +179,11 @@ import {
174
179
DescribeAssetModelCompositeModelCommandInput,
175
180
DescribeAssetModelCompositeModelCommandOutput,
176
181
} from "./commands/DescribeAssetModelCompositeModelCommand";
182
+
import {
183
+
DescribeAssetModelInterfaceRelationshipCommand,
184
+
DescribeAssetModelInterfaceRelationshipCommandInput,
185
+
DescribeAssetModelInterfaceRelationshipCommandOutput,
186
+
} from "./commands/DescribeAssetModelInterfaceRelationshipCommand";
177
187
import {
178
188
DescribeAssetPropertyCommand,
179
189
DescribeAssetPropertyCommandInput,
@@ -376,6 +386,11 @@ import {
376
386
ListGatewaysCommandInput,
377
387
ListGatewaysCommandOutput,
378
388
} from "./commands/ListGatewaysCommand";
389
+
import {
390
+
ListInterfaceRelationshipsCommand,
391
+
ListInterfaceRelationshipsCommandInput,
392
+
ListInterfaceRelationshipsCommandOutput,
393
+
} from "./commands/ListInterfaceRelationshipsCommand";
379
394
import { ListPortalsCommand, ListPortalsCommandInput, ListPortalsCommandOutput } from "./commands/ListPortalsCommand";
380
395
import {
381
396
ListProjectAssetsCommand,
@@ -397,6 +412,11 @@ import {
397
412
ListTimeSeriesCommandInput,
398
413
ListTimeSeriesCommandOutput,
399
414
} from "./commands/ListTimeSeriesCommand";
415
+
import {
416
+
PutAssetModelInterfaceRelationshipCommand,
417
+
PutAssetModelInterfaceRelationshipCommandInput,
418
+
PutAssetModelInterfaceRelationshipCommandOutput,
419
+
} from "./commands/PutAssetModelInterfaceRelationshipCommand";
400
420
import {
401
421
PutDefaultEncryptionConfigurationCommand,
402
422
PutDefaultEncryptionConfigurationCommandInput,
@@ -500,6 +520,7 @@ const commands = {
500
520
DeleteAssetCommand,
501
521
DeleteAssetModelCommand,
502
522
DeleteAssetModelCompositeModelCommand,
523
+
DeleteAssetModelInterfaceRelationshipCommand,
503
524
DeleteComputationModelCommand,
504
525
DeleteDashboardCommand,
505
526
DeleteDatasetCommand,
@@ -513,6 +534,7 @@ const commands = {
513
534
DescribeAssetCompositeModelCommand,
514
535
DescribeAssetModelCommand,
515
536
DescribeAssetModelCompositeModelCommand,
537
+
DescribeAssetModelInterfaceRelationshipCommand,
516
538
DescribeAssetPropertyCommand,
517
539
DescribeBulkImportJobCommand,
518
540
DescribeComputationModelCommand,
@@ -555,11 +577,13 @@ const commands = {
555
577
ListDatasetsCommand,
556
578
ListExecutionsCommand,
557
579
ListGatewaysCommand,
580
+
ListInterfaceRelationshipsCommand,
558
581
ListPortalsCommand,
559
582
ListProjectAssetsCommand,
560
583
ListProjectsCommand,
561
584
ListTagsForResourceCommand,
562
585
ListTimeSeriesCommand,
586
+
PutAssetModelInterfaceRelationshipCommand,
563
587
PutDefaultEncryptionConfigurationCommand,
564
588
PutLoggingOptionsCommand,
565
589
PutStorageConfigurationCommand,
@@ -929,6 +953,23 @@ export interface IoTSiteWise {
929
953
cb: (err: any, data?: DeleteAssetModelCompositeModelCommandOutput) => void
930
954
): void;
931
955
956
+
/**
957
+
* @see {@link DeleteAssetModelInterfaceRelationshipCommand}
958
+
*/
959
+
deleteAssetModelInterfaceRelationship(
960
+
args: DeleteAssetModelInterfaceRelationshipCommandInput,
961
+
options?: __HttpHandlerOptions
962
+
): Promise<DeleteAssetModelInterfaceRelationshipCommandOutput>;
963
+
deleteAssetModelInterfaceRelationship(
964
+
args: DeleteAssetModelInterfaceRelationshipCommandInput,
965
+
cb: (err: any, data?: DeleteAssetModelInterfaceRelationshipCommandOutput) => void
966
+
): void;
967
+
deleteAssetModelInterfaceRelationship(
968
+
args: DeleteAssetModelInterfaceRelationshipCommandInput,
969
+
options: __HttpHandlerOptions,
970
+
cb: (err: any, data?: DeleteAssetModelInterfaceRelationshipCommandOutput) => void
971
+
): void;
972
+
932
973
/**
933
974
* @see {@link DeleteComputationModelCommand}
934
975
*/
@@ -1115,6 +1156,23 @@ export interface IoTSiteWise {
1115
1156
cb: (err: any, data?: DescribeAssetModelCompositeModelCommandOutput) => void
1116
1157
): void;
1117
1158
1159
+
/**
1160
+
* @see {@link DescribeAssetModelInterfaceRelationshipCommand}
1161
+
*/
1162
+
describeAssetModelInterfaceRelationship(
1163
+
args: DescribeAssetModelInterfaceRelationshipCommandInput,
1164
+
options?: __HttpHandlerOptions
1165
+
): Promise<DescribeAssetModelInterfaceRelationshipCommandOutput>;
1166
+
describeAssetModelInterfaceRelationship(
1167
+
args: DescribeAssetModelInterfaceRelationshipCommandInput,
1168
+
cb: (err: any, data?: DescribeAssetModelInterfaceRelationshipCommandOutput) => void
1169
+
): void;
1170
+
describeAssetModelInterfaceRelationship(
1171
+
args: DescribeAssetModelInterfaceRelationshipCommandInput,
1172
+
options: __HttpHandlerOptions,
1173
+
cb: (err: any, data?: DescribeAssetModelInterfaceRelationshipCommandOutput) => void
1174
+
): void;
1175
+
1118
1176
/**
1119
1177
* @see {@link DescribeAssetPropertyCommand}
1120
1178
*/
@@ -1781,6 +1839,23 @@ export interface IoTSiteWise {
1781
1839
cb: (err: any, data?: ListGatewaysCommandOutput) => void
1782
1840
): void;
1783
1841
1842
+
/**
1843
+
* @see {@link ListInterfaceRelationshipsCommand}
1844
+
*/
1845
+
listInterfaceRelationships(
1846
+
args: ListInterfaceRelationshipsCommandInput,
1847
+
options?: __HttpHandlerOptions
1848
+
): Promise<ListInterfaceRelationshipsCommandOutput>;
1849
+
listInterfaceRelationships(
1850
+
args: ListInterfaceRelationshipsCommandInput,
1851
+
cb: (err: any, data?: ListInterfaceRelationshipsCommandOutput) => void
1852
+
): void;
1853
+
listInterfaceRelationships(
1854
+
args: ListInterfaceRelationshipsCommandInput,
1855
+
options: __HttpHandlerOptions,
1856
+
cb: (err: any, data?: ListInterfaceRelationshipsCommandOutput) => void
1857
+
): void;
1858
+
1784
1859
/**
1785
1860
* @see {@link ListPortalsCommand}
1786
1861
*/
@@ -1853,6 +1928,23 @@ export interface IoTSiteWise {
1853
1928
cb: (err: any, data?: ListTimeSeriesCommandOutput) => void
1854
1929
): void;
1855
1930
1931
+
/**
1932
+
* @see {@link PutAssetModelInterfaceRelationshipCommand}
1933
+
*/
1934
+
putAssetModelInterfaceRelationship(
1935
+
args: PutAssetModelInterfaceRelationshipCommandInput,
1936
+
options?: __HttpHandlerOptions
1937
+
): Promise<PutAssetModelInterfaceRelationshipCommandOutput>;
1938
+
putAssetModelInterfaceRelationship(
1939
+
args: PutAssetModelInterfaceRelationshipCommandInput,
1940
+
cb: (err: any, data?: PutAssetModelInterfaceRelationshipCommandOutput) => void
1941
+
): void;
1942
+
putAssetModelInterfaceRelationship(
1943
+
args: PutAssetModelInterfaceRelationshipCommandInput,
1944
+
options: __HttpHandlerOptions,
1945
+
cb: (err: any, data?: PutAssetModelInterfaceRelationshipCommandOutput) => void
1946
+
): void;
1947
+
1856
1948
/**
1857
1949
* @see {@link PutDefaultEncryptionConfigurationCommand}
1858
1950
*/
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4