@aws-sdk/client-partnercentral-channel 3.935.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/LICENSE +201 -0
- package/README.md +341 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +127 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +1379 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +57 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +48 -0
- package/dist-es/PartnerCentralChannel.js +41 -0
- package/dist-es/PartnerCentralChannelClient.js +51 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +123 -0
- package/dist-es/commands/AcceptChannelHandshakeCommand.js +16 -0
- package/dist-es/commands/CancelChannelHandshakeCommand.js +16 -0
- package/dist-es/commands/CreateChannelHandshakeCommand.js +16 -0
- package/dist-es/commands/CreateProgramManagementAccountCommand.js +16 -0
- package/dist-es/commands/CreateRelationshipCommand.js +16 -0
- package/dist-es/commands/DeleteProgramManagementAccountCommand.js +16 -0
- package/dist-es/commands/DeleteRelationshipCommand.js +16 -0
- package/dist-es/commands/GetRelationshipCommand.js +16 -0
- package/dist-es/commands/ListChannelHandshakesCommand.js +16 -0
- package/dist-es/commands/ListProgramManagementAccountsCommand.js +16 -0
- package/dist-es/commands/ListRelationshipsCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/RejectChannelHandshakeCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/UpdateProgramManagementAccountCommand.js +16 -0
- package/dist-es/commands/UpdateRelationshipCommand.js +16 -0
- package/dist-es/commands/index.js +17 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/PartnerCentralChannelServiceException.js +8 -0
- package/dist-es/models/enums.js +76 -0
- package/dist-es/models/errors.js +114 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListChannelHandshakesPaginator.js +4 -0
- package/dist-es/pagination/ListProgramManagementAccountsPaginator.js +4 -0
- package/dist-es/pagination/ListRelationshipsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +52 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +44 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +795 -0
- package/dist-types/PartnerCentralChannel.d.ts +129 -0
- package/dist-types/PartnerCentralChannelClient.d.ts +213 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +83 -0
- package/dist-types/commands/AcceptChannelHandshakeCommand.d.ts +114 -0
- package/dist-types/commands/CancelChannelHandshakeCommand.d.ts +114 -0
- package/dist-types/commands/CreateChannelHandshakeCommand.d.ts +226 -0
- package/dist-types/commands/CreateProgramManagementAccountCommand.d.ts +130 -0
- package/dist-types/commands/CreateRelationshipCommand.d.ts +151 -0
- package/dist-types/commands/DeleteProgramManagementAccountCommand.d.ts +107 -0
- package/dist-types/commands/DeleteRelationshipCommand.d.ts +109 -0
- package/dist-types/commands/GetRelationshipCommand.d.ts +134 -0
- package/dist-types/commands/ListChannelHandshakesCommand.d.ts +360 -0
- package/dist-types/commands/ListProgramManagementAccountsCommand.d.ts +168 -0
- package/dist-types/commands/ListRelationshipsCommand.d.ts +169 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +114 -0
- package/dist-types/commands/RejectChannelHandshakeCommand.d.ts +114 -0
- package/dist-types/commands/TagResourceCommand.d.ts +115 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +109 -0
- package/dist-types/commands/UpdateProgramManagementAccountCommand.d.ts +123 -0
- package/dist-types/commands/UpdateRelationshipCommand.d.ts +140 -0
- package/dist-types/commands/index.d.ts +17 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +16 -0
- package/dist-types/models/PartnerCentralChannelServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +220 -0
- package/dist-types/models/errors.d.ts +153 -0
- package/dist-types/models/models_0.d.ts +1677 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListChannelHandshakesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListProgramManagementAccountsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRelationshipsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/runtimeConfig.browser.d.ts +52 -0
- package/dist-types/runtimeConfig.d.ts +52 -0
- package/dist-types/runtimeConfig.native.d.ts +51 -0
- package/dist-types/runtimeConfig.shared.d.ts +24 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +112 -0
- package/dist-types/ts3.4/PartnerCentralChannel.d.ts +296 -0
- package/dist-types/ts3.4/PartnerCentralChannelClient.d.ts +228 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +59 -0
- package/dist-types/ts3.4/commands/AcceptChannelHandshakeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CancelChannelHandshakeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateChannelHandshakeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateProgramManagementAccountCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateRelationshipCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteProgramManagementAccountCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRelationshipCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRelationshipCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListChannelHandshakesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListProgramManagementAccountsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRelationshipsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RejectChannelHandshakeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateProgramManagementAccountCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateRelationshipCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +17 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +11 -0
- package/dist-types/ts3.4/models/PartnerCentralChannelServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +106 -0
- package/dist-types/ts3.4/models/errors.d.ts +68 -0
- package/dist-types/ts3.4/models/models_0.d.ts +542 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListChannelHandshakesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListProgramManagementAccountsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRelationshipsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +103 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +98 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +107 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +34 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +117 -0
- package/package.json +100 -0
|
@@ -0,0 +1,795 @@
|
|
|
1
|
+
const _ACH = "AcceptChannelHandshake";
|
|
2
|
+
const _ACHD = "AcceptChannelHandshakeDetail";
|
|
3
|
+
const _ACHR = "AcceptChannelHandshakeRequest";
|
|
4
|
+
const _ACHRc = "AcceptChannelHandshakeResponse";
|
|
5
|
+
const _ADE = "AccessDeniedException";
|
|
6
|
+
const _CCH = "CancelChannelHandshake";
|
|
7
|
+
const _CCHD = "CancelChannelHandshakeDetail";
|
|
8
|
+
const _CCHDr = "CreateChannelHandshakeDetail";
|
|
9
|
+
const _CCHR = "CancelChannelHandshakeRequest";
|
|
10
|
+
const _CCHRa = "CancelChannelHandshakeResponse";
|
|
11
|
+
const _CCHRr = "CreateChannelHandshakeRequest";
|
|
12
|
+
const _CCHRre = "CreateChannelHandshakeResponse";
|
|
13
|
+
const _CCHr = "CreateChannelHandshake";
|
|
14
|
+
const _CE = "ConflictException";
|
|
15
|
+
const _CHP = "ChannelHandshakePayload";
|
|
16
|
+
const _CHS = "ChannelHandshakeSummary";
|
|
17
|
+
const _CHSh = "ChannelHandshakeSummaries";
|
|
18
|
+
const _CPMA = "CreateProgramManagementAccount";
|
|
19
|
+
const _CPMAD = "CreateProgramManagementAccountDetail";
|
|
20
|
+
const _CPMAR = "CreateProgramManagementAccountRequest";
|
|
21
|
+
const _CPMARr = "CreateProgramManagementAccountResponse";
|
|
22
|
+
const _CR = "CreateRelationship";
|
|
23
|
+
const _CRD = "CreateRelationshipDetail";
|
|
24
|
+
const _CRR = "CreateRelationshipRequest";
|
|
25
|
+
const _CRRr = "CreateRelationshipResponse";
|
|
26
|
+
const _DPMA = "DeleteProgramManagementAccount";
|
|
27
|
+
const _DPMAR = "DeleteProgramManagementAccountRequest";
|
|
28
|
+
const _DPMARe = "DeleteProgramManagementAccountResponse";
|
|
29
|
+
const _DR = "DeleteRelationship";
|
|
30
|
+
const _DRR = "DeleteRelationshipRequest";
|
|
31
|
+
const _DRRe = "DeleteRelationshipResponse";
|
|
32
|
+
const _GR = "GetRelationship";
|
|
33
|
+
const _GRR = "GetRelationshipRequest";
|
|
34
|
+
const _GRRe = "GetRelationshipResponse";
|
|
35
|
+
const _HD = "HandshakeDetail";
|
|
36
|
+
const _ISE = "InternalServerException";
|
|
37
|
+
const _LCH = "ListChannelHandshakes";
|
|
38
|
+
const _LCHR = "ListChannelHandshakesRequest";
|
|
39
|
+
const _LCHRi = "ListChannelHandshakesResponse";
|
|
40
|
+
const _LCHTF = "ListChannelHandshakesTypeFilters";
|
|
41
|
+
const _LCHTS = "ListChannelHandshakesTypeSort";
|
|
42
|
+
const _LPMA = "ListProgramManagementAccounts";
|
|
43
|
+
const _LPMAR = "ListProgramManagementAccountsRequest";
|
|
44
|
+
const _LPMARi = "ListProgramManagementAccountsResponse";
|
|
45
|
+
const _LPMASB = "ListProgramManagementAccountsSortBase";
|
|
46
|
+
const _LR = "ListRelationships";
|
|
47
|
+
const _LRR = "ListRelationshipsRequest";
|
|
48
|
+
const _LRRi = "ListRelationshipsResponse";
|
|
49
|
+
const _LRSB = "ListRelationshipsSortBase";
|
|
50
|
+
const _LTFR = "ListTagsForResource";
|
|
51
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
52
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
53
|
+
const _PLS = "PartnerLedSupport";
|
|
54
|
+
const _PMAHD = "ProgramManagementAccountHandshakeDetail";
|
|
55
|
+
const _PMAS = "ProgramManagementAccountSummary";
|
|
56
|
+
const _PMASr = "ProgramManagementAccountSummaries";
|
|
57
|
+
const _PMATF = "ProgramManagementAccountTypeFilters";
|
|
58
|
+
const _PMATS = "ProgramManagementAccountTypeSort";
|
|
59
|
+
const _RB = "ResoldBusiness";
|
|
60
|
+
const _RCH = "RejectChannelHandshake";
|
|
61
|
+
const _RCHD = "RejectChannelHandshakeDetail";
|
|
62
|
+
const _RCHR = "RejectChannelHandshakeRequest";
|
|
63
|
+
const _RCHRe = "RejectChannelHandshakeResponse";
|
|
64
|
+
const _RD = "RelationshipDetail";
|
|
65
|
+
const _RE = "ResoldEnterprise";
|
|
66
|
+
const _RNFE = "ResourceNotFoundException";
|
|
67
|
+
const _RS = "RelationshipSummary";
|
|
68
|
+
const _RSPHD = "RevokeServicePeriodHandshakeDetail";
|
|
69
|
+
const _RSPP = "RevokeServicePeriodPayload";
|
|
70
|
+
const _RSPTF = "RevokeServicePeriodTypeFilters";
|
|
71
|
+
const _RSPTS = "RevokeServicePeriodTypeSort";
|
|
72
|
+
const _RSe = "RelationshipSummaries";
|
|
73
|
+
const _SP = "SupportPlan";
|
|
74
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
75
|
+
const _SSPHD = "StartServicePeriodHandshakeDetail";
|
|
76
|
+
const _SSPP = "StartServicePeriodPayload";
|
|
77
|
+
const _SSPTF = "StartServicePeriodTypeFilters";
|
|
78
|
+
const _SSPTS = "StartServicePeriodTypeSort";
|
|
79
|
+
const _T = "Tag";
|
|
80
|
+
const _TE = "ThrottlingException";
|
|
81
|
+
const _TL = "TagList";
|
|
82
|
+
const _TR = "TagResource";
|
|
83
|
+
const _TRR = "TagResourceRequest";
|
|
84
|
+
const _TRRa = "TagResourceResponse";
|
|
85
|
+
const _UPMA = "UpdateProgramManagementAccount";
|
|
86
|
+
const _UPMAD = "UpdateProgramManagementAccountDetail";
|
|
87
|
+
const _UPMAR = "UpdateProgramManagementAccountRequest";
|
|
88
|
+
const _UPMARp = "UpdateProgramManagementAccountResponse";
|
|
89
|
+
const _UR = "UntagResource";
|
|
90
|
+
const _URD = "UpdateRelationshipDetail";
|
|
91
|
+
const _URR = "UntagResourceRequest";
|
|
92
|
+
const _URRn = "UntagResourceResponse";
|
|
93
|
+
const _URRp = "UpdateRelationshipRequest";
|
|
94
|
+
const _URRpd = "UpdateRelationshipResponse";
|
|
95
|
+
const _URp = "UpdateRelationship";
|
|
96
|
+
const _VE = "ValidationException";
|
|
97
|
+
const _VEF = "ValidationExceptionField";
|
|
98
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
99
|
+
const _a = "arn";
|
|
100
|
+
const _aAI = "associatedAccountId";
|
|
101
|
+
const _aAIs = "associatedAccountIds";
|
|
102
|
+
const _aI = "accountId";
|
|
103
|
+
const _aIc = "accountIds";
|
|
104
|
+
const _aRI = "associatedResourceId";
|
|
105
|
+
const _aRIs = "associatedResourceIdentifier";
|
|
106
|
+
const _aRIss = "associatedResourceIdentifiers";
|
|
107
|
+
const _aT = "associationType";
|
|
108
|
+
const _aTs = "associationTypes";
|
|
109
|
+
const _c = "catalog";
|
|
110
|
+
const _cA = "createdAt";
|
|
111
|
+
const _cAI = "chargeAccountId";
|
|
112
|
+
const _cHD = "channelHandshakeDetail";
|
|
113
|
+
const _cT = "clientToken";
|
|
114
|
+
const _cl = "client";
|
|
115
|
+
const _co = "coverage";
|
|
116
|
+
const _cod = "code";
|
|
117
|
+
const _d = "detail";
|
|
118
|
+
const _dN = "displayName";
|
|
119
|
+
const _dNi = "displayNames";
|
|
120
|
+
const _e = "error";
|
|
121
|
+
const _eD = "endDate";
|
|
122
|
+
const _fL = "fieldList";
|
|
123
|
+
const _h = "http";
|
|
124
|
+
const _hE = "httpError";
|
|
125
|
+
const _hT = "handshakeType";
|
|
126
|
+
const _hTF = "handshakeTypeFilters";
|
|
127
|
+
const _hTS = "handshakeTypeSort";
|
|
128
|
+
const _i = "id";
|
|
129
|
+
const _id = "identifier";
|
|
130
|
+
const _it = "items";
|
|
131
|
+
const _k = "key";
|
|
132
|
+
const _m = "message";
|
|
133
|
+
const _mND = "minimumNoticeDays";
|
|
134
|
+
const _mR = "maxResults";
|
|
135
|
+
const _n = "note";
|
|
136
|
+
const _nT = "nextToken";
|
|
137
|
+
const _na = "name";
|
|
138
|
+
const _oAI = "ownerAccountId";
|
|
139
|
+
const _p = "payload";
|
|
140
|
+
const _pLS = "partnerLedSupport";
|
|
141
|
+
const _pMAD = "programManagementAccountDetail";
|
|
142
|
+
const _pMAHD = "programManagementAccountHandshakeDetail";
|
|
143
|
+
const _pMAI = "programManagementAccountIdentifier";
|
|
144
|
+
const _pMAIr = "programManagementAccountIdentifiers";
|
|
145
|
+
const _pMAIro = "programManagementAccountId";
|
|
146
|
+
const _pMATF = "programManagementAccountTypeFilters";
|
|
147
|
+
const _pMATS = "programManagementAccountTypeSort";
|
|
148
|
+
const _pT = "participantType";
|
|
149
|
+
const _pr = "program";
|
|
150
|
+
const _pro = "programs";
|
|
151
|
+
const _prov = "provider";
|
|
152
|
+
const _qC = "quotaCode";
|
|
153
|
+
const _r = "reason";
|
|
154
|
+
const _rA = "resourceArn";
|
|
155
|
+
const _rAI = "receiverAccountId";
|
|
156
|
+
const _rAM = "resaleAccountModel";
|
|
157
|
+
const _rB = "resoldBusiness";
|
|
158
|
+
const _rD = "relationshipDetail";
|
|
159
|
+
const _rE = "resoldEnterprise";
|
|
160
|
+
const _rI = "resourceId";
|
|
161
|
+
const _rSP = "requestedSupportPlan";
|
|
162
|
+
const _rSPHD = "revokeServicePeriodHandshakeDetail";
|
|
163
|
+
const _rSPP = "revokeServicePeriodPayload";
|
|
164
|
+
const _rSPTF = "revokeServicePeriodTypeFilters";
|
|
165
|
+
const _rSPTS = "revokeServicePeriodTypeSort";
|
|
166
|
+
const _rT = "resourceType";
|
|
167
|
+
const _re = "revision";
|
|
168
|
+
const _s = "status";
|
|
169
|
+
const _sAI = "senderAccountId";
|
|
170
|
+
const _sB = "sortBy";
|
|
171
|
+
const _sC = "serviceCode";
|
|
172
|
+
const _sD = "startDate";
|
|
173
|
+
const _sDN = "senderDisplayName";
|
|
174
|
+
const _sO = "sortOrder";
|
|
175
|
+
const _sPT = "servicePeriodType";
|
|
176
|
+
const _sPTe = "servicePeriodTypes";
|
|
177
|
+
const _sSPHD = "startServicePeriodHandshakeDetail";
|
|
178
|
+
const _sSPP = "startServicePeriodPayload";
|
|
179
|
+
const _sSPTF = "startServicePeriodTypeFilters";
|
|
180
|
+
const _sSPTS = "startServicePeriodTypeSort";
|
|
181
|
+
const _se = "sector";
|
|
182
|
+
const _ser = "server";
|
|
183
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.partnercentralchannel";
|
|
184
|
+
const _so = "sort";
|
|
185
|
+
const _st = "statuses";
|
|
186
|
+
const _t = "tags";
|
|
187
|
+
const _tK = "tagKeys";
|
|
188
|
+
const _tL = "tamLocation";
|
|
189
|
+
const _uA = "updatedAt";
|
|
190
|
+
const _v = "value";
|
|
191
|
+
const n0 = "com.amazonaws.partnercentralchannel";
|
|
192
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
193
|
+
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
|
|
194
|
+
import { PartnerCentralChannelServiceException as __PartnerCentralChannelServiceException } from "../models/PartnerCentralChannelServiceException";
|
|
195
|
+
export var AcceptChannelHandshakeDetail = [3, n0, _ACHD, 0, [_i, _a, _s], [0, 0, 0]];
|
|
196
|
+
export var AcceptChannelHandshakeRequest = [3, n0, _ACHR, 0, [_c, _id], [0, 0]];
|
|
197
|
+
export var AcceptChannelHandshakeResponse = [
|
|
198
|
+
3,
|
|
199
|
+
n0,
|
|
200
|
+
_ACHRc,
|
|
201
|
+
0,
|
|
202
|
+
[_cHD],
|
|
203
|
+
[() => AcceptChannelHandshakeDetail],
|
|
204
|
+
];
|
|
205
|
+
export var AccessDeniedException = [
|
|
206
|
+
-3,
|
|
207
|
+
n0,
|
|
208
|
+
_ADE,
|
|
209
|
+
{
|
|
210
|
+
[_e]: _cl,
|
|
211
|
+
[_hE]: 403,
|
|
212
|
+
},
|
|
213
|
+
[_m, _r],
|
|
214
|
+
[0, 0],
|
|
215
|
+
];
|
|
216
|
+
TypeRegistry.for(n0).registerError(AccessDeniedException, __AccessDeniedException);
|
|
217
|
+
export var CancelChannelHandshakeDetail = [3, n0, _CCHD, 0, [_i, _a, _s], [0, 0, 0]];
|
|
218
|
+
export var CancelChannelHandshakeRequest = [3, n0, _CCHR, 0, [_c, _id], [0, 0]];
|
|
219
|
+
export var CancelChannelHandshakeResponse = [
|
|
220
|
+
3,
|
|
221
|
+
n0,
|
|
222
|
+
_CCHRa,
|
|
223
|
+
0,
|
|
224
|
+
[_cHD],
|
|
225
|
+
[() => CancelChannelHandshakeDetail],
|
|
226
|
+
];
|
|
227
|
+
export var ChannelHandshakeSummary = [
|
|
228
|
+
3,
|
|
229
|
+
n0,
|
|
230
|
+
_CHS,
|
|
231
|
+
0,
|
|
232
|
+
[_i, _a, _c, _hT, _oAI, _sAI, _sDN, _rAI, _aRI, _d, _cA, _uA, _s],
|
|
233
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, () => HandshakeDetail, 5, 5, 0],
|
|
234
|
+
];
|
|
235
|
+
export var ConflictException = [
|
|
236
|
+
-3,
|
|
237
|
+
n0,
|
|
238
|
+
_CE,
|
|
239
|
+
{
|
|
240
|
+
[_e]: _cl,
|
|
241
|
+
[_hE]: 409,
|
|
242
|
+
},
|
|
243
|
+
[_m, _rI, _rT],
|
|
244
|
+
[0, 0, 0],
|
|
245
|
+
];
|
|
246
|
+
TypeRegistry.for(n0).registerError(ConflictException, __ConflictException);
|
|
247
|
+
export var CreateChannelHandshakeDetail = [3, n0, _CCHDr, 0, [_i, _a], [0, 0]];
|
|
248
|
+
export var CreateChannelHandshakeRequest = [
|
|
249
|
+
3,
|
|
250
|
+
n0,
|
|
251
|
+
_CCHRr,
|
|
252
|
+
0,
|
|
253
|
+
[_hT, _c, _aRIs, _p, _cT, _t],
|
|
254
|
+
[0, 0, 0, () => ChannelHandshakePayload, [0, 4], () => TagList],
|
|
255
|
+
];
|
|
256
|
+
export var CreateChannelHandshakeResponse = [
|
|
257
|
+
3,
|
|
258
|
+
n0,
|
|
259
|
+
_CCHRre,
|
|
260
|
+
0,
|
|
261
|
+
[_cHD],
|
|
262
|
+
[() => CreateChannelHandshakeDetail],
|
|
263
|
+
];
|
|
264
|
+
export var CreateProgramManagementAccountDetail = [3, n0, _CPMAD, 0, [_i, _a], [0, 0]];
|
|
265
|
+
export var CreateProgramManagementAccountRequest = [
|
|
266
|
+
3,
|
|
267
|
+
n0,
|
|
268
|
+
_CPMAR,
|
|
269
|
+
0,
|
|
270
|
+
[_c, _pr, _dN, _aI, _cT, _t],
|
|
271
|
+
[0, 0, 0, 0, [0, 4], () => TagList],
|
|
272
|
+
];
|
|
273
|
+
export var CreateProgramManagementAccountResponse = [
|
|
274
|
+
3,
|
|
275
|
+
n0,
|
|
276
|
+
_CPMARr,
|
|
277
|
+
0,
|
|
278
|
+
[_pMAD],
|
|
279
|
+
[() => CreateProgramManagementAccountDetail],
|
|
280
|
+
];
|
|
281
|
+
export var CreateRelationshipDetail = [3, n0, _CRD, 0, [_a, _i], [0, 0]];
|
|
282
|
+
export var CreateRelationshipRequest = [
|
|
283
|
+
3,
|
|
284
|
+
n0,
|
|
285
|
+
_CRR,
|
|
286
|
+
0,
|
|
287
|
+
[_c, _aT, _pMAI, _aAI, _dN, _rAM, _se, _cT, _t, _rSP],
|
|
288
|
+
[0, 0, 0, 0, 0, 0, 0, [0, 4], () => TagList, () => SupportPlan],
|
|
289
|
+
];
|
|
290
|
+
export var CreateRelationshipResponse = [
|
|
291
|
+
3,
|
|
292
|
+
n0,
|
|
293
|
+
_CRRr,
|
|
294
|
+
0,
|
|
295
|
+
[_rD],
|
|
296
|
+
[() => CreateRelationshipDetail],
|
|
297
|
+
];
|
|
298
|
+
export var DeleteProgramManagementAccountRequest = [
|
|
299
|
+
3,
|
|
300
|
+
n0,
|
|
301
|
+
_DPMAR,
|
|
302
|
+
0,
|
|
303
|
+
[_c, _id, _cT],
|
|
304
|
+
[0, 0, [0, 4]],
|
|
305
|
+
];
|
|
306
|
+
export var DeleteProgramManagementAccountResponse = [3, n0, _DPMARe, 0, [], []];
|
|
307
|
+
export var DeleteRelationshipRequest = [
|
|
308
|
+
3,
|
|
309
|
+
n0,
|
|
310
|
+
_DRR,
|
|
311
|
+
0,
|
|
312
|
+
[_c, _id, _pMAI, _cT],
|
|
313
|
+
[0, 0, 0, [0, 4]],
|
|
314
|
+
];
|
|
315
|
+
export var DeleteRelationshipResponse = [3, n0, _DRRe, 0, [], []];
|
|
316
|
+
export var GetRelationshipRequest = [3, n0, _GRR, 0, [_c, _pMAI, _id], [0, 0, 0]];
|
|
317
|
+
export var GetRelationshipResponse = [3, n0, _GRRe, 0, [_rD], [() => RelationshipDetail]];
|
|
318
|
+
export var InternalServerException = [
|
|
319
|
+
-3,
|
|
320
|
+
n0,
|
|
321
|
+
_ISE,
|
|
322
|
+
{
|
|
323
|
+
[_e]: _ser,
|
|
324
|
+
[_hE]: 500,
|
|
325
|
+
},
|
|
326
|
+
[_m],
|
|
327
|
+
[0],
|
|
328
|
+
];
|
|
329
|
+
TypeRegistry.for(n0).registerError(InternalServerException, __InternalServerException);
|
|
330
|
+
export var ListChannelHandshakesRequest = [
|
|
331
|
+
3,
|
|
332
|
+
n0,
|
|
333
|
+
_LCHR,
|
|
334
|
+
0,
|
|
335
|
+
[_hT, _c, _pT, _mR, _st, _aRIss, _hTF, _hTS, _nT],
|
|
336
|
+
[0, 0, 0, 1, 64 | 0, 64 | 0, () => ListChannelHandshakesTypeFilters, () => ListChannelHandshakesTypeSort, 0],
|
|
337
|
+
];
|
|
338
|
+
export var ListChannelHandshakesResponse = [
|
|
339
|
+
3,
|
|
340
|
+
n0,
|
|
341
|
+
_LCHRi,
|
|
342
|
+
0,
|
|
343
|
+
[_it, _nT],
|
|
344
|
+
[() => ChannelHandshakeSummaries, 0],
|
|
345
|
+
];
|
|
346
|
+
export var ListProgramManagementAccountsRequest = [
|
|
347
|
+
3,
|
|
348
|
+
n0,
|
|
349
|
+
_LPMAR,
|
|
350
|
+
0,
|
|
351
|
+
[_c, _mR, _dNi, _pro, _aIc, _st, _so, _nT],
|
|
352
|
+
[0, 1, 64 | 0, 64 | 0, 64 | 0, 64 | 0, () => ListProgramManagementAccountsSortBase, 0],
|
|
353
|
+
];
|
|
354
|
+
export var ListProgramManagementAccountsResponse = [
|
|
355
|
+
3,
|
|
356
|
+
n0,
|
|
357
|
+
_LPMARi,
|
|
358
|
+
0,
|
|
359
|
+
[_it, _nT],
|
|
360
|
+
[() => ProgramManagementAccountSummaries, 0],
|
|
361
|
+
];
|
|
362
|
+
export var ListProgramManagementAccountsSortBase = [3, n0, _LPMASB, 0, [_sO, _sB], [0, 0]];
|
|
363
|
+
export var ListRelationshipsRequest = [
|
|
364
|
+
3,
|
|
365
|
+
n0,
|
|
366
|
+
_LRR,
|
|
367
|
+
0,
|
|
368
|
+
[_c, _mR, _aAIs, _aTs, _dNi, _pMAIr, _so, _nT],
|
|
369
|
+
[0, 1, 64 | 0, 64 | 0, 64 | 0, 64 | 0, () => ListRelationshipsSortBase, 0],
|
|
370
|
+
];
|
|
371
|
+
export var ListRelationshipsResponse = [
|
|
372
|
+
3,
|
|
373
|
+
n0,
|
|
374
|
+
_LRRi,
|
|
375
|
+
0,
|
|
376
|
+
[_it, _nT],
|
|
377
|
+
[() => RelationshipSummaries, 0],
|
|
378
|
+
];
|
|
379
|
+
export var ListRelationshipsSortBase = [3, n0, _LRSB, 0, [_sO, _sB], [0, 0]];
|
|
380
|
+
export var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [0]];
|
|
381
|
+
export var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [() => TagList]];
|
|
382
|
+
export var PartnerLedSupport = [3, n0, _PLS, 0, [_co, _prov, _tL], [0, 0, 0]];
|
|
383
|
+
export var ProgramManagementAccountHandshakeDetail = [3, n0, _PMAHD, 0, [_pr], [0]];
|
|
384
|
+
export var ProgramManagementAccountSummary = [
|
|
385
|
+
3,
|
|
386
|
+
n0,
|
|
387
|
+
_PMAS,
|
|
388
|
+
0,
|
|
389
|
+
[_i, _re, _c, _pr, _dN, _aI, _a, _cA, _uA, _sD, _s],
|
|
390
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0],
|
|
391
|
+
];
|
|
392
|
+
export var ProgramManagementAccountTypeFilters = [3, n0, _PMATF, 0, [_pro], [64 | 0]];
|
|
393
|
+
export var ProgramManagementAccountTypeSort = [3, n0, _PMATS, 0, [_sO, _sB], [0, 0]];
|
|
394
|
+
export var RejectChannelHandshakeDetail = [3, n0, _RCHD, 0, [_i, _a, _s], [0, 0, 0]];
|
|
395
|
+
export var RejectChannelHandshakeRequest = [3, n0, _RCHR, 0, [_c, _id], [0, 0]];
|
|
396
|
+
export var RejectChannelHandshakeResponse = [
|
|
397
|
+
3,
|
|
398
|
+
n0,
|
|
399
|
+
_RCHRe,
|
|
400
|
+
0,
|
|
401
|
+
[_cHD],
|
|
402
|
+
[() => RejectChannelHandshakeDetail],
|
|
403
|
+
];
|
|
404
|
+
export var RelationshipDetail = [
|
|
405
|
+
3,
|
|
406
|
+
n0,
|
|
407
|
+
_RD,
|
|
408
|
+
0,
|
|
409
|
+
[_a, _i, _re, _c, _aT, _pMAIro, _aAI, _dN, _rAM, _se, _cA, _uA, _sD],
|
|
410
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5],
|
|
411
|
+
];
|
|
412
|
+
export var RelationshipSummary = [
|
|
413
|
+
3,
|
|
414
|
+
n0,
|
|
415
|
+
_RS,
|
|
416
|
+
0,
|
|
417
|
+
[_a, _i, _re, _c, _aT, _pMAIro, _aAI, _dN, _se, _cA, _uA, _sD],
|
|
418
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5],
|
|
419
|
+
];
|
|
420
|
+
export var ResoldBusiness = [3, n0, _RB, 0, [_co], [0]];
|
|
421
|
+
export var ResoldEnterprise = [3, n0, _RE, 0, [_co, _tL, _cAI], [0, 0, 0]];
|
|
422
|
+
export var ResourceNotFoundException = [
|
|
423
|
+
-3,
|
|
424
|
+
n0,
|
|
425
|
+
_RNFE,
|
|
426
|
+
{
|
|
427
|
+
[_e]: _cl,
|
|
428
|
+
[_hE]: 404,
|
|
429
|
+
},
|
|
430
|
+
[_m, _rI, _rT],
|
|
431
|
+
[0, 0, 0],
|
|
432
|
+
];
|
|
433
|
+
TypeRegistry.for(n0).registerError(ResourceNotFoundException, __ResourceNotFoundException);
|
|
434
|
+
export var RevokeServicePeriodHandshakeDetail = [
|
|
435
|
+
3,
|
|
436
|
+
n0,
|
|
437
|
+
_RSPHD,
|
|
438
|
+
0,
|
|
439
|
+
[_n, _sPT, _mND, _sD, _eD],
|
|
440
|
+
[0, 0, 0, 5, 5],
|
|
441
|
+
];
|
|
442
|
+
export var RevokeServicePeriodPayload = [3, n0, _RSPP, 0, [_pMAI, _n], [0, 0]];
|
|
443
|
+
export var RevokeServicePeriodTypeFilters = [3, n0, _RSPTF, 0, [_sPTe], [64 | 0]];
|
|
444
|
+
export var RevokeServicePeriodTypeSort = [3, n0, _RSPTS, 0, [_sO, _sB], [0, 0]];
|
|
445
|
+
export var ServiceQuotaExceededException = [
|
|
446
|
+
-3,
|
|
447
|
+
n0,
|
|
448
|
+
_SQEE,
|
|
449
|
+
{
|
|
450
|
+
[_e]: _cl,
|
|
451
|
+
[_hE]: 402,
|
|
452
|
+
},
|
|
453
|
+
[_m, _rI, _rT, _qC],
|
|
454
|
+
[0, 0, 0, 0],
|
|
455
|
+
];
|
|
456
|
+
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, __ServiceQuotaExceededException);
|
|
457
|
+
export var StartServicePeriodHandshakeDetail = [
|
|
458
|
+
3,
|
|
459
|
+
n0,
|
|
460
|
+
_SSPHD,
|
|
461
|
+
0,
|
|
462
|
+
[_n, _sPT, _mND, _sD, _eD],
|
|
463
|
+
[0, 0, 0, 5, 5],
|
|
464
|
+
];
|
|
465
|
+
export var StartServicePeriodPayload = [
|
|
466
|
+
3,
|
|
467
|
+
n0,
|
|
468
|
+
_SSPP,
|
|
469
|
+
0,
|
|
470
|
+
[_pMAI, _n, _sPT, _mND, _eD],
|
|
471
|
+
[0, 0, 0, 0, 5],
|
|
472
|
+
];
|
|
473
|
+
export var StartServicePeriodTypeFilters = [3, n0, _SSPTF, 0, [_sPTe], [64 | 0]];
|
|
474
|
+
export var StartServicePeriodTypeSort = [3, n0, _SSPTS, 0, [_sO, _sB], [0, 0]];
|
|
475
|
+
export var Tag = [3, n0, _T, 0, [_k, _v], [0, 0]];
|
|
476
|
+
export var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [0, () => TagList]];
|
|
477
|
+
export var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
478
|
+
export var ThrottlingException = [
|
|
479
|
+
-3,
|
|
480
|
+
n0,
|
|
481
|
+
_TE,
|
|
482
|
+
{
|
|
483
|
+
[_e]: _cl,
|
|
484
|
+
[_hE]: 429,
|
|
485
|
+
},
|
|
486
|
+
[_m, _sC, _qC],
|
|
487
|
+
[0, 0, 0],
|
|
488
|
+
];
|
|
489
|
+
TypeRegistry.for(n0).registerError(ThrottlingException, __ThrottlingException);
|
|
490
|
+
export var UntagResourceRequest = [3, n0, _URR, 0, [_rA, _tK], [0, 64 | 0]];
|
|
491
|
+
export var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
492
|
+
export var UpdateProgramManagementAccountDetail = [
|
|
493
|
+
3,
|
|
494
|
+
n0,
|
|
495
|
+
_UPMAD,
|
|
496
|
+
0,
|
|
497
|
+
[_i, _a, _re, _dN],
|
|
498
|
+
[0, 0, 0, 0],
|
|
499
|
+
];
|
|
500
|
+
export var UpdateProgramManagementAccountRequest = [
|
|
501
|
+
3,
|
|
502
|
+
n0,
|
|
503
|
+
_UPMAR,
|
|
504
|
+
0,
|
|
505
|
+
[_c, _id, _re, _dN],
|
|
506
|
+
[0, 0, 0, 0],
|
|
507
|
+
];
|
|
508
|
+
export var UpdateProgramManagementAccountResponse = [
|
|
509
|
+
3,
|
|
510
|
+
n0,
|
|
511
|
+
_UPMARp,
|
|
512
|
+
0,
|
|
513
|
+
[_pMAD],
|
|
514
|
+
[() => UpdateProgramManagementAccountDetail],
|
|
515
|
+
];
|
|
516
|
+
export var UpdateRelationshipDetail = [3, n0, _URD, 0, [_a, _i, _re, _dN], [0, 0, 0, 0]];
|
|
517
|
+
export var UpdateRelationshipRequest = [
|
|
518
|
+
3,
|
|
519
|
+
n0,
|
|
520
|
+
_URRp,
|
|
521
|
+
0,
|
|
522
|
+
[_c, _id, _pMAI, _re, _dN, _rSP],
|
|
523
|
+
[0, 0, 0, 0, 0, () => SupportPlan],
|
|
524
|
+
];
|
|
525
|
+
export var UpdateRelationshipResponse = [
|
|
526
|
+
3,
|
|
527
|
+
n0,
|
|
528
|
+
_URRpd,
|
|
529
|
+
0,
|
|
530
|
+
[_rD],
|
|
531
|
+
[() => UpdateRelationshipDetail],
|
|
532
|
+
];
|
|
533
|
+
export var ValidationException = [
|
|
534
|
+
-3,
|
|
535
|
+
n0,
|
|
536
|
+
_VE,
|
|
537
|
+
{
|
|
538
|
+
[_e]: _cl,
|
|
539
|
+
[_hE]: 400,
|
|
540
|
+
},
|
|
541
|
+
[_m, _r, _fL],
|
|
542
|
+
[0, 0, () => ValidationExceptionFieldList],
|
|
543
|
+
];
|
|
544
|
+
TypeRegistry.for(n0).registerError(ValidationException, __ValidationException);
|
|
545
|
+
export var ValidationExceptionField = [3, n0, _VEF, 0, [_na, _cod, _m], [0, 0, 0]];
|
|
546
|
+
export var __Unit = "unit";
|
|
547
|
+
export var PartnerCentralChannelServiceException = [
|
|
548
|
+
-3,
|
|
549
|
+
_sm,
|
|
550
|
+
"PartnerCentralChannelServiceException",
|
|
551
|
+
0,
|
|
552
|
+
[],
|
|
553
|
+
[],
|
|
554
|
+
];
|
|
555
|
+
TypeRegistry.for(_sm).registerError(PartnerCentralChannelServiceException, __PartnerCentralChannelServiceException);
|
|
556
|
+
export var AccountIdList = 64 | 0;
|
|
557
|
+
export var AssociatedResourceIdentifierList = 64 | 0;
|
|
558
|
+
export var AssociationTypeList = 64 | 0;
|
|
559
|
+
export var ChannelHandshakeSummaries = [1, n0, _CHSh, 0, () => ChannelHandshakeSummary];
|
|
560
|
+
export var HandshakeStatusList = 64 | 0;
|
|
561
|
+
export var ProgramList = 64 | 0;
|
|
562
|
+
export var ProgramManagementAccountDisplayNameList = 64 | 0;
|
|
563
|
+
export var ProgramManagementAccountIdentifierList = 64 | 0;
|
|
564
|
+
export var ProgramManagementAccountStatusList = 64 | 0;
|
|
565
|
+
export var ProgramManagementAccountSummaries = [
|
|
566
|
+
1,
|
|
567
|
+
n0,
|
|
568
|
+
_PMASr,
|
|
569
|
+
0,
|
|
570
|
+
() => ProgramManagementAccountSummary,
|
|
571
|
+
];
|
|
572
|
+
export var RelationshipDisplayNameList = 64 | 0;
|
|
573
|
+
export var RelationshipSummaries = [1, n0, _RSe, 0, () => RelationshipSummary];
|
|
574
|
+
export var ServicePeriodTypeList = 64 | 0;
|
|
575
|
+
export var TagKeyList = 64 | 0;
|
|
576
|
+
export var TagList = [1, n0, _TL, 0, () => Tag];
|
|
577
|
+
export var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
|
|
578
|
+
export var ChannelHandshakePayload = [
|
|
579
|
+
3,
|
|
580
|
+
n0,
|
|
581
|
+
_CHP,
|
|
582
|
+
0,
|
|
583
|
+
[_sSPP, _rSPP],
|
|
584
|
+
[() => StartServicePeriodPayload, () => RevokeServicePeriodPayload],
|
|
585
|
+
];
|
|
586
|
+
export var HandshakeDetail = [
|
|
587
|
+
3,
|
|
588
|
+
n0,
|
|
589
|
+
_HD,
|
|
590
|
+
0,
|
|
591
|
+
[_sSPHD, _rSPHD, _pMAHD],
|
|
592
|
+
[
|
|
593
|
+
() => StartServicePeriodHandshakeDetail,
|
|
594
|
+
() => RevokeServicePeriodHandshakeDetail,
|
|
595
|
+
() => ProgramManagementAccountHandshakeDetail,
|
|
596
|
+
],
|
|
597
|
+
];
|
|
598
|
+
export var ListChannelHandshakesTypeFilters = [
|
|
599
|
+
3,
|
|
600
|
+
n0,
|
|
601
|
+
_LCHTF,
|
|
602
|
+
0,
|
|
603
|
+
[_sSPTF, _rSPTF, _pMATF],
|
|
604
|
+
[
|
|
605
|
+
() => StartServicePeriodTypeFilters,
|
|
606
|
+
() => RevokeServicePeriodTypeFilters,
|
|
607
|
+
() => ProgramManagementAccountTypeFilters,
|
|
608
|
+
],
|
|
609
|
+
];
|
|
610
|
+
export var ListChannelHandshakesTypeSort = [
|
|
611
|
+
3,
|
|
612
|
+
n0,
|
|
613
|
+
_LCHTS,
|
|
614
|
+
0,
|
|
615
|
+
[_sSPTS, _rSPTS, _pMATS],
|
|
616
|
+
[() => StartServicePeriodTypeSort, () => RevokeServicePeriodTypeSort, () => ProgramManagementAccountTypeSort],
|
|
617
|
+
];
|
|
618
|
+
export var SupportPlan = [
|
|
619
|
+
3,
|
|
620
|
+
n0,
|
|
621
|
+
_SP,
|
|
622
|
+
0,
|
|
623
|
+
[_rB, _rE, _pLS],
|
|
624
|
+
[() => ResoldBusiness, () => ResoldEnterprise, () => PartnerLedSupport],
|
|
625
|
+
];
|
|
626
|
+
export var AcceptChannelHandshake = [
|
|
627
|
+
9,
|
|
628
|
+
n0,
|
|
629
|
+
_ACH,
|
|
630
|
+
{
|
|
631
|
+
[_h]: ["POST", "/AcceptChannelHandshake", 200],
|
|
632
|
+
},
|
|
633
|
+
() => AcceptChannelHandshakeRequest,
|
|
634
|
+
() => AcceptChannelHandshakeResponse,
|
|
635
|
+
];
|
|
636
|
+
export var CancelChannelHandshake = [
|
|
637
|
+
9,
|
|
638
|
+
n0,
|
|
639
|
+
_CCH,
|
|
640
|
+
{
|
|
641
|
+
[_h]: ["POST", "/CancelChannelHandshake", 200],
|
|
642
|
+
},
|
|
643
|
+
() => CancelChannelHandshakeRequest,
|
|
644
|
+
() => CancelChannelHandshakeResponse,
|
|
645
|
+
];
|
|
646
|
+
export var CreateChannelHandshake = [
|
|
647
|
+
9,
|
|
648
|
+
n0,
|
|
649
|
+
_CCHr,
|
|
650
|
+
{
|
|
651
|
+
[_h]: ["POST", "/CreateChannelHandshake", 200],
|
|
652
|
+
},
|
|
653
|
+
() => CreateChannelHandshakeRequest,
|
|
654
|
+
() => CreateChannelHandshakeResponse,
|
|
655
|
+
];
|
|
656
|
+
export var CreateProgramManagementAccount = [
|
|
657
|
+
9,
|
|
658
|
+
n0,
|
|
659
|
+
_CPMA,
|
|
660
|
+
{
|
|
661
|
+
[_h]: ["POST", "/CreateProgramManagementAccount", 200],
|
|
662
|
+
},
|
|
663
|
+
() => CreateProgramManagementAccountRequest,
|
|
664
|
+
() => CreateProgramManagementAccountResponse,
|
|
665
|
+
];
|
|
666
|
+
export var CreateRelationship = [
|
|
667
|
+
9,
|
|
668
|
+
n0,
|
|
669
|
+
_CR,
|
|
670
|
+
{
|
|
671
|
+
[_h]: ["POST", "/CreateRelationship", 200],
|
|
672
|
+
},
|
|
673
|
+
() => CreateRelationshipRequest,
|
|
674
|
+
() => CreateRelationshipResponse,
|
|
675
|
+
];
|
|
676
|
+
export var DeleteProgramManagementAccount = [
|
|
677
|
+
9,
|
|
678
|
+
n0,
|
|
679
|
+
_DPMA,
|
|
680
|
+
{
|
|
681
|
+
[_h]: ["POST", "/DeleteProgramManagementAccount", 200],
|
|
682
|
+
},
|
|
683
|
+
() => DeleteProgramManagementAccountRequest,
|
|
684
|
+
() => DeleteProgramManagementAccountResponse,
|
|
685
|
+
];
|
|
686
|
+
export var DeleteRelationship = [
|
|
687
|
+
9,
|
|
688
|
+
n0,
|
|
689
|
+
_DR,
|
|
690
|
+
{
|
|
691
|
+
[_h]: ["POST", "/DeleteRelationship", 200],
|
|
692
|
+
},
|
|
693
|
+
() => DeleteRelationshipRequest,
|
|
694
|
+
() => DeleteRelationshipResponse,
|
|
695
|
+
];
|
|
696
|
+
export var GetRelationship = [
|
|
697
|
+
9,
|
|
698
|
+
n0,
|
|
699
|
+
_GR,
|
|
700
|
+
{
|
|
701
|
+
[_h]: ["POST", "/GetRelationship", 200],
|
|
702
|
+
},
|
|
703
|
+
() => GetRelationshipRequest,
|
|
704
|
+
() => GetRelationshipResponse,
|
|
705
|
+
];
|
|
706
|
+
export var ListChannelHandshakes = [
|
|
707
|
+
9,
|
|
708
|
+
n0,
|
|
709
|
+
_LCH,
|
|
710
|
+
{
|
|
711
|
+
[_h]: ["POST", "/ListChannelHandshakes", 200],
|
|
712
|
+
},
|
|
713
|
+
() => ListChannelHandshakesRequest,
|
|
714
|
+
() => ListChannelHandshakesResponse,
|
|
715
|
+
];
|
|
716
|
+
export var ListProgramManagementAccounts = [
|
|
717
|
+
9,
|
|
718
|
+
n0,
|
|
719
|
+
_LPMA,
|
|
720
|
+
{
|
|
721
|
+
[_h]: ["POST", "/ListProgramManagementAccounts", 200],
|
|
722
|
+
},
|
|
723
|
+
() => ListProgramManagementAccountsRequest,
|
|
724
|
+
() => ListProgramManagementAccountsResponse,
|
|
725
|
+
];
|
|
726
|
+
export var ListRelationships = [
|
|
727
|
+
9,
|
|
728
|
+
n0,
|
|
729
|
+
_LR,
|
|
730
|
+
{
|
|
731
|
+
[_h]: ["POST", "/ListRelationships", 200],
|
|
732
|
+
},
|
|
733
|
+
() => ListRelationshipsRequest,
|
|
734
|
+
() => ListRelationshipsResponse,
|
|
735
|
+
];
|
|
736
|
+
export var ListTagsForResource = [
|
|
737
|
+
9,
|
|
738
|
+
n0,
|
|
739
|
+
_LTFR,
|
|
740
|
+
{
|
|
741
|
+
[_h]: ["POST", "/ListTagsForResource", 200],
|
|
742
|
+
},
|
|
743
|
+
() => ListTagsForResourceRequest,
|
|
744
|
+
() => ListTagsForResourceResponse,
|
|
745
|
+
];
|
|
746
|
+
export var RejectChannelHandshake = [
|
|
747
|
+
9,
|
|
748
|
+
n0,
|
|
749
|
+
_RCH,
|
|
750
|
+
{
|
|
751
|
+
[_h]: ["POST", "/RejectChannelHandshake", 200],
|
|
752
|
+
},
|
|
753
|
+
() => RejectChannelHandshakeRequest,
|
|
754
|
+
() => RejectChannelHandshakeResponse,
|
|
755
|
+
];
|
|
756
|
+
export var TagResource = [
|
|
757
|
+
9,
|
|
758
|
+
n0,
|
|
759
|
+
_TR,
|
|
760
|
+
{
|
|
761
|
+
[_h]: ["POST", "/TagResource", 200],
|
|
762
|
+
},
|
|
763
|
+
() => TagResourceRequest,
|
|
764
|
+
() => TagResourceResponse,
|
|
765
|
+
];
|
|
766
|
+
export var UntagResource = [
|
|
767
|
+
9,
|
|
768
|
+
n0,
|
|
769
|
+
_UR,
|
|
770
|
+
{
|
|
771
|
+
[_h]: ["POST", "/UntagResource", 200],
|
|
772
|
+
},
|
|
773
|
+
() => UntagResourceRequest,
|
|
774
|
+
() => UntagResourceResponse,
|
|
775
|
+
];
|
|
776
|
+
export var UpdateProgramManagementAccount = [
|
|
777
|
+
9,
|
|
778
|
+
n0,
|
|
779
|
+
_UPMA,
|
|
780
|
+
{
|
|
781
|
+
[_h]: ["POST", "/UpdateProgramManagementAccount", 200],
|
|
782
|
+
},
|
|
783
|
+
() => UpdateProgramManagementAccountRequest,
|
|
784
|
+
() => UpdateProgramManagementAccountResponse,
|
|
785
|
+
];
|
|
786
|
+
export var UpdateRelationship = [
|
|
787
|
+
9,
|
|
788
|
+
n0,
|
|
789
|
+
_URp,
|
|
790
|
+
{
|
|
791
|
+
[_h]: ["POST", "/UpdateRelationship", 200],
|
|
792
|
+
},
|
|
793
|
+
() => UpdateRelationshipRequest,
|
|
794
|
+
() => UpdateRelationshipResponse,
|
|
795
|
+
];
|