iam-floyd 0.794.0 → 0.795.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 +2 -2
- package/lib/generated/policy-statements/deadlinecloud.d.ts +54 -0
- package/lib/generated/policy-statements/deadlinecloud.js +66 -1
- package/lib/generated/policy-statements/route53resolver.d.ts +8 -0
- package/lib/generated/policy-statements/route53resolver.js +12 -1
- package/lib/generated/policy-statements/simpleemailservicev2.d.ts +26 -4
- package/lib/generated/policy-statements/simpleemailservicev2.js +30 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -477,6 +477,17 @@ export declare class Deadline extends PolicyStatement {
|
|
|
477
477
|
* https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_DeleteStorageProfile.html
|
|
478
478
|
*/
|
|
479
479
|
toDeleteStorageProfile(): this;
|
|
480
|
+
/**
|
|
481
|
+
* Grants permission to delete a volume
|
|
482
|
+
*
|
|
483
|
+
* Access Level: Write
|
|
484
|
+
*
|
|
485
|
+
* Dependent actions:
|
|
486
|
+
* - identitystore:ListGroupMembershipsForMember
|
|
487
|
+
*
|
|
488
|
+
* https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_DeleteVolume.html
|
|
489
|
+
*/
|
|
490
|
+
toDeleteVolume(): this;
|
|
480
491
|
/**
|
|
481
492
|
* Grants permission to delete a worker
|
|
482
493
|
*
|
|
@@ -757,6 +768,17 @@ export declare class Deadline extends PolicyStatement {
|
|
|
757
768
|
* https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_GetTask.html
|
|
758
769
|
*/
|
|
759
770
|
toGetTask(): this;
|
|
771
|
+
/**
|
|
772
|
+
* Grants permission to get a volume
|
|
773
|
+
*
|
|
774
|
+
* Access Level: Read
|
|
775
|
+
*
|
|
776
|
+
* Dependent actions:
|
|
777
|
+
* - identitystore:ListGroupMembershipsForMember
|
|
778
|
+
*
|
|
779
|
+
* https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_GetVolume.html
|
|
780
|
+
*/
|
|
781
|
+
toGetVolume(): this;
|
|
760
782
|
/**
|
|
761
783
|
* Grants permission to get a worker
|
|
762
784
|
*
|
|
@@ -1088,6 +1110,17 @@ export declare class Deadline extends PolicyStatement {
|
|
|
1088
1110
|
* https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_ListTasks.html
|
|
1089
1111
|
*/
|
|
1090
1112
|
toListTasks(): this;
|
|
1113
|
+
/**
|
|
1114
|
+
* Grants permission to list volumes
|
|
1115
|
+
*
|
|
1116
|
+
* Access Level: List
|
|
1117
|
+
*
|
|
1118
|
+
* Dependent actions:
|
|
1119
|
+
* - identitystore:ListGroupMembershipsForMember
|
|
1120
|
+
*
|
|
1121
|
+
* https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_ListVolumes.html
|
|
1122
|
+
*/
|
|
1123
|
+
toListVolumes(): this;
|
|
1091
1124
|
/**
|
|
1092
1125
|
* Grants permission to list all workers in a fleet
|
|
1093
1126
|
*
|
|
@@ -1490,6 +1523,24 @@ export declare class Deadline extends PolicyStatement {
|
|
|
1490
1523
|
* - .ifQueueMembershipLevels()
|
|
1491
1524
|
*/
|
|
1492
1525
|
onQueue(farmId: string, queueId: string, account?: string, region?: string, partition?: string): this;
|
|
1526
|
+
/**
|
|
1527
|
+
* Adds a resource of type volume to the statement
|
|
1528
|
+
*
|
|
1529
|
+
* https://docs.aws.amazon.com/deadline-cloud/latest/userguide/volumes.html
|
|
1530
|
+
*
|
|
1531
|
+
* @param farmId - Identifier for the farmId.
|
|
1532
|
+
* @param fleetId - Identifier for the fleetId.
|
|
1533
|
+
* @param volumeId - Identifier for the volumeId.
|
|
1534
|
+
* @param account - Account of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's account.
|
|
1535
|
+
* @param region - Region of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's region.
|
|
1536
|
+
* @param partition - Partition of the AWS account [aws, aws-cn, aws-us-gov]; defaults to `aws`, unless using the CDK, where the default is the current Stack's partition.
|
|
1537
|
+
*
|
|
1538
|
+
* Possible conditions:
|
|
1539
|
+
* - .ifAwsResourceTag()
|
|
1540
|
+
* - .ifFarmMembershipLevels()
|
|
1541
|
+
* - .ifFleetMembershipLevels()
|
|
1542
|
+
*/
|
|
1543
|
+
onVolume(farmId: string, fleetId: string, volumeId: string, account?: string, region?: string, partition?: string): this;
|
|
1493
1544
|
/**
|
|
1494
1545
|
* Adds a resource of type worker to the statement
|
|
1495
1546
|
*
|
|
@@ -1542,6 +1593,7 @@ export declare class Deadline extends PolicyStatement {
|
|
|
1542
1593
|
* - license-endpoint
|
|
1543
1594
|
* - monitor
|
|
1544
1595
|
* - queue
|
|
1596
|
+
* - volume
|
|
1545
1597
|
* - worker
|
|
1546
1598
|
*
|
|
1547
1599
|
* @param tagKey The tag key to check
|
|
@@ -1613,6 +1665,7 @@ export declare class Deadline extends PolicyStatement {
|
|
|
1613
1665
|
* - fleet
|
|
1614
1666
|
* - job
|
|
1615
1667
|
* - queue
|
|
1668
|
+
* - volume
|
|
1616
1669
|
* - worker
|
|
1617
1670
|
*
|
|
1618
1671
|
* @param value The value(s) to check
|
|
@@ -1626,6 +1679,7 @@ export declare class Deadline extends PolicyStatement {
|
|
|
1626
1679
|
*
|
|
1627
1680
|
* Applies to resource types:
|
|
1628
1681
|
* - fleet
|
|
1682
|
+
* - volume
|
|
1629
1683
|
* - worker
|
|
1630
1684
|
*
|
|
1631
1685
|
* @param value The value(s) to check
|