@jjrawlins/cdk-iam-policy-builder-helper 0.0.75 → 0.0.77
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/.jsii +3 -3
- package/cdk-iam-policy-builder-helper/jsii/jsii.go +2 -2
- package/cdk-iam-policy-builder-helper/version +1 -1
- package/lib/constructs/Actions.d.ts +20 -0
- package/lib/constructs/Actions.js +21 -1
- package/lib/constructs/ManagedPolicies.d.ts +12 -0
- package/lib/constructs/ManagedPolicies.js +13 -1
- package/methods_list.txt +20 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/node_modules/@aws-sdk/client-iam/package.json +5 -5
- package/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sso/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-node/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/package.json +4 -4
- package/node_modules/@aws-sdk/region-config-resolver/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/package.json +2 -2
- package/node_modules/@smithy/config-resolver/dist-cjs/index.js +6 -1
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +6 -1
- package/node_modules/@smithy/config-resolver/package.json +1 -1
- package/node_modules/@smithy/util-defaults-mode-node/package.json +2 -2
- package/node_modules/axios/CHANGELOG.md +18 -0
- package/node_modules/axios/README.md +1 -4
- package/node_modules/axios/dist/axios.js +2 -2
- package/node_modules/axios/dist/axios.js.map +1 -1
- package/node_modules/axios/dist/axios.min.js +2 -2
- package/node_modules/axios/dist/axios.min.js.map +1 -1
- package/node_modules/axios/dist/browser/axios.cjs +2 -2
- package/node_modules/axios/dist/browser/axios.cjs.map +1 -1
- package/node_modules/axios/dist/esm/axios.js +2 -2
- package/node_modules/axios/dist/esm/axios.js.map +1 -1
- package/node_modules/axios/dist/esm/axios.min.js +2 -2
- package/node_modules/axios/dist/esm/axios.min.js.map +1 -1
- package/node_modules/axios/dist/node/axios.cjs +25 -20
- package/node_modules/axios/dist/node/axios.cjs.map +1 -1
- package/node_modules/axios/lib/adapters/http.js +22 -18
- package/node_modules/axios/lib/env/data.js +1 -1
- package/node_modules/axios/package.json +1 -1
- package/package.json +3 -3
package/.jsii
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
]
|
|
8
8
|
},
|
|
9
9
|
"bundled": {
|
|
10
|
-
"@aws-sdk/client-iam": "^3.
|
|
10
|
+
"@aws-sdk/client-iam": "^3.925.0",
|
|
11
11
|
"axios": "^1.8.2",
|
|
12
12
|
"jsonc-parser": "^3.3.1"
|
|
13
13
|
},
|
|
@@ -3526,6 +3526,6 @@
|
|
|
3526
3526
|
}
|
|
3527
3527
|
},
|
|
3528
3528
|
"types": {},
|
|
3529
|
-
"version": "0.0.
|
|
3530
|
-
"fingerprint": "
|
|
3529
|
+
"version": "0.0.77",
|
|
3530
|
+
"fingerprint": "Kru0DoujzO0NhE+0ne3v+dYjuwBD7cJEN+4qHxCNVwU="
|
|
3531
3531
|
}
|
|
@@ -13,7 +13,7 @@ import (
|
|
|
13
13
|
constructs "github.com/aws/constructs-go/constructs/v10/jsii"
|
|
14
14
|
)
|
|
15
15
|
|
|
16
|
-
//go:embed jjrawlins-cdk-iam-policy-builder-helper-0.0.
|
|
16
|
+
//go:embed jjrawlins-cdk-iam-policy-builder-helper-0.0.76.tgz
|
|
17
17
|
var tarball []byte
|
|
18
18
|
|
|
19
19
|
// Initialize loads the necessary packages in the @jsii/kernel to support the enclosing module.
|
|
@@ -24,5 +24,5 @@ func Initialize() {
|
|
|
24
24
|
constructs.Initialize()
|
|
25
25
|
|
|
26
26
|
// Load this library into the kernel
|
|
27
|
-
_jsii_.Load("@jjrawlins/cdk-iam-policy-builder-helper", "0.0.
|
|
27
|
+
_jsii_.Load("@jjrawlins/cdk-iam-policy-builder-helper", "0.0.76", tarball)
|
|
28
28
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.76
|
|
@@ -3077,6 +3077,7 @@ export declare const Actions: {
|
|
|
3077
3077
|
DeleteOriginRequestPolicy: string;
|
|
3078
3078
|
DeletePublicKey: string;
|
|
3079
3079
|
DeleteRealtimeLogConfig: string;
|
|
3080
|
+
DeleteResourcePolicy: string;
|
|
3080
3081
|
DeleteResponseHeadersPolicy: string;
|
|
3081
3082
|
DeleteStreamingDistribution: string;
|
|
3082
3083
|
DeleteVpcOrigin: string;
|
|
@@ -3115,6 +3116,7 @@ export declare const Actions: {
|
|
|
3115
3116
|
GetPublicKey: string;
|
|
3116
3117
|
GetPublicKeyConfig: string;
|
|
3117
3118
|
GetRealtimeLogConfig: string;
|
|
3119
|
+
GetResourcePolicy: string;
|
|
3118
3120
|
GetResponseHeadersPolicy: string;
|
|
3119
3121
|
GetResponseHeadersPolicyConfig: string;
|
|
3120
3122
|
GetSavingsPlan: string;
|
|
@@ -3160,9 +3162,11 @@ export declare const Actions: {
|
|
|
3160
3162
|
ListUsages: string;
|
|
3161
3163
|
ListVpcOrigins: string;
|
|
3162
3164
|
PublishFunction: string;
|
|
3165
|
+
PutResourcePolicy: string;
|
|
3163
3166
|
TagResource: string;
|
|
3164
3167
|
TestFunction: string;
|
|
3165
3168
|
UntagResource: string;
|
|
3169
|
+
UpdateAnycastIpList: string;
|
|
3166
3170
|
UpdateCachePolicy: string;
|
|
3167
3171
|
UpdateCloudFrontOriginAccessIdentity: string;
|
|
3168
3172
|
UpdateConnectionGroup: string;
|
|
@@ -4392,6 +4396,7 @@ export declare const Actions: {
|
|
|
4392
4396
|
AssociateContactWithUser: string;
|
|
4393
4397
|
AssociateCustomerProfilesDomain: string;
|
|
4394
4398
|
AssociateDefaultVocabulary: string;
|
|
4399
|
+
AssociateEmailAddressAlias: string;
|
|
4395
4400
|
AssociateFlow: string;
|
|
4396
4401
|
AssociateInstanceStorageConfig: string;
|
|
4397
4402
|
AssociateLambdaFunction: string;
|
|
@@ -4499,6 +4504,7 @@ export declare const Actions: {
|
|
|
4499
4504
|
DisassociateApprovedOrigin: string;
|
|
4500
4505
|
DisassociateBot: string;
|
|
4501
4506
|
DisassociateCustomerProfilesDomain: string;
|
|
4507
|
+
DisassociateEmailAddressAlias: string;
|
|
4502
4508
|
DisassociateFlow: string;
|
|
4503
4509
|
DisassociateInstanceStorageConfig: string;
|
|
4504
4510
|
DisassociateLambdaFunction: string;
|
|
@@ -6181,6 +6187,8 @@ export declare const Actions: {
|
|
|
6181
6187
|
CopyFpgaImage: string;
|
|
6182
6188
|
CopyImage: string;
|
|
6183
6189
|
CopySnapshot: string;
|
|
6190
|
+
CopyVolumes: string;
|
|
6191
|
+
CreateCapacityManagerDataExport: string;
|
|
6184
6192
|
CreateCapacityReservation: string;
|
|
6185
6193
|
CreateCapacityReservationBySplitting: string;
|
|
6186
6194
|
CreateCapacityReservationFleet: string;
|
|
@@ -6276,6 +6284,7 @@ export declare const Actions: {
|
|
|
6276
6284
|
CreateVpnConnection: string;
|
|
6277
6285
|
CreateVpnConnectionRoute: string;
|
|
6278
6286
|
CreateVpnGateway: string;
|
|
6287
|
+
DeleteCapacityManagerDataExport: string;
|
|
6279
6288
|
DeleteCarrierGateway: string;
|
|
6280
6289
|
DeleteClientVpnEndpoint: string;
|
|
6281
6290
|
DeleteClientVpnRoute: string;
|
|
@@ -6383,6 +6392,7 @@ export declare const Actions: {
|
|
|
6383
6392
|
DescribeCapacityBlockOfferings: string;
|
|
6384
6393
|
DescribeCapacityBlocks: string;
|
|
6385
6394
|
DescribeCapacityBlockStatus: string;
|
|
6395
|
+
DescribeCapacityManagerDataExports: string;
|
|
6386
6396
|
DescribeCapacityReservationBillingRequests: string;
|
|
6387
6397
|
DescribeCapacityReservationFleets: string;
|
|
6388
6398
|
DescribeCapacityReservations: string;
|
|
@@ -6552,6 +6562,7 @@ export declare const Actions: {
|
|
|
6552
6562
|
DisableAddressTransfer: string;
|
|
6553
6563
|
DisableAllowedImagesSettings: string;
|
|
6554
6564
|
DisableAwsNetworkPerformanceMetricSubscription: string;
|
|
6565
|
+
DisableCapacityManager: string;
|
|
6555
6566
|
DisableEbsEncryptionByDefault: string;
|
|
6556
6567
|
DisableFastLaunch: string;
|
|
6557
6568
|
DisableFastSnapshotRestores: string;
|
|
@@ -6589,6 +6600,7 @@ export declare const Actions: {
|
|
|
6589
6600
|
EnableAddressTransfer: string;
|
|
6590
6601
|
EnableAllowedImagesSettings: string;
|
|
6591
6602
|
EnableAwsNetworkPerformanceMetricSubscription: string;
|
|
6603
|
+
EnableCapacityManager: string;
|
|
6592
6604
|
EnableEbsEncryptionByDefault: string;
|
|
6593
6605
|
EnableFastLaunch: string;
|
|
6594
6606
|
EnableFastSnapshotRestores: string;
|
|
@@ -6616,6 +6628,9 @@ export declare const Actions: {
|
|
|
6616
6628
|
GetAssociatedEnclaveCertificateIamRoles: string;
|
|
6617
6629
|
GetAssociatedIpv6PoolCidrs: string;
|
|
6618
6630
|
GetAwsNetworkPerformanceData: string;
|
|
6631
|
+
GetCapacityManagerAttributes: string;
|
|
6632
|
+
GetCapacityManagerMetricData: string;
|
|
6633
|
+
GetCapacityManagerMetricDimensions: string;
|
|
6619
6634
|
GetCapacityReservationUsage: string;
|
|
6620
6635
|
GetCoipPoolUsage: string;
|
|
6621
6636
|
GetConsoleOutput: string;
|
|
@@ -6827,6 +6842,7 @@ export declare const Actions: {
|
|
|
6827
6842
|
UnassignPrivateNatGatewayAddress: string;
|
|
6828
6843
|
UnlockSnapshot: string;
|
|
6829
6844
|
UnmonitorInstances: string;
|
|
6845
|
+
UpdateCapacityManagerOrganizationsAccess: string;
|
|
6830
6846
|
UpdateSecurityGroupRuleDescriptionsEgress: string;
|
|
6831
6847
|
UpdateSecurityGroupRuleDescriptionsIngress: string;
|
|
6832
6848
|
WithdrawByoipCidr: string;
|
|
@@ -7226,6 +7242,7 @@ export declare const Actions: {
|
|
|
7226
7242
|
AddListenerCertificates: string;
|
|
7227
7243
|
AddTags: string;
|
|
7228
7244
|
AddTrustStoreRevocations: string;
|
|
7245
|
+
AllowVendedLogDeliveryForResource: string;
|
|
7229
7246
|
ApplySecurityGroupsToLoadBalancer: string;
|
|
7230
7247
|
AttachLoadBalancerToSubnets: string;
|
|
7231
7248
|
ConfigureHealthCheck: string;
|
|
@@ -10781,6 +10798,7 @@ export declare const Actions: {
|
|
|
10781
10798
|
DeleteResourcePolicy: string;
|
|
10782
10799
|
DeleteStream: string;
|
|
10783
10800
|
DeregisterStreamConsumer: string;
|
|
10801
|
+
DescribeAccountSettings: string;
|
|
10784
10802
|
DescribeLimits: string;
|
|
10785
10803
|
DescribeStream: string;
|
|
10786
10804
|
DescribeStreamConsumer: string;
|
|
@@ -10809,9 +10827,11 @@ export declare const Actions: {
|
|
|
10809
10827
|
SubscribeToShard: string;
|
|
10810
10828
|
TagResource: string;
|
|
10811
10829
|
UntagResource: string;
|
|
10830
|
+
UpdateAccountSettings: string;
|
|
10812
10831
|
UpdateMaxRecordSize: string;
|
|
10813
10832
|
UpdateShardCount: string;
|
|
10814
10833
|
UpdateStreamMode: string;
|
|
10834
|
+
UpdateStreamWarmThroughput: string;
|
|
10815
10835
|
};
|
|
10816
10836
|
kinesisanalytics: {
|
|
10817
10837
|
AddApplicationCloudWatchLoggingOption: string;
|