@cdktn/provider-generator 0.24.0-pre.5 → 0.24.0-pre.50

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.
Files changed (67) hide show
  1. package/.spec.swcrc +22 -0
  2. package/LICENSE +355 -0
  3. package/README.md +1 -1
  4. package/build/__tests__/edge-provider-schema/cli.js +8 -3
  5. package/build/get/__tests__/generator/import-style.test.d.ts +2 -0
  6. package/build/get/__tests__/generator/import-style.test.js +101 -0
  7. package/build/get/__tests__/generator/module-generator.test.js +12 -12
  8. package/build/get/constructs-maker.d.ts +5 -1
  9. package/build/get/constructs-maker.js +14 -6
  10. package/build/get/generator/emitter/struct-emitter.d.ts +2 -1
  11. package/build/get/generator/emitter/struct-emitter.js +14 -11
  12. package/build/get/generator/module-generator.js +3 -3
  13. package/build/get/generator/provider-generator.d.ts +9 -1
  14. package/build/get/generator/provider-generator.js +9 -6
  15. package/jest.config.js +16 -9
  16. package/package.json +24 -23
  17. package/package.sh +1 -1
  18. package/src/__tests__/__snapshots__/edge-provider-schema.test.ts.snap +8 -8
  19. package/src/__tests__/__snapshots__/provider.test.ts.snap +2951 -2951
  20. package/src/__tests__/edge-provider-schema/builder.ts +185 -0
  21. package/src/__tests__/edge-provider-schema/cli.ts +51 -0
  22. package/src/__tests__/edge-provider-schema/index.ts +161 -0
  23. package/src/__tests__/edge-provider-schema.test.ts +24 -0
  24. package/src/__tests__/provider.test.ts +180 -0
  25. package/src/get/__tests__/constructs-maker.test.ts +118 -0
  26. package/src/get/__tests__/generator/__snapshots__/complex-computed-types.test.ts.snap +5 -5
  27. package/src/get/__tests__/generator/__snapshots__/export-sharding.test.ts.snap +3310 -3310
  28. package/src/get/__tests__/generator/__snapshots__/module-generator.test.ts.snap +355 -355
  29. package/src/get/__tests__/generator/__snapshots__/nested-types.test.ts.snap +8 -8
  30. package/src/get/__tests__/generator/__snapshots__/provider.test.ts.snap +8 -8
  31. package/src/get/__tests__/generator/__snapshots__/resource-types.test.ts.snap +126 -126
  32. package/src/get/__tests__/generator/__snapshots__/skipped-attributes.test.ts.snap +17 -17
  33. package/src/get/__tests__/generator/__snapshots__/types.test.ts.snap +65 -65
  34. package/src/get/__tests__/generator/complex-computed-types.test.ts +28 -0
  35. package/src/get/__tests__/generator/deep-nested-attributes.test.ts +56 -0
  36. package/src/get/__tests__/generator/description-escaping.test.ts +84 -0
  37. package/src/get/__tests__/generator/empty-provider-resources.test.ts +26 -0
  38. package/src/get/__tests__/generator/export-sharding.test.ts +169 -0
  39. package/src/get/__tests__/generator/import-style.test.ts +129 -0
  40. package/src/get/__tests__/generator/module-generator.test.ts +528 -0
  41. package/src/get/__tests__/generator/nested-types.test.ts +54 -0
  42. package/src/get/__tests__/generator/provider.test.ts +51 -0
  43. package/src/get/__tests__/generator/resource-types.test.ts +118 -0
  44. package/src/get/__tests__/generator/skipped-attributes.test.ts +72 -0
  45. package/src/get/__tests__/generator/types.test.ts +611 -0
  46. package/src/get/__tests__/generator/versions-file.test.ts +72 -0
  47. package/src/get/__tests__/util.ts +75 -0
  48. package/src/get/constructs-maker.ts +822 -0
  49. package/src/get/generator/custom-defaults.ts +493 -0
  50. package/src/get/generator/emitter/attributes-emitter.ts +225 -0
  51. package/src/get/generator/emitter/index.ts +5 -0
  52. package/src/get/generator/emitter/resource-emitter.ts +226 -0
  53. package/src/get/generator/emitter/struct-emitter.ts +683 -0
  54. package/src/get/generator/loop-detection.ts +81 -0
  55. package/src/get/generator/models/attribute-model.ts +216 -0
  56. package/src/get/generator/models/attribute-type-model.ts +448 -0
  57. package/src/get/generator/models/index.ts +7 -0
  58. package/src/get/generator/models/resource-model.ts +161 -0
  59. package/src/get/generator/models/scope.ts +54 -0
  60. package/src/get/generator/models/struct.ts +116 -0
  61. package/src/get/generator/module-generator.ts +234 -0
  62. package/src/get/generator/provider-generator.ts +355 -0
  63. package/src/get/generator/resource-parser.ts +762 -0
  64. package/src/get/generator/sanitized-comments.ts +49 -0
  65. package/src/get/generator/skipped-attributes.ts +27 -0
  66. package/src/index.ts +40 -0
  67. package/src/util.ts +26 -0
@@ -0,0 +1,493 @@
1
+ // Copyright (c) HashiCorp, Inc
2
+ // SPDX-License-Identifier: MPL-2.0
3
+ export const CUSTOM_DEFAULTS: { [fullName: string]: any } = {
4
+ "aws.security_group.ingress.cidr_blocks": null,
5
+ "aws.security_group.ingress.description": null,
6
+ "aws.security_group.ingress.from_port": null,
7
+ "aws.security_group.ingress.ipv6_cidr_blocks": null,
8
+ "aws.security_group.ingress.prefix_list_ids": null,
9
+ "aws.security_group.ingress.protocol": null,
10
+ "aws.security_group.ingress.security_groups": null,
11
+ "aws.security_group.ingress.self": null,
12
+ "aws.security_group.ingress.to_port": null,
13
+ "aws.security_group.egress.cidr_blocks": null,
14
+ "aws.security_group.egress.description": null,
15
+ "aws.security_group.egress.from_port": null,
16
+ "aws.security_group.egress.ipv6_cidr_blocks": null,
17
+ "aws.security_group.egress.prefix_list_ids": null,
18
+ "aws.security_group.egress.protocol": null,
19
+ "aws.security_group.egress.security_groups": null,
20
+ "aws.security_group.egress.self": null,
21
+ "aws.security_group.egress.to_port": null,
22
+
23
+ "aws.default_route_table.route.cidr_block": null,
24
+ "aws.default_route_table.route.ipv6_cidr_block": null,
25
+ "aws.default_route_table.route.egress_only_gateway_id": null,
26
+ "aws.default_route_table.route.gateway_id": null,
27
+ "aws.default_route_table.route.instance_id": null,
28
+ "aws.default_route_table.route.nat_gateway_id": null,
29
+ "aws.default_route_table.route.network_interface_id": null,
30
+ "aws.default_route_table.route.transit_gateway_id": null,
31
+ "aws.default_route_table.route.vpc_endpoint_id": null,
32
+ "aws.default_route_table.route.vpc_peering_connection_id": null,
33
+ "aws.default_route_table.route.destination_prefix_list_id": null,
34
+ "aws.default_route_table.route.core_network_arn": null,
35
+
36
+ "aws.emr_cluster.step.action_on_failure": null,
37
+ "aws.emr_cluster.step.hadoop_jar_step": null,
38
+ "aws.emr_cluster.step.name": null,
39
+ "aws.emr_cluster.step.hadoop_jar_step.args": null,
40
+ "aws.emr_cluster.step.hadoop_jar_step.jar": null,
41
+ "aws.emr_cluster.step.hadoop_jar_step.main_class": null,
42
+ "aws.emr_cluster.step.hadoop_jar_step.properties": null,
43
+
44
+ "aws.network_acl.ingress.from_port": null,
45
+ "aws.network_acl.ingress.to_port": null,
46
+ "aws.network_acl.ingress.rule_no": null,
47
+ "aws.network_acl.ingress.action": null,
48
+ "aws.network_acl.ingress.protocol": null,
49
+ "aws.network_acl.ingress.cidr_block": null,
50
+ "aws.network_acl.ingress.ipv6_cidr_block": null,
51
+ "aws.network_acl.ingress.icmp_type": null,
52
+ "aws.network_acl.ingress.icmp_code": null,
53
+ "aws.network_acl.egress.from_port": null,
54
+ "aws.network_acl.egress.to_port": null,
55
+ "aws.network_acl.egress.rule_no": null,
56
+ "aws.network_acl.egress.action": null,
57
+ "aws.network_acl.egress.protocol": null,
58
+ "aws.network_acl.egress.cidr_block": null,
59
+ "aws.network_acl.egress.ipv6_cidr_block": null,
60
+ "aws.network_acl.egress.icmp_type": null,
61
+ "aws.network_acl.egress.icmp_code": null,
62
+
63
+ "aws.route_table.route.cidr_block": null,
64
+ "aws.route_table.route.ipv6_cidr_block": null,
65
+ "aws.route_table.route.egress_only_gateway_id": null,
66
+ "aws.route_table.route.gateway_id": null,
67
+ "aws.route_table.route.instance_id": null,
68
+ "aws.route_table.route.nat_gateway_id": null,
69
+ "aws.route_table.route.local_gateway_id": null,
70
+ "aws.route_table.route.network_interface_id": null,
71
+ "aws.route_table.route.transit_gateway_id": null,
72
+ "aws.route_table.route.vpc_endpoint_id": null,
73
+ "aws.route_table.route.vpc_peering_connection_id": null,
74
+ "aws.route_table.route.destination_prefix_list_id": null,
75
+ "aws.route_table.route.carrier_gateway_id": null,
76
+ "aws.route_table.route.core_network_arn": null,
77
+
78
+ "aws.default_security_group.ingress.cidr_blocks": null,
79
+ "aws.default_security_group.ingress.description": null,
80
+ "aws.default_security_group.ingress.from_port": null,
81
+ "aws.default_security_group.ingress.ipv6_cidr_blocks": null,
82
+ "aws.default_security_group.ingress.prefix_list_ids": null,
83
+ "aws.default_security_group.ingress.protocol": null,
84
+ "aws.default_security_group.ingress.security_groups": null,
85
+ "aws.default_security_group.ingress.self": null,
86
+ "aws.default_security_group.ingress.to_port": null,
87
+ "aws.default_security_group.egress.cidr_blocks": null,
88
+ "aws.default_security_group.egress.description": null,
89
+ "aws.default_security_group.egress.from_port": null,
90
+ "aws.default_security_group.egress.ipv6_cidr_blocks": null,
91
+ "aws.default_security_group.egress.prefix_list_ids": null,
92
+ "aws.default_security_group.egress.protocol": null,
93
+ "aws.default_security_group.egress.security_groups": null,
94
+ "aws.default_security_group.egress.self": null,
95
+ "aws.default_security_group.egress.to_port": null,
96
+
97
+ "azuread.application.app_role.id": null,
98
+ "azuread.application.app_role.allowed_member_types": null,
99
+ "azuread.application.app_role.description": null,
100
+ "azuread.application.app_role.display_name": null,
101
+ "azuread.application.app_role.is_enabled": null,
102
+ "azuread.application.app_role.value": null,
103
+ "azuread.application.oauth2_permissions.id": null,
104
+ "azuread.application.oauth2_permissions.admin_consent_description": null,
105
+ "azuread.application.oauth2_permissions.admin_consent_display_name": null,
106
+ "azuread.application.oauth2_permissions.value": null,
107
+ "azuread.application.oauth2_permissions.type": null,
108
+ "azuread.application.oauth2_permissions.is_enabled": null,
109
+ "azuread.application.oauth2_permissions.user_consent_description": null,
110
+ "azuread.application.oauth2_permissions.user_consent_display_name": null,
111
+
112
+ "azurestack.route_table.route.name": null,
113
+ "azurestack.route_table.route.address_prefix": null,
114
+ "azurestack.route_table.route.next_hop_type": null,
115
+ "azurestack.route_table.route.next_hop_in_ip_address": null,
116
+
117
+ "azurestack.network_security_group.security_rule.name": null,
118
+ "azurestack.network_security_group.security_rule.description": null,
119
+ "azurestack.network_security_group.security_rule.protocol": null,
120
+ "azurestack.network_security_group.security_rule.source_port_range": null,
121
+ "azurestack.network_security_group.security_rule.source_port_ranges": null,
122
+ "azurestack.network_security_group.security_rule.destination_port_range":
123
+ null,
124
+ "azurestack.network_security_group.security_rule.destination_port_ranges":
125
+ null,
126
+ "azurestack.network_security_group.security_rule.source_address_prefix": null,
127
+ "azurestack.network_security_group.security_rule.source_address_prefixes":
128
+ null,
129
+ "azurestack.network_security_group.security_rule.destination_address_prefix":
130
+ null,
131
+ "azurestack.network_security_group.security_rule.destination_address_prefixes":
132
+ null,
133
+ "azurestack.network_security_group.security_rule.destination_application_security_group_ids":
134
+ null,
135
+ "azurestack.network_security_group.security_rule.source_application_security_group_ids":
136
+ null,
137
+ "azurestack.network_security_group.security_rule.access": null,
138
+ "azurestack.network_security_group.security_rule.priority": null,
139
+ "azurestack.network_security_group.security_rule.direction": null,
140
+
141
+ "azurestack.virtual_network.subnet.name": null,
142
+ "azurestack.virtual_network.subnet.address_prefix": null,
143
+ "azurestack.virtual_network.subnet.security_group": null,
144
+ "azurestack.virtual_network.subnet.id": null,
145
+
146
+ "azurestack.key_vault.access_policy.tenant_id": null,
147
+ "azurestack.key_vault.access_policy.object_id": null,
148
+ "azurestack.key_vault.access_policy.application_id": null,
149
+ "azurestack.key_vault.access_policy.certificate_permissions": null,
150
+ "azurestack.key_vault.access_policy.key_permissions": null,
151
+ "azurestack.key_vault.access_policy.secret_permissions": null,
152
+ "azurestack.key_vault.access_policy.storage_permissions": null,
153
+
154
+ "vault.auth_backend.tune.default_lease_ttl": null,
155
+ "vault.auth_backend.tune.max_lease_ttl": null,
156
+ "vault.auth_backend.tune.audit_non_hmac_request_keys": null,
157
+ "vault.auth_backend.tune.audit_non_hmac_response_keys": null,
158
+ "vault.auth_backend.tune.listing_visibility": null,
159
+ "vault.auth_backend.tune.passthrough_request_headers": null,
160
+ "vault.auth_backend.tune.allowed_response_headers": null,
161
+ "vault.auth_backend.tune.token_type": null,
162
+
163
+ "vault.github_auth_backend.tune.default_lease_ttl": null,
164
+ "vault.github_auth_backend.tune.max_lease_ttl": null,
165
+ "vault.github_auth_backend.tune.audit_non_hmac_request_keys": null,
166
+ "vault.github_auth_backend.tune.audit_non_hmac_response_keys": null,
167
+ "vault.github_auth_backend.tune.listing_visibility": null,
168
+ "vault.github_auth_backend.tune.passthrough_request_headers": null,
169
+ "vault.github_auth_backend.tune.allowed_response_headers": null,
170
+ "vault.github_auth_backend.tune.token_type": null,
171
+
172
+ "vault.jwt_auth_backend.tune.default_lease_ttl": null,
173
+ "vault.jwt_auth_backend.tune.max_lease_ttl": null,
174
+ "vault.jwt_auth_backend.tune.audit_non_hmac_request_keys": null,
175
+ "vault.jwt_auth_backend.tune.audit_non_hmac_response_keys": null,
176
+ "vault.jwt_auth_backend.tune.listing_visibility": null,
177
+ "vault.jwt_auth_backend.tune.passthrough_request_headers": null,
178
+ "vault.jwt_auth_backend.tune.allowed_response_headers": null,
179
+ "vault.jwt_auth_backend.tune.token_type": null,
180
+
181
+ "vault.okta_auth_backend.group.group_name": null,
182
+ "vault.okta_auth_backend.group.policies": null,
183
+ "vault.okta_auth_backend.user.username": null,
184
+ "vault.okta_auth_backend.user.groups": null,
185
+ "vault.okta_auth_backend.user.policies": null,
186
+
187
+ "google.compute_instance.guest_accelerator.count": null,
188
+ "google.compute_instance.guest_accelerator.type": null,
189
+
190
+ "google.compute_instance_from_template.attached_disk.source": null,
191
+ "google.compute_instance_from_template.attached_disk.device_name": null,
192
+ "google.compute_instance_from_template.attached_disk.mode": null,
193
+ "google.compute_instance_from_template.attached_disk.disk_encryption_key_raw":
194
+ null,
195
+ "google.compute_instance_from_template.attached_disk.kms_key_self_link": null,
196
+ "google.compute_instance_from_template.guest_accelerator.count": null,
197
+ "google.compute_instance_from_template.guest_accelerator.type": null,
198
+ "google.compute_instance_from_template.service_account.email": null,
199
+ "google.compute_instance_from_template.service_account.scopes": null,
200
+ "google.compute_instance_from_template.scratch_disk.interface": null,
201
+ "google.compute_instance_from_template.network_interface.alias_ip_range.ip_cidr_range":
202
+ null,
203
+ "google.compute_instance_from_template.network_interface.alias_ip_range.subnetwork_range_name":
204
+ null,
205
+ "google.compute_instance_from_template.network_interface.access_config.nat_ip":
206
+ null,
207
+ "google.compute_instance_from_template.network_interface.access_config.public_ptr_domain_name":
208
+ null,
209
+ "google.compute_instance_from_template.network_interface.access_config.network_tier":
210
+ null,
211
+
212
+ "google.compute_subnetwork.secondary_ip_range.range_name": null,
213
+ "google.compute_subnetwork.secondary_ip_range.ip_cidr_range": null,
214
+
215
+ "google.container_cluster.node_config.guest_accelerator.count": null,
216
+ "google.container_cluster.node_config.guest_accelerator.type": null,
217
+ "google.container_cluster.node_config.guest_accelerator.gpu_partition_size":
218
+ null,
219
+ "google.container_cluster.node_config.guest_accelerator.gpu_sharing_config":
220
+ null,
221
+ "google.container_cluster.node_config.guest_accelerator.gpu_sharing_config.gpu_sharing_strategy":
222
+ null,
223
+ "google.container_cluster.node_config.guest_accelerator.gpu_sharing_config.max_shared_clients_per_gpu":
224
+ null,
225
+ "google.container_cluster.node_config.taint.key": null,
226
+ "google.container_cluster.node_config.taint.value": null,
227
+ "google.container_cluster.node_config.taint.effect": null,
228
+
229
+ "google.container_node_pool.node_config.guest_accelerator.count": null,
230
+ "google.container_node_pool.node_config.guest_accelerator.type": null,
231
+ "google.container_node_pool.node_config.guest_accelerator.gpu_partition_size":
232
+ null,
233
+ "google.container_node_pool.node_config.guest_accelerator.gpu_sharing_config":
234
+ null,
235
+ "google.container_node_pool.node_config.guest_accelerator.gpu_sharing_config.gpu_sharing_strategy":
236
+ null,
237
+ "google.container_node_pool.node_config.guest_accelerator.gpu_sharing_config.max_shared_clients_per_gpu":
238
+ null,
239
+ "google.container_node_pool.node_config.taint.key": null,
240
+ "google.container_node_pool.node_config.taint.value": null,
241
+ "google.container_node_pool.node_config.taint.effect": null,
242
+
243
+ "google.composer_environment.ip_allocation_policy.use_ip_aliases": null,
244
+ "google.composer_environment.ip_allocation_policy.cluster_secondary_range_name":
245
+ null,
246
+ "google.composer_environment.ip_allocation_policy.services_secondary_range_name":
247
+ null,
248
+ "google.composer_environment.ip_allocation_policy.cluster_ipv4_cidr_block":
249
+ null,
250
+ "google.composer_environment.ip_allocation_policy.services_ipv4_cidr_block":
251
+ null,
252
+
253
+ "azurerm.eventgrid_topic.inbound_ip_rule.ip_mask": null,
254
+ "azurerm.eventgrid_topic.inbound_ip_rule.action": null,
255
+
256
+ "azurerm.eventgrid_domain.inbound_ip_rule.ip_mask": null,
257
+ "azurerm.eventgrid_domain.inbound_ip_rule.action": null,
258
+
259
+ "azurerm.container_registry.network_rule_set.default_action": null,
260
+ "azurerm.container_registry.network_rule_set.ip_rule": null,
261
+ "azurerm.container_registry.network_rule_set.virtual_network": null,
262
+ "azurerm.container_registry.network_rule_set.ip_rule.action": null,
263
+ "azurerm.container_registry.network_rule_set.ip_rule.ip_range": null,
264
+ "azurerm.container_registry.network_rule_set.virtual_network.action": null,
265
+ "azurerm.container_registry.network_rule_set.virtual_network.subnet_id": null,
266
+ "azurerm.container_registry.retention_policy.days": null,
267
+ "azurerm.container_registry.retention_policy.enabled": null,
268
+ "azurerm.container_registry.trust_policy.enabled": null,
269
+ "azurerm.container_registry.encryption.enabled": null,
270
+ "azurerm.container_registry.encryption.identity_client_id": null,
271
+ "azurerm.container_registry.encryption.key_vault_key_id": null,
272
+
273
+ "azurerm.eventhub_namespace.network_rulesets.default_action": null,
274
+ "azurerm.eventhub_namespace.network_rulesets.public_network_access_enabled":
275
+ null,
276
+ "azurerm.eventhub_namespace.network_rulesets.trusted_service_access_enabled":
277
+ null,
278
+ "azurerm.eventhub_namespace.network_rulesets.virtual_network_rule": null,
279
+ "azurerm.eventhub_namespace.network_rulesets.virtual_network_rule.subnet_id":
280
+ null,
281
+ "azurerm.eventhub_namespace.network_rulesets.virtual_network_rule.ignore_missing_virtual_network_service_endpoint":
282
+ null,
283
+ "azurerm.eventhub_namespace.network_rulesets.ip_rule": null,
284
+ "azurerm.eventhub_namespace.network_rulesets.ip_rule.ip_mask": null,
285
+ "azurerm.eventhub_namespace.network_rulesets.ip_rule.action": null,
286
+
287
+ "azurerm.automation_runbook.job_schedule.schedule_name": null,
288
+ "azurerm.automation_runbook.job_schedule.parameters": null,
289
+ "azurerm.automation_runbook.job_schedule.run_on": null,
290
+ "azurerm.automation_runbook.job_schedule.job_schedule_id": null,
291
+
292
+ "azurerm.mssql_database.extended_auditing_policy.storage_account_access_key":
293
+ null,
294
+ "azurerm.mssql_database.extended_auditing_policy.storage_endpoint": null,
295
+ "azurerm.mssql_database.extended_auditing_policy.storage_account_access_key_is_secondary":
296
+ null,
297
+ "azurerm.mssql_database.extended_auditing_policy.retention_in_days": null,
298
+ "azurerm.mssql_database.extended_auditing_policy.log_monitoring_enabled":
299
+ null,
300
+
301
+ "azurerm.mssql_server.extended_auditing_policy.storage_account_access_key":
302
+ null,
303
+ "azurerm.mssql_server.extended_auditing_policy.storage_endpoint": null,
304
+ "azurerm.mssql_server.extended_auditing_policy.storage_account_access_key_is_secondary":
305
+ null,
306
+ "azurerm.mssql_server.extended_auditing_policy.retention_in_days": null,
307
+ "azurerm.mssql_server.extended_auditing_policy.log_monitoring_enabled": null,
308
+
309
+ "azurerm.route_filter.rule.access": null,
310
+ "azurerm.route_filter.rule.communities": null,
311
+ "azurerm.route_filter.rule.name": null,
312
+ "azurerm.route_filter.rule.rule_type": null,
313
+
314
+ "azurerm.route_table.route.name": null,
315
+ "azurerm.route_table.route.address_prefix": null,
316
+ "azurerm.route_table.route.next_hop_type": null,
317
+ "azurerm.route_table.route.next_hop_in_ip_address": null,
318
+
319
+ "azurerm.site_recovery_replicated_vm.managed_disk.disk_id": null,
320
+ "azurerm.site_recovery_replicated_vm.managed_disk.staging_storage_account_id":
321
+ null,
322
+ "azurerm.site_recovery_replicated_vm.managed_disk.target_resource_group_id":
323
+ null,
324
+ "azurerm.site_recovery_replicated_vm.managed_disk.target_disk_type": null,
325
+ "azurerm.site_recovery_replicated_vm.managed_disk.target_replica_disk_type":
326
+ null,
327
+ "azurerm.site_recovery_replicated_vm.managed_disk.target_disk_encryption_set_id":
328
+ null,
329
+ "azurerm.site_recovery_replicated_vm.managed_disk.target_disk_encryption":
330
+ null,
331
+ "azurerm.site_recovery_replicated_vm.network_interface.source_network_interface_id":
332
+ null,
333
+ "azurerm.site_recovery_replicated_vm.network_interface.target_static_ip":
334
+ null,
335
+ "azurerm.site_recovery_replicated_vm.network_interface.target_subnet_name":
336
+ null,
337
+ "azurerm.site_recovery_replicated_vm.network_interface.recovery_public_ip_address_id":
338
+ null,
339
+
340
+ "azurerm.iothub.endpoint.type": null,
341
+ "azurerm.iothub.endpoint.authentication_type": null,
342
+ "azurerm.iothub.endpoint.identity_id": null,
343
+ "azurerm.iothub.endpoint.endpoint_uri": null,
344
+ "azurerm.iothub.endpoint.entity_path": null,
345
+ "azurerm.iothub.endpoint.connection_string": null,
346
+ "azurerm.iothub.endpoint.name": null,
347
+ "azurerm.iothub.endpoint.batch_frequency_in_seconds": null,
348
+ "azurerm.iothub.endpoint.max_chunk_size_in_bytes": null,
349
+ "azurerm.iothub.endpoint.container_name": null,
350
+ "azurerm.iothub.endpoint.encoding": null,
351
+ "azurerm.iothub.endpoint.file_name_format": null,
352
+ "azurerm.iothub.endpoint.resource_group_name": null,
353
+ "azurerm.iothub.route.name": null,
354
+ "azurerm.iothub.route.source": null,
355
+ "azurerm.iothub.route.condition": null,
356
+ "azurerm.iothub.route.endpoint_names": null,
357
+ "azurerm.iothub.route.enabled": null,
358
+ "azurerm.iothub.enrichment.key": null,
359
+ "azurerm.iothub.enrichment.value": null,
360
+ "azurerm.iothub.enrichment.endpoint_names": null,
361
+
362
+ "azurerm.virtual_network.subnet.name": null,
363
+ "azurerm.virtual_network.subnet.address_prefix": null,
364
+ "azurerm.virtual_network.subnet.security_group": null,
365
+ "azurerm.virtual_network.subnet.id": null,
366
+
367
+ "azurerm.network_security_group.security_rule.name": null,
368
+ "azurerm.network_security_group.security_rule.description": null,
369
+ "azurerm.network_security_group.security_rule.protocol": null,
370
+ "azurerm.network_security_group.security_rule.source_port_range": null,
371
+ "azurerm.network_security_group.security_rule.source_port_ranges": null,
372
+ "azurerm.network_security_group.security_rule.destination_port_range": null,
373
+ "azurerm.network_security_group.security_rule.destination_port_ranges": null,
374
+ "azurerm.network_security_group.security_rule.source_address_prefix": null,
375
+ "azurerm.network_security_group.security_rule.source_address_prefixes": null,
376
+ "azurerm.network_security_group.security_rule.destination_address_prefix":
377
+ null,
378
+ "azurerm.network_security_group.security_rule.destination_address_prefixes":
379
+ null,
380
+ "azurerm.network_security_group.security_rule.destination_application_security_group_ids":
381
+ null,
382
+ "azurerm.network_security_group.security_rule.source_application_security_group_ids":
383
+ null,
384
+ "azurerm.network_security_group.security_rule.access": null,
385
+ "azurerm.network_security_group.security_rule.priority": null,
386
+ "azurerm.network_security_group.security_rule.direction": null,
387
+
388
+ "azurerm.synapse_workspace.aad_admin.login": null,
389
+ "azurerm.synapse_workspace.aad_admin.object_id": null,
390
+ "azurerm.synapse_workspace.aad_admin.tenant_id": null,
391
+ "azurerm.synapse_workspace.sql_aad_admin.login": null,
392
+ "azurerm.synapse_workspace.sql_aad_admin.object_id": null,
393
+ "azurerm.synapse_workspace.sql_aad_admin.tenant_id": null,
394
+
395
+ "azurerm.batch_pool.container_configuration.container_registries.registry_server":
396
+ null,
397
+ "azurerm.batch_pool.container_configuration.container_registries.user_name":
398
+ null,
399
+ "azurerm.batch_pool.container_configuration.container_registries.password":
400
+ null,
401
+
402
+ "azurerm.key_vault.access_policy.tenant_id": null,
403
+ "azurerm.key_vault.access_policy.object_id": null,
404
+ "azurerm.key_vault.access_policy.application_id": null,
405
+ "azurerm.key_vault.access_policy.certificate_permissions": null,
406
+ "azurerm.key_vault.access_policy.key_permissions": null,
407
+ "azurerm.key_vault.access_policy.secret_permissions": null,
408
+ "azurerm.key_vault.access_policy.storage_permissions": null,
409
+
410
+ "azurerm.app_service.ip_restriction.ip_address": null,
411
+ "azurerm.app_service.ip_restriction.service_tag": null,
412
+ "azurerm.app_service.ip_restriction.subnet_id": null,
413
+ "azurerm.app_service.ip_restriction.virtual_network_subnet_id": null,
414
+ "azurerm.app_service.ip_restriction.name": null,
415
+ "azurerm.app_service.ip_restriction.priority": null,
416
+ "azurerm.app_service.ip_restriction.action": null,
417
+ "azurerm.app_service.ip_restriction.headers": null,
418
+ "azurerm.app_service.ip_restriction.headers.x_forwarded_host": null,
419
+ "azurerm.app_service.ip_restriction.headers.x_forwarded_for": null,
420
+ "azurerm.app_service.ip_restriction.headers.x_azure_fdid": null,
421
+ "azurerm.app_service.ip_restriction.headers.x_fd_health_probe": null,
422
+ "azurerm.app_service.scm_ip_restriction.ip_address": null,
423
+ "azurerm.app_service.scm_ip_restriction.service_tag": null,
424
+ "azurerm.app_service.scm_ip_restriction.subnet_id": null,
425
+ "azurerm.app_service.scm_ip_restriction.virtual_network_subnet_id": null,
426
+ "azurerm.app_service.scm_ip_restriction.name": null,
427
+ "azurerm.app_service.scm_ip_restriction.priority": null,
428
+ "azurerm.app_service.scm_ip_restriction.action": null,
429
+ "azurerm.app_service.scm_ip_restriction.headers": null,
430
+ "azurerm.app_service.scm_ip_restriction.headers.x_forwarded_host": null,
431
+ "azurerm.app_service.scm_ip_restriction.headers.x_forwarded_for": null,
432
+ "azurerm.app_service.scm_ip_restriction.headers.x_azure_fdid": null,
433
+ "azurerm.app_service.scm_ip_restriction.headers.x_fd_health_probe": null,
434
+
435
+ "azurerm.function_app.ip_restriction.ip_address": null,
436
+ "azurerm.function_app.ip_restriction.service_tag": null,
437
+ "azurerm.function_app.ip_restriction.subnet_id": null,
438
+ "azurerm.function_app.ip_restriction.virtual_network_subnet_id": null,
439
+ "azurerm.function_app.ip_restriction.name": null,
440
+ "azurerm.function_app.ip_restriction.priority": null,
441
+ "azurerm.function_app.ip_restriction.action": null,
442
+ "azurerm.function_app.ip_restriction.headers": null,
443
+ "azurerm.function_app.ip_restriction.headers.x_forwarded_host": null,
444
+ "azurerm.function_app.ip_restriction.headers.x_forwarded_for": null,
445
+ "azurerm.function_app.ip_restriction.headers.x_azure_fdid": null,
446
+ "azurerm.function_app.ip_restriction.headers.x_fd_health_probe": null,
447
+ "azurerm.function_app.scm_ip_restriction.ip_address": null,
448
+ "azurerm.function_app.scm_ip_restriction.service_tag": null,
449
+ "azurerm.function_app.scm_ip_restriction.subnet_id": null,
450
+ "azurerm.function_app.scm_ip_restriction.virtual_network_subnet_id": null,
451
+ "azurerm.function_app.scm_ip_restriction.name": null,
452
+ "azurerm.function_app.scm_ip_restriction.priority": null,
453
+ "azurerm.function_app.scm_ip_restriction.action": null,
454
+ "azurerm.function_app.scm_ip_restriction.headers": null,
455
+ "azurerm.function_app.scm_ip_restriction.headers.x_forwarded_host": null,
456
+ "azurerm.function_app.scm_ip_restriction.headers.x_forwarded_for": null,
457
+ "azurerm.function_app.scm_ip_restriction.headers.x_azure_fdid": null,
458
+ "azurerm.function_app.scm_ip_restriction.headers.x_fd_health_probe": null,
459
+
460
+ "azurerm.logic_app_standard.ip_restriction.ip_address": null,
461
+ "azurerm.logic_app_standard.ip_restriction.service_tag": null,
462
+ "azurerm.logic_app_standard.ip_restriction.subnet_id": null,
463
+ "azurerm.logic_app_standard.ip_restriction.virtual_network_subnet_id": null,
464
+ "azurerm.logic_app_standard.ip_restriction.name": null,
465
+ "azurerm.logic_app_standard.ip_restriction.priority": null,
466
+ "azurerm.logic_app_standard.ip_restriction.action": null,
467
+ "azurerm.logic_app_standard.ip_restriction.headers": null,
468
+ "azurerm.logic_app_standard.ip_restriction.headers.x_forwarded_host": null,
469
+ "azurerm.logic_app_standard.ip_restriction.headers.x_forwarded_for": null,
470
+ "azurerm.logic_app_standard.ip_restriction.headers.x_azure_fdid": null,
471
+ "azurerm.logic_app_standard.ip_restriction.headers.x_fd_health_probe": null,
472
+ "azurerm.logic_app_standard.scm_ip_restriction.ip_address": null,
473
+ "azurerm.logic_app_standard.scm_ip_restriction.service_tag": null,
474
+ "azurerm.logic_app_standard.scm_ip_restriction.subnet_id": null,
475
+ "azurerm.logic_app_standard.scm_ip_restriction.virtual_network_subnet_id":
476
+ null,
477
+ "azurerm.logic_app_standard.scm_ip_restriction.name": null,
478
+ "azurerm.logic_app_standard.scm_ip_restriction.priority": null,
479
+ "azurerm.logic_app_standard.scm_ip_restriction.action": null,
480
+ "azurerm.logic_app_standard.scm_ip_restriction.headers": null,
481
+ "azurerm.logic_app_standard.scm_ip_restriction.headers.x_forwarded_host":
482
+ null,
483
+ "azurerm.logic_app_standard.scm_ip_restriction.headers.x_forwarded_for": null,
484
+ "azurerm.logic_app_standard.scm_ip_restriction.headers.x_azure_fdid": null,
485
+ "azurerm.logic_app_standard.scm_ip_restriction.headers.x_fd_health_probe":
486
+ null,
487
+
488
+ "azurerm.api_management.policy.xml_content": null,
489
+ "azurerm.api_management.policy.xml_link": null,
490
+
491
+ "azurerm.container_group.exposed_port.port": null,
492
+ "azurerm.container_group.exposed_port.protocol": null,
493
+ };