File tree 3 files changed +35
-4
lines changed
3 files changed +35
-4
lines changed Original file line number Diff line number Diff line change 1
1
// This file contains a list of ARN paths for each API call type
2
2
// that are used to extract ARNs for resources
3
3
4
+
4
5
module . exports = {
5
6
acm : {
6
7
listCertificates : 'CertificateArn' ,
@@ -49,6 +50,14 @@ module.exports = {
49
50
describeRegionSettings : '' ,
50
51
getBackupPlan : 'BackupPlanArn'
51
52
} ,
53
+ bedrock : {
54
+ listCustomModels : 'modelArn' ,
55
+ getCustomModel : 'modelArn' ,
56
+ listModelCustomizationJobs : 'jobArn' ,
57
+ getModelCustomizationJob : 'jobArn' ,
58
+ getModelInvocationLoggingConfiguration : ''
59
+
60
+ } ,
52
61
cloudformation : {
53
62
describeStacks : 'StackId' ,
54
63
listStacks : 'StackId' ,
Original file line number Diff line number Diff line change @@ -718,7 +718,7 @@ var postcalls = {
718
718
list : {
719
719
reliesOnPath : 'storageAccounts.list' ,
720
720
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' ,
722
722
rateLimit : 3000
723
723
}
724
724
} ,
Original file line number Diff line number Diff line change @@ -58,7 +58,12 @@ module.exports = {
58
58
listByKeyVault : '' ,
59
59
listByEndpoint : 'id' ,
60
60
listByLoadBalancer : 'id' ,
61
- listByNetworkSecurityGroup : 'id'
61
+ listByNetworkSecurityGroup : 'id' ,
62
+ listByServiceBusNamespaces : 'id' ,
63
+ listByPostgresFlexibleServers : 'id' ,
64
+ listByPostgresServers : 'id' ,
65
+ listByDatabase : 'id' ,
66
+ listByApplicationGateways : 'id'
62
67
} ,
63
68
diagnosticSettingsOperations : {
64
69
list : 'id'
@@ -79,7 +84,8 @@ module.exports = {
79
84
list : 'id'
80
85
} ,
81
86
firewallRules : {
82
- listByServer : 'id'
87
+ listByServer : 'id' ,
88
+ listByFlexibleServerPostgres : 'id'
83
89
} ,
84
90
fileService : {
85
91
listSharesSegmented : '' ,
@@ -166,7 +172,8 @@ module.exports = {
166
172
servers : {
167
173
listSql : 'id' ,
168
174
listPostgres : 'id' ,
169
- listMysql : 'id'
175
+ listMysql : 'id' ,
176
+ listPostgresFlexibleServer : 'id' ,
170
177
} ,
171
178
serverAdministrators : {
172
179
list : 'id'
@@ -260,6 +267,21 @@ module.exports = {
260
267
appConfigurations : {
261
268
list :'id'
262
269
} ,
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
+ } ,
263
285
automationAccounts :{
264
286
list : 'id'
265
287
}
You can’t perform that action at this time.
0 commit comments