@cloud-copilot/iam-data 0.15.202511261 → 0.15.202512061
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/data/actions/aidevops.json +489 -0
- package/data/actions/aws-marketplace.json +48 -0
- package/data/actions/aws-mcp.json +26 -0
- package/data/actions/bedrock-agentcore.json +594 -2
- package/data/actions/bedrock-mantle.json +106 -0
- package/data/actions/connect.json +1081 -8
- package/data/actions/datazone.json +16 -0
- package/data/actions/eks.json +108 -0
- package/data/actions/lambda.json +296 -4
- package/data/actions/logs.json +90 -0
- package/data/actions/mediaconnect.json +748 -91
- package/data/actions/observabilityadmin.json +180 -0
- package/data/actions/opensearch.json +40 -0
- package/data/actions/partnercentral-account-management.json +22 -0
- package/data/actions/partnercentral.json +903 -22
- package/data/actions/route53.json +15 -0
- package/data/actions/route53globalresolver.json +700 -0
- package/data/actions/s3.json +1 -0
- package/data/actions/s3tables.json +243 -3
- package/data/actions/s3vectors.json +147 -22
- package/data/actions/sagemaker.json +110 -0
- package/data/actions/securityagent.json +503 -0
- package/data/actions/transform-custom.json +274 -0
- package/data/actions/transform.json +72 -0
- package/data/conditionKeys/aidevops.json +22 -0
- package/data/conditionKeys/aws-mcp.json +1 -0
- package/data/conditionKeys/bedrock-agentcore.json +0 -5
- package/data/conditionKeys/bedrock-mantle.json +17 -0
- package/data/conditionKeys/connect.json +10 -0
- package/data/conditionKeys/observabilityadmin.json +5 -0
- package/data/conditionKeys/partnercentral-account-management.json +12 -1
- package/data/conditionKeys/partnercentral.json +15 -0
- package/data/conditionKeys/route53globalresolver.json +17 -0
- package/data/conditionKeys/s3tables.json +5 -0
- package/data/conditionKeys/s3vectors.json +20 -0
- package/data/conditionKeys/securityagent.json +1 -0
- package/data/conditionKeys/transform-custom.json +17 -0
- package/data/conditionPatterns.json +4 -0
- package/data/resourceTypes/aidevops.json +24 -0
- package/data/resourceTypes/aws-mcp.json +1 -0
- package/data/resourceTypes/bedrock-agentcore.json +20 -0
- package/data/resourceTypes/bedrock-mantle.json +6 -0
- package/data/resourceTypes/connect.json +18 -0
- package/data/resourceTypes/eks.json +7 -0
- package/data/resourceTypes/lambda.json +11 -0
- package/data/resourceTypes/mediaconnect.json +41 -12
- package/data/resourceTypes/observabilityadmin.json +14 -0
- package/data/resourceTypes/partnercentral.json +42 -0
- package/data/resourceTypes/route53globalresolver.json +37 -0
- package/data/resourceTypes/s3vectors.json +10 -2
- package/data/resourceTypes/sagemaker.json +8 -0
- package/data/resourceTypes/securityagent.json +38 -0
- package/data/resourceTypes/transform-custom.json +18 -0
- package/data/serviceNames.json +6 -0
- package/data/services.json +6 -0
- package/package.json +2 -2
|
@@ -17,6 +17,23 @@
|
|
|
17
17
|
],
|
|
18
18
|
"dependentActions": []
|
|
19
19
|
},
|
|
20
|
+
"acceptconnectioninvitation": {
|
|
21
|
+
"name": "AcceptConnectionInvitation",
|
|
22
|
+
"description": "Grants permission to accept connection invitations in AWS Partner Central",
|
|
23
|
+
"accessLevel": "Write",
|
|
24
|
+
"resourceTypes": [
|
|
25
|
+
{
|
|
26
|
+
"name": "ConnectionInvitation",
|
|
27
|
+
"required": true,
|
|
28
|
+
"conditionKeys": [],
|
|
29
|
+
"dependentActions": []
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"conditionKeys": [
|
|
33
|
+
"partnercentral:Catalog"
|
|
34
|
+
],
|
|
35
|
+
"dependentActions": []
|
|
36
|
+
},
|
|
20
37
|
"acceptengagementinvitation": {
|
|
21
38
|
"name": "AcceptEngagementInvitation",
|
|
22
39
|
"description": "Grants permission to accept Engagement Invitations on AWS Partner Central",
|
|
@@ -34,6 +51,24 @@
|
|
|
34
51
|
],
|
|
35
52
|
"dependentActions": []
|
|
36
53
|
},
|
|
54
|
+
"amendbenefitapplication": {
|
|
55
|
+
"name": "AmendBenefitApplication",
|
|
56
|
+
"description": "Grants permission to amend benefit applications in AWS Partner Central",
|
|
57
|
+
"accessLevel": "Write",
|
|
58
|
+
"resourceTypes": [
|
|
59
|
+
{
|
|
60
|
+
"name": "BenefitApplication",
|
|
61
|
+
"required": true,
|
|
62
|
+
"conditionKeys": [],
|
|
63
|
+
"dependentActions": []
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
"conditionKeys": [
|
|
67
|
+
"aws:ResourceTag/${TagKey}",
|
|
68
|
+
"partnercentral:Catalog"
|
|
69
|
+
],
|
|
70
|
+
"dependentActions": []
|
|
71
|
+
},
|
|
37
72
|
"assignopportunity": {
|
|
38
73
|
"name": "AssignOpportunity",
|
|
39
74
|
"description": "Grants permission to assign Opportunities on AWS Partner Central",
|
|
@@ -51,6 +86,54 @@
|
|
|
51
86
|
],
|
|
52
87
|
"dependentActions": []
|
|
53
88
|
},
|
|
89
|
+
"associateawstrainingcertificationemaildomain": {
|
|
90
|
+
"name": "AssociateAwsTrainingCertificationEmailDomain",
|
|
91
|
+
"description": "Grants permission to associate AWS Training and Certification email domains in AWS Partner Central",
|
|
92
|
+
"accessLevel": "Write",
|
|
93
|
+
"resourceTypes": [
|
|
94
|
+
{
|
|
95
|
+
"name": "Partner",
|
|
96
|
+
"required": true,
|
|
97
|
+
"conditionKeys": [],
|
|
98
|
+
"dependentActions": []
|
|
99
|
+
}
|
|
100
|
+
],
|
|
101
|
+
"conditionKeys": [
|
|
102
|
+
"aws:ResourceTag/${TagKey}",
|
|
103
|
+
"partnercentral:Catalog"
|
|
104
|
+
],
|
|
105
|
+
"dependentActions": []
|
|
106
|
+
},
|
|
107
|
+
"associatebenefitapplicationresource": {
|
|
108
|
+
"name": "AssociateBenefitApplicationResource",
|
|
109
|
+
"description": "Grants permission to associate benefit application resources in AWS Partner Central",
|
|
110
|
+
"accessLevel": "Write",
|
|
111
|
+
"resourceTypes": [
|
|
112
|
+
{
|
|
113
|
+
"name": "BenefitAllocation",
|
|
114
|
+
"required": true,
|
|
115
|
+
"conditionKeys": [],
|
|
116
|
+
"dependentActions": []
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"name": "BenefitApplication",
|
|
120
|
+
"required": true,
|
|
121
|
+
"conditionKeys": [],
|
|
122
|
+
"dependentActions": []
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "Opportunity",
|
|
126
|
+
"required": true,
|
|
127
|
+
"conditionKeys": [],
|
|
128
|
+
"dependentActions": []
|
|
129
|
+
}
|
|
130
|
+
],
|
|
131
|
+
"conditionKeys": [
|
|
132
|
+
"aws:ResourceTag/${TagKey}",
|
|
133
|
+
"partnercentral:Catalog"
|
|
134
|
+
],
|
|
135
|
+
"dependentActions": []
|
|
136
|
+
},
|
|
54
137
|
"associateopportunity": {
|
|
55
138
|
"name": "AssociateOpportunity",
|
|
56
139
|
"description": "Grants permission to associate Opportunities on AWS Partner Central with other entities",
|
|
@@ -69,6 +152,24 @@
|
|
|
69
152
|
],
|
|
70
153
|
"dependentActions": []
|
|
71
154
|
},
|
|
155
|
+
"cancelbenefitapplication": {
|
|
156
|
+
"name": "CancelBenefitApplication",
|
|
157
|
+
"description": "Grants permission to cancel benefit applications in AWS Partner Central",
|
|
158
|
+
"accessLevel": "Write",
|
|
159
|
+
"resourceTypes": [
|
|
160
|
+
{
|
|
161
|
+
"name": "BenefitApplication",
|
|
162
|
+
"required": true,
|
|
163
|
+
"conditionKeys": [],
|
|
164
|
+
"dependentActions": []
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
"conditionKeys": [
|
|
168
|
+
"aws:ResourceTag/${TagKey}",
|
|
169
|
+
"partnercentral:Catalog"
|
|
170
|
+
],
|
|
171
|
+
"dependentActions": []
|
|
172
|
+
},
|
|
72
173
|
"cancelchannelhandshake": {
|
|
73
174
|
"name": "CancelChannelHandshake",
|
|
74
175
|
"description": "Grants permission to cancel channel handshakes in AWS Partner Central",
|
|
@@ -88,6 +189,81 @@
|
|
|
88
189
|
],
|
|
89
190
|
"dependentActions": []
|
|
90
191
|
},
|
|
192
|
+
"cancelconnection": {
|
|
193
|
+
"name": "CancelConnection",
|
|
194
|
+
"description": "Grants permission to cancel connections in AWS Partner Central",
|
|
195
|
+
"accessLevel": "Write",
|
|
196
|
+
"resourceTypes": [
|
|
197
|
+
{
|
|
198
|
+
"name": "Connection",
|
|
199
|
+
"required": true,
|
|
200
|
+
"conditionKeys": [],
|
|
201
|
+
"dependentActions": []
|
|
202
|
+
}
|
|
203
|
+
],
|
|
204
|
+
"conditionKeys": [
|
|
205
|
+
"partnercentral:Catalog"
|
|
206
|
+
],
|
|
207
|
+
"dependentActions": []
|
|
208
|
+
},
|
|
209
|
+
"cancelconnectioninvitation": {
|
|
210
|
+
"name": "CancelConnectionInvitation",
|
|
211
|
+
"description": "Grants permission to cancel connection invitations in AWS Partner Central",
|
|
212
|
+
"accessLevel": "Write",
|
|
213
|
+
"resourceTypes": [
|
|
214
|
+
{
|
|
215
|
+
"name": "ConnectionInvitation",
|
|
216
|
+
"required": true,
|
|
217
|
+
"conditionKeys": [],
|
|
218
|
+
"dependentActions": []
|
|
219
|
+
}
|
|
220
|
+
],
|
|
221
|
+
"conditionKeys": [
|
|
222
|
+
"partnercentral:Catalog"
|
|
223
|
+
],
|
|
224
|
+
"dependentActions": []
|
|
225
|
+
},
|
|
226
|
+
"cancelprofileupdatetask": {
|
|
227
|
+
"name": "CancelProfileUpdateTask",
|
|
228
|
+
"description": "Grants permission to cancel profile update tasks in AWS Partner Central",
|
|
229
|
+
"accessLevel": "Write",
|
|
230
|
+
"resourceTypes": [
|
|
231
|
+
{
|
|
232
|
+
"name": "Partner",
|
|
233
|
+
"required": true,
|
|
234
|
+
"conditionKeys": [],
|
|
235
|
+
"dependentActions": []
|
|
236
|
+
}
|
|
237
|
+
],
|
|
238
|
+
"conditionKeys": [
|
|
239
|
+
"aws:ResourceTag/${TagKey}",
|
|
240
|
+
"partnercentral:Catalog"
|
|
241
|
+
],
|
|
242
|
+
"dependentActions": []
|
|
243
|
+
},
|
|
244
|
+
"createbenefitapplication": {
|
|
245
|
+
"name": "CreateBenefitApplication",
|
|
246
|
+
"description": "Grants permission to create benefit applications in AWS Partner Central",
|
|
247
|
+
"accessLevel": "Write",
|
|
248
|
+
"resourceTypes": [],
|
|
249
|
+
"conditionKeys": [
|
|
250
|
+
"aws:RequestTag/${TagKey}",
|
|
251
|
+
"aws:ResourceTag/${TagKey}",
|
|
252
|
+
"aws:TagKeys",
|
|
253
|
+
"partnercentral:Catalog",
|
|
254
|
+
"partnercentral:FulfillmentTypes"
|
|
255
|
+
],
|
|
256
|
+
"dependentActions": []
|
|
257
|
+
},
|
|
258
|
+
"createbusinessplan": {
|
|
259
|
+
"name": "CreateBusinessPlan",
|
|
260
|
+
"isPermissionOnly": true,
|
|
261
|
+
"description": "Grants permission to create business plans in AWS Partner Central",
|
|
262
|
+
"accessLevel": "Write",
|
|
263
|
+
"resourceTypes": [],
|
|
264
|
+
"conditionKeys": [],
|
|
265
|
+
"dependentActions": []
|
|
266
|
+
},
|
|
91
267
|
"createchannelhandshake": {
|
|
92
268
|
"name": "CreateChannelHandshake",
|
|
93
269
|
"description": "Grants permission to create channel handshakes in AWS Partner Central",
|
|
@@ -115,6 +291,34 @@
|
|
|
115
291
|
],
|
|
116
292
|
"dependentActions": []
|
|
117
293
|
},
|
|
294
|
+
"createcollaborationchannelmembers": {
|
|
295
|
+
"name": "CreateCollaborationChannelMembers",
|
|
296
|
+
"isPermissionOnly": true,
|
|
297
|
+
"description": "Grants permission to create collaboration channel members in AWS Partner Central",
|
|
298
|
+
"accessLevel": "Write",
|
|
299
|
+
"resourceTypes": [],
|
|
300
|
+
"conditionKeys": [],
|
|
301
|
+
"dependentActions": []
|
|
302
|
+
},
|
|
303
|
+
"createcollaborationchannelrequest": {
|
|
304
|
+
"name": "CreateCollaborationChannelRequest",
|
|
305
|
+
"isPermissionOnly": true,
|
|
306
|
+
"description": "Grants permission to create collaboration channel requests in AWS Partner Central",
|
|
307
|
+
"accessLevel": "Write",
|
|
308
|
+
"resourceTypes": [],
|
|
309
|
+
"conditionKeys": [],
|
|
310
|
+
"dependentActions": []
|
|
311
|
+
},
|
|
312
|
+
"createconnectioninvitation": {
|
|
313
|
+
"name": "CreateConnectionInvitation",
|
|
314
|
+
"description": "Grants permission to create connection invitations in AWS Partner Central",
|
|
315
|
+
"accessLevel": "Write",
|
|
316
|
+
"resourceTypes": [],
|
|
317
|
+
"conditionKeys": [
|
|
318
|
+
"partnercentral:Catalog"
|
|
319
|
+
],
|
|
320
|
+
"dependentActions": []
|
|
321
|
+
},
|
|
118
322
|
"createengagement": {
|
|
119
323
|
"name": "CreateEngagement",
|
|
120
324
|
"description": "Grants permission to creating engagements in AWS Partner Central",
|
|
@@ -132,6 +336,23 @@
|
|
|
132
336
|
],
|
|
133
337
|
"dependentActions": []
|
|
134
338
|
},
|
|
339
|
+
"createengagementcontext": {
|
|
340
|
+
"name": "CreateEngagementContext",
|
|
341
|
+
"description": "Grants permission to create engagement contexts in AWS Partner Central",
|
|
342
|
+
"accessLevel": "Write",
|
|
343
|
+
"resourceTypes": [
|
|
344
|
+
{
|
|
345
|
+
"name": "Engagement",
|
|
346
|
+
"required": true,
|
|
347
|
+
"conditionKeys": [],
|
|
348
|
+
"dependentActions": []
|
|
349
|
+
}
|
|
350
|
+
],
|
|
351
|
+
"conditionKeys": [
|
|
352
|
+
"partnercentral:Catalog"
|
|
353
|
+
],
|
|
354
|
+
"dependentActions": []
|
|
355
|
+
},
|
|
135
356
|
"createengagementinvitation": {
|
|
136
357
|
"name": "CreateEngagementInvitation",
|
|
137
358
|
"description": "Grants permission to creating engagement invitations in AWS Partner Central",
|
|
@@ -168,6 +389,19 @@
|
|
|
168
389
|
],
|
|
169
390
|
"dependentActions": []
|
|
170
391
|
},
|
|
392
|
+
"createpartner": {
|
|
393
|
+
"name": "CreatePartner",
|
|
394
|
+
"description": "Grants permission to create partners in AWS Partner Central",
|
|
395
|
+
"accessLevel": "Write",
|
|
396
|
+
"resourceTypes": [],
|
|
397
|
+
"conditionKeys": [
|
|
398
|
+
"aws:RequestTag/${TagKey}",
|
|
399
|
+
"aws:ResourceTag/${TagKey}",
|
|
400
|
+
"aws:TagKeys",
|
|
401
|
+
"partnercentral:Catalog"
|
|
402
|
+
],
|
|
403
|
+
"dependentActions": []
|
|
404
|
+
},
|
|
171
405
|
"createprogrammanagementaccount": {
|
|
172
406
|
"name": "CreateProgramManagementAccount",
|
|
173
407
|
"description": "Grants permission to create program management accounts in AWS Partner Central",
|
|
@@ -290,6 +524,54 @@
|
|
|
290
524
|
],
|
|
291
525
|
"dependentActions": []
|
|
292
526
|
},
|
|
527
|
+
"disassociateawstrainingcertificationemaildomain": {
|
|
528
|
+
"name": "DisassociateAwsTrainingCertificationEmailDomain",
|
|
529
|
+
"description": "Grants permission to disassociate AWS Training and Certification email domains in AWS Partner Central",
|
|
530
|
+
"accessLevel": "Write",
|
|
531
|
+
"resourceTypes": [
|
|
532
|
+
{
|
|
533
|
+
"name": "Partner",
|
|
534
|
+
"required": true,
|
|
535
|
+
"conditionKeys": [],
|
|
536
|
+
"dependentActions": []
|
|
537
|
+
}
|
|
538
|
+
],
|
|
539
|
+
"conditionKeys": [
|
|
540
|
+
"aws:ResourceTag/${TagKey}",
|
|
541
|
+
"partnercentral:Catalog"
|
|
542
|
+
],
|
|
543
|
+
"dependentActions": []
|
|
544
|
+
},
|
|
545
|
+
"disassociatebenefitapplicationresource": {
|
|
546
|
+
"name": "DisassociateBenefitApplicationResource",
|
|
547
|
+
"description": "Grants permission to disassociate benefit application resources in AWS Partner Central",
|
|
548
|
+
"accessLevel": "Write",
|
|
549
|
+
"resourceTypes": [
|
|
550
|
+
{
|
|
551
|
+
"name": "BenefitAllocation",
|
|
552
|
+
"required": true,
|
|
553
|
+
"conditionKeys": [],
|
|
554
|
+
"dependentActions": []
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"name": "BenefitApplication",
|
|
558
|
+
"required": true,
|
|
559
|
+
"conditionKeys": [],
|
|
560
|
+
"dependentActions": []
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"name": "Opportunity",
|
|
564
|
+
"required": true,
|
|
565
|
+
"conditionKeys": [],
|
|
566
|
+
"dependentActions": []
|
|
567
|
+
}
|
|
568
|
+
],
|
|
569
|
+
"conditionKeys": [
|
|
570
|
+
"aws:ResourceTag/${TagKey}",
|
|
571
|
+
"partnercentral:Catalog"
|
|
572
|
+
],
|
|
573
|
+
"dependentActions": []
|
|
574
|
+
},
|
|
293
575
|
"disassociateopportunity": {
|
|
294
576
|
"name": "DisassociateOpportunity",
|
|
295
577
|
"description": "Grants permission to disassociate Opportunities on AWS Partner Central from other entities",
|
|
@@ -308,6 +590,33 @@
|
|
|
308
590
|
],
|
|
309
591
|
"dependentActions": []
|
|
310
592
|
},
|
|
593
|
+
"enrollinpartnerpath": {
|
|
594
|
+
"name": "EnrollInPartnerPath",
|
|
595
|
+
"isPermissionOnly": true,
|
|
596
|
+
"description": "Grants permission to enroll in partner paths in AWS Partner Central",
|
|
597
|
+
"accessLevel": "Write",
|
|
598
|
+
"resourceTypes": [],
|
|
599
|
+
"conditionKeys": [],
|
|
600
|
+
"dependentActions": []
|
|
601
|
+
},
|
|
602
|
+
"getallianceleadcontact": {
|
|
603
|
+
"name": "GetAllianceLeadContact",
|
|
604
|
+
"description": "Grants permission to retrieve alliance lead contact information in AWS Partner Central",
|
|
605
|
+
"accessLevel": "Read",
|
|
606
|
+
"resourceTypes": [
|
|
607
|
+
{
|
|
608
|
+
"name": "Partner",
|
|
609
|
+
"required": true,
|
|
610
|
+
"conditionKeys": [],
|
|
611
|
+
"dependentActions": []
|
|
612
|
+
}
|
|
613
|
+
],
|
|
614
|
+
"conditionKeys": [
|
|
615
|
+
"aws:ResourceTag/${TagKey}",
|
|
616
|
+
"partnercentral:Catalog"
|
|
617
|
+
],
|
|
618
|
+
"dependentActions": []
|
|
619
|
+
},
|
|
311
620
|
"getawsopportunitysummary": {
|
|
312
621
|
"name": "GetAwsOpportunitySummary",
|
|
313
622
|
"description": "Grants permission to retrieve AWS Opportunity Summaries for Opportunities on AWS Partner Central",
|
|
@@ -325,6 +634,122 @@
|
|
|
325
634
|
],
|
|
326
635
|
"dependentActions": []
|
|
327
636
|
},
|
|
637
|
+
"getbenefit": {
|
|
638
|
+
"name": "GetBenefit",
|
|
639
|
+
"description": "Grants permission to retrieve benefit details in AWS Partner Central",
|
|
640
|
+
"accessLevel": "Read",
|
|
641
|
+
"resourceTypes": [
|
|
642
|
+
{
|
|
643
|
+
"name": "Benefit",
|
|
644
|
+
"required": true,
|
|
645
|
+
"conditionKeys": [],
|
|
646
|
+
"dependentActions": []
|
|
647
|
+
}
|
|
648
|
+
],
|
|
649
|
+
"conditionKeys": [
|
|
650
|
+
"aws:ResourceTag/${TagKey}",
|
|
651
|
+
"partnercentral:Catalog"
|
|
652
|
+
],
|
|
653
|
+
"dependentActions": []
|
|
654
|
+
},
|
|
655
|
+
"getbenefitallocation": {
|
|
656
|
+
"name": "GetBenefitAllocation",
|
|
657
|
+
"description": "Grants permission to retrieve benefit allocation details in AWS Partner Central",
|
|
658
|
+
"accessLevel": "Read",
|
|
659
|
+
"resourceTypes": [
|
|
660
|
+
{
|
|
661
|
+
"name": "BenefitAllocation",
|
|
662
|
+
"required": true,
|
|
663
|
+
"conditionKeys": [],
|
|
664
|
+
"dependentActions": []
|
|
665
|
+
}
|
|
666
|
+
],
|
|
667
|
+
"conditionKeys": [
|
|
668
|
+
"aws:ResourceTag/${TagKey}",
|
|
669
|
+
"partnercentral:Catalog"
|
|
670
|
+
],
|
|
671
|
+
"dependentActions": []
|
|
672
|
+
},
|
|
673
|
+
"getbenefitapplication": {
|
|
674
|
+
"name": "GetBenefitApplication",
|
|
675
|
+
"description": "Grants permission to retrieve benefit application details in AWS Partner Central",
|
|
676
|
+
"accessLevel": "Read",
|
|
677
|
+
"resourceTypes": [
|
|
678
|
+
{
|
|
679
|
+
"name": "BenefitApplication",
|
|
680
|
+
"required": true,
|
|
681
|
+
"conditionKeys": [],
|
|
682
|
+
"dependentActions": []
|
|
683
|
+
}
|
|
684
|
+
],
|
|
685
|
+
"conditionKeys": [
|
|
686
|
+
"aws:ResourceTag/${TagKey}",
|
|
687
|
+
"partnercentral:Catalog"
|
|
688
|
+
],
|
|
689
|
+
"dependentActions": []
|
|
690
|
+
},
|
|
691
|
+
"getbusinessplan": {
|
|
692
|
+
"name": "GetBusinessPlan",
|
|
693
|
+
"isPermissionOnly": true,
|
|
694
|
+
"description": "Grants permission to retrieve business plan details in AWS Partner Central",
|
|
695
|
+
"accessLevel": "Read",
|
|
696
|
+
"resourceTypes": [],
|
|
697
|
+
"conditionKeys": [],
|
|
698
|
+
"dependentActions": []
|
|
699
|
+
},
|
|
700
|
+
"getcollaborationchannel": {
|
|
701
|
+
"name": "GetCollaborationChannel",
|
|
702
|
+
"isPermissionOnly": true,
|
|
703
|
+
"description": "Grants permission to retrieve collaboration channel details in AWS Partner Central",
|
|
704
|
+
"accessLevel": "Read",
|
|
705
|
+
"resourceTypes": [],
|
|
706
|
+
"conditionKeys": [],
|
|
707
|
+
"dependentActions": []
|
|
708
|
+
},
|
|
709
|
+
"getconnection": {
|
|
710
|
+
"name": "GetConnection",
|
|
711
|
+
"description": "Grants permission to retrieve connection details in AWS Partner Central",
|
|
712
|
+
"accessLevel": "Read",
|
|
713
|
+
"resourceTypes": [
|
|
714
|
+
{
|
|
715
|
+
"name": "Connection",
|
|
716
|
+
"required": true,
|
|
717
|
+
"conditionKeys": [],
|
|
718
|
+
"dependentActions": []
|
|
719
|
+
}
|
|
720
|
+
],
|
|
721
|
+
"conditionKeys": [
|
|
722
|
+
"partnercentral:Catalog"
|
|
723
|
+
],
|
|
724
|
+
"dependentActions": []
|
|
725
|
+
},
|
|
726
|
+
"getconnectioninvitation": {
|
|
727
|
+
"name": "GetConnectionInvitation",
|
|
728
|
+
"description": "Grants permission to retrieve connection invitation details in AWS Partner Central",
|
|
729
|
+
"accessLevel": "Read",
|
|
730
|
+
"resourceTypes": [
|
|
731
|
+
{
|
|
732
|
+
"name": "ConnectionInvitation",
|
|
733
|
+
"required": true,
|
|
734
|
+
"conditionKeys": [],
|
|
735
|
+
"dependentActions": []
|
|
736
|
+
}
|
|
737
|
+
],
|
|
738
|
+
"conditionKeys": [
|
|
739
|
+
"partnercentral:Catalog"
|
|
740
|
+
],
|
|
741
|
+
"dependentActions": []
|
|
742
|
+
},
|
|
743
|
+
"getconnectionpreferences": {
|
|
744
|
+
"name": "GetConnectionPreferences",
|
|
745
|
+
"description": "Grants permission to retrieve connection preferences in AWS Partner Central",
|
|
746
|
+
"accessLevel": "Read",
|
|
747
|
+
"resourceTypes": [],
|
|
748
|
+
"conditionKeys": [
|
|
749
|
+
"partnercentral:Catalog"
|
|
750
|
+
],
|
|
751
|
+
"dependentActions": []
|
|
752
|
+
},
|
|
328
753
|
"getengagement": {
|
|
329
754
|
"name": "GetEngagement",
|
|
330
755
|
"description": "Grants permission to retrieval of engagement details in AWS Partner Central",
|
|
@@ -376,6 +801,86 @@
|
|
|
376
801
|
],
|
|
377
802
|
"dependentActions": []
|
|
378
803
|
},
|
|
804
|
+
"getpartner": {
|
|
805
|
+
"name": "GetPartner",
|
|
806
|
+
"description": "Grants permission to retrieve partner details in AWS Partner Central",
|
|
807
|
+
"accessLevel": "Read",
|
|
808
|
+
"resourceTypes": [
|
|
809
|
+
{
|
|
810
|
+
"name": "Partner",
|
|
811
|
+
"required": true,
|
|
812
|
+
"conditionKeys": [],
|
|
813
|
+
"dependentActions": []
|
|
814
|
+
}
|
|
815
|
+
],
|
|
816
|
+
"conditionKeys": [
|
|
817
|
+
"aws:ResourceTag/${TagKey}",
|
|
818
|
+
"partnercentral:Catalog"
|
|
819
|
+
],
|
|
820
|
+
"dependentActions": []
|
|
821
|
+
},
|
|
822
|
+
"getpartnerdashboard": {
|
|
823
|
+
"name": "GetPartnerDashboard",
|
|
824
|
+
"description": "Grants permission to retrieve partner dashboard information in AWS Partner Central",
|
|
825
|
+
"accessLevel": "Read",
|
|
826
|
+
"resourceTypes": [
|
|
827
|
+
{
|
|
828
|
+
"name": "Dashboard",
|
|
829
|
+
"required": true,
|
|
830
|
+
"conditionKeys": [],
|
|
831
|
+
"dependentActions": []
|
|
832
|
+
}
|
|
833
|
+
],
|
|
834
|
+
"conditionKeys": [
|
|
835
|
+
"partnercentral:Catalog"
|
|
836
|
+
],
|
|
837
|
+
"dependentActions": []
|
|
838
|
+
},
|
|
839
|
+
"getpartnerprofile": {
|
|
840
|
+
"name": "GetPartnerProfile",
|
|
841
|
+
"isPermissionOnly": true,
|
|
842
|
+
"description": "Grants permission to retrieve public partner profile details in AWS Partner Central",
|
|
843
|
+
"accessLevel": "Read",
|
|
844
|
+
"resourceTypes": [],
|
|
845
|
+
"conditionKeys": [],
|
|
846
|
+
"dependentActions": []
|
|
847
|
+
},
|
|
848
|
+
"getprofileupdatetask": {
|
|
849
|
+
"name": "GetProfileUpdateTask",
|
|
850
|
+
"description": "Grants permission to retrieve profile update task details in AWS Partner Central",
|
|
851
|
+
"accessLevel": "Read",
|
|
852
|
+
"resourceTypes": [
|
|
853
|
+
{
|
|
854
|
+
"name": "Partner",
|
|
855
|
+
"required": true,
|
|
856
|
+
"conditionKeys": [],
|
|
857
|
+
"dependentActions": []
|
|
858
|
+
}
|
|
859
|
+
],
|
|
860
|
+
"conditionKeys": [
|
|
861
|
+
"aws:ResourceTag/${TagKey}",
|
|
862
|
+
"partnercentral:Catalog"
|
|
863
|
+
],
|
|
864
|
+
"dependentActions": []
|
|
865
|
+
},
|
|
866
|
+
"getprofilevisibility": {
|
|
867
|
+
"name": "GetProfileVisibility",
|
|
868
|
+
"description": "Grants permission to retrieve profile visibility settings in AWS Partner Central",
|
|
869
|
+
"accessLevel": "Read",
|
|
870
|
+
"resourceTypes": [
|
|
871
|
+
{
|
|
872
|
+
"name": "Partner",
|
|
873
|
+
"required": true,
|
|
874
|
+
"conditionKeys": [],
|
|
875
|
+
"dependentActions": []
|
|
876
|
+
}
|
|
877
|
+
],
|
|
878
|
+
"conditionKeys": [
|
|
879
|
+
"aws:ResourceTag/${TagKey}",
|
|
880
|
+
"partnercentral:Catalog"
|
|
881
|
+
],
|
|
882
|
+
"dependentActions": []
|
|
883
|
+
},
|
|
379
884
|
"getprogrammanagementaccount": {
|
|
380
885
|
"name": "GetProgramManagementAccount",
|
|
381
886
|
"isPermissionOnly": true,
|
|
@@ -393,60 +898,136 @@
|
|
|
393
898
|
"accessLevel": "Read",
|
|
394
899
|
"resourceTypes": [
|
|
395
900
|
{
|
|
396
|
-
"name": "Relationship",
|
|
901
|
+
"name": "Relationship",
|
|
902
|
+
"required": true,
|
|
903
|
+
"conditionKeys": [],
|
|
904
|
+
"dependentActions": []
|
|
905
|
+
}
|
|
906
|
+
],
|
|
907
|
+
"conditionKeys": [
|
|
908
|
+
"aws:ResourceTag/${TagKey}",
|
|
909
|
+
"partnercentral:Catalog"
|
|
910
|
+
],
|
|
911
|
+
"dependentActions": []
|
|
912
|
+
},
|
|
913
|
+
"getresourcesnapshot": {
|
|
914
|
+
"name": "GetResourceSnapshot",
|
|
915
|
+
"description": "Grants permission to retrieving resource snapshot details in AWS Partner Central",
|
|
916
|
+
"accessLevel": "Read",
|
|
917
|
+
"resourceTypes": [
|
|
918
|
+
{
|
|
919
|
+
"name": "ResourceSnapshot",
|
|
920
|
+
"required": true,
|
|
921
|
+
"conditionKeys": [],
|
|
922
|
+
"dependentActions": []
|
|
923
|
+
}
|
|
924
|
+
],
|
|
925
|
+
"conditionKeys": [
|
|
926
|
+
"partnercentral:Catalog"
|
|
927
|
+
],
|
|
928
|
+
"dependentActions": []
|
|
929
|
+
},
|
|
930
|
+
"getresourcesnapshotjob": {
|
|
931
|
+
"name": "GetResourceSnapshotJob",
|
|
932
|
+
"description": "Grants permission to retrieving resource snapshot job details in AWS Partner Central",
|
|
933
|
+
"accessLevel": "Read",
|
|
934
|
+
"resourceTypes": [
|
|
935
|
+
{
|
|
936
|
+
"name": "resource-snapshot-job",
|
|
937
|
+
"required": true,
|
|
938
|
+
"conditionKeys": [],
|
|
939
|
+
"dependentActions": []
|
|
940
|
+
}
|
|
941
|
+
],
|
|
942
|
+
"conditionKeys": [
|
|
943
|
+
"partnercentral:Catalog"
|
|
944
|
+
],
|
|
945
|
+
"dependentActions": []
|
|
946
|
+
},
|
|
947
|
+
"getsellingsystemsettings": {
|
|
948
|
+
"name": "GetSellingSystemSettings",
|
|
949
|
+
"description": "Grants permission to retrieving selling system settings in AWS Partner Central",
|
|
950
|
+
"accessLevel": "Read",
|
|
951
|
+
"resourceTypes": [],
|
|
952
|
+
"conditionKeys": [
|
|
953
|
+
"partnercentral:Catalog"
|
|
954
|
+
],
|
|
955
|
+
"dependentActions": []
|
|
956
|
+
},
|
|
957
|
+
"getverification": {
|
|
958
|
+
"name": "GetVerification",
|
|
959
|
+
"description": "Grants permission to retrieve verification details in AWS Partner Central",
|
|
960
|
+
"accessLevel": "Read",
|
|
961
|
+
"resourceTypes": [],
|
|
962
|
+
"conditionKeys": [
|
|
963
|
+
"partnercentral:Catalog",
|
|
964
|
+
"partnercentral:VerificationType"
|
|
965
|
+
],
|
|
966
|
+
"dependentActions": []
|
|
967
|
+
},
|
|
968
|
+
"listbenefitallocations": {
|
|
969
|
+
"name": "ListBenefitAllocations",
|
|
970
|
+
"description": "Grants permission to list benefit allocations in AWS Partner Central",
|
|
971
|
+
"accessLevel": "List",
|
|
972
|
+
"resourceTypes": [
|
|
973
|
+
{
|
|
974
|
+
"name": "BenefitAllocation",
|
|
397
975
|
"required": true,
|
|
398
976
|
"conditionKeys": [],
|
|
399
977
|
"dependentActions": []
|
|
400
978
|
}
|
|
401
979
|
],
|
|
402
980
|
"conditionKeys": [
|
|
403
|
-
"
|
|
404
|
-
"partnercentral:
|
|
981
|
+
"partnercentral:Catalog",
|
|
982
|
+
"partnercentral:FulfillmentTypes"
|
|
405
983
|
],
|
|
406
984
|
"dependentActions": []
|
|
407
985
|
},
|
|
408
|
-
"
|
|
409
|
-
"name": "
|
|
410
|
-
"description": "Grants permission to
|
|
411
|
-
"accessLevel": "
|
|
986
|
+
"listbenefitapplications": {
|
|
987
|
+
"name": "ListBenefitApplications",
|
|
988
|
+
"description": "Grants permission to list benefit applications in AWS Partner Central",
|
|
989
|
+
"accessLevel": "List",
|
|
412
990
|
"resourceTypes": [
|
|
413
991
|
{
|
|
414
|
-
"name": "
|
|
992
|
+
"name": "BenefitApplication",
|
|
415
993
|
"required": true,
|
|
416
994
|
"conditionKeys": [],
|
|
417
995
|
"dependentActions": []
|
|
418
996
|
}
|
|
419
997
|
],
|
|
420
998
|
"conditionKeys": [
|
|
421
|
-
"partnercentral:Catalog"
|
|
999
|
+
"partnercentral:Catalog",
|
|
1000
|
+
"partnercentral:FulfillmentTypes",
|
|
1001
|
+
"partnercentral:Programs"
|
|
422
1002
|
],
|
|
423
1003
|
"dependentActions": []
|
|
424
1004
|
},
|
|
425
|
-
"
|
|
426
|
-
"name": "
|
|
427
|
-
"description": "Grants permission to
|
|
428
|
-
"accessLevel": "
|
|
1005
|
+
"listbenefits": {
|
|
1006
|
+
"name": "ListBenefits",
|
|
1007
|
+
"description": "Grants permission to list benefits in AWS Partner Central",
|
|
1008
|
+
"accessLevel": "List",
|
|
429
1009
|
"resourceTypes": [
|
|
430
1010
|
{
|
|
431
|
-
"name": "
|
|
1011
|
+
"name": "Benefit",
|
|
432
1012
|
"required": true,
|
|
433
1013
|
"conditionKeys": [],
|
|
434
1014
|
"dependentActions": []
|
|
435
1015
|
}
|
|
436
1016
|
],
|
|
437
1017
|
"conditionKeys": [
|
|
438
|
-
"partnercentral:Catalog"
|
|
1018
|
+
"partnercentral:Catalog",
|
|
1019
|
+
"partnercentral:FulfillmentTypes",
|
|
1020
|
+
"partnercentral:Programs"
|
|
439
1021
|
],
|
|
440
1022
|
"dependentActions": []
|
|
441
1023
|
},
|
|
442
|
-
"
|
|
443
|
-
"name": "
|
|
444
|
-
"
|
|
445
|
-
"
|
|
1024
|
+
"listbusinessplans": {
|
|
1025
|
+
"name": "ListBusinessPlans",
|
|
1026
|
+
"isPermissionOnly": true,
|
|
1027
|
+
"description": "Grants permission to list business plans in AWS Partner Central",
|
|
1028
|
+
"accessLevel": "List",
|
|
446
1029
|
"resourceTypes": [],
|
|
447
|
-
"conditionKeys": [
|
|
448
|
-
"partnercentral:Catalog"
|
|
449
|
-
],
|
|
1030
|
+
"conditionKeys": [],
|
|
450
1031
|
"dependentActions": []
|
|
451
1032
|
},
|
|
452
1033
|
"listchannelhandshakes": {
|
|
@@ -467,6 +1048,35 @@
|
|
|
467
1048
|
],
|
|
468
1049
|
"dependentActions": []
|
|
469
1050
|
},
|
|
1051
|
+
"listcollaborationchannels": {
|
|
1052
|
+
"name": "ListCollaborationChannels",
|
|
1053
|
+
"isPermissionOnly": true,
|
|
1054
|
+
"description": "Grants permission to list collaboration channels in AWS Partner Central",
|
|
1055
|
+
"accessLevel": "List",
|
|
1056
|
+
"resourceTypes": [],
|
|
1057
|
+
"conditionKeys": [],
|
|
1058
|
+
"dependentActions": []
|
|
1059
|
+
},
|
|
1060
|
+
"listconnectioninvitations": {
|
|
1061
|
+
"name": "ListConnectionInvitations",
|
|
1062
|
+
"description": "Grants permission to list connection invitations in AWS Partner Central",
|
|
1063
|
+
"accessLevel": "List",
|
|
1064
|
+
"resourceTypes": [],
|
|
1065
|
+
"conditionKeys": [
|
|
1066
|
+
"partnercentral:Catalog"
|
|
1067
|
+
],
|
|
1068
|
+
"dependentActions": []
|
|
1069
|
+
},
|
|
1070
|
+
"listconnections": {
|
|
1071
|
+
"name": "ListConnections",
|
|
1072
|
+
"description": "Grants permission to list connections in AWS Partner Central",
|
|
1073
|
+
"accessLevel": "List",
|
|
1074
|
+
"resourceTypes": [],
|
|
1075
|
+
"conditionKeys": [
|
|
1076
|
+
"partnercentral:Catalog"
|
|
1077
|
+
],
|
|
1078
|
+
"dependentActions": []
|
|
1079
|
+
},
|
|
470
1080
|
"listengagementbyacceptinginvitationtasks": {
|
|
471
1081
|
"name": "ListEngagementByAcceptingInvitationTasks",
|
|
472
1082
|
"description": "Grants permission to listing engagements by accepting invitation tasks in AWS Partner\nCentral",
|
|
@@ -551,6 +1161,35 @@
|
|
|
551
1161
|
],
|
|
552
1162
|
"dependentActions": []
|
|
553
1163
|
},
|
|
1164
|
+
"listopportunityfromengagementtasks": {
|
|
1165
|
+
"name": "ListOpportunityFromEngagementTasks",
|
|
1166
|
+
"description": "Grants permission to list opportunity from engagement tasks in AWS Partner Central",
|
|
1167
|
+
"accessLevel": "List",
|
|
1168
|
+
"resourceTypes": [],
|
|
1169
|
+
"conditionKeys": [
|
|
1170
|
+
"partnercentral:Catalog"
|
|
1171
|
+
],
|
|
1172
|
+
"dependentActions": []
|
|
1173
|
+
},
|
|
1174
|
+
"listpartnerpaths": {
|
|
1175
|
+
"name": "ListPartnerPaths",
|
|
1176
|
+
"isPermissionOnly": true,
|
|
1177
|
+
"description": "Grants permission to list partner paths in AWS Partner Central",
|
|
1178
|
+
"accessLevel": "List",
|
|
1179
|
+
"resourceTypes": [],
|
|
1180
|
+
"conditionKeys": [],
|
|
1181
|
+
"dependentActions": []
|
|
1182
|
+
},
|
|
1183
|
+
"listpartners": {
|
|
1184
|
+
"name": "ListPartners",
|
|
1185
|
+
"description": "Grants permission to list partners in AWS Partner Central",
|
|
1186
|
+
"accessLevel": "List",
|
|
1187
|
+
"resourceTypes": [],
|
|
1188
|
+
"conditionKeys": [
|
|
1189
|
+
"partnercentral:Catalog"
|
|
1190
|
+
],
|
|
1191
|
+
"dependentActions": []
|
|
1192
|
+
},
|
|
554
1193
|
"listprogrammanagementaccounts": {
|
|
555
1194
|
"name": "ListProgramManagementAccounts",
|
|
556
1195
|
"description": "Grants permission to list program management accounts in AWS Partner Central",
|
|
@@ -634,6 +1273,51 @@
|
|
|
634
1273
|
],
|
|
635
1274
|
"dependentActions": []
|
|
636
1275
|
},
|
|
1276
|
+
"putallianceleadcontact": {
|
|
1277
|
+
"name": "PutAllianceLeadContact",
|
|
1278
|
+
"description": "Grants permission to set alliance lead contact information in AWS Partner Central",
|
|
1279
|
+
"accessLevel": "Write",
|
|
1280
|
+
"resourceTypes": [
|
|
1281
|
+
{
|
|
1282
|
+
"name": "Partner",
|
|
1283
|
+
"required": true,
|
|
1284
|
+
"conditionKeys": [],
|
|
1285
|
+
"dependentActions": []
|
|
1286
|
+
}
|
|
1287
|
+
],
|
|
1288
|
+
"conditionKeys": [
|
|
1289
|
+
"aws:ResourceTag/${TagKey}",
|
|
1290
|
+
"partnercentral:Catalog"
|
|
1291
|
+
],
|
|
1292
|
+
"dependentActions": []
|
|
1293
|
+
},
|
|
1294
|
+
"putbusinessplan": {
|
|
1295
|
+
"name": "PutBusinessPlan",
|
|
1296
|
+
"isPermissionOnly": true,
|
|
1297
|
+
"description": "Grants permission to update business plans in AWS Partner Central",
|
|
1298
|
+
"accessLevel": "Write",
|
|
1299
|
+
"resourceTypes": [],
|
|
1300
|
+
"conditionKeys": [],
|
|
1301
|
+
"dependentActions": []
|
|
1302
|
+
},
|
|
1303
|
+
"putprofilevisibility": {
|
|
1304
|
+
"name": "PutProfileVisibility",
|
|
1305
|
+
"description": "Grants permission to set profile visibility in AWS Partner Central",
|
|
1306
|
+
"accessLevel": "Write",
|
|
1307
|
+
"resourceTypes": [
|
|
1308
|
+
{
|
|
1309
|
+
"name": "Partner",
|
|
1310
|
+
"required": true,
|
|
1311
|
+
"conditionKeys": [],
|
|
1312
|
+
"dependentActions": []
|
|
1313
|
+
}
|
|
1314
|
+
],
|
|
1315
|
+
"conditionKeys": [
|
|
1316
|
+
"aws:ResourceTag/${TagKey}",
|
|
1317
|
+
"partnercentral:Catalog"
|
|
1318
|
+
],
|
|
1319
|
+
"dependentActions": []
|
|
1320
|
+
},
|
|
637
1321
|
"putsellingsystemsettings": {
|
|
638
1322
|
"name": "PutSellingSystemSettings",
|
|
639
1323
|
"description": "Grants permission to put selling system settings in AWS Partner Central",
|
|
@@ -642,6 +1326,24 @@
|
|
|
642
1326
|
"conditionKeys": [],
|
|
643
1327
|
"dependentActions": []
|
|
644
1328
|
},
|
|
1329
|
+
"recallbenefitapplication": {
|
|
1330
|
+
"name": "RecallBenefitApplication",
|
|
1331
|
+
"description": "Grants permission to recall benefit applications in AWS Partner Central",
|
|
1332
|
+
"accessLevel": "Write",
|
|
1333
|
+
"resourceTypes": [
|
|
1334
|
+
{
|
|
1335
|
+
"name": "BenefitApplication",
|
|
1336
|
+
"required": true,
|
|
1337
|
+
"conditionKeys": [],
|
|
1338
|
+
"dependentActions": []
|
|
1339
|
+
}
|
|
1340
|
+
],
|
|
1341
|
+
"conditionKeys": [
|
|
1342
|
+
"aws:ResourceTag/${TagKey}",
|
|
1343
|
+
"partnercentral:Catalog"
|
|
1344
|
+
],
|
|
1345
|
+
"dependentActions": []
|
|
1346
|
+
},
|
|
645
1347
|
"rejectchannelhandshake": {
|
|
646
1348
|
"name": "RejectChannelHandshake",
|
|
647
1349
|
"description": "Grants permission to reject channel handshakes in AWS Partner Central",
|
|
@@ -660,6 +1362,23 @@
|
|
|
660
1362
|
],
|
|
661
1363
|
"dependentActions": []
|
|
662
1364
|
},
|
|
1365
|
+
"rejectconnectioninvitation": {
|
|
1366
|
+
"name": "RejectConnectionInvitation",
|
|
1367
|
+
"description": "Grants permission to reject connection invitations in AWS Partner Central",
|
|
1368
|
+
"accessLevel": "Write",
|
|
1369
|
+
"resourceTypes": [
|
|
1370
|
+
{
|
|
1371
|
+
"name": "ConnectionInvitation",
|
|
1372
|
+
"required": true,
|
|
1373
|
+
"conditionKeys": [],
|
|
1374
|
+
"dependentActions": []
|
|
1375
|
+
}
|
|
1376
|
+
],
|
|
1377
|
+
"conditionKeys": [
|
|
1378
|
+
"partnercentral:Catalog"
|
|
1379
|
+
],
|
|
1380
|
+
"dependentActions": []
|
|
1381
|
+
},
|
|
663
1382
|
"rejectengagementinvitation": {
|
|
664
1383
|
"name": "RejectEngagementInvitation",
|
|
665
1384
|
"description": "Grants permission to reject Engagement Invitations on AWS Partner Central",
|
|
@@ -677,6 +1396,25 @@
|
|
|
677
1396
|
],
|
|
678
1397
|
"dependentActions": []
|
|
679
1398
|
},
|
|
1399
|
+
"searchpartnerprofiles": {
|
|
1400
|
+
"name": "SearchPartnerProfiles",
|
|
1401
|
+
"isPermissionOnly": true,
|
|
1402
|
+
"description": "Grants permission to search public partner profiles in AWS Partner Central",
|
|
1403
|
+
"accessLevel": "List",
|
|
1404
|
+
"resourceTypes": [],
|
|
1405
|
+
"conditionKeys": [],
|
|
1406
|
+
"dependentActions": []
|
|
1407
|
+
},
|
|
1408
|
+
"sendemailverificationcode": {
|
|
1409
|
+
"name": "SendEmailVerificationCode",
|
|
1410
|
+
"description": "Grants permission to send email verification codes in AWS Partner Central",
|
|
1411
|
+
"accessLevel": "Write",
|
|
1412
|
+
"resourceTypes": [],
|
|
1413
|
+
"conditionKeys": [
|
|
1414
|
+
"partnercentral:Catalog"
|
|
1415
|
+
],
|
|
1416
|
+
"dependentActions": []
|
|
1417
|
+
},
|
|
680
1418
|
"startengagementbyacceptinginvitationtask": {
|
|
681
1419
|
"name": "StartEngagementByAcceptingInvitationTask",
|
|
682
1420
|
"description": "Grants permission to initiate tasks that start Engagements on AWS Partner Central by accepting an Engagement Invitation",
|
|
@@ -731,6 +1469,51 @@
|
|
|
731
1469
|
],
|
|
732
1470
|
"dependentActions": []
|
|
733
1471
|
},
|
|
1472
|
+
"startopportunityfromengagementtask": {
|
|
1473
|
+
"name": "StartOpportunityFromEngagementTask",
|
|
1474
|
+
"description": "Grants permission to initiate tasks that start Opportunities from Engagements on AWS Partner Central",
|
|
1475
|
+
"accessLevel": "Write",
|
|
1476
|
+
"resourceTypes": [
|
|
1477
|
+
{
|
|
1478
|
+
"name": "OpportunityFromEngagementTask",
|
|
1479
|
+
"required": true,
|
|
1480
|
+
"conditionKeys": [],
|
|
1481
|
+
"dependentActions": [
|
|
1482
|
+
"partnercentral:CreateEngagementContext",
|
|
1483
|
+
"partnercentral:CreateOpportunity",
|
|
1484
|
+
"partnercentral:CreateResourceSnapshot",
|
|
1485
|
+
"partnercentral:CreateResourceSnapshotJob",
|
|
1486
|
+
"partnercentral:GetEngagement",
|
|
1487
|
+
"partnercentral:StartResourceSnapshotJob"
|
|
1488
|
+
]
|
|
1489
|
+
}
|
|
1490
|
+
],
|
|
1491
|
+
"conditionKeys": [
|
|
1492
|
+
"aws:RequestTag/${TagKey}",
|
|
1493
|
+
"aws:ResourceTag/${TagKey}",
|
|
1494
|
+
"aws:TagKeys",
|
|
1495
|
+
"partnercentral:Catalog"
|
|
1496
|
+
],
|
|
1497
|
+
"dependentActions": []
|
|
1498
|
+
},
|
|
1499
|
+
"startprofileupdatetask": {
|
|
1500
|
+
"name": "StartProfileUpdateTask",
|
|
1501
|
+
"description": "Grants permission to start profile update tasks in AWS Partner Central",
|
|
1502
|
+
"accessLevel": "Write",
|
|
1503
|
+
"resourceTypes": [
|
|
1504
|
+
{
|
|
1505
|
+
"name": "Partner",
|
|
1506
|
+
"required": true,
|
|
1507
|
+
"conditionKeys": [],
|
|
1508
|
+
"dependentActions": []
|
|
1509
|
+
}
|
|
1510
|
+
],
|
|
1511
|
+
"conditionKeys": [
|
|
1512
|
+
"aws:ResourceTag/${TagKey}",
|
|
1513
|
+
"partnercentral:Catalog"
|
|
1514
|
+
],
|
|
1515
|
+
"dependentActions": []
|
|
1516
|
+
},
|
|
734
1517
|
"startresourcesnapshotjob": {
|
|
735
1518
|
"name": "StartResourceSnapshotJob",
|
|
736
1519
|
"description": "Grants permission to starting resource snapshot jobs in AWS Partner Central",
|
|
@@ -748,6 +1531,17 @@
|
|
|
748
1531
|
],
|
|
749
1532
|
"dependentActions": []
|
|
750
1533
|
},
|
|
1534
|
+
"startverification": {
|
|
1535
|
+
"name": "StartVerification",
|
|
1536
|
+
"description": "Grants permission to start verification processes in AWS Partner Central",
|
|
1537
|
+
"accessLevel": "Write",
|
|
1538
|
+
"resourceTypes": [],
|
|
1539
|
+
"conditionKeys": [
|
|
1540
|
+
"partnercentral:Catalog",
|
|
1541
|
+
"partnercentral:VerificationType"
|
|
1542
|
+
],
|
|
1543
|
+
"dependentActions": []
|
|
1544
|
+
},
|
|
751
1545
|
"stopresourcesnapshotjob": {
|
|
752
1546
|
"name": "StopResourceSnapshotJob",
|
|
753
1547
|
"description": "Grants permission to stopping resource snapshot jobs in AWS Partner Central",
|
|
@@ -765,6 +1559,24 @@
|
|
|
765
1559
|
],
|
|
766
1560
|
"dependentActions": []
|
|
767
1561
|
},
|
|
1562
|
+
"submitbenefitapplication": {
|
|
1563
|
+
"name": "SubmitBenefitApplication",
|
|
1564
|
+
"description": "Grants permission to submit benefit applications in AWS Partner Central",
|
|
1565
|
+
"accessLevel": "Write",
|
|
1566
|
+
"resourceTypes": [
|
|
1567
|
+
{
|
|
1568
|
+
"name": "BenefitApplication",
|
|
1569
|
+
"required": true,
|
|
1570
|
+
"conditionKeys": [],
|
|
1571
|
+
"dependentActions": []
|
|
1572
|
+
}
|
|
1573
|
+
],
|
|
1574
|
+
"conditionKeys": [
|
|
1575
|
+
"aws:ResourceTag/${TagKey}",
|
|
1576
|
+
"partnercentral:Catalog"
|
|
1577
|
+
],
|
|
1578
|
+
"dependentActions": []
|
|
1579
|
+
},
|
|
768
1580
|
"submitopportunity": {
|
|
769
1581
|
"name": "SubmitOpportunity",
|
|
770
1582
|
"description": "Grants permission to submit Opportunities on AWS Partner Central",
|
|
@@ -787,6 +1599,12 @@
|
|
|
787
1599
|
"description": "Grants permission to add new tags to a resource. Supported resource: ResourceSnapshotJob",
|
|
788
1600
|
"accessLevel": "Tagging",
|
|
789
1601
|
"resourceTypes": [
|
|
1602
|
+
{
|
|
1603
|
+
"name": "BenefitApplication",
|
|
1604
|
+
"required": false,
|
|
1605
|
+
"conditionKeys": [],
|
|
1606
|
+
"dependentActions": []
|
|
1607
|
+
},
|
|
790
1608
|
{
|
|
791
1609
|
"name": "ChannelHandshake",
|
|
792
1610
|
"required": false,
|
|
@@ -799,6 +1617,12 @@
|
|
|
799
1617
|
"conditionKeys": [],
|
|
800
1618
|
"dependentActions": []
|
|
801
1619
|
},
|
|
1620
|
+
{
|
|
1621
|
+
"name": "Partner",
|
|
1622
|
+
"required": false,
|
|
1623
|
+
"conditionKeys": [],
|
|
1624
|
+
"dependentActions": []
|
|
1625
|
+
},
|
|
802
1626
|
{
|
|
803
1627
|
"name": "ProgramManagementAccount",
|
|
804
1628
|
"required": false,
|
|
@@ -831,6 +1655,12 @@
|
|
|
831
1655
|
"description": "Grants permission to remove tags from a resource. Supported resource: ResourceSnapshotJob",
|
|
832
1656
|
"accessLevel": "Tagging",
|
|
833
1657
|
"resourceTypes": [
|
|
1658
|
+
{
|
|
1659
|
+
"name": "BenefitApplication",
|
|
1660
|
+
"required": false,
|
|
1661
|
+
"conditionKeys": [],
|
|
1662
|
+
"dependentActions": []
|
|
1663
|
+
},
|
|
834
1664
|
{
|
|
835
1665
|
"name": "ChannelHandshake",
|
|
836
1666
|
"required": false,
|
|
@@ -843,6 +1673,12 @@
|
|
|
843
1673
|
"conditionKeys": [],
|
|
844
1674
|
"dependentActions": []
|
|
845
1675
|
},
|
|
1676
|
+
{
|
|
1677
|
+
"name": "Partner",
|
|
1678
|
+
"required": false,
|
|
1679
|
+
"conditionKeys": [],
|
|
1680
|
+
"dependentActions": []
|
|
1681
|
+
},
|
|
846
1682
|
{
|
|
847
1683
|
"name": "ProgramManagementAccount",
|
|
848
1684
|
"required": false,
|
|
@@ -869,6 +1705,51 @@
|
|
|
869
1705
|
],
|
|
870
1706
|
"dependentActions": []
|
|
871
1707
|
},
|
|
1708
|
+
"updatebenefitapplication": {
|
|
1709
|
+
"name": "UpdateBenefitApplication",
|
|
1710
|
+
"description": "Grants permission to update benefit applications in AWS Partner Central",
|
|
1711
|
+
"accessLevel": "Write",
|
|
1712
|
+
"resourceTypes": [
|
|
1713
|
+
{
|
|
1714
|
+
"name": "BenefitApplication",
|
|
1715
|
+
"required": true,
|
|
1716
|
+
"conditionKeys": [],
|
|
1717
|
+
"dependentActions": []
|
|
1718
|
+
}
|
|
1719
|
+
],
|
|
1720
|
+
"conditionKeys": [
|
|
1721
|
+
"aws:ResourceTag/${TagKey}",
|
|
1722
|
+
"partnercentral:Catalog"
|
|
1723
|
+
],
|
|
1724
|
+
"dependentActions": []
|
|
1725
|
+
},
|
|
1726
|
+
"updateconnectionpreferences": {
|
|
1727
|
+
"name": "UpdateConnectionPreferences",
|
|
1728
|
+
"description": "Grants permission to update connection preferences in AWS Partner Central",
|
|
1729
|
+
"accessLevel": "Write",
|
|
1730
|
+
"resourceTypes": [],
|
|
1731
|
+
"conditionKeys": [
|
|
1732
|
+
"partnercentral:Catalog"
|
|
1733
|
+
],
|
|
1734
|
+
"dependentActions": []
|
|
1735
|
+
},
|
|
1736
|
+
"updateengagementcontext": {
|
|
1737
|
+
"name": "UpdateEngagementContext",
|
|
1738
|
+
"description": "Grants permission to update engagement contexts in AWS Partner Central",
|
|
1739
|
+
"accessLevel": "Write",
|
|
1740
|
+
"resourceTypes": [
|
|
1741
|
+
{
|
|
1742
|
+
"name": "Engagement",
|
|
1743
|
+
"required": true,
|
|
1744
|
+
"conditionKeys": [],
|
|
1745
|
+
"dependentActions": []
|
|
1746
|
+
}
|
|
1747
|
+
],
|
|
1748
|
+
"conditionKeys": [
|
|
1749
|
+
"partnercentral:Catalog"
|
|
1750
|
+
],
|
|
1751
|
+
"dependentActions": []
|
|
1752
|
+
},
|
|
872
1753
|
"updateopportunity": {
|
|
873
1754
|
"name": "UpdateOpportunity",
|
|
874
1755
|
"description": "Grants permission to update Opportunities on AWS Partner Central",
|