@aws-sdk/client-config-service 3.1080.0 → 3.1082.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/README.md +42 -7
- package/dist-cjs/index.js +245 -35
- package/dist-es/ConfigService.js +12 -0
- package/dist-es/commands/DeleteConnectorCommand.js +4 -0
- package/dist-es/commands/GetConnectorCommand.js +4 -0
- package/dist-es/commands/ListConnectorsCommand.js +4 -0
- package/dist-es/commands/PutConnectorCommand.js +4 -0
- package/dist-es/commands/PutThirdPartyServiceLinkedConfigurationRecorderCommand.js +4 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +6 -0
- package/dist-es/models/errors.js +24 -12
- package/dist-es/pagination/ListConnectorsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +165 -23
- package/dist-types/ConfigService.d.ts +44 -0
- package/dist-types/ConfigServiceClient.d.ts +7 -2
- package/dist-types/commands/AssociateResourceTypesCommand.d.ts +25 -0
- package/dist-types/commands/BatchGetAggregateResourceConfigCommand.d.ts +9 -0
- package/dist-types/commands/BatchGetResourceConfigCommand.d.ts +9 -0
- package/dist-types/commands/DeleteConnectorCommand.d.ts +117 -0
- package/dist-types/commands/DeleteRemediationConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/DeleteResourceConfigCommand.d.ts +9 -0
- package/dist-types/commands/DeleteServiceLinkedConfigurationRecorderCommand.d.ts +17 -2
- package/dist-types/commands/DeleteStoredQueryCommand.d.ts +9 -0
- package/dist-types/commands/DescribeAggregateComplianceByConfigRulesCommand.d.ts +9 -0
- package/dist-types/commands/DescribeAggregateComplianceByConformancePacksCommand.d.ts +9 -0
- package/dist-types/commands/DescribeConfigRulesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeConfigurationRecorderStatusCommand.d.ts +9 -0
- package/dist-types/commands/DescribeConfigurationRecordersCommand.d.ts +20 -0
- package/dist-types/commands/DisassociateResourceTypesCommand.d.ts +25 -0
- package/dist-types/commands/GetAggregateComplianceDetailsByConfigRuleCommand.d.ts +9 -0
- package/dist-types/commands/GetAggregateConfigRuleComplianceSummaryCommand.d.ts +9 -0
- package/dist-types/commands/GetAggregateConformancePackComplianceSummaryCommand.d.ts +9 -0
- package/dist-types/commands/GetAggregateDiscoveredResourceCountsCommand.d.ts +9 -0
- package/dist-types/commands/GetAggregateResourceConfigCommand.d.ts +9 -0
- package/dist-types/commands/GetConnectorCommand.d.ts +129 -0
- package/dist-types/commands/GetDiscoveredResourceCountsCommand.d.ts +9 -0
- package/dist-types/commands/GetResourceConfigHistoryCommand.d.ts +9 -0
- package/dist-types/commands/GetStoredQueryCommand.d.ts +9 -0
- package/dist-types/commands/ListAggregateDiscoveredResourcesCommand.d.ts +9 -0
- package/dist-types/commands/ListConfigurationRecordersCommand.d.ts +10 -0
- package/dist-types/commands/ListConnectorsCommand.d.ts +134 -0
- package/dist-types/commands/ListDiscoveredResourcesCommand.d.ts +9 -0
- package/dist-types/commands/ListStoredQueriesCommand.d.ts +9 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/commands/PutConfigRuleCommand.d.ts +3 -0
- package/dist-types/commands/PutConfigurationRecorderCommand.d.ts +20 -0
- package/dist-types/commands/PutConformancePackCommand.d.ts +3 -0
- package/dist-types/commands/PutConnectorCommand.d.ts +195 -0
- package/dist-types/commands/PutOrganizationConfigRuleCommand.d.ts +12 -0
- package/dist-types/commands/PutOrganizationConformancePackCommand.d.ts +12 -0
- package/dist-types/commands/PutRemediationConfigurationsCommand.d.ts +3 -0
- package/dist-types/commands/PutRemediationExceptionsCommand.d.ts +3 -0
- package/dist-types/commands/PutResourceConfigCommand.d.ts +12 -0
- package/dist-types/commands/PutServiceLinkedConfigurationRecorderCommand.d.ts +17 -0
- package/dist-types/commands/PutStoredQueryCommand.d.ts +9 -0
- package/dist-types/commands/PutThirdPartyServiceLinkedConfigurationRecorderCommand.d.ts +199 -0
- package/dist-types/commands/StartRemediationExecutionCommand.d.ts +3 -0
- package/dist-types/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +22 -0
- package/dist-types/models/errors.d.ts +41 -12
- package/dist-types/models/models_0.d.ts +304 -13
- package/dist-types/pagination/ListConnectorsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +21 -0
- package/dist-types/ts3.4/ConfigService.d.ts +100 -0
- package/dist-types/ts3.4/ConfigServiceClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/DeleteConnectorCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteServiceLinkedConfigurationRecorderCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetConnectorCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/PutConnectorCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/PutThirdPartyServiceLinkedConfigurationRecorderCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +9 -0
- package/dist-types/ts3.4/models/errors.d.ts +17 -7
- package/dist-types/ts3.4/models/models_0.d.ts +73 -2
- package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +21 -0
- package/package.json +8 -8
|
@@ -18,6 +18,7 @@ const _ACBCRg = "AggregateComplianceByConfigRules";
|
|
|
18
18
|
const _ACC = "AggregateComplianceCount";
|
|
19
19
|
const _ACCL = "AggregateComplianceCountList";
|
|
20
20
|
const _ACCg = "AggregateComplianceCounts";
|
|
21
|
+
const _ACCz = "AzureConnectorConfiguration";
|
|
21
22
|
const _ACPC = "AggregateConformancePackCompliance";
|
|
22
23
|
const _ACPCC = "AggregateConformancePackComplianceCount";
|
|
23
24
|
const _ACPCF = "AggregateConformancePackComplianceFilters";
|
|
@@ -58,6 +59,7 @@ const _CAL = "ConfigurationAggregatorList";
|
|
|
58
59
|
const _CAN = "ConfigurationAggregatorName";
|
|
59
60
|
const _CANo = "ConfigurationAggregatorNames";
|
|
60
61
|
const _CAo = "ConfigurationAggregators";
|
|
62
|
+
const _CAon = "ConnectorArn";
|
|
61
63
|
const _CB = "CreatedBy";
|
|
62
64
|
const _CBCR = "ComplianceByConfigRule";
|
|
63
65
|
const _CBCRo = "ComplianceByConfigRules";
|
|
@@ -67,10 +69,13 @@ const _CBS = "CreatedByService";
|
|
|
67
69
|
const _CC = "CappedCount";
|
|
68
70
|
const _CCC = "ComplianceContributorCount";
|
|
69
71
|
const _CCPC = "CompliantConformancePackCount";
|
|
72
|
+
const _CCo = "ConnectorConfiguration";
|
|
70
73
|
const _CE = "ConflictException";
|
|
71
74
|
const _CEDI = "ConfigExportDeliveryInfo";
|
|
72
75
|
const _CERP = "ConcurrentExecutionRatePercentage";
|
|
73
76
|
const _CEa = "CapExceeded";
|
|
77
|
+
const _CF = "ConnectorFilter";
|
|
78
|
+
const _CFL = "ConnectorFilterList";
|
|
74
79
|
const _CI = "ConfigurationItem";
|
|
75
80
|
const _CIL = "ConfigurationItemList";
|
|
76
81
|
const _CPA = "ConformancePackArn";
|
|
@@ -139,12 +144,15 @@ const _CSBRTo = "ComplianceSummariesByResourceType";
|
|
|
139
144
|
const _CSDI = "ConfigStreamDeliveryInfo";
|
|
140
145
|
const _CSDP = "ConfigSnapshotDeliveryProperties";
|
|
141
146
|
const _CST = "ComplianceSummaryTimestamp";
|
|
147
|
+
const _CSo = "ConnectorSummary";
|
|
148
|
+
const _CSon = "ConnectorSummaries";
|
|
142
149
|
const _CT = "ComplianceType";
|
|
143
150
|
const _CTl = "ClientToken";
|
|
144
151
|
const _CTo = "ComplianceTypes";
|
|
145
152
|
const _CTr = "CreationTime";
|
|
146
153
|
const _Co = "Controls";
|
|
147
|
-
const _Con = "
|
|
154
|
+
const _Con = "Connector";
|
|
155
|
+
const _Conf = "Configuration";
|
|
148
156
|
const _D = "Description";
|
|
149
157
|
const _DAA = "DeleteAggregationAuthorization";
|
|
150
158
|
const _DAAR = "DeleteAggregationAuthorizationRequest";
|
|
@@ -186,7 +194,7 @@ const _DCPS = "DescribeConformancePackStatus";
|
|
|
186
194
|
const _DCPSR = "DescribeConformancePackStatusRequest";
|
|
187
195
|
const _DCPSRe = "DescribeConformancePackStatusResponse";
|
|
188
196
|
const _DCPe = "DescribeConformancePacks";
|
|
189
|
-
const _DCR = "
|
|
197
|
+
const _DCR = "DeleteConnectorRequest";
|
|
190
198
|
const _DCRES = "DescribeConfigRuleEvaluationStatus";
|
|
191
199
|
const _DCRESR = "DescribeConfigRuleEvaluationStatusRequest";
|
|
192
200
|
const _DCRESRe = "DescribeConfigRuleEvaluationStatusResponse";
|
|
@@ -200,7 +208,8 @@ const _DCRRescri = "DescribeConfigurationRecordersResponse";
|
|
|
200
208
|
const _DCRS = "DescribeConfigurationRecorderStatus";
|
|
201
209
|
const _DCRSR = "DescribeConfigurationRecorderStatusRequest";
|
|
202
210
|
const _DCRSRe = "DescribeConfigurationRecorderStatusResponse";
|
|
203
|
-
const _DCRe = "
|
|
211
|
+
const _DCRe = "DeleteConfigRule";
|
|
212
|
+
const _DCRel = "DeleteConfigurationRecorder";
|
|
204
213
|
const _DCRes = "DescribeConfigRules";
|
|
205
214
|
const _DCResc = "DescribeConfigurationRecorders";
|
|
206
215
|
const _DCS = "DeliveryChannelStatus";
|
|
@@ -210,6 +219,7 @@ const _DCSRe = "DeliverConfigSnapshotResponse";
|
|
|
210
219
|
const _DCSe = "DeliveryChannelsStatus";
|
|
211
220
|
const _DCSel = "DeliverConfigSnapshot";
|
|
212
221
|
const _DCe = "DeliveryChannels";
|
|
222
|
+
const _DCel = "DeleteConnector";
|
|
213
223
|
const _DDC = "DeleteDeliveryChannel";
|
|
214
224
|
const _DDCR = "DeleteDeliveryChannelRequest";
|
|
215
225
|
const _DDCRe = "DescribeDeliveryChannelsRequest";
|
|
@@ -337,6 +347,7 @@ const _GARC = "GetAggregateResourceConfig";
|
|
|
337
347
|
const _GARCR = "GetAggregateResourceConfigRequest";
|
|
338
348
|
const _GARCRe = "GetAggregateResourceConfigResponse";
|
|
339
349
|
const _GBK = "GroupByKey";
|
|
350
|
+
const _GC = "GetConnector";
|
|
340
351
|
const _GCDBCR = "GetComplianceDetailsByConfigRule";
|
|
341
352
|
const _GCDBCRR = "GetComplianceDetailsByConfigRuleRequest";
|
|
342
353
|
const _GCDBCRRe = "GetComplianceDetailsByConfigRuleResponse";
|
|
@@ -349,9 +360,11 @@ const _GCPCDRe = "GetConformancePackComplianceDetailsResponse";
|
|
|
349
360
|
const _GCPCS = "GetConformancePackComplianceSummary";
|
|
350
361
|
const _GCPCSR = "GetConformancePackComplianceSummaryRequest";
|
|
351
362
|
const _GCPCSRe = "GetConformancePackComplianceSummaryResponse";
|
|
363
|
+
const _GCR = "GetConnectorRequest";
|
|
352
364
|
const _GCRP = "GetCustomRulePolicy";
|
|
353
365
|
const _GCRPR = "GetCustomRulePolicyRequest";
|
|
354
366
|
const _GCRPRe = "GetCustomRulePolicyResponse";
|
|
367
|
+
const _GCRe = "GetConnectorResponse";
|
|
355
368
|
const _GCSBCR = "GetComplianceSummaryByConfigRule";
|
|
356
369
|
const _GCSBCRR = "GetComplianceSummaryByConfigRuleResponse";
|
|
357
370
|
const _GCSBRT = "GetComplianceSummaryByResourceType";
|
|
@@ -405,12 +418,15 @@ const _L = "Limit";
|
|
|
405
418
|
const _LADR = "ListAggregateDiscoveredResources";
|
|
406
419
|
const _LADRR = "ListAggregateDiscoveredResourcesRequest";
|
|
407
420
|
const _LADRRi = "ListAggregateDiscoveredResourcesResponse";
|
|
421
|
+
const _LC = "ListConnectors";
|
|
408
422
|
const _LCPCS = "ListConformancePackComplianceScores";
|
|
409
423
|
const _LCPCSR = "ListConformancePackComplianceScoresRequest";
|
|
410
424
|
const _LCPCSRi = "ListConformancePackComplianceScoresResponse";
|
|
411
|
-
const _LCR = "
|
|
425
|
+
const _LCR = "ListConnectorsRequest";
|
|
412
426
|
const _LCRR = "ListConfigurationRecordersRequest";
|
|
413
427
|
const _LCRRi = "ListConfigurationRecordersResponse";
|
|
428
|
+
const _LCRi = "ListConnectorsResponse";
|
|
429
|
+
const _LCRis = "ListConfigurationRecorders";
|
|
414
430
|
const _LDCDFE = "LastDeliveryChannelDeleteFailedException";
|
|
415
431
|
const _LDLDS = "LastDebugLogDeliveryStatus";
|
|
416
432
|
const _LDLDSR = "LastDebugLogDeliveryStatusReason";
|
|
@@ -447,6 +463,7 @@ const _MAREE = "MaxActiveResourcesExceededException";
|
|
|
447
463
|
const _MARS = "MemberAccountRuleStatus";
|
|
448
464
|
const _MAS = "MemberAccountStatus";
|
|
449
465
|
const _MEF = "MaximumExecutionFrequency";
|
|
466
|
+
const _MNOCEE = "MaxNumberOfConnectorsExceededException";
|
|
450
467
|
const _MNOCPEE = "MaxNumberOfConformancePacksExceededException";
|
|
451
468
|
const _MNOCREE = "MaxNumberOfConfigRulesExceededException";
|
|
452
469
|
const _MNOCREEa = "MaxNumberOfConfigurationRecordersExceededException";
|
|
@@ -516,16 +533,19 @@ const _PAARu = "PutAggregationAuthorizationResponse";
|
|
|
516
533
|
const _PAR = "PendingAggregationRequests";
|
|
517
534
|
const _PARL = "PendingAggregationRequestList";
|
|
518
535
|
const _PARe = "PendingAggregationRequest";
|
|
536
|
+
const _PC = "PutConnector";
|
|
519
537
|
const _PCA = "PutConfigurationAggregator";
|
|
520
538
|
const _PCAR = "PutConfigurationAggregatorRequest";
|
|
521
539
|
const _PCARu = "PutConfigurationAggregatorResponse";
|
|
522
540
|
const _PCP = "PutConformancePack";
|
|
523
541
|
const _PCPR = "PutConformancePackRequest";
|
|
524
542
|
const _PCPRu = "PutConformancePackResponse";
|
|
525
|
-
const _PCR = "
|
|
543
|
+
const _PCR = "PutConnectorRequest";
|
|
526
544
|
const _PCRR = "PutConfigRuleRequest";
|
|
527
545
|
const _PCRRu = "PutConfigurationRecorderRequest";
|
|
528
|
-
const _PCRu = "
|
|
546
|
+
const _PCRu = "PutConnectorResponse";
|
|
547
|
+
const _PCRut = "PutConfigRule";
|
|
548
|
+
const _PCRuto = "PutConfigurationRecorder";
|
|
529
549
|
const _PDC = "PutDeliveryChannel";
|
|
530
550
|
const _PDCR = "PutDeliveryChannelRequest";
|
|
531
551
|
const _PE = "PutEvaluations";
|
|
@@ -560,6 +580,9 @@ const _PSQ = "PutStoredQuery";
|
|
|
560
580
|
const _PSQR = "PutStoredQueryRequest";
|
|
561
581
|
const _PSQRu = "PutStoredQueryResponse";
|
|
562
582
|
const _PT = "PolicyText";
|
|
583
|
+
const _PTPSLCR = "PutThirdPartyServiceLinkedConfigurationRecorder";
|
|
584
|
+
const _PTPSLCRR = "PutThirdPartyServiceLinkedConfigurationRecorderRequest";
|
|
585
|
+
const _PTPSLCRRu = "PutThirdPartyServiceLinkedConfigurationRecorderResponse";
|
|
563
586
|
const _PV = "ParameterValue";
|
|
564
587
|
const _QA = "QueryArn";
|
|
565
588
|
const _QI = "QueryInfo";
|
|
@@ -646,6 +669,7 @@ const _SCRERt = "StartConfigRulesEvaluationResponse";
|
|
|
646
669
|
const _SCRR = "StartConfigurationRecorderRequest";
|
|
647
670
|
const _SCRRt = "StopConfigurationRecorderRequest";
|
|
648
671
|
const _SCRt = "StopConfigurationRecorder";
|
|
672
|
+
const _SCc = "ScopeConfiguration";
|
|
649
673
|
const _SD = "StepDetails";
|
|
650
674
|
const _SDF = "StatusDetailFilters";
|
|
651
675
|
const _SDo = "SourceDetails";
|
|
@@ -713,22 +737,28 @@ const _Va = "Values";
|
|
|
713
737
|
const _a = "arn";
|
|
714
738
|
const _aI = "accountId";
|
|
715
739
|
const _aR = "awsRegion";
|
|
740
|
+
const _aRl = "allRegions";
|
|
716
741
|
const _aS = "allSupported";
|
|
717
742
|
const _aZ = "availabilityZone";
|
|
743
|
+
const _az = "azure";
|
|
718
744
|
const _bCI = "baseConfigurationItems";
|
|
719
745
|
const _c = "client";
|
|
746
|
+
const _cA = "connectorArn";
|
|
747
|
+
const _cC = "connectorConfiguration";
|
|
720
748
|
const _cHDI = "configHistoryDeliveryInfo";
|
|
721
|
-
const _cI = "
|
|
749
|
+
const _cI = "clientIdentifier";
|
|
722
750
|
const _cICT = "configurationItemCaptureTime";
|
|
723
751
|
const _cIDT = "configurationItemDeliveryTime";
|
|
724
752
|
const _cIMDH = "configurationItemMD5Hash";
|
|
725
753
|
const _cIS = "configurationItemStatus";
|
|
754
|
+
const _cIo = "configurationItems";
|
|
726
755
|
const _cO = "chronologicalOrder";
|
|
727
756
|
const _cSDI = "configSnapshotDeliveryInfo";
|
|
728
757
|
const _cSDIo = "configStreamDeliveryInfo";
|
|
729
758
|
const _cSDP = "configSnapshotDeliveryProperties";
|
|
730
759
|
const _cSI = "configurationStateId";
|
|
731
760
|
const _cSIo = "configSnapshotId";
|
|
761
|
+
const _cT = "createdTime";
|
|
732
762
|
const _co = "configuration";
|
|
733
763
|
const _cou = "count";
|
|
734
764
|
const _d = "description";
|
|
@@ -739,9 +769,11 @@ const _eBRT = "exclusionByResourceTypes";
|
|
|
739
769
|
const _eT = "earlierTime";
|
|
740
770
|
const _fN = "filterName";
|
|
741
771
|
const _fV = "filterValue";
|
|
772
|
+
const _fVi = "filterValues";
|
|
742
773
|
const _hE = "httpError";
|
|
743
774
|
const _iDR = "includeDeletedResources";
|
|
744
775
|
const _iGRT = "includeGlobalResourceTypes";
|
|
776
|
+
const _iR = "includedRegions";
|
|
745
777
|
const _l = "limit";
|
|
746
778
|
const _lAT = "lastAttemptTime";
|
|
747
779
|
const _lEC = "lastErrorCode";
|
|
@@ -756,6 +788,7 @@ const _m = "message";
|
|
|
756
788
|
const _n = "name";
|
|
757
789
|
const _nDT = "nextDeliveryTime";
|
|
758
790
|
const _nT = "nextToken";
|
|
791
|
+
const _p = "provider";
|
|
759
792
|
const _r = "relationships";
|
|
760
793
|
const _rARN = "roleARN";
|
|
761
794
|
const _rC = "resourceCounts";
|
|
@@ -780,19 +813,23 @@ const _re = "recording";
|
|
|
780
813
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.configservice";
|
|
781
814
|
const _sBN = "s3BucketName";
|
|
782
815
|
const _sC = "supplementaryConfiguration";
|
|
816
|
+
const _sCc = "scopeConfiguration";
|
|
783
817
|
const _sKKA = "s3KmsKeyArn";
|
|
784
818
|
const _sKP = "s3KeyPrefix";
|
|
785
819
|
const _sP = "servicePrincipal";
|
|
820
|
+
const _sT = "scopeType";
|
|
786
821
|
const _sTARN = "snsTopicARN";
|
|
822
|
+
const _sV = "scopeValues";
|
|
787
823
|
const _t = "tags";
|
|
788
824
|
const _tDR = "totalDiscoveredResources";
|
|
825
|
+
const _tI = "tenantIdentifier";
|
|
789
826
|
const _uO = "useOnly";
|
|
790
827
|
const _uRK = "unprocessedResourceKeys";
|
|
791
828
|
const _v = "version";
|
|
792
829
|
const n0 = "com.amazonaws.configservice";
|
|
793
830
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
794
831
|
import { ConfigServiceServiceException } from "../models/ConfigServiceServiceException";
|
|
795
|
-
import { ConflictException, ConformancePackTemplateValidationException, IdempotentParameterMismatch, InsufficientDeliveryPolicyException, InsufficientPermissionsException, InvalidConfigurationRecorderNameException, InvalidDeliveryChannelNameException, InvalidExpressionException, InvalidLimitException, InvalidNextTokenException, InvalidParameterValueException, InvalidRecordingGroupException, InvalidResultTokenException, InvalidRoleException, InvalidS3KeyPrefixException, InvalidS3KmsKeyArnException, InvalidSNSTopicARNException, InvalidTimeRangeException, LastDeliveryChannelDeleteFailedException, LimitExceededException, MaxActiveResourcesExceededException, MaxNumberOfConfigRulesExceededException, MaxNumberOfConfigurationRecordersExceededException, MaxNumberOfConformancePacksExceededException, MaxNumberOfDeliveryChannelsExceededException, MaxNumberOfOrganizationConfigRulesExceededException, MaxNumberOfOrganizationConformancePacksExceededException, MaxNumberOfRetentionConfigurationsExceededException, NoAvailableConfigurationRecorderException, NoAvailableDeliveryChannelException, NoAvailableOrganizationException, NoRunningConfigurationRecorderException, NoSuchBucketException, NoSuchConfigRuleException, NoSuchConfigRuleInConformancePackException, NoSuchConfigurationAggregatorException, NoSuchConfigurationRecorderException, NoSuchConformancePackException, NoSuchDeliveryChannelException, NoSuchOrganizationConfigRuleException, NoSuchOrganizationConformancePackException, NoSuchRemediationConfigurationException, NoSuchRemediationExceptionException, NoSuchRetentionConfigurationException, OrganizationAccessDeniedException, OrganizationAllFeaturesNotEnabledException, OrganizationConformancePackTemplateValidationException, OversizedConfigurationItemException, RemediationInProgressException, ResourceConcurrentModificationException, ResourceInUseException, ResourceNotDiscoveredException, ResourceNotFoundException, TooManyTagsException, UnmodifiableEntityException, ValidationException, } from "../models/errors";
|
|
832
|
+
import { ConflictException, ConformancePackTemplateValidationException, IdempotentParameterMismatch, InsufficientDeliveryPolicyException, InsufficientPermissionsException, InvalidConfigurationRecorderNameException, InvalidDeliveryChannelNameException, InvalidExpressionException, InvalidLimitException, InvalidNextTokenException, InvalidParameterValueException, InvalidRecordingGroupException, InvalidResultTokenException, InvalidRoleException, InvalidS3KeyPrefixException, InvalidS3KmsKeyArnException, InvalidSNSTopicARNException, InvalidTimeRangeException, LastDeliveryChannelDeleteFailedException, LimitExceededException, MaxActiveResourcesExceededException, MaxNumberOfConfigRulesExceededException, MaxNumberOfConfigurationRecordersExceededException, MaxNumberOfConformancePacksExceededException, MaxNumberOfConnectorsExceededException, MaxNumberOfDeliveryChannelsExceededException, MaxNumberOfOrganizationConfigRulesExceededException, MaxNumberOfOrganizationConformancePacksExceededException, MaxNumberOfRetentionConfigurationsExceededException, NoAvailableConfigurationRecorderException, NoAvailableDeliveryChannelException, NoAvailableOrganizationException, NoRunningConfigurationRecorderException, NoSuchBucketException, NoSuchConfigRuleException, NoSuchConfigRuleInConformancePackException, NoSuchConfigurationAggregatorException, NoSuchConfigurationRecorderException, NoSuchConformancePackException, NoSuchDeliveryChannelException, NoSuchOrganizationConfigRuleException, NoSuchOrganizationConformancePackException, NoSuchRemediationConfigurationException, NoSuchRemediationExceptionException, NoSuchRetentionConfigurationException, OrganizationAccessDeniedException, OrganizationAllFeaturesNotEnabledException, OrganizationConformancePackTemplateValidationException, OversizedConfigurationItemException, RemediationInProgressException, ResourceConcurrentModificationException, ResourceInUseException, ResourceNotDiscoveredException, ResourceNotFoundException, TooManyTagsException, UnmodifiableEntityException, ValidationException, } from "../models/errors";
|
|
796
833
|
const _s_registry = TypeRegistry.for(_s);
|
|
797
834
|
export var ConfigServiceServiceException$ = [-3, _s, "ConfigServiceServiceException", 0, [], []];
|
|
798
835
|
_s_registry.registerError(ConfigServiceServiceException$, ConfigServiceServiceException);
|
|
@@ -941,6 +978,12 @@ export var MaxNumberOfConformancePacksExceededException$ = [-3, n0, _MNOCPEE,
|
|
|
941
978
|
[0]
|
|
942
979
|
];
|
|
943
980
|
n0_registry.registerError(MaxNumberOfConformancePacksExceededException$, MaxNumberOfConformancePacksExceededException);
|
|
981
|
+
export var MaxNumberOfConnectorsExceededException$ = [-3, n0, _MNOCEE,
|
|
982
|
+
{ [_e]: _c },
|
|
983
|
+
[_m],
|
|
984
|
+
[0]
|
|
985
|
+
];
|
|
986
|
+
n0_registry.registerError(MaxNumberOfConnectorsExceededException$, MaxNumberOfConnectorsExceededException);
|
|
944
987
|
export var MaxNumberOfDeliveryChannelsExceededException$ = [-3, n0, _MNODCEE,
|
|
945
988
|
{ [_e]: _c },
|
|
946
989
|
[_m],
|
|
@@ -1227,6 +1270,11 @@ export var AssociateResourceTypesResponse$ = [3, n0, _ARTRs,
|
|
|
1227
1270
|
[_CR],
|
|
1228
1271
|
[() => ConfigurationRecorder$], 1
|
|
1229
1272
|
];
|
|
1273
|
+
export var AzureConnectorConfiguration$ = [3, n0, _ACCz,
|
|
1274
|
+
0,
|
|
1275
|
+
[_tI, _cI],
|
|
1276
|
+
[0, 0], 2
|
|
1277
|
+
];
|
|
1230
1278
|
export var BaseConfigurationItem$ = [3, n0, _BCI,
|
|
1231
1279
|
0,
|
|
1232
1280
|
[_v, _aI, _cICT, _cIS, _cSI, _a, _rT, _rI, _rN, _aR, _aZ, _rCT, _co, _sC, _rF, _cIDT],
|
|
@@ -1329,8 +1377,8 @@ export var ConfigurationItem$ = [3, n0, _CI,
|
|
|
1329
1377
|
];
|
|
1330
1378
|
export var ConfigurationRecorder$ = [3, n0, _CR,
|
|
1331
1379
|
0,
|
|
1332
|
-
[_a, _n, _rARN, _rG, _rM, _rS, _sP],
|
|
1333
|
-
[0, 0, 0, () => RecordingGroup$, () => RecordingMode$, 0, 0]
|
|
1380
|
+
[_a, _n, _rARN, _rG, _rM, _rS, _sP, _cA, _sCc],
|
|
1381
|
+
[0, 0, 0, () => RecordingGroup$, () => RecordingMode$, 0, 0, 0, () => ScopeConfiguration$]
|
|
1334
1382
|
];
|
|
1335
1383
|
export var ConfigurationRecorderFilter$ = [3, n0, _CRF,
|
|
1336
1384
|
0,
|
|
@@ -1344,8 +1392,8 @@ export var ConfigurationRecorderStatus$ = [3, n0, _CRSo,
|
|
|
1344
1392
|
];
|
|
1345
1393
|
export var ConfigurationRecorderSummary$ = [3, n0, _CRSon,
|
|
1346
1394
|
0,
|
|
1347
|
-
[_a, _n, _rS, _sP],
|
|
1348
|
-
[0, 0, 0, 0], 3
|
|
1395
|
+
[_a, _n, _rS, _sP, _p],
|
|
1396
|
+
[0, 0, 0, 0, 0], 3
|
|
1349
1397
|
];
|
|
1350
1398
|
export var ConformancePackComplianceFilters$ = [3, n0, _CPCF,
|
|
1351
1399
|
0,
|
|
@@ -1397,6 +1445,26 @@ export var ConformancePackStatusDetail$ = [3, n0, _CPSD,
|
|
|
1397
1445
|
[_CPN, _CPI, _CPA, _CPS, _SA, _LURT, _CPSR, _LUCT],
|
|
1398
1446
|
[0, 0, 0, 0, 0, 4, 0, 4], 6
|
|
1399
1447
|
];
|
|
1448
|
+
export var Connector$ = [3, n0, _Con,
|
|
1449
|
+
0,
|
|
1450
|
+
[_n, _a, _cC, _cT],
|
|
1451
|
+
[0, 0, () => ConnectorConfiguration$, 4], 4
|
|
1452
|
+
];
|
|
1453
|
+
export var ConnectorConfiguration$ = [3, n0, _CCo,
|
|
1454
|
+
0,
|
|
1455
|
+
[_az],
|
|
1456
|
+
[() => AzureConnectorConfiguration$]
|
|
1457
|
+
];
|
|
1458
|
+
export var ConnectorFilter$ = [3, n0, _CF,
|
|
1459
|
+
0,
|
|
1460
|
+
[_fN, _fVi],
|
|
1461
|
+
[0, 64 | 0]
|
|
1462
|
+
];
|
|
1463
|
+
export var ConnectorSummary$ = [3, n0, _CSo,
|
|
1464
|
+
0,
|
|
1465
|
+
[_a, _n, _p, _tI, _cT],
|
|
1466
|
+
[0, 0, 0, 0, 4], 5
|
|
1467
|
+
];
|
|
1400
1468
|
export var CustomPolicyDetails$ = [3, n0, _CPDu,
|
|
1401
1469
|
0,
|
|
1402
1470
|
[_PR, _PT, _EDLD],
|
|
@@ -1427,6 +1495,11 @@ export var DeleteConformancePackRequest$ = [3, n0, _DCPR,
|
|
|
1427
1495
|
[_CPN],
|
|
1428
1496
|
[0], 1
|
|
1429
1497
|
];
|
|
1498
|
+
export var DeleteConnectorRequest$ = [3, n0, _DCR,
|
|
1499
|
+
0,
|
|
1500
|
+
[_Ar],
|
|
1501
|
+
[0], 1
|
|
1502
|
+
];
|
|
1430
1503
|
export var DeleteDeliveryChannelRequest$ = [3, n0, _DDCR,
|
|
1431
1504
|
0,
|
|
1432
1505
|
[_DCN],
|
|
@@ -1489,8 +1562,8 @@ export var DeleteRetentionConfigurationRequest$ = [3, n0, _DRCRele,
|
|
|
1489
1562
|
];
|
|
1490
1563
|
export var DeleteServiceLinkedConfigurationRecorderRequest$ = [3, n0, _DSLCRR,
|
|
1491
1564
|
0,
|
|
1492
|
-
[_SP],
|
|
1493
|
-
[0
|
|
1565
|
+
[_SP, _Ar],
|
|
1566
|
+
[0, 0]
|
|
1494
1567
|
];
|
|
1495
1568
|
export var DeleteServiceLinkedConfigurationRecorderResponse$ = [3, n0, _DSLCRRe,
|
|
1496
1569
|
0,
|
|
@@ -1594,8 +1667,8 @@ export var DescribeConfigRulesFilters$ = [3, n0, _DCRF,
|
|
|
1594
1667
|
];
|
|
1595
1668
|
export var DescribeConfigRulesRequest$ = [3, n0, _DCRRes,
|
|
1596
1669
|
0,
|
|
1597
|
-
[_CRNo,
|
|
1598
|
-
[64 | 0,
|
|
1670
|
+
[_CRNo, _F, _NT],
|
|
1671
|
+
[64 | 0, () => DescribeConfigRulesFilters$, 0]
|
|
1599
1672
|
];
|
|
1600
1673
|
export var DescribeConfigRulesResponse$ = [3, n0, _DCRResc,
|
|
1601
1674
|
0,
|
|
@@ -1967,6 +2040,16 @@ export var GetConformancePackComplianceSummaryResponse$ = [3, n0, _GCPCSRe,
|
|
|
1967
2040
|
[_CPCSL, _NT],
|
|
1968
2041
|
[() => ConformancePackComplianceSummaryList, 0]
|
|
1969
2042
|
];
|
|
2043
|
+
export var GetConnectorRequest$ = [3, n0, _GCR,
|
|
2044
|
+
0,
|
|
2045
|
+
[_Ar],
|
|
2046
|
+
[0], 1
|
|
2047
|
+
];
|
|
2048
|
+
export var GetConnectorResponse$ = [3, n0, _GCRe,
|
|
2049
|
+
0,
|
|
2050
|
+
[_Con],
|
|
2051
|
+
[() => Connector$], 1
|
|
2052
|
+
];
|
|
1970
2053
|
export var GetCustomRulePolicyRequest$ = [3, n0, _GCRPR,
|
|
1971
2054
|
0,
|
|
1972
2055
|
[_CRN],
|
|
@@ -2024,7 +2107,7 @@ export var GetResourceConfigHistoryRequest$ = [3, n0, _GRCHR,
|
|
|
2024
2107
|
];
|
|
2025
2108
|
export var GetResourceConfigHistoryResponse$ = [3, n0, _GRCHRe,
|
|
2026
2109
|
0,
|
|
2027
|
-
[
|
|
2110
|
+
[_cIo, _nT],
|
|
2028
2111
|
[() => ConfigurationItemList, 0]
|
|
2029
2112
|
];
|
|
2030
2113
|
export var GetResourceEvaluationSummaryRequest$ = [3, n0, _GRESR,
|
|
@@ -2082,6 +2165,16 @@ export var ListConformancePackComplianceScoresResponse$ = [3, n0, _LCPCSRi,
|
|
|
2082
2165
|
[_CPCSonf, _NT],
|
|
2083
2166
|
[() => ConformancePackComplianceScores, 0], 1
|
|
2084
2167
|
];
|
|
2168
|
+
export var ListConnectorsRequest$ = [3, n0, _LCR,
|
|
2169
|
+
0,
|
|
2170
|
+
[_MR, _NT, _F],
|
|
2171
|
+
[1, 0, () => ConnectorFilterList]
|
|
2172
|
+
];
|
|
2173
|
+
export var ListConnectorsResponse$ = [3, n0, _LCRi,
|
|
2174
|
+
0,
|
|
2175
|
+
[_CSon, _NT],
|
|
2176
|
+
[() => ConnectorSummaries, 0], 1
|
|
2177
|
+
];
|
|
2085
2178
|
export var ListDiscoveredResourcesRequest$ = [3, n0, _LDRR,
|
|
2086
2179
|
0,
|
|
2087
2180
|
[_rT, _rIe, _rN, _l, _iDR, _nT],
|
|
@@ -2227,6 +2320,16 @@ export var PutConformancePackResponse$ = [3, n0, _PCPRu,
|
|
|
2227
2320
|
[_CPA],
|
|
2228
2321
|
[0]
|
|
2229
2322
|
];
|
|
2323
|
+
export var PutConnectorRequest$ = [3, n0, _PCR,
|
|
2324
|
+
0,
|
|
2325
|
+
[_CCo, _Ta],
|
|
2326
|
+
[() => ConnectorConfiguration$, () => TagsList], 1
|
|
2327
|
+
];
|
|
2328
|
+
export var PutConnectorResponse$ = [3, n0, _PCRu,
|
|
2329
|
+
0,
|
|
2330
|
+
[_Ar],
|
|
2331
|
+
[0], 1
|
|
2332
|
+
];
|
|
2230
2333
|
export var PutDeliveryChannelRequest$ = [3, n0, _PDCR,
|
|
2231
2334
|
0,
|
|
2232
2335
|
[_DC],
|
|
@@ -2294,7 +2397,7 @@ export var PutRemediationExceptionsResponse$ = [3, n0, _PRERu,
|
|
|
2294
2397
|
];
|
|
2295
2398
|
export var PutResourceConfigRequest$ = [3, n0, _PRCRut,
|
|
2296
2399
|
0,
|
|
2297
|
-
[_RT, _SVI, _RI,
|
|
2400
|
+
[_RT, _SVI, _RI, _Conf, _RN, _Ta],
|
|
2298
2401
|
[0, 0, 0, 0, 0, 128 | 0], 4
|
|
2299
2402
|
];
|
|
2300
2403
|
export var PutRetentionConfigurationRequest$ = [3, n0, _PRCRute,
|
|
@@ -2327,6 +2430,16 @@ export var PutStoredQueryResponse$ = [3, n0, _PSQRu,
|
|
|
2327
2430
|
[_QA],
|
|
2328
2431
|
[0]
|
|
2329
2432
|
];
|
|
2433
|
+
export var PutThirdPartyServiceLinkedConfigurationRecorderRequest$ = [3, n0, _PTPSLCRR,
|
|
2434
|
+
0,
|
|
2435
|
+
[_SP, _CAon, _SCc, _Ta],
|
|
2436
|
+
[0, 0, () => ScopeConfiguration$, () => TagsList], 3
|
|
2437
|
+
];
|
|
2438
|
+
export var PutThirdPartyServiceLinkedConfigurationRecorderResponse$ = [3, n0, _PTPSLCRRu,
|
|
2439
|
+
0,
|
|
2440
|
+
[_Ar, _N],
|
|
2441
|
+
[0, 0], 2
|
|
2442
|
+
];
|
|
2330
2443
|
export var QueryInfo$ = [3, n0, _QI,
|
|
2331
2444
|
0,
|
|
2332
2445
|
[_SF],
|
|
@@ -2442,6 +2555,11 @@ export var Scope$ = [3, n0, _Sc,
|
|
|
2442
2555
|
[_CRTo, _TK, _TVa, _CRIo, _SPe],
|
|
2443
2556
|
[64 | 0, 0, 0, 0, 64 | 0]
|
|
2444
2557
|
];
|
|
2558
|
+
export var ScopeConfiguration$ = [3, n0, _SCc,
|
|
2559
|
+
0,
|
|
2560
|
+
[_sT, _aRl, _sV, _iR],
|
|
2561
|
+
[0, 2, 64 | 0, 64 | 0], 2
|
|
2562
|
+
];
|
|
2445
2563
|
export var SelectAggregateResourceConfigRequest$ = [3, n0, _SARCR,
|
|
2446
2564
|
0,
|
|
2447
2565
|
[_Ex, _CAN, _L, _MR, _NT],
|
|
@@ -2658,6 +2776,12 @@ var ConformancePackRuleEvaluationResultsList = [1, n0, _CPRERL,
|
|
|
2658
2776
|
var ConformancePackStatusDetailsList = [1, n0, _CPSDL,
|
|
2659
2777
|
0, () => ConformancePackStatusDetail$
|
|
2660
2778
|
];
|
|
2779
|
+
var ConnectorFilterList = [1, n0, _CFL,
|
|
2780
|
+
0, () => ConnectorFilter$
|
|
2781
|
+
];
|
|
2782
|
+
var ConnectorSummaries = [1, n0, _CSon,
|
|
2783
|
+
0, () => ConnectorSummary$
|
|
2784
|
+
];
|
|
2661
2785
|
var ControlsList = 64 | 0;
|
|
2662
2786
|
var DebugLogDeliveryAccounts = 64 | 0;
|
|
2663
2787
|
var DeliveryChannelList = [1, n0, _DCL,
|
|
@@ -2692,9 +2816,11 @@ var FailedRemediationExceptionBatches = [1, n0, _FREBa,
|
|
|
2692
2816
|
var FieldInfoList = [1, n0, _FIL,
|
|
2693
2817
|
0, () => FieldInfo$
|
|
2694
2818
|
];
|
|
2819
|
+
var FilterValueList = 64 | 0;
|
|
2695
2820
|
var GroupedResourceCountList = [1, n0, _GRCL,
|
|
2696
2821
|
0, () => GroupedResourceCount$
|
|
2697
2822
|
];
|
|
2823
|
+
var IncludedRegions = 64 | 0;
|
|
2698
2824
|
var OrganizationConfigRuleDetailedStatus = [1, n0, _OCRDS,
|
|
2699
2825
|
0, () => MemberAccountStatus$
|
|
2700
2826
|
];
|
|
@@ -2769,6 +2895,7 @@ var RetentionConfigurationList = [1, n0, _RCL,
|
|
|
2769
2895
|
0, () => RetentionConfiguration$
|
|
2770
2896
|
];
|
|
2771
2897
|
var RetentionConfigurationNameList = 64 | 0;
|
|
2898
|
+
var ScopeValues = 64 | 0;
|
|
2772
2899
|
var ServicePrincipals = 64 | 0;
|
|
2773
2900
|
var ServicePrincipalValueList = 64 | 0;
|
|
2774
2901
|
var SourceDetails = [1, n0, _SDo,
|
|
@@ -2805,18 +2932,21 @@ export var BatchGetResourceConfig$ = [9, n0, _BGRC,
|
|
|
2805
2932
|
export var DeleteAggregationAuthorization$ = [9, n0, _DAA,
|
|
2806
2933
|
0, () => DeleteAggregationAuthorizationRequest$, () => __Unit
|
|
2807
2934
|
];
|
|
2808
|
-
export var DeleteConfigRule$ = [9, n0,
|
|
2935
|
+
export var DeleteConfigRule$ = [9, n0, _DCRe,
|
|
2809
2936
|
0, () => DeleteConfigRuleRequest$, () => __Unit
|
|
2810
2937
|
];
|
|
2811
2938
|
export var DeleteConfigurationAggregator$ = [9, n0, _DCA,
|
|
2812
2939
|
0, () => DeleteConfigurationAggregatorRequest$, () => __Unit
|
|
2813
2940
|
];
|
|
2814
|
-
export var DeleteConfigurationRecorder$ = [9, n0,
|
|
2941
|
+
export var DeleteConfigurationRecorder$ = [9, n0, _DCRel,
|
|
2815
2942
|
0, () => DeleteConfigurationRecorderRequest$, () => __Unit
|
|
2816
2943
|
];
|
|
2817
2944
|
export var DeleteConformancePack$ = [9, n0, _DCP,
|
|
2818
2945
|
0, () => DeleteConformancePackRequest$, () => __Unit
|
|
2819
2946
|
];
|
|
2947
|
+
export var DeleteConnector$ = [9, n0, _DCel,
|
|
2948
|
+
0, () => DeleteConnectorRequest$, () => __Unit
|
|
2949
|
+
];
|
|
2820
2950
|
export var DeleteDeliveryChannel$ = [9, n0, _DDC,
|
|
2821
2951
|
0, () => DeleteDeliveryChannelRequest$, () => __Unit
|
|
2822
2952
|
];
|
|
@@ -2964,6 +3094,9 @@ export var GetConformancePackComplianceDetails$ = [9, n0, _GCPCD,
|
|
|
2964
3094
|
export var GetConformancePackComplianceSummary$ = [9, n0, _GCPCS,
|
|
2965
3095
|
0, () => GetConformancePackComplianceSummaryRequest$, () => GetConformancePackComplianceSummaryResponse$
|
|
2966
3096
|
];
|
|
3097
|
+
export var GetConnector$ = [9, n0, _GC,
|
|
3098
|
+
0, () => GetConnectorRequest$, () => GetConnectorResponse$
|
|
3099
|
+
];
|
|
2967
3100
|
export var GetCustomRulePolicy$ = [9, n0, _GCRP,
|
|
2968
3101
|
0, () => GetCustomRulePolicyRequest$, () => GetCustomRulePolicyResponse$
|
|
2969
3102
|
];
|
|
@@ -2991,12 +3124,15 @@ export var GetStoredQuery$ = [9, n0, _GSQ,
|
|
|
2991
3124
|
export var ListAggregateDiscoveredResources$ = [9, n0, _LADR,
|
|
2992
3125
|
0, () => ListAggregateDiscoveredResourcesRequest$, () => ListAggregateDiscoveredResourcesResponse$
|
|
2993
3126
|
];
|
|
2994
|
-
export var ListConfigurationRecorders$ = [9, n0,
|
|
3127
|
+
export var ListConfigurationRecorders$ = [9, n0, _LCRis,
|
|
2995
3128
|
0, () => ListConfigurationRecordersRequest$, () => ListConfigurationRecordersResponse$
|
|
2996
3129
|
];
|
|
2997
3130
|
export var ListConformancePackComplianceScores$ = [9, n0, _LCPCS,
|
|
2998
3131
|
0, () => ListConformancePackComplianceScoresRequest$, () => ListConformancePackComplianceScoresResponse$
|
|
2999
3132
|
];
|
|
3133
|
+
export var ListConnectors$ = [9, n0, _LC,
|
|
3134
|
+
0, () => ListConnectorsRequest$, () => ListConnectorsResponse$
|
|
3135
|
+
];
|
|
3000
3136
|
export var ListDiscoveredResources$ = [9, n0, _LDR,
|
|
3001
3137
|
0, () => ListDiscoveredResourcesRequest$, () => ListDiscoveredResourcesResponse$
|
|
3002
3138
|
];
|
|
@@ -3012,18 +3148,21 @@ export var ListTagsForResource$ = [9, n0, _LTFR,
|
|
|
3012
3148
|
export var PutAggregationAuthorization$ = [9, n0, _PAA,
|
|
3013
3149
|
0, () => PutAggregationAuthorizationRequest$, () => PutAggregationAuthorizationResponse$
|
|
3014
3150
|
];
|
|
3015
|
-
export var PutConfigRule$ = [9, n0,
|
|
3151
|
+
export var PutConfigRule$ = [9, n0, _PCRut,
|
|
3016
3152
|
0, () => PutConfigRuleRequest$, () => __Unit
|
|
3017
3153
|
];
|
|
3018
3154
|
export var PutConfigurationAggregator$ = [9, n0, _PCA,
|
|
3019
3155
|
0, () => PutConfigurationAggregatorRequest$, () => PutConfigurationAggregatorResponse$
|
|
3020
3156
|
];
|
|
3021
|
-
export var PutConfigurationRecorder$ = [9, n0,
|
|
3157
|
+
export var PutConfigurationRecorder$ = [9, n0, _PCRuto,
|
|
3022
3158
|
0, () => PutConfigurationRecorderRequest$, () => __Unit
|
|
3023
3159
|
];
|
|
3024
3160
|
export var PutConformancePack$ = [9, n0, _PCP,
|
|
3025
3161
|
0, () => PutConformancePackRequest$, () => PutConformancePackResponse$
|
|
3026
3162
|
];
|
|
3163
|
+
export var PutConnector$ = [9, n0, _PC,
|
|
3164
|
+
0, () => PutConnectorRequest$, () => PutConnectorResponse$
|
|
3165
|
+
];
|
|
3027
3166
|
export var PutDeliveryChannel$ = [9, n0, _PDC,
|
|
3028
3167
|
0, () => PutDeliveryChannelRequest$, () => __Unit
|
|
3029
3168
|
];
|
|
@@ -3057,6 +3196,9 @@ export var PutServiceLinkedConfigurationRecorder$ = [9, n0, _PSLCR,
|
|
|
3057
3196
|
export var PutStoredQuery$ = [9, n0, _PSQ,
|
|
3058
3197
|
0, () => PutStoredQueryRequest$, () => PutStoredQueryResponse$
|
|
3059
3198
|
];
|
|
3199
|
+
export var PutThirdPartyServiceLinkedConfigurationRecorder$ = [9, n0, _PTPSLCR,
|
|
3200
|
+
0, () => PutThirdPartyServiceLinkedConfigurationRecorderRequest$, () => PutThirdPartyServiceLinkedConfigurationRecorderResponse$
|
|
3201
|
+
];
|
|
3060
3202
|
export var SelectAggregateResourceConfig$ = [9, n0, _SARC,
|
|
3061
3203
|
0, () => SelectAggregateResourceConfigRequest$, () => SelectAggregateResourceConfigResponse$
|
|
3062
3204
|
];
|