Skip to content

Commit 2ee6b8e

Browse files
Merge pull request #1832 from aquasecurity/bundles/sync_01_01
syncing with saas
2 parents cab05b5 + d8ab3f8 commit 2ee6b8e

File tree

3 files changed

+35
-4
lines changed

3 files changed

+35
-4
lines changed

helpers/aws/resources.js

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// This file contains a list of ARN paths for each API call type
22
// that are used to extract ARNs for resources
33

4+
45
module.exports = {
56
acm: {
67
listCertificates: 'CertificateArn',
@@ -49,6 +50,14 @@ module.exports = {
4950
describeRegionSettings: '',
5051
getBackupPlan: 'BackupPlanArn'
5152
},
53+
bedrock: {
54+
listCustomModels: 'modelArn',
55+
getCustomModel: 'modelArn',
56+
listModelCustomizationJobs: 'jobArn',
57+
getModelCustomizationJob: 'jobArn',
58+
getModelInvocationLoggingConfiguration: ''
59+
60+
},
5261
cloudformation: {
5362
describeStacks: 'StackId',
5463
listStacks: 'StackId',

helpers/azure/api.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ var postcalls = {
718718
list: {
719719
reliesOnPath: 'storageAccounts.list',
720720
properties: ['id'],
721-
url: 'https://management.azure.com/{id}/fileServices/default/shares?api-version=2019-06-01',
721+
url: 'https://management.azure.com/{id}/fileServices/default/shares?api-version=2023-01-01',
722722
rateLimit: 3000
723723
}
724724
},

helpers/azure/resources.js

+25-3
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,12 @@ module.exports = {
5858
listByKeyVault: '',
5959
listByEndpoint: 'id',
6060
listByLoadBalancer: 'id',
61-
listByNetworkSecurityGroup: 'id'
61+
listByNetworkSecurityGroup: 'id',
62+
listByServiceBusNamespaces: 'id',
63+
listByPostgresFlexibleServers: 'id',
64+
listByPostgresServers: 'id',
65+
listByDatabase: 'id',
66+
listByApplicationGateways: 'id'
6267
},
6368
diagnosticSettingsOperations: {
6469
list: 'id'
@@ -79,7 +84,8 @@ module.exports = {
7984
list: 'id'
8085
},
8186
firewallRules: {
82-
listByServer: 'id'
87+
listByServer: 'id',
88+
listByFlexibleServerPostgres: 'id'
8389
},
8490
fileService: {
8591
listSharesSegmented: '',
@@ -166,7 +172,8 @@ module.exports = {
166172
servers: {
167173
listSql: 'id',
168174
listPostgres: 'id',
169-
listMysql: 'id'
175+
listMysql: 'id',
176+
listPostgresFlexibleServer: 'id',
170177
},
171178
serverAdministrators: {
172179
list: 'id'
@@ -260,6 +267,21 @@ module.exports = {
260267
appConfigurations: {
261268
list:'id'
262269
},
270+
serviceBus:{
271+
listNamespacesBySubscription: 'id'
272+
},
273+
flexibleServersConfigurations:{
274+
listByPostgresServer: 'id'
275+
},
276+
afdWafPolicies: {
277+
listAll: 'id'
278+
},
279+
classicFrontDoors: {
280+
list: 'id'
281+
},
282+
afdSecurityPolicies: {
283+
listByProfile: 'id'
284+
},
263285
automationAccounts:{
264286
list: 'id'
265287
}

0 commit comments

Comments
 (0)