@microsoft/terraform-cdk-constructs 1.3.0 → 1.3.1
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 +342 -82
- package/lib/azure-actiongroup/lib/action-group.js +1 -1
- package/lib/azure-activitylogalert/lib/activity-log-alert.js +1 -1
- package/lib/azure-aks/lib/aks-cluster.js +1 -1
- package/lib/azure-diagnosticsettings/lib/diagnostic-settings.js +1 -1
- package/lib/azure-dnsforwardingruleset/lib/dns-forwarding-ruleset.js +1 -1
- package/lib/azure-dnsforwardingruleset/lib/forwarding-rule.js +1 -1
- package/lib/azure-dnsforwardingruleset/lib/virtual-network-link.js +1 -1
- package/lib/azure-dnsresolver/lib/dns-resolver.js +1 -1
- package/lib/azure-dnsresolver/lib/inbound-endpoint.js +1 -1
- package/lib/azure-dnsresolver/lib/outbound-endpoint.js +1 -1
- package/lib/azure-dnszone/lib/dns-zone.js +1 -1
- package/lib/azure-metricalert/lib/metric-alert.js +1 -1
- package/lib/azure-networkinterface/lib/network-interface.js +1 -1
- package/lib/azure-networksecuritygroup/lib/network-security-group.js +1 -1
- package/lib/azure-policyassignment/lib/policy-assignment.d.ts +7 -0
- package/lib/azure-policyassignment/lib/policy-assignment.js +11 -2
- package/lib/azure-policydefinition/lib/policy-definition.d.ts +21 -0
- package/lib/azure-policydefinition/lib/policy-definition.js +40 -3
- package/lib/azure-policydefinition/test/policy-definition.spec.js +211 -1
- package/lib/azure-privatednszone/lib/private-dns-zone.js +1 -1
- package/lib/azure-privatednszonelink/lib/private-dns-zone-link.js +1 -1
- package/lib/azure-publicipaddress/lib/public-ip-address.js +1 -1
- package/lib/azure-resourcegroup/lib/resource-group.js +1 -1
- package/lib/azure-roleassignment/lib/role-assignment.js +1 -1
- package/lib/azure-roledefinition/lib/role-definition.js +1 -1
- package/lib/azure-storageaccount/lib/storage-account.js +1 -1
- package/lib/azure-subnet/lib/subnet.js +1 -1
- package/lib/azure-virtualmachine/lib/virtual-machine.js +1 -1
- package/lib/azure-virtualnetwork/lib/virtual-network.js +1 -1
- package/lib/azure-virtualnetworkmanager/lib/connectivity-configuration.js +1 -1
- package/lib/azure-virtualnetworkmanager/lib/network-group-static-member.js +1 -1
- package/lib/azure-virtualnetworkmanager/lib/network-group.js +1 -1
- package/lib/azure-virtualnetworkmanager/lib/security-admin-configuration.js +1 -1
- package/lib/azure-virtualnetworkmanager/lib/security-admin-rule-collection.js +1 -1
- package/lib/azure-virtualnetworkmanager/lib/security-admin-rule.js +1 -1
- package/lib/azure-virtualnetworkmanager/lib/virtual-network-manager.js +1 -1
- package/lib/azure-vmss/lib/virtual-machine-scale-set.js +1 -1
- package/lib/core-azure/lib/azapi/azapi-resource.d.ts +28 -0
- package/lib/core-azure/lib/azapi/azapi-resource.js +60 -10
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-client-config/index.js +2 -2
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource/index.js +5 -5
- package/lib/core-azure/lib/azapi/providers-azapi/provider/index.js +1 -1
- package/lib/core-azure/lib/azapi/providers-azapi/resource/index.js +5 -5
- package/lib/core-azure/lib/azapi/providers-azapi/resource-action/index.js +3 -3
- package/lib/core-azure/lib/azapi/providers-azapi/update-resource/index.js +3 -3
- package/lib/core-azure/lib/azapi/schema-mapper/schema-mapper.js +1 -1
- package/lib/core-azure/lib/version-manager/api-version-manager.js +1 -1
- package/lib/core-azure/lib/version-manager/interfaces/version-interfaces.js +7 -7
- package/lib/testing/index.js +2 -2
- package/lib/testing/lib/cleanup.js +1 -1
- package/lib/testing/lib/metadata.js +1 -1
- package/package.json +1 -1
package/.jsii
CHANGED
|
@@ -11009,7 +11009,7 @@
|
|
|
11009
11009
|
},
|
|
11010
11010
|
"locationInModule": {
|
|
11011
11011
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11012
|
-
"line":
|
|
11012
|
+
"line": 1210
|
|
11013
11013
|
},
|
|
11014
11014
|
"name": "addAccess",
|
|
11015
11015
|
"parameters": [
|
|
@@ -11035,13 +11035,16 @@
|
|
|
11035
11035
|
},
|
|
11036
11036
|
{
|
|
11037
11037
|
"docs": {
|
|
11038
|
+
"custom": {
|
|
11039
|
+
"throws": "Error if the resource type does not support tags"
|
|
11040
|
+
},
|
|
11038
11041
|
"remarks": "This method provides proper immutability by storing tags separately from props.\nTags added via this method are combined with tags from props and included in\nthe deployed Azure resource.\n\n**Important:** In CDK for Terraform, tags should ideally be set during resource\nconstruction via props. While this method allows adding tags after construction,\nthose tags are only included if added before the Terraform configuration is\nsynthesized. For best results, add all tags via props or call addTag() in the\nsame scope where the resource is created.",
|
|
11039
11042
|
"stability": "stable",
|
|
11040
11043
|
"summary": "Adds a tag to this resource. The tag will be included in the Azure resource."
|
|
11041
11044
|
},
|
|
11042
11045
|
"locationInModule": {
|
|
11043
11046
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11044
|
-
"line":
|
|
11047
|
+
"line": 1235
|
|
11045
11048
|
},
|
|
11046
11049
|
"name": "addTag",
|
|
11047
11050
|
"parameters": [
|
|
@@ -11074,7 +11077,7 @@
|
|
|
11074
11077
|
},
|
|
11075
11078
|
"locationInModule": {
|
|
11076
11079
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11077
|
-
"line":
|
|
11080
|
+
"line": 1263
|
|
11078
11081
|
},
|
|
11079
11082
|
"name": "allTags",
|
|
11080
11083
|
"protected": true,
|
|
@@ -11098,7 +11101,7 @@
|
|
|
11098
11101
|
},
|
|
11099
11102
|
"locationInModule": {
|
|
11100
11103
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11101
|
-
"line":
|
|
11104
|
+
"line": 708
|
|
11102
11105
|
},
|
|
11103
11106
|
"name": "analyzeMigrationTo",
|
|
11104
11107
|
"parameters": [
|
|
@@ -11128,7 +11131,7 @@
|
|
|
11128
11131
|
},
|
|
11129
11132
|
"locationInModule": {
|
|
11130
11133
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11131
|
-
"line":
|
|
11134
|
+
"line": 552
|
|
11132
11135
|
},
|
|
11133
11136
|
"name": "apiSchema",
|
|
11134
11137
|
"protected": true,
|
|
@@ -11146,7 +11149,7 @@
|
|
|
11146
11149
|
},
|
|
11147
11150
|
"locationInModule": {
|
|
11148
11151
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11149
|
-
"line":
|
|
11152
|
+
"line": 1151
|
|
11150
11153
|
},
|
|
11151
11154
|
"name": "createAzapiDataSource",
|
|
11152
11155
|
"parameters": [
|
|
@@ -11175,7 +11178,7 @@
|
|
|
11175
11178
|
},
|
|
11176
11179
|
"locationInModule": {
|
|
11177
11180
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11178
|
-
"line":
|
|
11181
|
+
"line": 1081
|
|
11179
11182
|
},
|
|
11180
11183
|
"name": "createAzapiResource",
|
|
11181
11184
|
"parameters": [
|
|
@@ -11278,7 +11281,7 @@
|
|
|
11278
11281
|
},
|
|
11279
11282
|
"locationInModule": {
|
|
11280
11283
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11281
|
-
"line":
|
|
11284
|
+
"line": 963
|
|
11282
11285
|
},
|
|
11283
11286
|
"name": "createMonitoringResources",
|
|
11284
11287
|
"parameters": [
|
|
@@ -11304,7 +11307,7 @@
|
|
|
11304
11307
|
},
|
|
11305
11308
|
"locationInModule": {
|
|
11306
11309
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11307
|
-
"line":
|
|
11310
|
+
"line": 564
|
|
11308
11311
|
},
|
|
11309
11312
|
"name": "createResourceBody",
|
|
11310
11313
|
"parameters": [
|
|
@@ -11325,6 +11328,37 @@
|
|
|
11325
11328
|
}
|
|
11326
11329
|
}
|
|
11327
11330
|
},
|
|
11331
|
+
{
|
|
11332
|
+
"docs": {
|
|
11333
|
+
"example": "protected customizeResourceConfig(config: ResourceConfig): ResourceConfig {\n return {\n ...config,\n schemaValidationEnabled: false,\n ignoreMissingProperty: true,\n };\n}",
|
|
11334
|
+
"remarks": "Override this method to add resource-specific configuration like:\n- schemaValidationEnabled: false (for resources with complex nested structures)\n- ignoreMissingProperty: true (for resources with dynamic/unknown properties)\n- ignoreNullProperty: true (for resources that should skip null values)",
|
|
11335
|
+
"returns": "The potentially modified ResourceConfig",
|
|
11336
|
+
"stability": "stable",
|
|
11337
|
+
"summary": "Allows child classes to customize the ResourceConfig before resource creation."
|
|
11338
|
+
},
|
|
11339
|
+
"locationInModule": {
|
|
11340
|
+
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11341
|
+
"line": 1064
|
|
11342
|
+
},
|
|
11343
|
+
"name": "customizeResourceConfig",
|
|
11344
|
+
"parameters": [
|
|
11345
|
+
{
|
|
11346
|
+
"docs": {
|
|
11347
|
+
"summary": "- The base ResourceConfig that will be used to create the resource."
|
|
11348
|
+
},
|
|
11349
|
+
"name": "config",
|
|
11350
|
+
"type": {
|
|
11351
|
+
"primitive": "any"
|
|
11352
|
+
}
|
|
11353
|
+
}
|
|
11354
|
+
],
|
|
11355
|
+
"protected": true,
|
|
11356
|
+
"returns": {
|
|
11357
|
+
"type": {
|
|
11358
|
+
"primitive": "any"
|
|
11359
|
+
}
|
|
11360
|
+
}
|
|
11361
|
+
},
|
|
11328
11362
|
{
|
|
11329
11363
|
"docs": {
|
|
11330
11364
|
"returns": "Default location or undefined",
|
|
@@ -11333,7 +11367,7 @@
|
|
|
11333
11367
|
},
|
|
11334
11368
|
"locationInModule": {
|
|
11335
11369
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11336
|
-
"line":
|
|
11370
|
+
"line": 570
|
|
11337
11371
|
},
|
|
11338
11372
|
"name": "defaultLocation",
|
|
11339
11373
|
"protected": true,
|
|
@@ -11354,7 +11388,7 @@
|
|
|
11354
11388
|
},
|
|
11355
11389
|
"locationInModule": {
|
|
11356
11390
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11357
|
-
"line":
|
|
11391
|
+
"line": 531
|
|
11358
11392
|
},
|
|
11359
11393
|
"name": "defaultVersion",
|
|
11360
11394
|
"protected": true,
|
|
@@ -11397,7 +11431,7 @@
|
|
|
11397
11431
|
},
|
|
11398
11432
|
"locationInModule": {
|
|
11399
11433
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11400
|
-
"line":
|
|
11434
|
+
"line": 679
|
|
11401
11435
|
},
|
|
11402
11436
|
"name": "latestVersion",
|
|
11403
11437
|
"returns": {
|
|
@@ -11415,7 +11449,7 @@
|
|
|
11415
11449
|
},
|
|
11416
11450
|
"locationInModule": {
|
|
11417
11451
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11418
|
-
"line":
|
|
11452
|
+
"line": 586
|
|
11419
11453
|
},
|
|
11420
11454
|
"name": "parentResourceForLocation",
|
|
11421
11455
|
"protected": true,
|
|
@@ -11434,7 +11468,7 @@
|
|
|
11434
11468
|
},
|
|
11435
11469
|
"locationInModule": {
|
|
11436
11470
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11437
|
-
"line":
|
|
11471
|
+
"line": 578
|
|
11438
11472
|
},
|
|
11439
11473
|
"name": "requiresLocation",
|
|
11440
11474
|
"protected": true,
|
|
@@ -11451,7 +11485,7 @@
|
|
|
11451
11485
|
},
|
|
11452
11486
|
"locationInModule": {
|
|
11453
11487
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11454
|
-
"line":
|
|
11488
|
+
"line": 603
|
|
11455
11489
|
},
|
|
11456
11490
|
"name": "resolveLocation",
|
|
11457
11491
|
"parameters": [
|
|
@@ -11479,7 +11513,7 @@
|
|
|
11479
11513
|
},
|
|
11480
11514
|
"locationInModule": {
|
|
11481
11515
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11482
|
-
"line":
|
|
11516
|
+
"line": 641
|
|
11483
11517
|
},
|
|
11484
11518
|
"name": "resolveName",
|
|
11485
11519
|
"parameters": [
|
|
@@ -11509,7 +11543,7 @@
|
|
|
11509
11543
|
},
|
|
11510
11544
|
"locationInModule": {
|
|
11511
11545
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11512
|
-
"line":
|
|
11546
|
+
"line": 873
|
|
11513
11547
|
},
|
|
11514
11548
|
"name": "resolveParentId",
|
|
11515
11549
|
"parameters": [
|
|
@@ -11542,7 +11576,7 @@
|
|
|
11542
11576
|
},
|
|
11543
11577
|
"locationInModule": {
|
|
11544
11578
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11545
|
-
"line":
|
|
11579
|
+
"line": 655
|
|
11546
11580
|
},
|
|
11547
11581
|
"name": "resolveSchema",
|
|
11548
11582
|
"protected": true,
|
|
@@ -11562,7 +11596,7 @@
|
|
|
11562
11596
|
},
|
|
11563
11597
|
"locationInModule": {
|
|
11564
11598
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11565
|
-
"line":
|
|
11599
|
+
"line": 541
|
|
11566
11600
|
},
|
|
11567
11601
|
"name": "resourceType",
|
|
11568
11602
|
"protected": true,
|
|
@@ -11581,7 +11615,7 @@
|
|
|
11581
11615
|
},
|
|
11582
11616
|
"locationInModule": {
|
|
11583
11617
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11584
|
-
"line":
|
|
11618
|
+
"line": 693
|
|
11585
11619
|
},
|
|
11586
11620
|
"name": "supportedVersions",
|
|
11587
11621
|
"returns": {
|
|
@@ -11595,6 +11629,24 @@
|
|
|
11595
11629
|
}
|
|
11596
11630
|
}
|
|
11597
11631
|
},
|
|
11632
|
+
{
|
|
11633
|
+
"docs": {
|
|
11634
|
+
"returns": "true if the resource supports tags (default), false otherwise",
|
|
11635
|
+
"stability": "stable",
|
|
11636
|
+
"summary": "Override in child classes to indicate if the resource type supports tags Some Azure resources (e.g., Policy Definitions, Policy Assignments) do not support tags."
|
|
11637
|
+
},
|
|
11638
|
+
"locationInModule": {
|
|
11639
|
+
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11640
|
+
"line": 595
|
|
11641
|
+
},
|
|
11642
|
+
"name": "supportsTags",
|
|
11643
|
+
"protected": true,
|
|
11644
|
+
"returns": {
|
|
11645
|
+
"type": {
|
|
11646
|
+
"primitive": "boolean"
|
|
11647
|
+
}
|
|
11648
|
+
}
|
|
11649
|
+
},
|
|
11598
11650
|
{
|
|
11599
11651
|
"docs": {
|
|
11600
11652
|
"stability": "stable",
|
|
@@ -11602,7 +11654,7 @@
|
|
|
11602
11654
|
},
|
|
11603
11655
|
"locationInModule": {
|
|
11604
11656
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11605
|
-
"line":
|
|
11657
|
+
"line": 1172
|
|
11606
11658
|
},
|
|
11607
11659
|
"name": "updateAzapiResource",
|
|
11608
11660
|
"parameters": [
|
|
@@ -11725,7 +11777,7 @@
|
|
|
11725
11777
|
"immutable": true,
|
|
11726
11778
|
"locationInModule": {
|
|
11727
11779
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11728
|
-
"line":
|
|
11780
|
+
"line": 1196
|
|
11729
11781
|
},
|
|
11730
11782
|
"name": "output",
|
|
11731
11783
|
"type": {
|
|
@@ -11740,7 +11792,7 @@
|
|
|
11740
11792
|
"immutable": true,
|
|
11741
11793
|
"locationInModule": {
|
|
11742
11794
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11743
|
-
"line":
|
|
11795
|
+
"line": 1189
|
|
11744
11796
|
},
|
|
11745
11797
|
"name": "resource",
|
|
11746
11798
|
"type": {
|
|
@@ -11755,7 +11807,7 @@
|
|
|
11755
11807
|
"immutable": true,
|
|
11756
11808
|
"locationInModule": {
|
|
11757
11809
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11758
|
-
"line":
|
|
11810
|
+
"line": 1181
|
|
11759
11811
|
},
|
|
11760
11812
|
"name": "resourceId",
|
|
11761
11813
|
"type": {
|
|
@@ -11771,7 +11823,7 @@
|
|
|
11771
11823
|
"immutable": true,
|
|
11772
11824
|
"locationInModule": {
|
|
11773
11825
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
11774
|
-
"line":
|
|
11826
|
+
"line": 1250
|
|
11775
11827
|
},
|
|
11776
11828
|
"name": "tags",
|
|
11777
11829
|
"type": {
|
|
@@ -12102,7 +12154,7 @@
|
|
|
12102
12154
|
},
|
|
12103
12155
|
"locationInModule": {
|
|
12104
12156
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
12105
|
-
"line":
|
|
12157
|
+
"line": 1285
|
|
12106
12158
|
},
|
|
12107
12159
|
"parameters": [
|
|
12108
12160
|
{
|
|
@@ -12128,7 +12180,7 @@
|
|
|
12128
12180
|
"kind": "class",
|
|
12129
12181
|
"locationInModule": {
|
|
12130
12182
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
12131
|
-
"line":
|
|
12183
|
+
"line": 1284
|
|
12132
12184
|
},
|
|
12133
12185
|
"name": "AzapiRoleAssignment",
|
|
12134
12186
|
"symbolId": "src/core-azure/lib/azapi/azapi-resource:AzapiRoleAssignment"
|
|
@@ -12144,7 +12196,7 @@
|
|
|
12144
12196
|
"kind": "interface",
|
|
12145
12197
|
"locationInModule": {
|
|
12146
12198
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
12147
|
-
"line":
|
|
12199
|
+
"line": 1275
|
|
12148
12200
|
},
|
|
12149
12201
|
"name": "AzapiRoleAssignmentProps",
|
|
12150
12202
|
"properties": [
|
|
@@ -12156,7 +12208,7 @@
|
|
|
12156
12208
|
"immutable": true,
|
|
12157
12209
|
"locationInModule": {
|
|
12158
12210
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
12159
|
-
"line":
|
|
12211
|
+
"line": 1276
|
|
12160
12212
|
},
|
|
12161
12213
|
"name": "objectId",
|
|
12162
12214
|
"type": {
|
|
@@ -12171,7 +12223,7 @@
|
|
|
12171
12223
|
"immutable": true,
|
|
12172
12224
|
"locationInModule": {
|
|
12173
12225
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
12174
|
-
"line":
|
|
12226
|
+
"line": 1277
|
|
12175
12227
|
},
|
|
12176
12228
|
"name": "roleDefinitionName",
|
|
12177
12229
|
"type": {
|
|
@@ -12186,7 +12238,7 @@
|
|
|
12186
12238
|
"immutable": true,
|
|
12187
12239
|
"locationInModule": {
|
|
12188
12240
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
12189
|
-
"line":
|
|
12241
|
+
"line": 1278
|
|
12190
12242
|
},
|
|
12191
12243
|
"name": "scope",
|
|
12192
12244
|
"type": {
|
|
@@ -25252,7 +25304,7 @@
|
|
|
25252
25304
|
},
|
|
25253
25305
|
"locationInModule": {
|
|
25254
25306
|
"filename": "src/azure-policyassignment/lib/policy-assignment.ts",
|
|
25255
|
-
"line":
|
|
25307
|
+
"line": 416
|
|
25256
25308
|
},
|
|
25257
25309
|
"name": "createResourceBody",
|
|
25258
25310
|
"overrides": "@microsoft/terraform-cdk-constructs.core_azure.AzapiResource",
|
|
@@ -25296,7 +25348,7 @@
|
|
|
25296
25348
|
},
|
|
25297
25349
|
"locationInModule": {
|
|
25298
25350
|
"filename": "src/azure-policyassignment/lib/policy-assignment.ts",
|
|
25299
|
-
"line":
|
|
25351
|
+
"line": 447
|
|
25300
25352
|
},
|
|
25301
25353
|
"name": "resolveParentId",
|
|
25302
25354
|
"overrides": "@microsoft/terraform-cdk-constructs.core_azure.AzapiResource",
|
|
@@ -25332,6 +25384,28 @@
|
|
|
25332
25384
|
"primitive": "string"
|
|
25333
25385
|
}
|
|
25334
25386
|
}
|
|
25387
|
+
},
|
|
25388
|
+
{
|
|
25389
|
+
"docs": {
|
|
25390
|
+
"custom": {
|
|
25391
|
+
"override": "true"
|
|
25392
|
+
},
|
|
25393
|
+
"returns": "false - Policy Assignments cannot have tags",
|
|
25394
|
+
"stability": "stable",
|
|
25395
|
+
"summary": "Policy Assignments do not support tags at the resource level Tags are not a valid property for Microsoft.Authorization/policyAssignments."
|
|
25396
|
+
},
|
|
25397
|
+
"locationInModule": {
|
|
25398
|
+
"filename": "src/azure-policyassignment/lib/policy-assignment.ts",
|
|
25399
|
+
"line": 403
|
|
25400
|
+
},
|
|
25401
|
+
"name": "supportsTags",
|
|
25402
|
+
"overrides": "@microsoft/terraform-cdk-constructs.core_azure.AzapiResource",
|
|
25403
|
+
"protected": true,
|
|
25404
|
+
"returns": {
|
|
25405
|
+
"type": {
|
|
25406
|
+
"primitive": "boolean"
|
|
25407
|
+
}
|
|
25408
|
+
}
|
|
25335
25409
|
}
|
|
25336
25410
|
],
|
|
25337
25411
|
"name": "PolicyAssignment",
|
|
@@ -25344,7 +25418,7 @@
|
|
|
25344
25418
|
"immutable": true,
|
|
25345
25419
|
"locationInModule": {
|
|
25346
25420
|
"filename": "src/azure-policyassignment/lib/policy-assignment.ts",
|
|
25347
|
-
"line":
|
|
25421
|
+
"line": 474
|
|
25348
25422
|
},
|
|
25349
25423
|
"name": "assignmentScope",
|
|
25350
25424
|
"type": {
|
|
@@ -25359,7 +25433,7 @@
|
|
|
25359
25433
|
"immutable": true,
|
|
25360
25434
|
"locationInModule": {
|
|
25361
25435
|
"filename": "src/azure-policyassignment/lib/policy-assignment.ts",
|
|
25362
|
-
"line":
|
|
25436
|
+
"line": 481
|
|
25363
25437
|
},
|
|
25364
25438
|
"name": "enforcementMode",
|
|
25365
25439
|
"type": {
|
|
@@ -25402,7 +25476,7 @@
|
|
|
25402
25476
|
"immutable": true,
|
|
25403
25477
|
"locationInModule": {
|
|
25404
25478
|
"filename": "src/azure-policyassignment/lib/policy-assignment.ts",
|
|
25405
|
-
"line":
|
|
25479
|
+
"line": 467
|
|
25406
25480
|
},
|
|
25407
25481
|
"name": "policyDefinitionId",
|
|
25408
25482
|
"type": {
|
|
@@ -25432,7 +25506,7 @@
|
|
|
25432
25506
|
"immutable": true,
|
|
25433
25507
|
"locationInModule": {
|
|
25434
25508
|
"filename": "src/azure-policyassignment/lib/policy-assignment.ts",
|
|
25435
|
-
"line":
|
|
25509
|
+
"line": 460
|
|
25436
25510
|
},
|
|
25437
25511
|
"name": "resourceId",
|
|
25438
25512
|
"overrides": "@microsoft/terraform-cdk-constructs.core_azure.AzapiResource",
|
|
@@ -26117,6 +26191,40 @@
|
|
|
26117
26191
|
}
|
|
26118
26192
|
}
|
|
26119
26193
|
},
|
|
26194
|
+
{
|
|
26195
|
+
"docs": {
|
|
26196
|
+
"custom": {
|
|
26197
|
+
"override": "true"
|
|
26198
|
+
},
|
|
26199
|
+
"remarks": "Policy definitions require special handling because:\n1. They contain complex nested objects (ARM templates in DeployIfNotExists policies)\n2. They use Azure Policy expressions like [field()], [parameters()], [variables()]\n which are NOT Terraform interpolations but Azure-native expressions\n3. Schema validation may strip unknown properties from deeply nested structures",
|
|
26200
|
+
"returns": "Modified ResourceConfig with policy-specific settings",
|
|
26201
|
+
"stability": "stable",
|
|
26202
|
+
"summary": "Customizes the AZAPI ResourceConfig for policy-specific requirements."
|
|
26203
|
+
},
|
|
26204
|
+
"locationInModule": {
|
|
26205
|
+
"filename": "src/azure-policydefinition/lib/policy-definition.ts",
|
|
26206
|
+
"line": 358
|
|
26207
|
+
},
|
|
26208
|
+
"name": "customizeResourceConfig",
|
|
26209
|
+
"overrides": "@microsoft/terraform-cdk-constructs.core_azure.AzapiResource",
|
|
26210
|
+
"parameters": [
|
|
26211
|
+
{
|
|
26212
|
+
"docs": {
|
|
26213
|
+
"summary": "- The base ResourceConfig."
|
|
26214
|
+
},
|
|
26215
|
+
"name": "config",
|
|
26216
|
+
"type": {
|
|
26217
|
+
"primitive": "any"
|
|
26218
|
+
}
|
|
26219
|
+
}
|
|
26220
|
+
],
|
|
26221
|
+
"protected": true,
|
|
26222
|
+
"returns": {
|
|
26223
|
+
"type": {
|
|
26224
|
+
"primitive": "any"
|
|
26225
|
+
}
|
|
26226
|
+
}
|
|
26227
|
+
},
|
|
26120
26228
|
{
|
|
26121
26229
|
"docs": {
|
|
26122
26230
|
"stability": "stable",
|
|
@@ -26152,6 +26260,28 @@
|
|
|
26152
26260
|
"primitive": "string"
|
|
26153
26261
|
}
|
|
26154
26262
|
}
|
|
26263
|
+
},
|
|
26264
|
+
{
|
|
26265
|
+
"docs": {
|
|
26266
|
+
"custom": {
|
|
26267
|
+
"override": "true"
|
|
26268
|
+
},
|
|
26269
|
+
"returns": "false - Policy Definitions cannot have tags",
|
|
26270
|
+
"stability": "stable",
|
|
26271
|
+
"summary": "Policy Definitions do not support tags at the resource level Tags are not a valid property for Microsoft.Authorization/policyDefinitions."
|
|
26272
|
+
},
|
|
26273
|
+
"locationInModule": {
|
|
26274
|
+
"filename": "src/azure-policydefinition/lib/policy-definition.ts",
|
|
26275
|
+
"line": 341
|
|
26276
|
+
},
|
|
26277
|
+
"name": "supportsTags",
|
|
26278
|
+
"overrides": "@microsoft/terraform-cdk-constructs.core_azure.AzapiResource",
|
|
26279
|
+
"protected": true,
|
|
26280
|
+
"returns": {
|
|
26281
|
+
"type": {
|
|
26282
|
+
"primitive": "boolean"
|
|
26283
|
+
}
|
|
26284
|
+
}
|
|
26155
26285
|
}
|
|
26156
26286
|
],
|
|
26157
26287
|
"name": "PolicyDefinition",
|
|
@@ -26192,7 +26322,7 @@
|
|
|
26192
26322
|
"immutable": true,
|
|
26193
26323
|
"locationInModule": {
|
|
26194
26324
|
"filename": "src/azure-policydefinition/lib/policy-definition.ts",
|
|
26195
|
-
"line":
|
|
26325
|
+
"line": 393
|
|
26196
26326
|
},
|
|
26197
26327
|
"name": "policyMode",
|
|
26198
26328
|
"type": {
|
|
@@ -26207,7 +26337,7 @@
|
|
|
26207
26337
|
"immutable": true,
|
|
26208
26338
|
"locationInModule": {
|
|
26209
26339
|
"filename": "src/azure-policydefinition/lib/policy-definition.ts",
|
|
26210
|
-
"line":
|
|
26340
|
+
"line": 386
|
|
26211
26341
|
},
|
|
26212
26342
|
"name": "policyType",
|
|
26213
26343
|
"type": {
|
|
@@ -26237,7 +26367,7 @@
|
|
|
26237
26367
|
"immutable": true,
|
|
26238
26368
|
"locationInModule": {
|
|
26239
26369
|
"filename": "src/azure-policydefinition/lib/policy-definition.ts",
|
|
26240
|
-
"line":
|
|
26370
|
+
"line": 379
|
|
26241
26371
|
},
|
|
26242
26372
|
"name": "resourceId",
|
|
26243
26373
|
"overrides": "@microsoft/terraform-cdk-constructs.core_azure.AzapiResource",
|
|
@@ -66978,7 +67108,7 @@
|
|
|
66978
67108
|
},
|
|
66979
67109
|
"locationInModule": {
|
|
66980
67110
|
"filename": "src/azure-policyassignment/lib/policy-assignment.ts",
|
|
66981
|
-
"line":
|
|
67111
|
+
"line": 416
|
|
66982
67112
|
},
|
|
66983
67113
|
"name": "createResourceBody",
|
|
66984
67114
|
"overrides": "@microsoft/terraform-cdk-constructs.core_azure.AzapiResource",
|
|
@@ -67022,7 +67152,7 @@
|
|
|
67022
67152
|
},
|
|
67023
67153
|
"locationInModule": {
|
|
67024
67154
|
"filename": "src/azure-policyassignment/lib/policy-assignment.ts",
|
|
67025
|
-
"line":
|
|
67155
|
+
"line": 447
|
|
67026
67156
|
},
|
|
67027
67157
|
"name": "resolveParentId",
|
|
67028
67158
|
"overrides": "@microsoft/terraform-cdk-constructs.core_azure.AzapiResource",
|
|
@@ -67058,6 +67188,28 @@
|
|
|
67058
67188
|
"primitive": "string"
|
|
67059
67189
|
}
|
|
67060
67190
|
}
|
|
67191
|
+
},
|
|
67192
|
+
{
|
|
67193
|
+
"docs": {
|
|
67194
|
+
"custom": {
|
|
67195
|
+
"override": "true"
|
|
67196
|
+
},
|
|
67197
|
+
"returns": "false - Policy Assignments cannot have tags",
|
|
67198
|
+
"stability": "stable",
|
|
67199
|
+
"summary": "Policy Assignments do not support tags at the resource level Tags are not a valid property for Microsoft.Authorization/policyAssignments."
|
|
67200
|
+
},
|
|
67201
|
+
"locationInModule": {
|
|
67202
|
+
"filename": "src/azure-policyassignment/lib/policy-assignment.ts",
|
|
67203
|
+
"line": 403
|
|
67204
|
+
},
|
|
67205
|
+
"name": "supportsTags",
|
|
67206
|
+
"overrides": "@microsoft/terraform-cdk-constructs.core_azure.AzapiResource",
|
|
67207
|
+
"protected": true,
|
|
67208
|
+
"returns": {
|
|
67209
|
+
"type": {
|
|
67210
|
+
"primitive": "boolean"
|
|
67211
|
+
}
|
|
67212
|
+
}
|
|
67061
67213
|
}
|
|
67062
67214
|
],
|
|
67063
67215
|
"name": "PolicyAssignment",
|
|
@@ -67071,7 +67223,7 @@
|
|
|
67071
67223
|
"immutable": true,
|
|
67072
67224
|
"locationInModule": {
|
|
67073
67225
|
"filename": "src/azure-policyassignment/lib/policy-assignment.ts",
|
|
67074
|
-
"line":
|
|
67226
|
+
"line": 474
|
|
67075
67227
|
},
|
|
67076
67228
|
"name": "assignmentScope",
|
|
67077
67229
|
"type": {
|
|
@@ -67086,7 +67238,7 @@
|
|
|
67086
67238
|
"immutable": true,
|
|
67087
67239
|
"locationInModule": {
|
|
67088
67240
|
"filename": "src/azure-policyassignment/lib/policy-assignment.ts",
|
|
67089
|
-
"line":
|
|
67241
|
+
"line": 481
|
|
67090
67242
|
},
|
|
67091
67243
|
"name": "enforcementMode",
|
|
67092
67244
|
"type": {
|
|
@@ -67129,7 +67281,7 @@
|
|
|
67129
67281
|
"immutable": true,
|
|
67130
67282
|
"locationInModule": {
|
|
67131
67283
|
"filename": "src/azure-policyassignment/lib/policy-assignment.ts",
|
|
67132
|
-
"line":
|
|
67284
|
+
"line": 467
|
|
67133
67285
|
},
|
|
67134
67286
|
"name": "policyDefinitionId",
|
|
67135
67287
|
"type": {
|
|
@@ -67159,7 +67311,7 @@
|
|
|
67159
67311
|
"immutable": true,
|
|
67160
67312
|
"locationInModule": {
|
|
67161
67313
|
"filename": "src/azure-policyassignment/lib/policy-assignment.ts",
|
|
67162
|
-
"line":
|
|
67314
|
+
"line": 460
|
|
67163
67315
|
},
|
|
67164
67316
|
"name": "resourceId",
|
|
67165
67317
|
"overrides": "@microsoft/terraform-cdk-constructs.core_azure.AzapiResource",
|
|
@@ -67849,6 +68001,40 @@
|
|
|
67849
68001
|
}
|
|
67850
68002
|
}
|
|
67851
68003
|
},
|
|
68004
|
+
{
|
|
68005
|
+
"docs": {
|
|
68006
|
+
"custom": {
|
|
68007
|
+
"override": "true"
|
|
68008
|
+
},
|
|
68009
|
+
"remarks": "Policy definitions require special handling because:\n1. They contain complex nested objects (ARM templates in DeployIfNotExists policies)\n2. They use Azure Policy expressions like [field()], [parameters()], [variables()]\n which are NOT Terraform interpolations but Azure-native expressions\n3. Schema validation may strip unknown properties from deeply nested structures",
|
|
68010
|
+
"returns": "Modified ResourceConfig with policy-specific settings",
|
|
68011
|
+
"stability": "stable",
|
|
68012
|
+
"summary": "Customizes the AZAPI ResourceConfig for policy-specific requirements."
|
|
68013
|
+
},
|
|
68014
|
+
"locationInModule": {
|
|
68015
|
+
"filename": "src/azure-policydefinition/lib/policy-definition.ts",
|
|
68016
|
+
"line": 358
|
|
68017
|
+
},
|
|
68018
|
+
"name": "customizeResourceConfig",
|
|
68019
|
+
"overrides": "@microsoft/terraform-cdk-constructs.core_azure.AzapiResource",
|
|
68020
|
+
"parameters": [
|
|
68021
|
+
{
|
|
68022
|
+
"docs": {
|
|
68023
|
+
"summary": "- The base ResourceConfig."
|
|
68024
|
+
},
|
|
68025
|
+
"name": "config",
|
|
68026
|
+
"type": {
|
|
68027
|
+
"primitive": "any"
|
|
68028
|
+
}
|
|
68029
|
+
}
|
|
68030
|
+
],
|
|
68031
|
+
"protected": true,
|
|
68032
|
+
"returns": {
|
|
68033
|
+
"type": {
|
|
68034
|
+
"primitive": "any"
|
|
68035
|
+
}
|
|
68036
|
+
}
|
|
68037
|
+
},
|
|
67852
68038
|
{
|
|
67853
68039
|
"docs": {
|
|
67854
68040
|
"stability": "stable",
|
|
@@ -67884,6 +68070,28 @@
|
|
|
67884
68070
|
"primitive": "string"
|
|
67885
68071
|
}
|
|
67886
68072
|
}
|
|
68073
|
+
},
|
|
68074
|
+
{
|
|
68075
|
+
"docs": {
|
|
68076
|
+
"custom": {
|
|
68077
|
+
"override": "true"
|
|
68078
|
+
},
|
|
68079
|
+
"returns": "false - Policy Definitions cannot have tags",
|
|
68080
|
+
"stability": "stable",
|
|
68081
|
+
"summary": "Policy Definitions do not support tags at the resource level Tags are not a valid property for Microsoft.Authorization/policyDefinitions."
|
|
68082
|
+
},
|
|
68083
|
+
"locationInModule": {
|
|
68084
|
+
"filename": "src/azure-policydefinition/lib/policy-definition.ts",
|
|
68085
|
+
"line": 341
|
|
68086
|
+
},
|
|
68087
|
+
"name": "supportsTags",
|
|
68088
|
+
"overrides": "@microsoft/terraform-cdk-constructs.core_azure.AzapiResource",
|
|
68089
|
+
"protected": true,
|
|
68090
|
+
"returns": {
|
|
68091
|
+
"type": {
|
|
68092
|
+
"primitive": "boolean"
|
|
68093
|
+
}
|
|
68094
|
+
}
|
|
67887
68095
|
}
|
|
67888
68096
|
],
|
|
67889
68097
|
"name": "PolicyDefinition",
|
|
@@ -67925,7 +68133,7 @@
|
|
|
67925
68133
|
"immutable": true,
|
|
67926
68134
|
"locationInModule": {
|
|
67927
68135
|
"filename": "src/azure-policydefinition/lib/policy-definition.ts",
|
|
67928
|
-
"line":
|
|
68136
|
+
"line": 393
|
|
67929
68137
|
},
|
|
67930
68138
|
"name": "policyMode",
|
|
67931
68139
|
"type": {
|
|
@@ -67940,7 +68148,7 @@
|
|
|
67940
68148
|
"immutable": true,
|
|
67941
68149
|
"locationInModule": {
|
|
67942
68150
|
"filename": "src/azure-policydefinition/lib/policy-definition.ts",
|
|
67943
|
-
"line":
|
|
68151
|
+
"line": 386
|
|
67944
68152
|
},
|
|
67945
68153
|
"name": "policyType",
|
|
67946
68154
|
"type": {
|
|
@@ -67970,7 +68178,7 @@
|
|
|
67970
68178
|
"immutable": true,
|
|
67971
68179
|
"locationInModule": {
|
|
67972
68180
|
"filename": "src/azure-policydefinition/lib/policy-definition.ts",
|
|
67973
|
-
"line":
|
|
68181
|
+
"line": 379
|
|
67974
68182
|
},
|
|
67975
68183
|
"name": "resourceId",
|
|
67976
68184
|
"overrides": "@microsoft/terraform-cdk-constructs.core_azure.AzapiResource",
|
|
@@ -88777,7 +88985,7 @@
|
|
|
88777
88985
|
},
|
|
88778
88986
|
"locationInModule": {
|
|
88779
88987
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
88780
|
-
"line":
|
|
88988
|
+
"line": 1210
|
|
88781
88989
|
},
|
|
88782
88990
|
"name": "addAccess",
|
|
88783
88991
|
"parameters": [
|
|
@@ -88803,13 +89011,16 @@
|
|
|
88803
89011
|
},
|
|
88804
89012
|
{
|
|
88805
89013
|
"docs": {
|
|
89014
|
+
"custom": {
|
|
89015
|
+
"throws": "Error if the resource type does not support tags"
|
|
89016
|
+
},
|
|
88806
89017
|
"remarks": "This method provides proper immutability by storing tags separately from props.\nTags added via this method are combined with tags from props and included in\nthe deployed Azure resource.\n\n**Important:** In CDK for Terraform, tags should ideally be set during resource\nconstruction via props. While this method allows adding tags after construction,\nthose tags are only included if added before the Terraform configuration is\nsynthesized. For best results, add all tags via props or call addTag() in the\nsame scope where the resource is created.",
|
|
88807
89018
|
"stability": "stable",
|
|
88808
89019
|
"summary": "Adds a tag to this resource. The tag will be included in the Azure resource."
|
|
88809
89020
|
},
|
|
88810
89021
|
"locationInModule": {
|
|
88811
89022
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
88812
|
-
"line":
|
|
89023
|
+
"line": 1235
|
|
88813
89024
|
},
|
|
88814
89025
|
"name": "addTag",
|
|
88815
89026
|
"parameters": [
|
|
@@ -88842,7 +89053,7 @@
|
|
|
88842
89053
|
},
|
|
88843
89054
|
"locationInModule": {
|
|
88844
89055
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
88845
|
-
"line":
|
|
89056
|
+
"line": 1263
|
|
88846
89057
|
},
|
|
88847
89058
|
"name": "allTags",
|
|
88848
89059
|
"protected": true,
|
|
@@ -88866,7 +89077,7 @@
|
|
|
88866
89077
|
},
|
|
88867
89078
|
"locationInModule": {
|
|
88868
89079
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
88869
|
-
"line":
|
|
89080
|
+
"line": 708
|
|
88870
89081
|
},
|
|
88871
89082
|
"name": "analyzeMigrationTo",
|
|
88872
89083
|
"parameters": [
|
|
@@ -88896,7 +89107,7 @@
|
|
|
88896
89107
|
},
|
|
88897
89108
|
"locationInModule": {
|
|
88898
89109
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
88899
|
-
"line":
|
|
89110
|
+
"line": 552
|
|
88900
89111
|
},
|
|
88901
89112
|
"name": "apiSchema",
|
|
88902
89113
|
"protected": true,
|
|
@@ -88914,7 +89125,7 @@
|
|
|
88914
89125
|
},
|
|
88915
89126
|
"locationInModule": {
|
|
88916
89127
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
88917
|
-
"line":
|
|
89128
|
+
"line": 1151
|
|
88918
89129
|
},
|
|
88919
89130
|
"name": "createAzapiDataSource",
|
|
88920
89131
|
"parameters": [
|
|
@@ -88943,7 +89154,7 @@
|
|
|
88943
89154
|
},
|
|
88944
89155
|
"locationInModule": {
|
|
88945
89156
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
88946
|
-
"line":
|
|
89157
|
+
"line": 1081
|
|
88947
89158
|
},
|
|
88948
89159
|
"name": "createAzapiResource",
|
|
88949
89160
|
"parameters": [
|
|
@@ -89046,7 +89257,7 @@
|
|
|
89046
89257
|
},
|
|
89047
89258
|
"locationInModule": {
|
|
89048
89259
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89049
|
-
"line":
|
|
89260
|
+
"line": 963
|
|
89050
89261
|
},
|
|
89051
89262
|
"name": "createMonitoringResources",
|
|
89052
89263
|
"parameters": [
|
|
@@ -89072,7 +89283,7 @@
|
|
|
89072
89283
|
},
|
|
89073
89284
|
"locationInModule": {
|
|
89074
89285
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89075
|
-
"line":
|
|
89286
|
+
"line": 564
|
|
89076
89287
|
},
|
|
89077
89288
|
"name": "createResourceBody",
|
|
89078
89289
|
"parameters": [
|
|
@@ -89093,6 +89304,37 @@
|
|
|
89093
89304
|
}
|
|
89094
89305
|
}
|
|
89095
89306
|
},
|
|
89307
|
+
{
|
|
89308
|
+
"docs": {
|
|
89309
|
+
"example": "protected customizeResourceConfig(config: ResourceConfig): ResourceConfig {\n return {\n ...config,\n schemaValidationEnabled: false,\n ignoreMissingProperty: true,\n };\n}",
|
|
89310
|
+
"remarks": "Override this method to add resource-specific configuration like:\n- schemaValidationEnabled: false (for resources with complex nested structures)\n- ignoreMissingProperty: true (for resources with dynamic/unknown properties)\n- ignoreNullProperty: true (for resources that should skip null values)",
|
|
89311
|
+
"returns": "The potentially modified ResourceConfig",
|
|
89312
|
+
"stability": "stable",
|
|
89313
|
+
"summary": "Allows child classes to customize the ResourceConfig before resource creation."
|
|
89314
|
+
},
|
|
89315
|
+
"locationInModule": {
|
|
89316
|
+
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89317
|
+
"line": 1064
|
|
89318
|
+
},
|
|
89319
|
+
"name": "customizeResourceConfig",
|
|
89320
|
+
"parameters": [
|
|
89321
|
+
{
|
|
89322
|
+
"docs": {
|
|
89323
|
+
"summary": "- The base ResourceConfig that will be used to create the resource."
|
|
89324
|
+
},
|
|
89325
|
+
"name": "config",
|
|
89326
|
+
"type": {
|
|
89327
|
+
"primitive": "any"
|
|
89328
|
+
}
|
|
89329
|
+
}
|
|
89330
|
+
],
|
|
89331
|
+
"protected": true,
|
|
89332
|
+
"returns": {
|
|
89333
|
+
"type": {
|
|
89334
|
+
"primitive": "any"
|
|
89335
|
+
}
|
|
89336
|
+
}
|
|
89337
|
+
},
|
|
89096
89338
|
{
|
|
89097
89339
|
"docs": {
|
|
89098
89340
|
"returns": "Default location or undefined",
|
|
@@ -89101,7 +89343,7 @@
|
|
|
89101
89343
|
},
|
|
89102
89344
|
"locationInModule": {
|
|
89103
89345
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89104
|
-
"line":
|
|
89346
|
+
"line": 570
|
|
89105
89347
|
},
|
|
89106
89348
|
"name": "defaultLocation",
|
|
89107
89349
|
"protected": true,
|
|
@@ -89122,7 +89364,7 @@
|
|
|
89122
89364
|
},
|
|
89123
89365
|
"locationInModule": {
|
|
89124
89366
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89125
|
-
"line":
|
|
89367
|
+
"line": 531
|
|
89126
89368
|
},
|
|
89127
89369
|
"name": "defaultVersion",
|
|
89128
89370
|
"protected": true,
|
|
@@ -89165,7 +89407,7 @@
|
|
|
89165
89407
|
},
|
|
89166
89408
|
"locationInModule": {
|
|
89167
89409
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89168
|
-
"line":
|
|
89410
|
+
"line": 679
|
|
89169
89411
|
},
|
|
89170
89412
|
"name": "latestVersion",
|
|
89171
89413
|
"returns": {
|
|
@@ -89183,7 +89425,7 @@
|
|
|
89183
89425
|
},
|
|
89184
89426
|
"locationInModule": {
|
|
89185
89427
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89186
|
-
"line":
|
|
89428
|
+
"line": 586
|
|
89187
89429
|
},
|
|
89188
89430
|
"name": "parentResourceForLocation",
|
|
89189
89431
|
"protected": true,
|
|
@@ -89202,7 +89444,7 @@
|
|
|
89202
89444
|
},
|
|
89203
89445
|
"locationInModule": {
|
|
89204
89446
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89205
|
-
"line":
|
|
89447
|
+
"line": 578
|
|
89206
89448
|
},
|
|
89207
89449
|
"name": "requiresLocation",
|
|
89208
89450
|
"protected": true,
|
|
@@ -89219,7 +89461,7 @@
|
|
|
89219
89461
|
},
|
|
89220
89462
|
"locationInModule": {
|
|
89221
89463
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89222
|
-
"line":
|
|
89464
|
+
"line": 603
|
|
89223
89465
|
},
|
|
89224
89466
|
"name": "resolveLocation",
|
|
89225
89467
|
"parameters": [
|
|
@@ -89247,7 +89489,7 @@
|
|
|
89247
89489
|
},
|
|
89248
89490
|
"locationInModule": {
|
|
89249
89491
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89250
|
-
"line":
|
|
89492
|
+
"line": 641
|
|
89251
89493
|
},
|
|
89252
89494
|
"name": "resolveName",
|
|
89253
89495
|
"parameters": [
|
|
@@ -89277,7 +89519,7 @@
|
|
|
89277
89519
|
},
|
|
89278
89520
|
"locationInModule": {
|
|
89279
89521
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89280
|
-
"line":
|
|
89522
|
+
"line": 873
|
|
89281
89523
|
},
|
|
89282
89524
|
"name": "resolveParentId",
|
|
89283
89525
|
"parameters": [
|
|
@@ -89310,7 +89552,7 @@
|
|
|
89310
89552
|
},
|
|
89311
89553
|
"locationInModule": {
|
|
89312
89554
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89313
|
-
"line":
|
|
89555
|
+
"line": 655
|
|
89314
89556
|
},
|
|
89315
89557
|
"name": "resolveSchema",
|
|
89316
89558
|
"protected": true,
|
|
@@ -89330,7 +89572,7 @@
|
|
|
89330
89572
|
},
|
|
89331
89573
|
"locationInModule": {
|
|
89332
89574
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89333
|
-
"line":
|
|
89575
|
+
"line": 541
|
|
89334
89576
|
},
|
|
89335
89577
|
"name": "resourceType",
|
|
89336
89578
|
"protected": true,
|
|
@@ -89349,7 +89591,7 @@
|
|
|
89349
89591
|
},
|
|
89350
89592
|
"locationInModule": {
|
|
89351
89593
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89352
|
-
"line":
|
|
89594
|
+
"line": 693
|
|
89353
89595
|
},
|
|
89354
89596
|
"name": "supportedVersions",
|
|
89355
89597
|
"returns": {
|
|
@@ -89363,6 +89605,24 @@
|
|
|
89363
89605
|
}
|
|
89364
89606
|
}
|
|
89365
89607
|
},
|
|
89608
|
+
{
|
|
89609
|
+
"docs": {
|
|
89610
|
+
"returns": "true if the resource supports tags (default), false otherwise",
|
|
89611
|
+
"stability": "stable",
|
|
89612
|
+
"summary": "Override in child classes to indicate if the resource type supports tags Some Azure resources (e.g., Policy Definitions, Policy Assignments) do not support tags."
|
|
89613
|
+
},
|
|
89614
|
+
"locationInModule": {
|
|
89615
|
+
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89616
|
+
"line": 595
|
|
89617
|
+
},
|
|
89618
|
+
"name": "supportsTags",
|
|
89619
|
+
"protected": true,
|
|
89620
|
+
"returns": {
|
|
89621
|
+
"type": {
|
|
89622
|
+
"primitive": "boolean"
|
|
89623
|
+
}
|
|
89624
|
+
}
|
|
89625
|
+
},
|
|
89366
89626
|
{
|
|
89367
89627
|
"docs": {
|
|
89368
89628
|
"stability": "stable",
|
|
@@ -89370,7 +89630,7 @@
|
|
|
89370
89630
|
},
|
|
89371
89631
|
"locationInModule": {
|
|
89372
89632
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89373
|
-
"line":
|
|
89633
|
+
"line": 1172
|
|
89374
89634
|
},
|
|
89375
89635
|
"name": "updateAzapiResource",
|
|
89376
89636
|
"parameters": [
|
|
@@ -89494,7 +89754,7 @@
|
|
|
89494
89754
|
"immutable": true,
|
|
89495
89755
|
"locationInModule": {
|
|
89496
89756
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89497
|
-
"line":
|
|
89757
|
+
"line": 1196
|
|
89498
89758
|
},
|
|
89499
89759
|
"name": "output",
|
|
89500
89760
|
"type": {
|
|
@@ -89509,7 +89769,7 @@
|
|
|
89509
89769
|
"immutable": true,
|
|
89510
89770
|
"locationInModule": {
|
|
89511
89771
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89512
|
-
"line":
|
|
89772
|
+
"line": 1189
|
|
89513
89773
|
},
|
|
89514
89774
|
"name": "resource",
|
|
89515
89775
|
"type": {
|
|
@@ -89524,7 +89784,7 @@
|
|
|
89524
89784
|
"immutable": true,
|
|
89525
89785
|
"locationInModule": {
|
|
89526
89786
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89527
|
-
"line":
|
|
89787
|
+
"line": 1181
|
|
89528
89788
|
},
|
|
89529
89789
|
"name": "resourceId",
|
|
89530
89790
|
"type": {
|
|
@@ -89540,7 +89800,7 @@
|
|
|
89540
89800
|
"immutable": true,
|
|
89541
89801
|
"locationInModule": {
|
|
89542
89802
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89543
|
-
"line":
|
|
89803
|
+
"line": 1250
|
|
89544
89804
|
},
|
|
89545
89805
|
"name": "tags",
|
|
89546
89806
|
"type": {
|
|
@@ -89872,7 +90132,7 @@
|
|
|
89872
90132
|
},
|
|
89873
90133
|
"locationInModule": {
|
|
89874
90134
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89875
|
-
"line":
|
|
90135
|
+
"line": 1285
|
|
89876
90136
|
},
|
|
89877
90137
|
"parameters": [
|
|
89878
90138
|
{
|
|
@@ -89898,7 +90158,7 @@
|
|
|
89898
90158
|
"kind": "class",
|
|
89899
90159
|
"locationInModule": {
|
|
89900
90160
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89901
|
-
"line":
|
|
90161
|
+
"line": 1284
|
|
89902
90162
|
},
|
|
89903
90163
|
"name": "AzapiRoleAssignment",
|
|
89904
90164
|
"namespace": "core_azure",
|
|
@@ -89915,7 +90175,7 @@
|
|
|
89915
90175
|
"kind": "interface",
|
|
89916
90176
|
"locationInModule": {
|
|
89917
90177
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89918
|
-
"line":
|
|
90178
|
+
"line": 1275
|
|
89919
90179
|
},
|
|
89920
90180
|
"name": "AzapiRoleAssignmentProps",
|
|
89921
90181
|
"namespace": "core_azure",
|
|
@@ -89928,7 +90188,7 @@
|
|
|
89928
90188
|
"immutable": true,
|
|
89929
90189
|
"locationInModule": {
|
|
89930
90190
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89931
|
-
"line":
|
|
90191
|
+
"line": 1276
|
|
89932
90192
|
},
|
|
89933
90193
|
"name": "objectId",
|
|
89934
90194
|
"type": {
|
|
@@ -89943,7 +90203,7 @@
|
|
|
89943
90203
|
"immutable": true,
|
|
89944
90204
|
"locationInModule": {
|
|
89945
90205
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89946
|
-
"line":
|
|
90206
|
+
"line": 1277
|
|
89947
90207
|
},
|
|
89948
90208
|
"name": "roleDefinitionName",
|
|
89949
90209
|
"type": {
|
|
@@ -89958,7 +90218,7 @@
|
|
|
89958
90218
|
"immutable": true,
|
|
89959
90219
|
"locationInModule": {
|
|
89960
90220
|
"filename": "src/core-azure/lib/azapi/azapi-resource.ts",
|
|
89961
|
-
"line":
|
|
90221
|
+
"line": 1278
|
|
89962
90222
|
},
|
|
89963
90223
|
"name": "scope",
|
|
89964
90224
|
"type": {
|
|
@@ -103849,6 +104109,6 @@
|
|
|
103849
104109
|
"usedFeatures": [
|
|
103850
104110
|
"class-covariant-overrides"
|
|
103851
104111
|
],
|
|
103852
|
-
"version": "1.3.
|
|
103853
|
-
"fingerprint": "
|
|
104112
|
+
"version": "1.3.1",
|
|
104113
|
+
"fingerprint": "w+ea+XnVMR7YnDLUcTn52TfpwKdhSSjBxDOHWGpM3cY="
|
|
103854
104114
|
}
|