@microsoft/terraform-cdk-constructs 0.0.3-pre.7 → 1.2.0
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/.devcontainer/devcontainer.json +2 -2
- package/.jsii +67552 -10179
- package/API.md +69252 -9464
- package/LICENSE +16 -18
- package/README.md +186 -75
- package/cdktf.json +1 -1
- package/docs/ARCHITECTURE.md +836 -0
- package/docs/azapi-testing-architecture.md +482 -0
- package/docs/monitoring-guide.md +206 -0
- package/docs/testing.md +99 -114
- package/docs/versioning-and-migrations-user-guide.md +409 -0
- package/go.mod +12 -12
- package/go.sum +27 -23
- package/lib/azure-actiongroup/index.d.ts +10 -0
- package/lib/azure-actiongroup/index.js +11 -1
- package/lib/azure-actiongroup/lib/action-group-schemas.d.ts +24 -0
- package/lib/azure-actiongroup/lib/action-group-schemas.js +201 -0
- package/lib/azure-actiongroup/lib/action-group.d.ts +312 -0
- package/lib/azure-actiongroup/lib/action-group.js +201 -0
- package/lib/azure-actiongroup/lib/index.d.ts +5 -1
- package/lib/azure-actiongroup/lib/index.js +6 -2
- package/lib/azure-actiongroup/test/action-group.integ.d.ts +9 -0
- package/lib/azure-actiongroup/test/action-group.integ.js +79 -0
- package/lib/azure-actiongroup/test/action-group.spec.d.ts +8 -0
- package/lib/azure-actiongroup/test/action-group.spec.js +602 -0
- package/lib/azure-activitylogalert/index.d.ts +11 -0
- package/lib/azure-activitylogalert/index.js +28 -0
- package/lib/azure-activitylogalert/lib/activity-log-alert-schemas.d.ts +24 -0
- package/lib/azure-activitylogalert/lib/activity-log-alert-schemas.js +182 -0
- package/lib/azure-activitylogalert/lib/activity-log-alert.d.ts +236 -0
- package/lib/azure-activitylogalert/lib/activity-log-alert.js +212 -0
- package/lib/azure-activitylogalert/lib/index.d.ts +5 -0
- package/lib/azure-activitylogalert/lib/index.js +22 -0
- package/lib/azure-activitylogalert/test/activity-log-alert.integ.d.ts +9 -0
- package/lib/azure-activitylogalert/test/activity-log-alert.integ.js +98 -0
- package/lib/azure-activitylogalert/test/activity-log-alert.spec.d.ts +9 -0
- package/lib/azure-activitylogalert/test/activity-log-alert.spec.js +1101 -0
- package/lib/azure-aks/index.d.ts +9 -0
- package/lib/azure-aks/index.js +28 -0
- package/lib/azure-aks/lib/aks-cluster-schemas.d.ts +505 -0
- package/lib/azure-aks/lib/aks-cluster-schemas.js +572 -0
- package/lib/azure-aks/lib/aks-cluster.d.ts +395 -0
- package/lib/azure-aks/lib/aks-cluster.js +489 -0
- package/lib/azure-aks/lib/index.d.ts +11 -0
- package/lib/azure-aks/lib/index.js +38 -0
- package/lib/azure-aks/test/aks-cluster.integ.d.ts +9 -0
- package/lib/azure-aks/test/aks-cluster.integ.js +260 -0
- package/lib/azure-aks/test/aks-cluster.spec.d.ts +8 -0
- package/lib/azure-aks/test/aks-cluster.spec.js +1396 -0
- package/lib/azure-diagnosticsettings/index.d.ts +7 -0
- package/lib/azure-diagnosticsettings/index.js +24 -0
- package/lib/azure-diagnosticsettings/lib/diagnostic-settings-schemas.d.ts +50 -0
- package/lib/azure-diagnosticsettings/lib/diagnostic-settings-schemas.js +207 -0
- package/lib/azure-diagnosticsettings/lib/diagnostic-settings.d.ts +193 -0
- package/lib/azure-diagnosticsettings/lib/diagnostic-settings.js +200 -0
- package/lib/azure-diagnosticsettings/lib/index.d.ts +8 -0
- package/lib/azure-diagnosticsettings/lib/index.js +25 -0
- package/lib/azure-diagnosticsettings/test/diagnostic-settings.spec.d.ts +8 -0
- package/lib/azure-diagnosticsettings/test/diagnostic-settings.spec.js +432 -0
- package/lib/azure-metricalert/index.d.ts +10 -1
- package/lib/azure-metricalert/index.js +11 -2
- package/lib/azure-metricalert/lib/index.d.ts +4 -0
- package/lib/azure-metricalert/lib/index.js +5 -1
- package/lib/azure-metricalert/lib/metric-alert-schemas.d.ts +24 -0
- package/lib/azure-metricalert/lib/metric-alert-schemas.js +242 -0
- package/lib/azure-metricalert/lib/metric-alert.d.ts +337 -49
- package/lib/azure-metricalert/lib/metric-alert.js +228 -104
- package/lib/azure-metricalert/test/metric-alert.integ.d.ts +9 -0
- package/lib/azure-metricalert/test/metric-alert.integ.js +123 -0
- package/lib/azure-metricalert/test/metric-alert.spec.d.ts +9 -0
- package/lib/azure-metricalert/test/metric-alert.spec.js +1266 -0
- package/lib/azure-networkinterface/index.d.ts +4 -0
- package/lib/azure-networkinterface/index.js +21 -0
- package/lib/azure-networkinterface/lib/index.d.ts +6 -0
- package/lib/azure-networkinterface/lib/index.js +22 -0
- package/lib/azure-networkinterface/lib/network-interface-schemas.d.ts +32 -0
- package/lib/azure-networkinterface/lib/network-interface-schemas.js +222 -0
- package/lib/azure-networkinterface/lib/network-interface.d.ts +265 -0
- package/lib/azure-networkinterface/lib/network-interface.js +228 -0
- package/lib/azure-networkinterface/test/network-interface.integ.d.ts +9 -0
- package/lib/azure-networkinterface/test/network-interface.integ.js +102 -0
- package/lib/azure-networkinterface/test/network-interface.spec.d.ts +8 -0
- package/lib/azure-networkinterface/test/network-interface.spec.js +655 -0
- package/lib/azure-networksecuritygroup/index.d.ts +5 -0
- package/lib/azure-networksecuritygroup/index.js +6 -1
- package/lib/azure-networksecuritygroup/lib/index.d.ts +5 -2
- package/lib/azure-networksecuritygroup/lib/index.js +14 -17
- package/lib/azure-networksecuritygroup/lib/network-security-group-schemas.d.ts +32 -0
- package/lib/azure-networksecuritygroup/lib/network-security-group-schemas.js +198 -0
- package/lib/azure-networksecuritygroup/lib/network-security-group.d.ts +268 -0
- package/lib/azure-networksecuritygroup/lib/network-security-group.js +248 -0
- package/lib/azure-networksecuritygroup/test/network-security-group.integ.d.ts +9 -0
- package/lib/azure-networksecuritygroup/test/network-security-group.integ.js +151 -0
- package/lib/azure-networksecuritygroup/test/network-security-group.spec.d.ts +8 -0
- package/lib/azure-networksecuritygroup/test/network-security-group.spec.js +652 -0
- package/lib/azure-publicipaddress/index.d.ts +6 -0
- package/lib/azure-publicipaddress/index.js +23 -0
- package/lib/azure-publicipaddress/lib/index.d.ts +9 -0
- package/lib/azure-publicipaddress/lib/index.js +19 -0
- package/lib/azure-publicipaddress/lib/public-ip-address-schemas.d.ts +32 -0
- package/lib/azure-publicipaddress/lib/public-ip-address-schemas.js +227 -0
- package/lib/azure-publicipaddress/lib/public-ip-address.d.ts +256 -0
- package/lib/azure-publicipaddress/lib/public-ip-address.js +267 -0
- package/lib/azure-publicipaddress/test/public-ip-address.integ.d.ts +9 -0
- package/lib/azure-publicipaddress/test/public-ip-address.integ.js +75 -0
- package/lib/azure-publicipaddress/test/public-ip-address.spec.d.ts +15 -0
- package/lib/azure-publicipaddress/test/public-ip-address.spec.js +498 -0
- package/lib/azure-resourcegroup/index.d.ts +37 -0
- package/lib/azure-resourcegroup/index.js +39 -1
- package/lib/azure-resourcegroup/lib/index.d.ts +44 -0
- package/lib/azure-resourcegroup/lib/index.js +43 -1
- package/lib/azure-resourcegroup/lib/resource-group-schemas.d.ts +40 -0
- package/lib/azure-resourcegroup/lib/resource-group-schemas.js +243 -0
- package/lib/azure-resourcegroup/lib/resource-group.d.ts +170 -46
- package/lib/azure-resourcegroup/lib/resource-group.js +222 -56
- package/lib/azure-resourcegroup/test/resource-group.integ.d.ts +9 -0
- package/lib/azure-resourcegroup/test/resource-group.integ.js +72 -0
- package/lib/azure-resourcegroup/test/resource-group.spec.d.ts +9 -0
- package/lib/azure-resourcegroup/test/resource-group.spec.js +554 -0
- package/lib/azure-storageaccount/index.d.ts +19 -0
- package/lib/azure-storageaccount/index.js +20 -1
- package/lib/azure-storageaccount/lib/index.d.ts +8 -5
- package/lib/azure-storageaccount/lib/index.js +9 -6
- package/lib/azure-storageaccount/lib/storage-account-schemas.d.ts +138 -0
- package/lib/azure-storageaccount/lib/storage-account-schemas.js +378 -0
- package/lib/azure-storageaccount/lib/storage-account.d.ts +348 -0
- package/lib/azure-storageaccount/lib/storage-account.js +365 -0
- package/lib/azure-storageaccount/test/storage-account.integ.d.ts +9 -0
- package/lib/azure-storageaccount/test/storage-account.integ.js +151 -0
- package/lib/azure-storageaccount/test/storage-account.spec.d.ts +4 -0
- package/lib/azure-storageaccount/test/storage-account.spec.js +315 -0
- package/lib/azure-subnet/index.d.ts +4 -0
- package/lib/azure-subnet/index.js +21 -0
- package/lib/azure-subnet/lib/index.d.ts +5 -0
- package/lib/azure-subnet/lib/index.js +22 -0
- package/lib/azure-subnet/lib/subnet-schemas.d.ts +32 -0
- package/lib/azure-subnet/lib/subnet-schemas.js +237 -0
- package/lib/azure-subnet/lib/subnet.d.ts +285 -0
- package/lib/azure-subnet/lib/subnet.js +254 -0
- package/lib/azure-subnet/test/subnet.integ.d.ts +11 -0
- package/lib/azure-subnet/test/subnet.integ.js +80 -0
- package/lib/azure-subnet/test/subnet.spec.d.ts +8 -0
- package/lib/azure-subnet/test/subnet.spec.js +396 -0
- package/lib/azure-virtualmachine/index.d.ts +6 -0
- package/lib/azure-virtualmachine/index.js +7 -1
- package/lib/azure-virtualmachine/lib/index.d.ts +11 -2
- package/lib/azure-virtualmachine/lib/index.js +22 -3
- package/lib/azure-virtualmachine/lib/virtual-machine-schemas.d.ts +327 -0
- package/lib/azure-virtualmachine/lib/virtual-machine-schemas.js +544 -0
- package/lib/azure-virtualmachine/lib/virtual-machine.d.ts +377 -0
- package/lib/azure-virtualmachine/lib/virtual-machine.js +462 -0
- package/lib/azure-virtualmachine/test/virtual-machine.integ.d.ts +9 -0
- package/lib/azure-virtualmachine/test/virtual-machine.integ.js +220 -0
- package/lib/azure-virtualmachine/test/virtual-machine.spec.d.ts +9 -0
- package/lib/azure-virtualmachine/test/virtual-machine.spec.js +1032 -0
- package/lib/azure-virtualnetwork/index.d.ts +9 -0
- package/lib/azure-virtualnetwork/index.js +11 -1
- package/lib/azure-virtualnetwork/lib/index.d.ts +9 -2
- package/lib/azure-virtualnetwork/lib/index.js +20 -17
- package/lib/azure-virtualnetwork/lib/virtual-network-schemas.d.ts +32 -0
- package/lib/azure-virtualnetwork/lib/virtual-network-schemas.js +236 -0
- package/lib/azure-virtualnetwork/lib/virtual-network.d.ts +213 -0
- package/lib/azure-virtualnetwork/lib/virtual-network.js +245 -0
- package/lib/azure-virtualnetwork/test/virtual-network.integ.d.ts +9 -0
- package/lib/azure-virtualnetwork/test/virtual-network.integ.js +91 -0
- package/lib/azure-virtualnetwork/test/virtual-network.spec.d.ts +8 -0
- package/lib/azure-virtualnetwork/test/virtual-network.spec.js +398 -0
- package/lib/azure-vmss/index.d.ts +6 -0
- package/lib/azure-vmss/index.js +23 -0
- package/lib/azure-vmss/lib/index.d.ts +9 -0
- package/lib/azure-vmss/lib/index.js +39 -0
- package/lib/azure-vmss/lib/virtual-machine-scale-set.d.ts +258 -0
- package/lib/azure-vmss/lib/virtual-machine-scale-set.js +503 -0
- package/lib/azure-vmss/lib/vmss-schemas.d.ts +472 -0
- package/lib/azure-vmss/lib/vmss-schemas.js +444 -0
- package/lib/azure-vmss/test/virtual-machine-scale-set.integ.d.ts +15 -0
- package/lib/azure-vmss/test/virtual-machine-scale-set.integ.js +261 -0
- package/lib/azure-vmss/test/virtual-machine-scale-set.spec.d.ts +8 -0
- package/lib/azure-vmss/test/virtual-machine-scale-set.spec.js +997 -0
- package/lib/core-azure/lib/azapi/azapi-exports.d.ts +16 -0
- package/lib/core-azure/lib/azapi/azapi-exports.js +38 -0
- package/lib/core-azure/lib/azapi/azapi-resource.d.ts +481 -0
- package/lib/core-azure/lib/azapi/azapi-resource.js +505 -0
- package/lib/core-azure/lib/azapi/azapi-resource.spec.d.ts +7 -0
- package/lib/core-azure/lib/azapi/azapi-resource.spec.js +545 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-client-config/index.d.ts +74 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-client-config/index.js +203 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource/index.d.ts +341 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource/index.js +671 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-action/index.d.ts +344 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-action/index.js +583 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-id/index.d.ts +128 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-id/index.js +281 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-list/index.d.ts +285 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-list/index.js +491 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-plane-resource/index.d.ts +518 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-plane-resource/index.js +839 -0
- package/lib/core-azure/lib/azapi/providers-azapi/index.d.ts +10 -0
- package/lib/core-azure/lib/azapi/providers-azapi/index.js +15 -0
- package/lib/core-azure/lib/azapi/providers-azapi/lazy-index.d.ts +0 -0
- package/lib/core-azure/lib/azapi/providers-azapi/lazy-index.js +13 -0
- package/lib/core-azure/lib/azapi/providers-azapi/provider/index.d.ts +447 -0
- package/lib/core-azure/lib/azapi/providers-azapi/provider/index.js +844 -0
- package/lib/core-azure/lib/azapi/providers-azapi/resource/index.d.ts +689 -0
- package/lib/core-azure/lib/azapi/providers-azapi/resource/index.js +1140 -0
- package/lib/core-azure/lib/azapi/providers-azapi/resource-action/index.d.ts +400 -0
- package/lib/core-azure/lib/azapi/providers-azapi/resource-action/index.js +706 -0
- package/lib/core-azure/lib/azapi/providers-azapi/update-resource/index.d.ts +450 -0
- package/lib/core-azure/lib/azapi/providers-azapi/update-resource/index.js +788 -0
- package/lib/core-azure/lib/azapi/schema-mapper/schema-mapper.d.ts +215 -0
- package/lib/core-azure/lib/azapi/schema-mapper/schema-mapper.js +567 -0
- package/lib/core-azure/lib/azapi/schema-mapper/schema-mapper.spec.d.ts +7 -0
- package/lib/core-azure/lib/azapi/schema-mapper/schema-mapper.spec.js +630 -0
- package/lib/core-azure/lib/index.d.ts +18 -3
- package/lib/core-azure/lib/index.js +24 -4
- package/lib/core-azure/lib/version-manager/api-version-manager.d.ts +253 -0
- package/lib/core-azure/lib/version-manager/api-version-manager.js +509 -0
- package/lib/core-azure/lib/version-manager/api-version-manager.spec.d.ts +7 -0
- package/lib/core-azure/lib/version-manager/api-version-manager.spec.js +510 -0
- package/lib/core-azure/lib/version-manager/interfaces/version-interfaces.d.ts +669 -0
- package/lib/core-azure/lib/version-manager/interfaces/version-interfaces.js +202 -0
- package/lib/core-azure/lib/version-manager/version-manager.d.ts +9 -0
- package/lib/core-azure/lib/version-manager/version-manager.js +23 -0
- package/lib/index.d.ts +54 -13
- package/lib/index.js +76 -15
- package/lib/testing/index.d.ts +124 -1
- package/lib/testing/index.js +480 -4
- package/lib/testing/lib/cleanup.d.ts +229 -0
- package/lib/testing/lib/cleanup.js +331 -0
- package/lib/testing/lib/metadata.d.ts +151 -0
- package/lib/testing/lib/metadata.js +180 -0
- package/lib/testing/lib/naming.d.ts +96 -0
- package/lib/testing/lib/naming.js +336 -0
- package/lib/util/azureTenantIdHelpers.js +3 -4
- package/lib/util/randomName.js +2 -3
- package/node_modules/uuid/LICENSE.md +9 -0
- package/node_modules/uuid/README.md +510 -0
- package/node_modules/uuid/dist/cjs/index.d.ts +15 -0
- package/node_modules/uuid/dist/cjs/index.js +31 -0
- package/node_modules/uuid/dist/cjs/max.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/max.js +3 -0
- package/node_modules/uuid/dist/cjs/md5.d.ts +4 -0
- package/node_modules/uuid/dist/cjs/md5.js +13 -0
- package/node_modules/uuid/dist/cjs/native.d.ts +6 -0
- package/node_modules/uuid/dist/cjs/native.js +4 -0
- package/node_modules/uuid/dist/cjs/nil.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/nil.js +3 -0
- package/node_modules/uuid/dist/cjs/package.json +1 -0
- package/node_modules/uuid/dist/cjs/parse.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/parse.js +11 -0
- package/node_modules/uuid/dist/cjs/regex.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/regex.js +3 -0
- package/node_modules/uuid/dist/cjs/rng.d.ts +1 -0
- package/node_modules/uuid/dist/cjs/rng.js +13 -0
- package/node_modules/uuid/dist/cjs/sha1.d.ts +4 -0
- package/node_modules/uuid/dist/cjs/sha1.js +13 -0
- package/node_modules/uuid/dist/cjs/stringify.d.ts +3 -0
- package/node_modules/uuid/dist/cjs/stringify.js +39 -0
- package/node_modules/uuid/dist/cjs/types.d.ts +21 -0
- package/node_modules/uuid/dist/cjs/types.js +2 -0
- package/node_modules/uuid/dist/cjs/uuid-bin.d.ts +1 -0
- package/node_modules/uuid/dist/cjs/uuid-bin.js +72 -0
- package/node_modules/uuid/dist/cjs/v1.d.ts +11 -0
- package/node_modules/uuid/dist/cjs/v1.js +87 -0
- package/node_modules/uuid/dist/cjs/v1ToV6.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/v1ToV6.js +13 -0
- package/node_modules/uuid/dist/cjs/v3.d.ts +9 -0
- package/node_modules/uuid/dist/cjs/v3.js +14 -0
- package/node_modules/uuid/dist/cjs/v35.d.ts +7 -0
- package/node_modules/uuid/dist/cjs/v35.js +41 -0
- package/node_modules/uuid/dist/cjs/v4.d.ts +4 -0
- package/node_modules/uuid/dist/cjs/v4.js +29 -0
- package/node_modules/uuid/dist/cjs/v5.d.ts +9 -0
- package/node_modules/uuid/dist/cjs/v5.js +14 -0
- package/node_modules/uuid/dist/cjs/v6.d.ts +4 -0
- package/node_modules/uuid/dist/cjs/v6.js +19 -0
- package/node_modules/uuid/dist/cjs/v6ToV1.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/v6ToV1.js +13 -0
- package/node_modules/uuid/dist/cjs/v7.d.ts +9 -0
- package/node_modules/uuid/dist/cjs/v7.js +69 -0
- package/node_modules/uuid/dist/cjs/validate.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/validate.js +7 -0
- package/node_modules/uuid/dist/cjs/version.d.ts +2 -0
- package/node_modules/uuid/dist/cjs/version.js +10 -0
- package/node_modules/uuid/dist/cjs-browser/index.d.ts +15 -0
- package/node_modules/uuid/dist/cjs-browser/index.js +31 -0
- package/node_modules/uuid/dist/cjs-browser/max.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/max.js +3 -0
- package/node_modules/uuid/dist/cjs-browser/md5.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/md5.js +137 -0
- package/node_modules/uuid/dist/cjs-browser/native.d.ts +4 -0
- package/node_modules/uuid/dist/cjs-browser/native.js +4 -0
- package/node_modules/uuid/dist/cjs-browser/nil.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/nil.js +3 -0
- package/node_modules/uuid/dist/cjs-browser/package.json +1 -0
- package/node_modules/uuid/dist/cjs-browser/parse.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/parse.js +11 -0
- package/node_modules/uuid/dist/cjs-browser/regex.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/regex.js +3 -0
- package/node_modules/uuid/dist/cjs-browser/rng.d.ts +1 -0
- package/node_modules/uuid/dist/cjs-browser/rng.js +14 -0
- package/node_modules/uuid/dist/cjs-browser/sha1.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/sha1.js +72 -0
- package/node_modules/uuid/dist/cjs-browser/stringify.d.ts +3 -0
- package/node_modules/uuid/dist/cjs-browser/stringify.js +39 -0
- package/node_modules/uuid/dist/cjs-browser/types.d.ts +21 -0
- package/node_modules/uuid/dist/cjs-browser/types.js +2 -0
- package/node_modules/uuid/dist/cjs-browser/uuid-bin.d.ts +1 -0
- package/node_modules/uuid/dist/cjs-browser/uuid-bin.js +72 -0
- package/node_modules/uuid/dist/cjs-browser/v1.d.ts +11 -0
- package/node_modules/uuid/dist/cjs-browser/v1.js +87 -0
- package/node_modules/uuid/dist/cjs-browser/v1ToV6.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/v1ToV6.js +13 -0
- package/node_modules/uuid/dist/cjs-browser/v3.d.ts +9 -0
- package/node_modules/uuid/dist/cjs-browser/v3.js +14 -0
- package/node_modules/uuid/dist/cjs-browser/v35.d.ts +7 -0
- package/node_modules/uuid/dist/cjs-browser/v35.js +41 -0
- package/node_modules/uuid/dist/cjs-browser/v4.d.ts +4 -0
- package/node_modules/uuid/dist/cjs-browser/v4.js +29 -0
- package/node_modules/uuid/dist/cjs-browser/v5.d.ts +9 -0
- package/node_modules/uuid/dist/cjs-browser/v5.js +14 -0
- package/node_modules/uuid/dist/cjs-browser/v6.d.ts +4 -0
- package/node_modules/uuid/dist/cjs-browser/v6.js +19 -0
- package/node_modules/uuid/dist/cjs-browser/v6ToV1.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/v6ToV1.js +13 -0
- package/node_modules/uuid/dist/cjs-browser/v7.d.ts +9 -0
- package/node_modules/uuid/dist/cjs-browser/v7.js +69 -0
- package/node_modules/uuid/dist/cjs-browser/validate.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/validate.js +7 -0
- package/node_modules/uuid/dist/cjs-browser/version.d.ts +2 -0
- package/node_modules/uuid/dist/cjs-browser/version.js +10 -0
- package/node_modules/uuid/dist/esm/bin/uuid +2 -0
- package/node_modules/uuid/dist/esm/index.d.ts +15 -0
- package/node_modules/uuid/dist/esm/index.js +14 -0
- package/node_modules/uuid/dist/esm/max.d.ts +2 -0
- package/node_modules/uuid/dist/esm/max.js +1 -0
- package/node_modules/uuid/dist/esm/md5.d.ts +4 -0
- package/node_modules/uuid/dist/esm/md5.js +11 -0
- package/node_modules/uuid/dist/esm/native.d.ts +6 -0
- package/node_modules/uuid/dist/esm/native.js +2 -0
- package/node_modules/uuid/dist/esm/nil.d.ts +2 -0
- package/node_modules/uuid/dist/esm/nil.js +1 -0
- package/node_modules/uuid/dist/esm/parse.d.ts +2 -0
- package/node_modules/uuid/dist/esm/parse.js +9 -0
- package/node_modules/uuid/dist/esm/regex.d.ts +2 -0
- package/node_modules/uuid/dist/esm/regex.js +1 -0
- package/node_modules/uuid/dist/esm/rng.d.ts +1 -0
- package/node_modules/uuid/dist/esm/rng.js +10 -0
- package/node_modules/uuid/dist/esm/sha1.d.ts +4 -0
- package/node_modules/uuid/dist/esm/sha1.js +11 -0
- package/node_modules/uuid/dist/esm/stringify.d.ts +3 -0
- package/node_modules/uuid/dist/esm/stringify.js +35 -0
- package/node_modules/uuid/dist/esm/types.d.ts +21 -0
- package/node_modules/uuid/dist/esm/types.js +1 -0
- package/node_modules/uuid/dist/esm/uuid-bin.d.ts +1 -0
- package/node_modules/uuid/dist/esm/uuid-bin.js +70 -0
- package/node_modules/uuid/dist/esm/v1.d.ts +11 -0
- package/node_modules/uuid/dist/esm/v1.js +83 -0
- package/node_modules/uuid/dist/esm/v1ToV6.d.ts +2 -0
- package/node_modules/uuid/dist/esm/v1ToV6.js +10 -0
- package/node_modules/uuid/dist/esm/v3.d.ts +9 -0
- package/node_modules/uuid/dist/esm/v3.js +9 -0
- package/node_modules/uuid/dist/esm/v35.d.ts +7 -0
- package/node_modules/uuid/dist/esm/v35.js +36 -0
- package/node_modules/uuid/dist/esm/v4.d.ts +4 -0
- package/node_modules/uuid/dist/esm/v4.js +27 -0
- package/node_modules/uuid/dist/esm/v5.d.ts +9 -0
- package/node_modules/uuid/dist/esm/v5.js +9 -0
- package/node_modules/uuid/dist/esm/v6.d.ts +4 -0
- package/node_modules/uuid/dist/esm/v6.js +17 -0
- package/node_modules/uuid/dist/esm/v6ToV1.d.ts +2 -0
- package/node_modules/uuid/dist/esm/v6ToV1.js +10 -0
- package/node_modules/uuid/dist/esm/v7.d.ts +9 -0
- package/node_modules/uuid/dist/esm/v7.js +65 -0
- package/node_modules/uuid/dist/esm/validate.d.ts +2 -0
- package/node_modules/uuid/dist/esm/validate.js +5 -0
- package/node_modules/uuid/dist/esm/version.d.ts +2 -0
- package/node_modules/uuid/dist/esm/version.js +8 -0
- package/node_modules/uuid/dist/esm-browser/index.d.ts +15 -0
- package/node_modules/uuid/dist/esm-browser/index.js +14 -0
- package/node_modules/uuid/dist/esm-browser/max.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/max.js +1 -0
- package/node_modules/uuid/dist/esm-browser/md5.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/md5.js +135 -0
- package/node_modules/uuid/dist/esm-browser/native.d.ts +4 -0
- package/node_modules/uuid/dist/esm-browser/native.js +2 -0
- package/node_modules/uuid/dist/esm-browser/nil.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/node_modules/uuid/dist/esm-browser/parse.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/parse.js +9 -0
- package/node_modules/uuid/dist/esm-browser/regex.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/node_modules/uuid/dist/esm-browser/rng.d.ts +1 -0
- package/node_modules/uuid/dist/esm-browser/rng.js +11 -0
- package/node_modules/uuid/dist/esm-browser/sha1.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/sha1.js +70 -0
- package/node_modules/uuid/dist/esm-browser/stringify.d.ts +3 -0
- package/node_modules/uuid/dist/esm-browser/stringify.js +35 -0
- package/node_modules/uuid/dist/esm-browser/types.d.ts +21 -0
- package/node_modules/uuid/dist/esm-browser/types.js +1 -0
- package/node_modules/uuid/dist/esm-browser/uuid-bin.d.ts +1 -0
- package/node_modules/uuid/dist/esm-browser/uuid-bin.js +70 -0
- package/node_modules/uuid/dist/esm-browser/v1.d.ts +11 -0
- package/node_modules/uuid/dist/esm-browser/v1.js +83 -0
- package/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/v1ToV6.js +10 -0
- package/node_modules/uuid/dist/esm-browser/v3.d.ts +9 -0
- package/node_modules/uuid/dist/esm-browser/v3.js +9 -0
- package/node_modules/uuid/dist/esm-browser/v35.d.ts +7 -0
- package/node_modules/uuid/dist/esm-browser/v35.js +36 -0
- package/node_modules/uuid/dist/esm-browser/v4.d.ts +4 -0
- package/node_modules/uuid/dist/esm-browser/v4.js +27 -0
- package/node_modules/uuid/dist/esm-browser/v5.d.ts +9 -0
- package/node_modules/uuid/dist/esm-browser/v5.js +9 -0
- package/node_modules/uuid/dist/esm-browser/v6.d.ts +4 -0
- package/node_modules/uuid/dist/esm-browser/v6.js +17 -0
- package/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/v6ToV1.js +10 -0
- package/node_modules/uuid/dist/esm-browser/v7.d.ts +9 -0
- package/node_modules/uuid/dist/esm-browser/v7.js +65 -0
- package/node_modules/uuid/dist/esm-browser/validate.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/validate.js +5 -0
- package/node_modules/uuid/dist/esm-browser/version.d.ts +2 -0
- package/node_modules/uuid/dist/esm-browser/version.js +8 -0
- package/node_modules/uuid/package.json +132 -0
- package/package.json +51 -33
- package/scripts/cleanup-test-resources.ts +369 -0
- package/cdktf.out/manifest.json +0 -13
- package/cdktf.out/stacks/testAzureActionGroup/cdk.tf.json +0 -111
- package/cdktf.out/stacks/testAzureApplicationGateway/cdk.tf.json +0 -588
- package/cdktf.out/stacks/testAzureApplicationInsights/cdk.tf.json +0 -245
- package/cdktf.out/stacks/testAzureContainerRegistry/cdk.tf.json +0 -179
- package/cdktf.out/stacks/testAzureEventhub/cdk.tf.json +0 -236
- package/cdktf.out/stacks/testAzureKeyVault/cdk.tf.json +0 -436
- package/cdktf.out/stacks/testAzureKubernetesCluster/cdk.tf.json +0 -152
- package/cdktf.out/stacks/testAzureKusto/cdk.tf.json +0 -209
- package/cdktf.out/stacks/testAzureLinuxFunctionApp/cdk.tf.json +0 -439
- package/cdktf.out/stacks/testAzureLinuxVirtualMachineExample/cdk.tf.json +0 -283
- package/cdktf.out/stacks/testAzureLinuxVirtualMachineScaleSetExample/cdk.tf.json +0 -261
- package/cdktf.out/stacks/testAzureLogAnalytics/cdk.tf.json +0 -309
- package/cdktf.out/stacks/testAzureMetricAlert/cdk.tf.json +0 -161
- package/cdktf.out/stacks/testAzureNetworkSecurityGroup/cdk.tf.json +0 -271
- package/cdktf.out/stacks/testAzureQueryRuleAlert/cdk.tf.json +0 -122
- package/cdktf.out/stacks/testAzureResourceGroup/cdk.tf.json +0 -88
- package/cdktf.out/stacks/testAzureStorageAccount/cdk.tf.json +0 -339
- package/cdktf.out/stacks/testAzureVirtualNetwork/cdk.tf.json +0 -264
- package/cdktf.out/stacks/testAzureWindowVirtualMachineScaleSetExample/cdk.tf.json +0 -261
- package/cdktf.out/stacks/testAzureWindowsVirtualMachineExample/cdk.tf.json +0 -280
- package/cdktf.out/stacks/testExampleAzureResource/cdk.tf.json +0 -167
- package/lib/azure-actiongroup/lib/actiongroup.d.ts +0 -49
- package/lib/azure-actiongroup/lib/actiongroup.js +0 -85
- package/lib/azure-actiongroup/model/action-group-props.d.ts +0 -47
- package/lib/azure-actiongroup/model/action-group-props.js +0 -3
- package/lib/azure-actiongroup/model/arm-role-receiver-props.d.ts +0 -20
- package/lib/azure-actiongroup/model/arm-role-receiver-props.js +0 -3
- package/lib/azure-actiongroup/model/azure-app-push-receiver-props.d.ts +0 -14
- package/lib/azure-actiongroup/model/azure-app-push-receiver-props.js +0 -3
- package/lib/azure-actiongroup/model/email-receiver-props.d.ts +0 -19
- package/lib/azure-actiongroup/model/email-receiver-props.js +0 -3
- package/lib/azure-actiongroup/model/eventhub-receiver-props.d.ts +0 -23
- package/lib/azure-actiongroup/model/eventhub-receiver-props.js +0 -3
- package/lib/azure-actiongroup/model/function.d.ts +0 -40
- package/lib/azure-actiongroup/model/function.js +0 -118
- package/lib/azure-actiongroup/model/index.d.ts +0 -10
- package/lib/azure-actiongroup/model/index.js +0 -27
- package/lib/azure-actiongroup/model/logic-app-receiver-props.d.ts +0 -23
- package/lib/azure-actiongroup/model/logic-app-receiver-props.js +0 -3
- package/lib/azure-actiongroup/model/sms-receiver-props.d.ts +0 -18
- package/lib/azure-actiongroup/model/sms-receiver-props.js +0 -3
- package/lib/azure-actiongroup/model/voice-receiver-props.d.ts +0 -18
- package/lib/azure-actiongroup/model/voice-receiver-props.js +0 -3
- package/lib/azure-actiongroup/model/webhook-receiver-props.d.ts +0 -18
- package/lib/azure-actiongroup/model/webhook-receiver-props.js +0 -3
- package/lib/azure-actiongroup/test/AzureActionGroup.spec.d.ts +0 -1
- package/lib/azure-actiongroup/test/AzureActionGroup.spec.js +0 -294
- package/lib/azure-actiongroup/test/ExampleAzureActionGroup.d.ts +0 -5
- package/lib/azure-actiongroup/test/ExampleAzureActionGroup.js +0 -66
- package/lib/azure-applicationgateway/index.d.ts +0 -1
- package/lib/azure-applicationgateway/index.js +0 -18
- package/lib/azure-applicationgateway/lib/gateway.d.ts +0 -248
- package/lib/azure-applicationgateway/lib/gateway.js +0 -199
- package/lib/azure-applicationgateway/lib/index.d.ts +0 -1
- package/lib/azure-applicationgateway/lib/index.js +0 -18
- package/lib/azure-applicationgateway/test/AzureApplicationGateway.spec.d.ts +0 -1
- package/lib/azure-applicationgateway/test/AzureApplicationGateway.spec.js +0 -106
- package/lib/azure-applicationgateway/test/ExampleAzureApplicationGateway.d.ts +0 -5
- package/lib/azure-applicationgateway/test/ExampleAzureApplicationGateway.js +0 -267
- package/lib/azure-applicationinsights/index.d.ts +0 -1
- package/lib/azure-applicationinsights/index.js +0 -18
- package/lib/azure-applicationinsights/lib/appinsights.d.ts +0 -110
- package/lib/azure-applicationinsights/lib/appinsights.js +0 -134
- package/lib/azure-applicationinsights/lib/index.d.ts +0 -1
- package/lib/azure-applicationinsights/lib/index.js +0 -18
- package/lib/azure-applicationinsights/test/AzureAppInsights.spec.d.ts +0 -1
- package/lib/azure-applicationinsights/test/AzureAppInsights.spec.js +0 -55
- package/lib/azure-applicationinsights/test/ExampleAzureApplicationInsights.d.ts +0 -5
- package/lib/azure-applicationinsights/test/ExampleAzureApplicationInsights.js +0 -87
- package/lib/azure-containerregistry/index.d.ts +0 -1
- package/lib/azure-containerregistry/index.js +0 -18
- package/lib/azure-containerregistry/lib/index.d.ts +0 -1
- package/lib/azure-containerregistry/lib/index.js +0 -18
- package/lib/azure-containerregistry/lib/registry.d.ts +0 -70
- package/lib/azure-containerregistry/lib/registry.js +0 -76
- package/lib/azure-containerregistry/test/AzureContainerRegistry.spec.d.ts +0 -1
- package/lib/azure-containerregistry/test/AzureContainerRegistry.spec.js +0 -50
- package/lib/azure-containerregistry/test/ExampleAzureContainerRegistry.d.ts +0 -5
- package/lib/azure-containerregistry/test/ExampleAzureContainerRegistry.js +0 -57
- package/lib/azure-datalake/index.d.ts +0 -1
- package/lib/azure-datalake/index.js +0 -18
- package/lib/azure-datalake/lib/datalake.d.ts +0 -64
- package/lib/azure-datalake/lib/datalake.js +0 -92
- package/lib/azure-datalake/lib/filesystem.d.ts +0 -70
- package/lib/azure-datalake/lib/filesystem.js +0 -83
- package/lib/azure-datalake/lib/index.d.ts +0 -3
- package/lib/azure-datalake/lib/index.js +0 -20
- package/lib/azure-datalake/lib/path.d.ts +0 -49
- package/lib/azure-datalake/lib/path.js +0 -51
- package/lib/azure-eventhub/index.d.ts +0 -1
- package/lib/azure-eventhub/index.js +0 -18
- package/lib/azure-eventhub/lib/authorization.d.ts +0 -58
- package/lib/azure-eventhub/lib/authorization.js +0 -84
- package/lib/azure-eventhub/lib/cluster.d.ts +0 -56
- package/lib/azure-eventhub/lib/cluster.js +0 -64
- package/lib/azure-eventhub/lib/consumer.d.ts +0 -54
- package/lib/azure-eventhub/lib/consumer.js +0 -59
- package/lib/azure-eventhub/lib/index.d.ts +0 -6
- package/lib/azure-eventhub/lib/index.js +0 -23
- package/lib/azure-eventhub/lib/instance.d.ts +0 -164
- package/lib/azure-eventhub/lib/instance.js +0 -184
- package/lib/azure-eventhub/lib/kusto-connection.d.ts +0 -109
- package/lib/azure-eventhub/lib/kusto-connection.js +0 -76
- package/lib/azure-eventhub/lib/namespace.d.ts +0 -151
- package/lib/azure-eventhub/lib/namespace.js +0 -131
- package/lib/azure-eventhub/test/AzureEventhub.spec.d.ts +0 -1
- package/lib/azure-eventhub/test/AzureEventhub.spec.js +0 -56
- package/lib/azure-eventhub/test/ExampleAzureEventhub.d.ts +0 -5
- package/lib/azure-eventhub/test/ExampleAzureEventhub.js +0 -72
- package/lib/azure-functionapp/index.d.ts +0 -1
- package/lib/azure-functionapp/index.js +0 -18
- package/lib/azure-functionapp/lib/functionapplinux.d.ts +0 -211
- package/lib/azure-functionapp/lib/functionapplinux.js +0 -141
- package/lib/azure-functionapp/lib/index.d.ts +0 -1
- package/lib/azure-functionapp/lib/index.js +0 -18
- package/lib/azure-functionapp/serviceplanskus.d.ts +0 -70
- package/lib/azure-functionapp/serviceplanskus.js +0 -81
- package/lib/azure-functionapp/test/AzureLinuxFunctionApp.spec.d.ts +0 -1
- package/lib/azure-functionapp/test/AzureLinuxFunctionApp.spec.js +0 -48
- package/lib/azure-functionapp/test/ExampleAzureLinuxFunctionApp.d.ts +0 -5
- package/lib/azure-functionapp/test/ExampleAzureLinuxFunctionApp.js +0 -123
- package/lib/azure-keyvault/index.d.ts +0 -1
- package/lib/azure-keyvault/index.js +0 -18
- package/lib/azure-keyvault/lib/certificate.d.ts +0 -133
- package/lib/azure-keyvault/lib/certificate.js +0 -146
- package/lib/azure-keyvault/lib/index.d.ts +0 -5
- package/lib/azure-keyvault/lib/index.js +0 -22
- package/lib/azure-keyvault/lib/key.d.ts +0 -72
- package/lib/azure-keyvault/lib/key.js +0 -69
- package/lib/azure-keyvault/lib/policy.d.ts +0 -76
- package/lib/azure-keyvault/lib/policy.js +0 -56
- package/lib/azure-keyvault/lib/secret.d.ts +0 -70
- package/lib/azure-keyvault/lib/secret.js +0 -64
- package/lib/azure-keyvault/lib/vault.d.ts +0 -282
- package/lib/azure-keyvault/lib/vault.js +0 -392
- package/lib/azure-keyvault/test/AzureKeyVault.spec.d.ts +0 -1
- package/lib/azure-keyvault/test/AzureKeyVault.spec.js +0 -63
- package/lib/azure-keyvault/test/ExampleAzureKeyVault.d.ts +0 -5
- package/lib/azure-keyvault/test/ExampleAzureKeyVault.js +0 -112
- package/lib/azure-kubernetes/index.d.ts +0 -1
- package/lib/azure-kubernetes/index.js +0 -18
- package/lib/azure-kubernetes/lib/cluster.d.ts +0 -93
- package/lib/azure-kubernetes/lib/cluster.js +0 -63
- package/lib/azure-kubernetes/lib/index.d.ts +0 -1
- package/lib/azure-kubernetes/lib/index.js +0 -18
- package/lib/azure-kubernetes/test/AzureKubernetesCluster.spec.d.ts +0 -1
- package/lib/azure-kubernetes/test/AzureKubernetesCluster.spec.js +0 -56
- package/lib/azure-kubernetes/test/ExampleAzureKubernetesCluster.d.ts +0 -5
- package/lib/azure-kubernetes/test/ExampleAzureKubernetesCluster.js +0 -65
- package/lib/azure-kusto/index.d.ts +0 -1
- package/lib/azure-kusto/index.js +0 -18
- package/lib/azure-kusto/lib/cluster.d.ts +0 -136
- package/lib/azure-kusto/lib/cluster.js +0 -138
- package/lib/azure-kusto/lib/compute-specification.d.ts +0 -71
- package/lib/azure-kusto/lib/compute-specification.js +0 -651
- package/lib/azure-kusto/lib/database.d.ts +0 -162
- package/lib/azure-kusto/lib/database.js +0 -180
- package/lib/azure-kusto/lib/index.d.ts +0 -3
- package/lib/azure-kusto/lib/index.js +0 -20
- package/lib/azure-kusto/test/AzureKusto.spec.d.ts +0 -1
- package/lib/azure-kusto/test/AzureKusto.spec.js +0 -50
- package/lib/azure-kusto/test/ExampleAzureKusto.d.ts +0 -5
- package/lib/azure-kusto/test/ExampleAzureKusto.js +0 -71
- package/lib/azure-loganalytics/index.d.ts +0 -1
- package/lib/azure-loganalytics/index.js +0 -18
- package/lib/azure-loganalytics/lib/index.d.ts +0 -1
- package/lib/azure-loganalytics/lib/index.js +0 -18
- package/lib/azure-loganalytics/lib/workspace.d.ts +0 -163
- package/lib/azure-loganalytics/lib/workspace.js +0 -126
- package/lib/azure-loganalytics/test/AzureLogAnalytics.spec.d.ts +0 -1
- package/lib/azure-loganalytics/test/AzureLogAnalytics.spec.js +0 -50
- package/lib/azure-loganalytics/test/ExampleAzureLogAnalytics.d.ts +0 -5
- package/lib/azure-loganalytics/test/ExampleAzureLogAnalytics.js +0 -115
- package/lib/azure-metricalert/model/action-props.d.ts +0 -11
- package/lib/azure-metricalert/model/action-props.js +0 -3
- package/lib/azure-metricalert/model/criteria-base-props.d.ts +0 -38
- package/lib/azure-metricalert/model/criteria-base-props.js +0 -3
- package/lib/azure-metricalert/model/criteria-dimension-props.d.ts +0 -21
- package/lib/azure-metricalert/model/criteria-dimension-props.js +0 -3
- package/lib/azure-metricalert/model/criteria-props.d.ts +0 -12
- package/lib/azure-metricalert/model/criteria-props.js +0 -3
- package/lib/azure-metricalert/model/dynamic-criteria-props.d.ts +0 -29
- package/lib/azure-metricalert/model/dynamic-criteria-props.js +0 -3
- package/lib/azure-metricalert/model/function.d.ts +0 -28
- package/lib/azure-metricalert/model/function.js +0 -78
- package/lib/azure-metricalert/model/index.d.ts +0 -7
- package/lib/azure-metricalert/model/index.js +0 -24
- package/lib/azure-metricalert/model/metric-alert-props.d.ts +0 -86
- package/lib/azure-metricalert/model/metric-alert-props.js +0 -3
- package/lib/azure-metricalert/test/AzureMetricAlert.spec.d.ts +0 -1
- package/lib/azure-metricalert/test/AzureMetricAlert.spec.js +0 -63
- package/lib/azure-metricalert/test/ExampleAzureMetricAlert.d.ts +0 -5
- package/lib/azure-metricalert/test/ExampleAzureMetricAlert.js +0 -81
- package/lib/azure-networksecuritygroup/lib/preconfigured-rules.d.ts +0 -77
- package/lib/azure-networksecuritygroup/lib/preconfigured-rules.js +0 -608
- package/lib/azure-networksecuritygroup/lib/securitygroup.d.ts +0 -190
- package/lib/azure-networksecuritygroup/lib/securitygroup.js +0 -172
- package/lib/azure-networksecuritygroup/test/AzureNetworkSecurityGroup.spec.d.ts +0 -1
- package/lib/azure-networksecuritygroup/test/AzureNetworkSecurityGroup.spec.js +0 -54
- package/lib/azure-networksecuritygroup/test/ExampleAzureNetworkSecurityGroup.d.ts +0 -5
- package/lib/azure-networksecuritygroup/test/ExampleAzureNetworkSecurityGroup.js +0 -97
- package/lib/azure-queryrulealert/index.d.ts +0 -1
- package/lib/azure-queryrulealert/index.js +0 -18
- package/lib/azure-queryrulealert/lib/index.d.ts +0 -1
- package/lib/azure-queryrulealert/lib/index.js +0 -18
- package/lib/azure-queryrulealert/lib/query-rule-alert.d.ts +0 -175
- package/lib/azure-queryrulealert/lib/query-rule-alert.js +0 -205
- package/lib/azure-queryrulealert/test/AzureQueryRuleAlert.spec.d.ts +0 -1
- package/lib/azure-queryrulealert/test/AzureQueryRuleAlert.spec.js +0 -67
- package/lib/azure-queryrulealert/test/ExampleAzureQueryRuleAlert.d.ts +0 -5
- package/lib/azure-queryrulealert/test/ExampleAzureQueryRuleAlert.js +0 -67
- package/lib/azure-resourcegroup/test/AzureResourceGroup.spec.d.ts +0 -1
- package/lib/azure-resourcegroup/test/AzureResourceGroup.spec.js +0 -41
- package/lib/azure-resourcegroup/test/ExampleAzureResourceGroup.d.ts +0 -5
- package/lib/azure-resourcegroup/test/ExampleAzureResourceGroup.js +0 -29
- package/lib/azure-storageaccount/lib/account.d.ts +0 -232
- package/lib/azure-storageaccount/lib/account.js +0 -225
- package/lib/azure-storageaccount/lib/container.d.ts +0 -122
- package/lib/azure-storageaccount/lib/container.js +0 -167
- package/lib/azure-storageaccount/lib/fileshare.d.ts +0 -105
- package/lib/azure-storageaccount/lib/fileshare.js +0 -126
- package/lib/azure-storageaccount/lib/queue.d.ts +0 -35
- package/lib/azure-storageaccount/lib/queue.js +0 -52
- package/lib/azure-storageaccount/lib/table.d.ts +0 -38
- package/lib/azure-storageaccount/lib/table.js +0 -55
- package/lib/azure-storageaccount/test/AzureStorageAccount.spec.d.ts +0 -1
- package/lib/azure-storageaccount/test/AzureStorageAccount.spec.js +0 -45
- package/lib/azure-storageaccount/test/ExampleAzureStorageAccount.d.ts +0 -5
- package/lib/azure-storageaccount/test/ExampleAzureStorageAccount.js +0 -102
- package/lib/azure-virtualmachine/lib/image-references.d.ts +0 -22
- package/lib/azure-virtualmachine/lib/image-references.js +0 -128
- package/lib/azure-virtualmachine/lib/vm.d.ts +0 -281
- package/lib/azure-virtualmachine/lib/vm.js +0 -283
- package/lib/azure-virtualmachine/test/AzureLinuxVirtualMachine.spec.d.ts +0 -1
- package/lib/azure-virtualmachine/test/AzureLinuxVirtualMachine.spec.js +0 -48
- package/lib/azure-virtualmachine/test/AzureWindowsVirtualMachine.spec.d.ts +0 -1
- package/lib/azure-virtualmachine/test/AzureWindowsVirtualMachine.spec.js +0 -50
- package/lib/azure-virtualmachine/test/ExampleAzureLinuxVirtualMachine.d.ts +0 -5
- package/lib/azure-virtualmachine/test/ExampleAzureLinuxVirtualMachine.js +0 -106
- package/lib/azure-virtualmachine/test/ExampleAzureWindowsVirtualMachine.d.ts +0 -5
- package/lib/azure-virtualmachine/test/ExampleAzureWindowsVirtualMachine.js +0 -102
- package/lib/azure-virtualmachinescaleset/index.d.ts +0 -1
- package/lib/azure-virtualmachinescaleset/index.js +0 -18
- package/lib/azure-virtualmachinescaleset/lib/cluster.d.ts +0 -324
- package/lib/azure-virtualmachinescaleset/lib/cluster.js +0 -264
- package/lib/azure-virtualmachinescaleset/lib/index.d.ts +0 -1
- package/lib/azure-virtualmachinescaleset/lib/index.js +0 -18
- package/lib/azure-virtualmachinescaleset/test/AzureLinuxVirtualMachineScaleSet.spec.d.ts +0 -1
- package/lib/azure-virtualmachinescaleset/test/AzureLinuxVirtualMachineScaleSet.spec.js +0 -48
- package/lib/azure-virtualmachinescaleset/test/AzureWindowsVirtualMachineScaleSet.spec.d.ts +0 -1
- package/lib/azure-virtualmachinescaleset/test/AzureWindowsVirtualMachineScaleSet.spec.js +0 -50
- package/lib/azure-virtualmachinescaleset/test/ExampleAzureLinuxVirtualMachineScaleSet.d.ts +0 -5
- package/lib/azure-virtualmachinescaleset/test/ExampleAzureLinuxVirtualMachineScaleSet.js +0 -107
- package/lib/azure-virtualmachinescaleset/test/ExampleAzureWindowsVirtualMachineScaleSet.d.ts +0 -5
- package/lib/azure-virtualmachinescaleset/test/ExampleAzureWindowsVirtualMachineScaleSet.js +0 -103
- package/lib/azure-virtualnetwork/lib/network.d.ts +0 -122
- package/lib/azure-virtualnetwork/lib/network.js +0 -120
- package/lib/azure-virtualnetwork/lib/peering.d.ts +0 -90
- package/lib/azure-virtualnetwork/lib/peering.js +0 -71
- package/lib/azure-virtualnetwork/test/AzureVirtualNetwork.spec.d.ts +0 -1
- package/lib/azure-virtualnetwork/test/AzureVirtualNetwork.spec.js +0 -48
- package/lib/azure-virtualnetwork/test/ExampleAzureVirtualNetwork.d.ts +0 -5
- package/lib/azure-virtualnetwork/test/ExampleAzureVirtualNetwork.js +0 -88
- package/lib/core-azure/lib/diagsettings.d.ts +0 -89
- package/lib/core-azure/lib/diagsettings.js +0 -83
- package/lib/core-azure/lib/rbac.d.ts +0 -50
- package/lib/core-azure/lib/rbac.js +0 -48
- package/lib/core-azure/lib/resource.d.ts +0 -62
- package/lib/core-azure/lib/resource.js +0 -118
- package/lib/core-azure/test/AzureResource.spec.d.ts +0 -1
- package/lib/core-azure/test/AzureResource.spec.js +0 -19
- package/lib/core-azure/test/ExampleAzureResource.d.ts +0 -5
- package/lib/core-azure/test/ExampleAzureResource.js +0 -67
- package/node_modules/moment/CHANGELOG.md +0 -996
- package/node_modules/moment/LICENSE +0 -22
- package/node_modules/moment/README.md +0 -55
- package/node_modules/moment/dist/locale/af.js +0 -71
- package/node_modules/moment/dist/locale/ar-dz.js +0 -156
- package/node_modules/moment/dist/locale/ar-kw.js +0 -55
- package/node_modules/moment/dist/locale/ar-ly.js +0 -171
- package/node_modules/moment/dist/locale/ar-ma.js +0 -56
- package/node_modules/moment/dist/locale/ar-ps.js +0 -112
- package/node_modules/moment/dist/locale/ar-sa.js +0 -105
- package/node_modules/moment/dist/locale/ar-tn.js +0 -55
- package/node_modules/moment/dist/locale/ar.js +0 -189
- package/node_modules/moment/dist/locale/az.js +0 -102
- package/node_modules/moment/dist/locale/be.js +0 -142
- package/node_modules/moment/dist/locale/bg.js +0 -87
- package/node_modules/moment/dist/locale/bm.js +0 -52
- package/node_modules/moment/dist/locale/bn-bd.js +0 -129
- package/node_modules/moment/dist/locale/bn.js +0 -119
- package/node_modules/moment/dist/locale/bo.js +0 -124
- package/node_modules/moment/dist/locale/br.js +0 -168
- package/node_modules/moment/dist/locale/bs.js +0 -160
- package/node_modules/moment/dist/locale/ca.js +0 -100
- package/node_modules/moment/dist/locale/cs.js +0 -181
- package/node_modules/moment/dist/locale/cv.js +0 -63
- package/node_modules/moment/dist/locale/cy.js +0 -98
- package/node_modules/moment/dist/locale/da.js +0 -53
- package/node_modules/moment/dist/locale/de-at.js +0 -79
- package/node_modules/moment/dist/locale/de-ch.js +0 -78
- package/node_modules/moment/dist/locale/de.js +0 -78
- package/node_modules/moment/dist/locale/dv.js +0 -90
- package/node_modules/moment/dist/locale/el.js +0 -106
- package/node_modules/moment/dist/locale/en-au.js +0 -68
- package/node_modules/moment/dist/locale/en-ca.js +0 -64
- package/node_modules/moment/dist/locale/en-gb.js +0 -68
- package/node_modules/moment/dist/locale/en-ie.js +0 -68
- package/node_modules/moment/dist/locale/en-il.js +0 -64
- package/node_modules/moment/dist/locale/en-in.js +0 -68
- package/node_modules/moment/dist/locale/en-nz.js +0 -68
- package/node_modules/moment/dist/locale/en-sg.js +0 -68
- package/node_modules/moment/dist/locale/eo.js +0 -68
- package/node_modules/moment/dist/locale/es-do.js +0 -108
- package/node_modules/moment/dist/locale/es-mx.js +0 -110
- package/node_modules/moment/dist/locale/es-us.js +0 -110
- package/node_modules/moment/dist/locale/es.js +0 -110
- package/node_modules/moment/dist/locale/et.js +0 -78
- package/node_modules/moment/dist/locale/eu.js +0 -65
- package/node_modules/moment/dist/locale/fa.js +0 -113
- package/node_modules/moment/dist/locale/fi.js +0 -124
- package/node_modules/moment/dist/locale/fil.js +0 -58
- package/node_modules/moment/dist/locale/fo.js +0 -57
- package/node_modules/moment/dist/locale/fr-ca.js +0 -70
- package/node_modules/moment/dist/locale/fr-ch.js +0 -74
- package/node_modules/moment/dist/locale/fr.js +0 -108
- package/node_modules/moment/dist/locale/fy.js +0 -75
- package/node_modules/moment/dist/locale/ga.js +0 -95
- package/node_modules/moment/dist/locale/gd.js +0 -95
- package/node_modules/moment/dist/locale/gl.js +0 -75
- package/node_modules/moment/dist/locale/gom-deva.js +0 -126
- package/node_modules/moment/dist/locale/gom-latn.js +0 -124
- package/node_modules/moment/dist/locale/gu.js +0 -122
- package/node_modules/moment/dist/locale/he.js +0 -94
- package/node_modules/moment/dist/locale/hi.js +0 -168
- package/node_modules/moment/dist/locale/hr.js +0 -156
- package/node_modules/moment/dist/locale/hu.js +0 -118
- package/node_modules/moment/dist/locale/hy-am.js +0 -94
- package/node_modules/moment/dist/locale/id.js +0 -76
- package/node_modules/moment/dist/locale/is.js +0 -140
- package/node_modules/moment/dist/locale/it-ch.js +0 -64
- package/node_modules/moment/dist/locale/it.js +0 -106
- package/node_modules/moment/dist/locale/ja.js +0 -148
- package/node_modules/moment/dist/locale/jv.js +0 -76
- package/node_modules/moment/dist/locale/ka.js +0 -92
- package/node_modules/moment/dist/locale/kk.js +0 -82
- package/node_modules/moment/dist/locale/km.js +0 -103
- package/node_modules/moment/dist/locale/kn.js +0 -124
- package/node_modules/moment/dist/locale/ko.js +0 -75
- package/node_modules/moment/dist/locale/ku-kmr.js +0 -121
- package/node_modules/moment/dist/locale/ku.js +0 -118
- package/node_modules/moment/dist/locale/ky.js +0 -84
- package/node_modules/moment/dist/locale/lb.js +0 -137
- package/node_modules/moment/dist/locale/lo.js +0 -66
- package/node_modules/moment/dist/locale/lt.js +0 -125
- package/node_modules/moment/dist/locale/lv.js +0 -94
- package/node_modules/moment/dist/locale/me.js +0 -117
- package/node_modules/moment/dist/locale/mi.js +0 -60
- package/node_modules/moment/dist/locale/mk.js +0 -85
- package/node_modules/moment/dist/locale/ml.js +0 -82
- package/node_modules/moment/dist/locale/mn.js +0 -100
- package/node_modules/moment/dist/locale/mr.js +0 -203
- package/node_modules/moment/dist/locale/ms-my.js +0 -76
- package/node_modules/moment/dist/locale/ms.js +0 -75
- package/node_modules/moment/dist/locale/mt.js +0 -56
- package/node_modules/moment/dist/locale/my.js +0 -91
- package/node_modules/moment/dist/locale/nb.js +0 -60
- package/node_modules/moment/dist/locale/ne.js +0 -121
- package/node_modules/moment/dist/locale/nl-be.js +0 -102
- package/node_modules/moment/dist/locale/nl.js +0 -104
- package/node_modules/moment/dist/locale/nn.js +0 -59
- package/node_modules/moment/dist/locale/oc-lnc.js +0 -85
- package/node_modules/moment/dist/locale/pa-in.js +0 -122
- package/node_modules/moment/dist/locale/pl.js +0 -140
- package/node_modules/moment/dist/locale/pt-br.js +0 -58
- package/node_modules/moment/dist/locale/pt.js +0 -63
- package/node_modules/moment/dist/locale/ro.js +0 -76
- package/node_modules/moment/dist/locale/ru.js +0 -213
- package/node_modules/moment/dist/locale/sd.js +0 -81
- package/node_modules/moment/dist/locale/se.js +0 -57
- package/node_modules/moment/dist/locale/si.js +0 -69
- package/node_modules/moment/dist/locale/sk.js +0 -145
- package/node_modules/moment/dist/locale/sl.js +0 -171
- package/node_modules/moment/dist/locale/sq.js +0 -65
- package/node_modules/moment/dist/locale/sr-cyrl.js +0 -127
- package/node_modules/moment/dist/locale/sr.js +0 -129
- package/node_modules/moment/dist/locale/ss.js +0 -84
- package/node_modules/moment/dist/locale/sv.js +0 -68
- package/node_modules/moment/dist/locale/sw.js +0 -55
- package/node_modules/moment/dist/locale/ta.js +0 -131
- package/node_modules/moment/dist/locale/te.js +0 -88
- package/node_modules/moment/dist/locale/tet.js +0 -68
- package/node_modules/moment/dist/locale/tg.js +0 -117
- package/node_modules/moment/dist/locale/th.js +0 -65
- package/node_modules/moment/dist/locale/tk.js +0 -91
- package/node_modules/moment/dist/locale/tl-ph.js +0 -57
- package/node_modules/moment/dist/locale/tlh.js +0 -124
- package/node_modules/moment/dist/locale/tr.js +0 -106
- package/node_modules/moment/dist/locale/tzl.js +0 -89
- package/node_modules/moment/dist/locale/tzm-latn.js +0 -54
- package/node_modules/moment/dist/locale/tzm.js +0 -54
- package/node_modules/moment/dist/locale/ug-cn.js +0 -111
- package/node_modules/moment/dist/locale/uk.js +0 -167
- package/node_modules/moment/dist/locale/ur.js +0 -82
- package/node_modules/moment/dist/locale/uz-latn.js +0 -54
- package/node_modules/moment/dist/locale/uz.js +0 -51
- package/node_modules/moment/dist/locale/vi.js +0 -80
- package/node_modules/moment/dist/locale/x-pseudo.js +0 -73
- package/node_modules/moment/dist/locale/yo.js +0 -53
- package/node_modules/moment/dist/locale/zh-cn.js +0 -120
- package/node_modules/moment/dist/locale/zh-hk.js +0 -101
- package/node_modules/moment/dist/locale/zh-mo.js +0 -100
- package/node_modules/moment/dist/locale/zh-tw.js +0 -99
- package/node_modules/moment/dist/moment.js +0 -5680
- package/node_modules/moment/ender.js +0 -1
- package/node_modules/moment/locale/af.js +0 -82
- package/node_modules/moment/locale/ar-dz.js +0 -167
- package/node_modules/moment/locale/ar-kw.js +0 -66
- package/node_modules/moment/locale/ar-ly.js +0 -182
- package/node_modules/moment/locale/ar-ma.js +0 -67
- package/node_modules/moment/locale/ar-ps.js +0 -123
- package/node_modules/moment/locale/ar-sa.js +0 -116
- package/node_modules/moment/locale/ar-tn.js +0 -66
- package/node_modules/moment/locale/ar.js +0 -200
- package/node_modules/moment/locale/az.js +0 -113
- package/node_modules/moment/locale/be.js +0 -153
- package/node_modules/moment/locale/bg.js +0 -98
- package/node_modules/moment/locale/bm.js +0 -62
- package/node_modules/moment/locale/bn-bd.js +0 -140
- package/node_modules/moment/locale/bn.js +0 -130
- package/node_modules/moment/locale/bo.js +0 -135
- package/node_modules/moment/locale/br.js +0 -179
- package/node_modules/moment/locale/bs.js +0 -171
- package/node_modules/moment/locale/ca.js +0 -111
- package/node_modules/moment/locale/cs.js +0 -192
- package/node_modules/moment/locale/cv.js +0 -74
- package/node_modules/moment/locale/cy.js +0 -109
- package/node_modules/moment/locale/da.js +0 -64
- package/node_modules/moment/locale/de-at.js +0 -90
- package/node_modules/moment/locale/de-ch.js +0 -87
- package/node_modules/moment/locale/de.js +0 -89
- package/node_modules/moment/locale/dv.js +0 -101
- package/node_modules/moment/locale/el.js +0 -117
- package/node_modules/moment/locale/en-au.js +0 -79
- package/node_modules/moment/locale/en-ca.js +0 -75
- package/node_modules/moment/locale/en-gb.js +0 -79
- package/node_modules/moment/locale/en-ie.js +0 -79
- package/node_modules/moment/locale/en-il.js +0 -75
- package/node_modules/moment/locale/en-in.js +0 -79
- package/node_modules/moment/locale/en-nz.js +0 -79
- package/node_modules/moment/locale/en-sg.js +0 -79
- package/node_modules/moment/locale/eo.js +0 -79
- package/node_modules/moment/locale/es-do.js +0 -119
- package/node_modules/moment/locale/es-mx.js +0 -121
- package/node_modules/moment/locale/es-us.js +0 -121
- package/node_modules/moment/locale/es.js +0 -121
- package/node_modules/moment/locale/et.js +0 -89
- package/node_modules/moment/locale/eu.js +0 -76
- package/node_modules/moment/locale/fa.js +0 -124
- package/node_modules/moment/locale/fi.js +0 -135
- package/node_modules/moment/locale/fil.js +0 -69
- package/node_modules/moment/locale/fo.js +0 -68
- package/node_modules/moment/locale/fr-ca.js +0 -81
- package/node_modules/moment/locale/fr-ch.js +0 -85
- package/node_modules/moment/locale/fr.js +0 -119
- package/node_modules/moment/locale/fy.js +0 -86
- package/node_modules/moment/locale/ga.js +0 -106
- package/node_modules/moment/locale/gd.js +0 -106
- package/node_modules/moment/locale/gl.js +0 -86
- package/node_modules/moment/locale/gom-deva.js +0 -137
- package/node_modules/moment/locale/gom-latn.js +0 -135
- package/node_modules/moment/locale/gu.js +0 -133
- package/node_modules/moment/locale/he.js +0 -105
- package/node_modules/moment/locale/hi.js +0 -179
- package/node_modules/moment/locale/hr.js +0 -167
- package/node_modules/moment/locale/hu.js +0 -129
- package/node_modules/moment/locale/hy-am.js +0 -105
- package/node_modules/moment/locale/id.js +0 -87
- package/node_modules/moment/locale/is.js +0 -151
- package/node_modules/moment/locale/it-ch.js +0 -75
- package/node_modules/moment/locale/it.js +0 -117
- package/node_modules/moment/locale/ja.js +0 -159
- package/node_modules/moment/locale/jv.js +0 -87
- package/node_modules/moment/locale/ka.js +0 -103
- package/node_modules/moment/locale/kk.js +0 -93
- package/node_modules/moment/locale/km.js +0 -114
- package/node_modules/moment/locale/kn.js +0 -135
- package/node_modules/moment/locale/ko.js +0 -86
- package/node_modules/moment/locale/ku-kmr.js +0 -125
- package/node_modules/moment/locale/ku.js +0 -129
- package/node_modules/moment/locale/ky.js +0 -95
- package/node_modules/moment/locale/lb.js +0 -148
- package/node_modules/moment/locale/lo.js +0 -77
- package/node_modules/moment/locale/lt.js +0 -136
- package/node_modules/moment/locale/lv.js +0 -105
- package/node_modules/moment/locale/me.js +0 -128
- package/node_modules/moment/locale/mi.js +0 -71
- package/node_modules/moment/locale/mk.js +0 -97
- package/node_modules/moment/locale/ml.js +0 -93
- package/node_modules/moment/locale/mn.js +0 -111
- package/node_modules/moment/locale/mr.js +0 -214
- package/node_modules/moment/locale/ms-my.js +0 -87
- package/node_modules/moment/locale/ms.js +0 -86
- package/node_modules/moment/locale/mt.js +0 -67
- package/node_modules/moment/locale/my.js +0 -102
- package/node_modules/moment/locale/nb.js +0 -71
- package/node_modules/moment/locale/ne.js +0 -132
- package/node_modules/moment/locale/nl-be.js +0 -113
- package/node_modules/moment/locale/nl.js +0 -115
- package/node_modules/moment/locale/nn.js +0 -70
- package/node_modules/moment/locale/oc-lnc.js +0 -96
- package/node_modules/moment/locale/pa-in.js +0 -133
- package/node_modules/moment/locale/pl.js +0 -151
- package/node_modules/moment/locale/pt-br.js +0 -69
- package/node_modules/moment/locale/pt.js +0 -74
- package/node_modules/moment/locale/ro.js +0 -87
- package/node_modules/moment/locale/ru.js +0 -224
- package/node_modules/moment/locale/sd.js +0 -92
- package/node_modules/moment/locale/se.js +0 -68
- package/node_modules/moment/locale/si.js +0 -80
- package/node_modules/moment/locale/sk.js +0 -156
- package/node_modules/moment/locale/sl.js +0 -182
- package/node_modules/moment/locale/sq.js +0 -76
- package/node_modules/moment/locale/sr-cyrl.js +0 -138
- package/node_modules/moment/locale/sr.js +0 -140
- package/node_modules/moment/locale/ss.js +0 -95
- package/node_modules/moment/locale/sv.js +0 -79
- package/node_modules/moment/locale/sw.js +0 -66
- package/node_modules/moment/locale/ta.js +0 -142
- package/node_modules/moment/locale/te.js +0 -99
- package/node_modules/moment/locale/tet.js +0 -79
- package/node_modules/moment/locale/tg.js +0 -128
- package/node_modules/moment/locale/th.js +0 -76
- package/node_modules/moment/locale/tk.js +0 -102
- package/node_modules/moment/locale/tl-ph.js +0 -68
- package/node_modules/moment/locale/tlh.js +0 -135
- package/node_modules/moment/locale/tr.js +0 -117
- package/node_modules/moment/locale/tzl.js +0 -100
- package/node_modules/moment/locale/tzm-latn.js +0 -65
- package/node_modules/moment/locale/tzm.js +0 -65
- package/node_modules/moment/locale/ug-cn.js +0 -122
- package/node_modules/moment/locale/uk.js +0 -178
- package/node_modules/moment/locale/ur.js +0 -93
- package/node_modules/moment/locale/uz-latn.js +0 -65
- package/node_modules/moment/locale/uz.js +0 -62
- package/node_modules/moment/locale/vi.js +0 -91
- package/node_modules/moment/locale/x-pseudo.js +0 -84
- package/node_modules/moment/locale/yo.js +0 -64
- package/node_modules/moment/locale/zh-cn.js +0 -131
- package/node_modules/moment/locale/zh-hk.js +0 -112
- package/node_modules/moment/locale/zh-mo.js +0 -111
- package/node_modules/moment/locale/zh-tw.js +0 -110
- package/node_modules/moment/min/locales.js +0 -12800
- package/node_modules/moment/min/locales.min.js +0 -2
- package/node_modules/moment/min/locales.min.js.map +0 -1
- package/node_modules/moment/min/moment-with-locales.js +0 -18472
- package/node_modules/moment/min/moment-with-locales.min.js +0 -2
- package/node_modules/moment/min/moment-with-locales.min.js.map +0 -1
- package/node_modules/moment/min/moment.min.js +0 -2
- package/node_modules/moment/min/moment.min.js.map +0 -1
- package/node_modules/moment/moment.d.ts +0 -796
- package/node_modules/moment/moment.js +0 -5688
- package/node_modules/moment/package.js +0 -11
- package/node_modules/moment/package.json +0 -116
- package/node_modules/moment/src/lib/create/check-overflow.js +0 -57
- package/node_modules/moment/src/lib/create/date-from-array.js +0 -35
- package/node_modules/moment/src/lib/create/from-anything.js +0 -117
- package/node_modules/moment/src/lib/create/from-array.js +0 -187
- package/node_modules/moment/src/lib/create/from-object.js +0 -20
- package/node_modules/moment/src/lib/create/from-string-and-array.js +0 -67
- package/node_modules/moment/src/lib/create/from-string-and-format.js +0 -135
- package/node_modules/moment/src/lib/create/from-string.js +0 -258
- package/node_modules/moment/src/lib/create/local.js +0 -5
- package/node_modules/moment/src/lib/create/parsing-flags.js +0 -28
- package/node_modules/moment/src/lib/create/utc.js +0 -5
- package/node_modules/moment/src/lib/create/valid.js +0 -51
- package/node_modules/moment/src/lib/duration/abs.js +0 -18
- package/node_modules/moment/src/lib/duration/add-subtract.js +0 -21
- package/node_modules/moment/src/lib/duration/as.js +0 -76
- package/node_modules/moment/src/lib/duration/bubble.js +0 -68
- package/node_modules/moment/src/lib/duration/clone.js +0 -5
- package/node_modules/moment/src/lib/duration/constructor.js +0 -42
- package/node_modules/moment/src/lib/duration/create.js +0 -133
- package/node_modules/moment/src/lib/duration/duration.js +0 -16
- package/node_modules/moment/src/lib/duration/get.js +0 -27
- package/node_modules/moment/src/lib/duration/humanize.js +0 -114
- package/node_modules/moment/src/lib/duration/iso-string.js +0 -68
- package/node_modules/moment/src/lib/duration/prototype.js +0 -78
- package/node_modules/moment/src/lib/duration/valid.js +0 -55
- package/node_modules/moment/src/lib/format/format.js +0 -104
- package/node_modules/moment/src/lib/locale/base-config.js +0 -41
- package/node_modules/moment/src/lib/locale/calendar.js +0 -15
- package/node_modules/moment/src/lib/locale/constructor.js +0 -5
- package/node_modules/moment/src/lib/locale/en.js +0 -39
- package/node_modules/moment/src/lib/locale/formats.js +0 -36
- package/node_modules/moment/src/lib/locale/invalid.js +0 -5
- package/node_modules/moment/src/lib/locale/lists.js +0 -93
- package/node_modules/moment/src/lib/locale/locale.js +0 -45
- package/node_modules/moment/src/lib/locale/locales.js +0 -249
- package/node_modules/moment/src/lib/locale/ordinal.js +0 -8
- package/node_modules/moment/src/lib/locale/pre-post-format.js +0 -3
- package/node_modules/moment/src/lib/locale/prototype.js +0 -88
- package/node_modules/moment/src/lib/locale/relative.js +0 -32
- package/node_modules/moment/src/lib/locale/set.js +0 -56
- package/node_modules/moment/src/lib/moment/add-subtract.js +0 -61
- package/node_modules/moment/src/lib/moment/calendar.js +0 -53
- package/node_modules/moment/src/lib/moment/clone.js +0 -5
- package/node_modules/moment/src/lib/moment/compare.js +0 -72
- package/node_modules/moment/src/lib/moment/constructor.js +0 -80
- package/node_modules/moment/src/lib/moment/creation-data.js +0 -9
- package/node_modules/moment/src/lib/moment/diff.js +0 -79
- package/node_modules/moment/src/lib/moment/format.js +0 -78
- package/node_modules/moment/src/lib/moment/from.js +0 -20
- package/node_modules/moment/src/lib/moment/get-set.js +0 -117
- package/node_modules/moment/src/lib/moment/locale.js +0 -34
- package/node_modules/moment/src/lib/moment/min-max.js +0 -62
- package/node_modules/moment/src/lib/moment/moment.js +0 -28
- package/node_modules/moment/src/lib/moment/now.js +0 -3
- package/node_modules/moment/src/lib/moment/prototype.js +0 -197
- package/node_modules/moment/src/lib/moment/start-end-of.js +0 -164
- package/node_modules/moment/src/lib/moment/to-type.js +0 -42
- package/node_modules/moment/src/lib/moment/to.js +0 -20
- package/node_modules/moment/src/lib/moment/valid.js +0 -15
- package/node_modules/moment/src/lib/parse/regex.js +0 -84
- package/node_modules/moment/src/lib/parse/token.js +0 -36
- package/node_modules/moment/src/lib/units/aliases.js +0 -75
- package/node_modules/moment/src/lib/units/constants.js +0 -9
- package/node_modules/moment/src/lib/units/day-of-month.js +0 -35
- package/node_modules/moment/src/lib/units/day-of-week.js +0 -432
- package/node_modules/moment/src/lib/units/day-of-year.js +0 -28
- package/node_modules/moment/src/lib/units/era.js +0 -293
- package/node_modules/moment/src/lib/units/hour.js +0 -152
- package/node_modules/moment/src/lib/units/millisecond.js +0 -66
- package/node_modules/moment/src/lib/units/minute.js +0 -24
- package/node_modules/moment/src/lib/units/month.js +0 -340
- package/node_modules/moment/src/lib/units/offset.js +0 -249
- package/node_modules/moment/src/lib/units/priorities.js +0 -34
- package/node_modules/moment/src/lib/units/quarter.js +0 -24
- package/node_modules/moment/src/lib/units/second.js +0 -24
- package/node_modules/moment/src/lib/units/timestamp.js +0 -20
- package/node_modules/moment/src/lib/units/timezone.js +0 -16
- package/node_modules/moment/src/lib/units/units.js +0 -20
- package/node_modules/moment/src/lib/units/week-calendar-utils.js +0 -66
- package/node_modules/moment/src/lib/units/week-year.js +0 -128
- package/node_modules/moment/src/lib/units/week.js +0 -62
- package/node_modules/moment/src/lib/units/year.js +0 -75
- package/node_modules/moment/src/lib/utils/abs-ceil.js +0 -7
- package/node_modules/moment/src/lib/utils/abs-floor.js +0 -8
- package/node_modules/moment/src/lib/utils/abs-round.js +0 -7
- package/node_modules/moment/src/lib/utils/compare-arrays.js +0 -18
- package/node_modules/moment/src/lib/utils/defaults.js +0 -10
- package/node_modules/moment/src/lib/utils/deprecate.js +0 -69
- package/node_modules/moment/src/lib/utils/extend.js +0 -19
- package/node_modules/moment/src/lib/utils/has-own-prop.js +0 -3
- package/node_modules/moment/src/lib/utils/hooks.js +0 -13
- package/node_modules/moment/src/lib/utils/index-of.js +0 -18
- package/node_modules/moment/src/lib/utils/is-array.js +0 -6
- package/node_modules/moment/src/lib/utils/is-calendar-spec.js +0 -25
- package/node_modules/moment/src/lib/utils/is-date.js +0 -6
- package/node_modules/moment/src/lib/utils/is-function.js +0 -6
- package/node_modules/moment/src/lib/utils/is-leap-year.js +0 -3
- package/node_modules/moment/src/lib/utils/is-moment-input.js +0 -75
- package/node_modules/moment/src/lib/utils/is-number.js +0 -6
- package/node_modules/moment/src/lib/utils/is-object-empty.js +0 -15
- package/node_modules/moment/src/lib/utils/is-object.js +0 -8
- package/node_modules/moment/src/lib/utils/is-string.js +0 -3
- package/node_modules/moment/src/lib/utils/is-undefined.js +0 -3
- package/node_modules/moment/src/lib/utils/keys.js +0 -20
- package/node_modules/moment/src/lib/utils/map.js +0 -9
- package/node_modules/moment/src/lib/utils/mod.js +0 -3
- package/node_modules/moment/src/lib/utils/some.js +0 -20
- package/node_modules/moment/src/lib/utils/to-int.js +0 -12
- package/node_modules/moment/src/lib/utils/zero-fill.js +0 -10
- package/node_modules/moment/src/locale/af.js +0 -71
- package/node_modules/moment/src/locale/ar-dz.js +0 -156
- package/node_modules/moment/src/locale/ar-kw.js +0 -55
- package/node_modules/moment/src/locale/ar-ly.js +0 -171
- package/node_modules/moment/src/locale/ar-ma.js +0 -56
- package/node_modules/moment/src/locale/ar-ps.js +0 -112
- package/node_modules/moment/src/locale/ar-sa.js +0 -105
- package/node_modules/moment/src/locale/ar-tn.js +0 -55
- package/node_modules/moment/src/locale/ar.js +0 -189
- package/node_modules/moment/src/locale/az.js +0 -102
- package/node_modules/moment/src/locale/be.js +0 -142
- package/node_modules/moment/src/locale/bg.js +0 -87
- package/node_modules/moment/src/locale/bm.js +0 -52
- package/node_modules/moment/src/locale/bn-bd.js +0 -129
- package/node_modules/moment/src/locale/bn.js +0 -119
- package/node_modules/moment/src/locale/bo.js +0 -124
- package/node_modules/moment/src/locale/br.js +0 -168
- package/node_modules/moment/src/locale/bs.js +0 -160
- package/node_modules/moment/src/locale/ca.js +0 -100
- package/node_modules/moment/src/locale/cs.js +0 -181
- package/node_modules/moment/src/locale/cv.js +0 -63
- package/node_modules/moment/src/locale/cy.js +0 -98
- package/node_modules/moment/src/locale/da.js +0 -53
- package/node_modules/moment/src/locale/de-at.js +0 -79
- package/node_modules/moment/src/locale/de-ch.js +0 -78
- package/node_modules/moment/src/locale/de.js +0 -78
- package/node_modules/moment/src/locale/dv.js +0 -90
- package/node_modules/moment/src/locale/el.js +0 -106
- package/node_modules/moment/src/locale/en-au.js +0 -68
- package/node_modules/moment/src/locale/en-ca.js +0 -64
- package/node_modules/moment/src/locale/en-gb.js +0 -68
- package/node_modules/moment/src/locale/en-ie.js +0 -68
- package/node_modules/moment/src/locale/en-il.js +0 -64
- package/node_modules/moment/src/locale/en-in.js +0 -68
- package/node_modules/moment/src/locale/en-nz.js +0 -68
- package/node_modules/moment/src/locale/en-sg.js +0 -68
- package/node_modules/moment/src/locale/eo.js +0 -68
- package/node_modules/moment/src/locale/es-do.js +0 -108
- package/node_modules/moment/src/locale/es-mx.js +0 -110
- package/node_modules/moment/src/locale/es-us.js +0 -110
- package/node_modules/moment/src/locale/es.js +0 -110
- package/node_modules/moment/src/locale/et.js +0 -78
- package/node_modules/moment/src/locale/eu.js +0 -65
- package/node_modules/moment/src/locale/fa.js +0 -113
- package/node_modules/moment/src/locale/fi.js +0 -124
- package/node_modules/moment/src/locale/fil.js +0 -58
- package/node_modules/moment/src/locale/fo.js +0 -57
- package/node_modules/moment/src/locale/fr-ca.js +0 -70
- package/node_modules/moment/src/locale/fr-ch.js +0 -74
- package/node_modules/moment/src/locale/fr.js +0 -108
- package/node_modules/moment/src/locale/fy.js +0 -75
- package/node_modules/moment/src/locale/ga.js +0 -95
- package/node_modules/moment/src/locale/gd.js +0 -95
- package/node_modules/moment/src/locale/gl.js +0 -75
- package/node_modules/moment/src/locale/gom-deva.js +0 -126
- package/node_modules/moment/src/locale/gom-latn.js +0 -124
- package/node_modules/moment/src/locale/gu.js +0 -122
- package/node_modules/moment/src/locale/he.js +0 -94
- package/node_modules/moment/src/locale/hi.js +0 -168
- package/node_modules/moment/src/locale/hr.js +0 -156
- package/node_modules/moment/src/locale/hu.js +0 -118
- package/node_modules/moment/src/locale/hy-am.js +0 -94
- package/node_modules/moment/src/locale/id.js +0 -76
- package/node_modules/moment/src/locale/is.js +0 -140
- package/node_modules/moment/src/locale/it-ch.js +0 -64
- package/node_modules/moment/src/locale/it.js +0 -106
- package/node_modules/moment/src/locale/ja.js +0 -148
- package/node_modules/moment/src/locale/jv.js +0 -76
- package/node_modules/moment/src/locale/ka.js +0 -92
- package/node_modules/moment/src/locale/kk.js +0 -82
- package/node_modules/moment/src/locale/km.js +0 -103
- package/node_modules/moment/src/locale/kn.js +0 -124
- package/node_modules/moment/src/locale/ko.js +0 -75
- package/node_modules/moment/src/locale/ku-kmr.js +0 -121
- package/node_modules/moment/src/locale/ku.js +0 -118
- package/node_modules/moment/src/locale/ky.js +0 -84
- package/node_modules/moment/src/locale/lb.js +0 -137
- package/node_modules/moment/src/locale/lo.js +0 -66
- package/node_modules/moment/src/locale/lt.js +0 -125
- package/node_modules/moment/src/locale/lv.js +0 -94
- package/node_modules/moment/src/locale/me.js +0 -117
- package/node_modules/moment/src/locale/mi.js +0 -60
- package/node_modules/moment/src/locale/mk.js +0 -85
- package/node_modules/moment/src/locale/ml.js +0 -82
- package/node_modules/moment/src/locale/mn.js +0 -100
- package/node_modules/moment/src/locale/mr.js +0 -203
- package/node_modules/moment/src/locale/ms-my.js +0 -76
- package/node_modules/moment/src/locale/ms.js +0 -75
- package/node_modules/moment/src/locale/mt.js +0 -56
- package/node_modules/moment/src/locale/my.js +0 -91
- package/node_modules/moment/src/locale/nb.js +0 -60
- package/node_modules/moment/src/locale/ne.js +0 -121
- package/node_modules/moment/src/locale/nl-be.js +0 -102
- package/node_modules/moment/src/locale/nl.js +0 -104
- package/node_modules/moment/src/locale/nn.js +0 -59
- package/node_modules/moment/src/locale/oc-lnc.js +0 -85
- package/node_modules/moment/src/locale/pa-in.js +0 -122
- package/node_modules/moment/src/locale/pl.js +0 -140
- package/node_modules/moment/src/locale/pt-br.js +0 -58
- package/node_modules/moment/src/locale/pt.js +0 -63
- package/node_modules/moment/src/locale/ro.js +0 -76
- package/node_modules/moment/src/locale/ru.js +0 -213
- package/node_modules/moment/src/locale/sd.js +0 -81
- package/node_modules/moment/src/locale/se.js +0 -57
- package/node_modules/moment/src/locale/si.js +0 -69
- package/node_modules/moment/src/locale/sk.js +0 -145
- package/node_modules/moment/src/locale/sl.js +0 -171
- package/node_modules/moment/src/locale/sq.js +0 -65
- package/node_modules/moment/src/locale/sr-cyrl.js +0 -127
- package/node_modules/moment/src/locale/sr.js +0 -129
- package/node_modules/moment/src/locale/ss.js +0 -84
- package/node_modules/moment/src/locale/sv.js +0 -68
- package/node_modules/moment/src/locale/sw.js +0 -55
- package/node_modules/moment/src/locale/ta.js +0 -131
- package/node_modules/moment/src/locale/te.js +0 -88
- package/node_modules/moment/src/locale/tet.js +0 -68
- package/node_modules/moment/src/locale/tg.js +0 -117
- package/node_modules/moment/src/locale/th.js +0 -65
- package/node_modules/moment/src/locale/tk.js +0 -91
- package/node_modules/moment/src/locale/tl-ph.js +0 -57
- package/node_modules/moment/src/locale/tlh.js +0 -124
- package/node_modules/moment/src/locale/tr.js +0 -106
- package/node_modules/moment/src/locale/tzl.js +0 -89
- package/node_modules/moment/src/locale/tzm-latn.js +0 -54
- package/node_modules/moment/src/locale/tzm.js +0 -54
- package/node_modules/moment/src/locale/ug-cn.js +0 -111
- package/node_modules/moment/src/locale/uk.js +0 -167
- package/node_modules/moment/src/locale/ur.js +0 -82
- package/node_modules/moment/src/locale/uz-latn.js +0 -54
- package/node_modules/moment/src/locale/uz.js +0 -51
- package/node_modules/moment/src/locale/vi.js +0 -80
- package/node_modules/moment/src/locale/x-pseudo.js +0 -73
- package/node_modules/moment/src/locale/yo.js +0 -53
- package/node_modules/moment/src/locale/zh-cn.js +0 -120
- package/node_modules/moment/src/locale/zh-hk.js +0 -101
- package/node_modules/moment/src/locale/zh-mo.js +0 -100
- package/node_modules/moment/src/locale/zh-tw.js +0 -99
- package/node_modules/moment/src/moment.js +0 -93
- package/node_modules/moment/ts3.1-typings/moment.d.ts +0 -785
- package/node_modules/nanoid/LICENSE +0 -20
- package/node_modules/nanoid/README.md +0 -38
- package/node_modules/nanoid/async/index.browser.js +0 -33
- package/node_modules/nanoid/async/index.d.ts +0 -56
- package/node_modules/nanoid/async/index.js +0 -34
- package/node_modules/nanoid/async/index.native.js +0 -25
- package/node_modules/nanoid/bin/nanoid.js +0 -46
- package/node_modules/nanoid/index.browser.js +0 -33
- package/node_modules/nanoid/index.d.ts +0 -91
- package/node_modules/nanoid/index.js +0 -45
- package/node_modules/nanoid/nanoid.js +0 -1
- package/node_modules/nanoid/non-secure/index.d.ts +0 -33
- package/node_modules/nanoid/non-secure/index.js +0 -20
- package/node_modules/nanoid/package.json +0 -46
- package/node_modules/nanoid/url-alphabet/index.js +0 -2
- package/node_modules/ts-md5/LICENSE +0 -21
- package/node_modules/ts-md5/README.md +0 -101
- package/node_modules/ts-md5/dist/cjs/index.d.ts +0 -3
- package/node_modules/ts-md5/dist/cjs/index.js +0 -10
- package/node_modules/ts-md5/dist/cjs/index.js.map +0 -1
- package/node_modules/ts-md5/dist/cjs/md5.d.ts +0 -70
- package/node_modules/ts-md5/dist/cjs/md5.js +0 -429
- package/node_modules/ts-md5/dist/cjs/md5.js.map +0 -1
- package/node_modules/ts-md5/dist/cjs/md5_file_hasher.d.ts +0 -25
- package/node_modules/ts-md5/dist/cjs/md5_file_hasher.js +0 -96
- package/node_modules/ts-md5/dist/cjs/md5_file_hasher.js.map +0 -1
- package/node_modules/ts-md5/dist/cjs/parallel_hasher.d.ts +0 -22
- package/node_modules/ts-md5/dist/cjs/parallel_hasher.js +0 -69
- package/node_modules/ts-md5/dist/cjs/parallel_hasher.js.map +0 -1
- package/node_modules/ts-md5/dist/esm/index.d.ts +0 -3
- package/node_modules/ts-md5/dist/esm/index.js +0 -4
- package/node_modules/ts-md5/dist/esm/index.js.map +0 -1
- package/node_modules/ts-md5/dist/esm/md5.d.ts +0 -70
- package/node_modules/ts-md5/dist/esm/md5.js +0 -421
- package/node_modules/ts-md5/dist/esm/md5.js.map +0 -1
- package/node_modules/ts-md5/dist/esm/md5_file_hasher.d.ts +0 -25
- package/node_modules/ts-md5/dist/esm/md5_file_hasher.js +0 -89
- package/node_modules/ts-md5/dist/esm/md5_file_hasher.js.map +0 -1
- package/node_modules/ts-md5/dist/esm/parallel_hasher.d.ts +0 -22
- package/node_modules/ts-md5/dist/esm/parallel_hasher.js +0 -64
- package/node_modules/ts-md5/dist/esm/parallel_hasher.js.map +0 -1
- package/node_modules/ts-md5/dist/md5.js +0 -429
- package/node_modules/ts-md5/dist/md5_worker.js +0 -523
- package/node_modules/ts-md5/package.json +0 -82
- package/node_modules/ts-md5/src/index.ts +0 -4
- package/node_modules/ts-md5/src/md5.ts +0 -473
- package/node_modules/ts-md5/src/md5_file_hasher.ts +0 -110
- package/node_modules/ts-md5/src/parallel_hasher.ts +0 -90
- package/node_modules/ts-md5/src/worker.js +0 -20
- package/tfsec.json +0 -4
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
import { StorageBlobConfig } from "@cdktf/provider-azurerm/lib/storage-blob";
|
|
2
|
-
import { StorageContainerConfig } from "@cdktf/provider-azurerm/lib/storage-container";
|
|
3
|
-
import { Construct } from "constructs";
|
|
4
|
-
export declare class Container extends Construct {
|
|
5
|
-
readonly name: string;
|
|
6
|
-
private readonly blobs;
|
|
7
|
-
private readonly storageAccountName;
|
|
8
|
-
private readonly storageContainerName;
|
|
9
|
-
/**
|
|
10
|
-
* Represents an Azure Storage Container within a specific Azure Storage Account.
|
|
11
|
-
*
|
|
12
|
-
* This class is designed for the creation and management of an Azure Storage Container, which serves as a unit of storage
|
|
13
|
-
* that houses data objects, known as blobs. Containers are analogous to directories in a file system, and are used to organize
|
|
14
|
-
* sets of blobs within a storage account. This class allows for granular control over blob storage, providing functionalities
|
|
15
|
-
* such as setting access levels, managing metadata, and implementing security measures like encryption scopes.
|
|
16
|
-
*
|
|
17
|
-
* @param scope - The scope in which to define this construct, typically a reference to the Cloud Development Kit (CDK) stack.
|
|
18
|
-
* @param id - The unique identifier for this instance of the container.
|
|
19
|
-
* @param props - Configuration properties for the Azure Storage Container, based on the StorageContainerConfig interface. These include:
|
|
20
|
-
* - `name`: The name of the storage container, which must be unique within the associated storage account.
|
|
21
|
-
* - `storageAccountName`: The name of the storage account where this container is located.
|
|
22
|
-
* - `containerAccessType`: Defines the level of public access to the container. Options include 'container',
|
|
23
|
-
* 'blob', or 'none', controlling how the blobs within the container can be accessed.
|
|
24
|
-
* - `defaultEncryptionScope`: Specifies the default encryption scope for the container, enhancing data security.
|
|
25
|
-
* - `encryptionScopeOverrideEnabled`: Allows or prevents overriding the encryption scope on a per-blob basis.
|
|
26
|
-
* - `metadata`: Key-value pairs that provide additional information about the container, which can be used for
|
|
27
|
-
* organizational, search, or billing purposes.
|
|
28
|
-
* - `timeouts`: Specifies custom timeout settings for CRUD operations on the container, providing control over
|
|
29
|
-
* operation durations and retries.
|
|
30
|
-
*
|
|
31
|
-
* Example usage:
|
|
32
|
-
* ```typescript
|
|
33
|
-
* const storageContainer = new Container(this, 'MyContainer', {
|
|
34
|
-
* name: 'mycontainer',
|
|
35
|
-
* storageAccountName: 'mystorageaccount',
|
|
36
|
-
* containerAccessType: 'blob',
|
|
37
|
-
* defaultEncryptionScope: 'myEncryptionScope',
|
|
38
|
-
* encryptionScopeOverrideEnabled: true,
|
|
39
|
-
* metadata: {
|
|
40
|
-
* department: 'Finance'
|
|
41
|
-
* }
|
|
42
|
-
* });
|
|
43
|
-
* ```
|
|
44
|
-
* This instantiation sets up a storage container with specified properties including access types and metadata. It is ready
|
|
45
|
-
* to house blobs and provides methods to manage these blobs effectively.
|
|
46
|
-
*/
|
|
47
|
-
constructor(scope: Construct, id: string, props: StorageContainerConfig);
|
|
48
|
-
/**
|
|
49
|
-
* Adds a blob to this Azure Storage Container.
|
|
50
|
-
*
|
|
51
|
-
* This method facilitates the addition of a blob to an Azure Storage Container managed by this class. It handles the creation and
|
|
52
|
-
* configuration of the blob, including setting its type, source content, and metadata. This is useful for uploading various types
|
|
53
|
-
* of unstructured data, such as images, videos, documents, or other binary files, into a cloud-based storage solution.
|
|
54
|
-
*
|
|
55
|
-
* @param blobName - The name of the blob to be added, which will be used as the blob's unique identifier within the container.
|
|
56
|
-
* @param filePath - The file path or URL for the source of the blob's content. This specifies the location of the file to be uploaded.
|
|
57
|
-
* @param props - Optional configuration properties for the blob, which include:
|
|
58
|
-
* - `type`: The type of the blob (e.g., 'Block', 'Append', 'Page'). Default is 'Block'.
|
|
59
|
-
* - `contentType`: The MIME type of the blob's content, such as 'application/octet-stream' for binary data. This helps browsers
|
|
60
|
-
* and other clients handle the file correctly when it's downloaded or accessed.
|
|
61
|
-
* - `metadata`: A dictionary of key-value pairs to store as metadata with the blob. Metadata is typically used to store additional
|
|
62
|
-
* details about the blob, such as tags, descriptions, or other attributes.
|
|
63
|
-
*
|
|
64
|
-
* @returns The newly created Blob object, which represents the blob added to the storage container.
|
|
65
|
-
*
|
|
66
|
-
* Example usage:
|
|
67
|
-
* ```typescript
|
|
68
|
-
* const storageBlob = storageContainer.addBlob('exampleBlob', './path/to/local/file.txt', {
|
|
69
|
-
* type: 'Block',
|
|
70
|
-
* contentType: 'text/plain',
|
|
71
|
-
* metadata: { customKey: 'customValue' }
|
|
72
|
-
* });
|
|
73
|
-
* ```
|
|
74
|
-
* In this example, a new blob named 'exampleBlob' is added to the storage container. The content of the blob is sourced
|
|
75
|
-
* from a local file specified by `filePath`. The blob is configured as a 'Block' type with 'text/plain' content type and
|
|
76
|
-
* custom metadata. The method returns the blob instance for further use or reference.
|
|
77
|
-
*/
|
|
78
|
-
addBlob(blobName: string, filePath: string, props?: StorageBlobConfig): Blob;
|
|
79
|
-
}
|
|
80
|
-
export declare class Blob extends Construct {
|
|
81
|
-
readonly name: string;
|
|
82
|
-
/**
|
|
83
|
-
* Represents a blob within an Azure Storage Container.
|
|
84
|
-
*
|
|
85
|
-
* This class is responsible for the creation and management of a blob in an Azure Storage Container. Blobs are unstructured
|
|
86
|
-
* data objects, which can include files like images, documents, videos, or any other file type. The Blob class provides a way
|
|
87
|
-
* to manage these files in the cloud, allowing for scalable, durable, and accessible data storage. This class supports various
|
|
88
|
-
* blob types such as block blobs for text and binary data, append blobs for log files, and page blobs for large volumes of
|
|
89
|
-
* random access data.
|
|
90
|
-
*
|
|
91
|
-
* @param scope - The scope in which to define this construct, typically representing the Cloud Development Kit (CDK) stack.
|
|
92
|
-
* @param id - The unique identifier for this instance of the blob.
|
|
93
|
-
* @param props - Configuration properties for the Azure Storage Blob. These properties may include:
|
|
94
|
-
* - `name`: The name of the blob, which must be unique within the container.
|
|
95
|
-
* - `storageAccountName`: The name of the storage account in which the blob is stored.
|
|
96
|
-
* - `storageContainerName`: The name of the storage container in which the blob resides.
|
|
97
|
-
* - `type`: The type of the blob (e.g., 'Block', 'Append', 'Page').
|
|
98
|
-
* - `source`: The source of the blob's content, which could be a path to a file or a URL.
|
|
99
|
-
* - `contentType`: The MIME type of the blob's content, such as 'application/octet-stream' for binary data.
|
|
100
|
-
* - `metadata`: A dictionary of strings that represents metadata to associate with the blob.
|
|
101
|
-
* - `accessTier`: The data access tier, affecting storage costs and data retrieval speeds.
|
|
102
|
-
* - `cacheControl`, `contentEncoding`, `contentDisposition`, `contentMd5`: Optional parameters for controlling the caching behavior,
|
|
103
|
-
* encoding, content disposition, and integrity check of the blob.
|
|
104
|
-
*
|
|
105
|
-
* Example usage:
|
|
106
|
-
* ```typescript
|
|
107
|
-
* const myBlob = new Blob(this, 'MyBlob', {
|
|
108
|
-
* name: 'exampleblob',
|
|
109
|
-
* storageAccountName: 'mystorageaccount',
|
|
110
|
-
* storageContainerName: 'mycontainer',
|
|
111
|
-
* type: 'Block',
|
|
112
|
-
* source: './path/to/file.jpg',
|
|
113
|
-
* contentType: 'image/jpeg',
|
|
114
|
-
* metadata: {
|
|
115
|
-
* author: 'John Doe'
|
|
116
|
-
* }
|
|
117
|
-
* });
|
|
118
|
-
* ```
|
|
119
|
-
* This class initializes a blob with the specified configurations and handles the uploading of content from the specified source.
|
|
120
|
-
*/
|
|
121
|
-
constructor(scope: Construct, id: string, props: StorageBlobConfig);
|
|
122
|
-
}
|
|
@@ -1,167 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var _a, _b;
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.Blob = exports.Container = void 0;
|
|
5
|
-
const JSII_RTTI_SYMBOL_1 = Symbol.for("jsii.rtti");
|
|
6
|
-
const storage_blob_1 = require("@cdktf/provider-azurerm/lib/storage-blob");
|
|
7
|
-
const storage_container_1 = require("@cdktf/provider-azurerm/lib/storage-container");
|
|
8
|
-
const constructs_1 = require("constructs");
|
|
9
|
-
class Container extends constructs_1.Construct {
|
|
10
|
-
/**
|
|
11
|
-
* Represents an Azure Storage Container within a specific Azure Storage Account.
|
|
12
|
-
*
|
|
13
|
-
* This class is designed for the creation and management of an Azure Storage Container, which serves as a unit of storage
|
|
14
|
-
* that houses data objects, known as blobs. Containers are analogous to directories in a file system, and are used to organize
|
|
15
|
-
* sets of blobs within a storage account. This class allows for granular control over blob storage, providing functionalities
|
|
16
|
-
* such as setting access levels, managing metadata, and implementing security measures like encryption scopes.
|
|
17
|
-
*
|
|
18
|
-
* @param scope - The scope in which to define this construct, typically a reference to the Cloud Development Kit (CDK) stack.
|
|
19
|
-
* @param id - The unique identifier for this instance of the container.
|
|
20
|
-
* @param props - Configuration properties for the Azure Storage Container, based on the StorageContainerConfig interface. These include:
|
|
21
|
-
* - `name`: The name of the storage container, which must be unique within the associated storage account.
|
|
22
|
-
* - `storageAccountName`: The name of the storage account where this container is located.
|
|
23
|
-
* - `containerAccessType`: Defines the level of public access to the container. Options include 'container',
|
|
24
|
-
* 'blob', or 'none', controlling how the blobs within the container can be accessed.
|
|
25
|
-
* - `defaultEncryptionScope`: Specifies the default encryption scope for the container, enhancing data security.
|
|
26
|
-
* - `encryptionScopeOverrideEnabled`: Allows or prevents overriding the encryption scope on a per-blob basis.
|
|
27
|
-
* - `metadata`: Key-value pairs that provide additional information about the container, which can be used for
|
|
28
|
-
* organizational, search, or billing purposes.
|
|
29
|
-
* - `timeouts`: Specifies custom timeout settings for CRUD operations on the container, providing control over
|
|
30
|
-
* operation durations and retries.
|
|
31
|
-
*
|
|
32
|
-
* Example usage:
|
|
33
|
-
* ```typescript
|
|
34
|
-
* const storageContainer = new Container(this, 'MyContainer', {
|
|
35
|
-
* name: 'mycontainer',
|
|
36
|
-
* storageAccountName: 'mystorageaccount',
|
|
37
|
-
* containerAccessType: 'blob',
|
|
38
|
-
* defaultEncryptionScope: 'myEncryptionScope',
|
|
39
|
-
* encryptionScopeOverrideEnabled: true,
|
|
40
|
-
* metadata: {
|
|
41
|
-
* department: 'Finance'
|
|
42
|
-
* }
|
|
43
|
-
* });
|
|
44
|
-
* ```
|
|
45
|
-
* This instantiation sets up a storage container with specified properties including access types and metadata. It is ready
|
|
46
|
-
* to house blobs and provides methods to manage these blobs effectively.
|
|
47
|
-
*/
|
|
48
|
-
constructor(scope, id, props) {
|
|
49
|
-
super(scope, id);
|
|
50
|
-
this.blobs = new Map();
|
|
51
|
-
// Create a storage container
|
|
52
|
-
const container = new storage_container_1.StorageContainer(this, "container", {
|
|
53
|
-
name: props.name,
|
|
54
|
-
storageAccountName: props.storageAccountName,
|
|
55
|
-
containerAccessType: props.containerAccessType,
|
|
56
|
-
metadata: props.metadata,
|
|
57
|
-
});
|
|
58
|
-
this.name = props.name;
|
|
59
|
-
this.storageAccountName = props.storageAccountName;
|
|
60
|
-
this.storageContainerName = container.name;
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* Adds a blob to this Azure Storage Container.
|
|
64
|
-
*
|
|
65
|
-
* This method facilitates the addition of a blob to an Azure Storage Container managed by this class. It handles the creation and
|
|
66
|
-
* configuration of the blob, including setting its type, source content, and metadata. This is useful for uploading various types
|
|
67
|
-
* of unstructured data, such as images, videos, documents, or other binary files, into a cloud-based storage solution.
|
|
68
|
-
*
|
|
69
|
-
* @param blobName - The name of the blob to be added, which will be used as the blob's unique identifier within the container.
|
|
70
|
-
* @param filePath - The file path or URL for the source of the blob's content. This specifies the location of the file to be uploaded.
|
|
71
|
-
* @param props - Optional configuration properties for the blob, which include:
|
|
72
|
-
* - `type`: The type of the blob (e.g., 'Block', 'Append', 'Page'). Default is 'Block'.
|
|
73
|
-
* - `contentType`: The MIME type of the blob's content, such as 'application/octet-stream' for binary data. This helps browsers
|
|
74
|
-
* and other clients handle the file correctly when it's downloaded or accessed.
|
|
75
|
-
* - `metadata`: A dictionary of key-value pairs to store as metadata with the blob. Metadata is typically used to store additional
|
|
76
|
-
* details about the blob, such as tags, descriptions, or other attributes.
|
|
77
|
-
*
|
|
78
|
-
* @returns The newly created Blob object, which represents the blob added to the storage container.
|
|
79
|
-
*
|
|
80
|
-
* Example usage:
|
|
81
|
-
* ```typescript
|
|
82
|
-
* const storageBlob = storageContainer.addBlob('exampleBlob', './path/to/local/file.txt', {
|
|
83
|
-
* type: 'Block',
|
|
84
|
-
* contentType: 'text/plain',
|
|
85
|
-
* metadata: { customKey: 'customValue' }
|
|
86
|
-
* });
|
|
87
|
-
* ```
|
|
88
|
-
* In this example, a new blob named 'exampleBlob' is added to the storage container. The content of the blob is sourced
|
|
89
|
-
* from a local file specified by `filePath`. The blob is configured as a 'Block' type with 'text/plain' content type and
|
|
90
|
-
* custom metadata. The method returns the blob instance for further use or reference.
|
|
91
|
-
*/
|
|
92
|
-
addBlob(blobName, filePath, props) {
|
|
93
|
-
const newStorageBlob = new Blob(this, blobName, {
|
|
94
|
-
name: blobName,
|
|
95
|
-
storageAccountName: this.storageAccountName,
|
|
96
|
-
storageContainerName: this.storageContainerName,
|
|
97
|
-
type: props?.type || "Block",
|
|
98
|
-
source: filePath,
|
|
99
|
-
contentType: props?.contentType || "application/octet-stream",
|
|
100
|
-
metadata: props?.metadata || {},
|
|
101
|
-
});
|
|
102
|
-
this.blobs.set(blobName, newStorageBlob);
|
|
103
|
-
return newStorageBlob;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
exports.Container = Container;
|
|
107
|
-
_a = JSII_RTTI_SYMBOL_1;
|
|
108
|
-
Container[_a] = { fqn: "@microsoft/terraform-cdk-constructs.azure_storageaccount.Container", version: "0.0.3-pre.7" };
|
|
109
|
-
class Blob extends constructs_1.Construct {
|
|
110
|
-
/**
|
|
111
|
-
* Represents a blob within an Azure Storage Container.
|
|
112
|
-
*
|
|
113
|
-
* This class is responsible for the creation and management of a blob in an Azure Storage Container. Blobs are unstructured
|
|
114
|
-
* data objects, which can include files like images, documents, videos, or any other file type. The Blob class provides a way
|
|
115
|
-
* to manage these files in the cloud, allowing for scalable, durable, and accessible data storage. This class supports various
|
|
116
|
-
* blob types such as block blobs for text and binary data, append blobs for log files, and page blobs for large volumes of
|
|
117
|
-
* random access data.
|
|
118
|
-
*
|
|
119
|
-
* @param scope - The scope in which to define this construct, typically representing the Cloud Development Kit (CDK) stack.
|
|
120
|
-
* @param id - The unique identifier for this instance of the blob.
|
|
121
|
-
* @param props - Configuration properties for the Azure Storage Blob. These properties may include:
|
|
122
|
-
* - `name`: The name of the blob, which must be unique within the container.
|
|
123
|
-
* - `storageAccountName`: The name of the storage account in which the blob is stored.
|
|
124
|
-
* - `storageContainerName`: The name of the storage container in which the blob resides.
|
|
125
|
-
* - `type`: The type of the blob (e.g., 'Block', 'Append', 'Page').
|
|
126
|
-
* - `source`: The source of the blob's content, which could be a path to a file or a URL.
|
|
127
|
-
* - `contentType`: The MIME type of the blob's content, such as 'application/octet-stream' for binary data.
|
|
128
|
-
* - `metadata`: A dictionary of strings that represents metadata to associate with the blob.
|
|
129
|
-
* - `accessTier`: The data access tier, affecting storage costs and data retrieval speeds.
|
|
130
|
-
* - `cacheControl`, `contentEncoding`, `contentDisposition`, `contentMd5`: Optional parameters for controlling the caching behavior,
|
|
131
|
-
* encoding, content disposition, and integrity check of the blob.
|
|
132
|
-
*
|
|
133
|
-
* Example usage:
|
|
134
|
-
* ```typescript
|
|
135
|
-
* const myBlob = new Blob(this, 'MyBlob', {
|
|
136
|
-
* name: 'exampleblob',
|
|
137
|
-
* storageAccountName: 'mystorageaccount',
|
|
138
|
-
* storageContainerName: 'mycontainer',
|
|
139
|
-
* type: 'Block',
|
|
140
|
-
* source: './path/to/file.jpg',
|
|
141
|
-
* contentType: 'image/jpeg',
|
|
142
|
-
* metadata: {
|
|
143
|
-
* author: 'John Doe'
|
|
144
|
-
* }
|
|
145
|
-
* });
|
|
146
|
-
* ```
|
|
147
|
-
* This class initializes a blob with the specified configurations and handles the uploading of content from the specified source.
|
|
148
|
-
*/
|
|
149
|
-
constructor(scope, id, props) {
|
|
150
|
-
super(scope, id);
|
|
151
|
-
// Create a storage container
|
|
152
|
-
new storage_blob_1.StorageBlob(this, "blob", {
|
|
153
|
-
name: props.name,
|
|
154
|
-
storageAccountName: props.storageAccountName,
|
|
155
|
-
storageContainerName: props.storageContainerName,
|
|
156
|
-
type: props.type,
|
|
157
|
-
source: props.source,
|
|
158
|
-
contentType: props.contentType,
|
|
159
|
-
metadata: props.metadata,
|
|
160
|
-
});
|
|
161
|
-
this.name = props.name;
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
exports.Blob = Blob;
|
|
165
|
-
_b = JSII_RTTI_SYMBOL_1;
|
|
166
|
-
Blob[_b] = { fqn: "@microsoft/terraform-cdk-constructs.azure_storageaccount.Blob", version: "0.0.3-pre.7" };
|
|
167
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGFpbmVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2F6dXJlLXN0b3JhZ2VhY2NvdW50L2xpYi9jb250YWluZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSwyRUFHa0Q7QUFDbEQscUZBR3VEO0FBQ3ZELDJDQUF1QztBQUV2QyxNQUFhLFNBQVUsU0FBUSxzQkFBUztJQU10Qzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztPQXFDRztJQUNILFlBQVksS0FBZ0IsRUFBRSxFQUFVLEVBQUUsS0FBNkI7UUFDckUsS0FBSyxDQUFDLEtBQUssRUFBRSxFQUFFLENBQUMsQ0FBQztRQUVqQixJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksR0FBRyxFQUFnQixDQUFDO1FBRXJDLDZCQUE2QjtRQUM3QixNQUFNLFNBQVMsR0FBRyxJQUFJLG9DQUFnQixDQUFDLElBQUksRUFBRSxXQUFXLEVBQUU7WUFDeEQsSUFBSSxFQUFFLEtBQUssQ0FBQyxJQUFJO1lBQ2hCLGtCQUFrQixFQUFFLEtBQUssQ0FBQyxrQkFBa0I7WUFDNUMsbUJBQW1CLEVBQUUsS0FBSyxDQUFDLG1CQUFtQjtZQUM5QyxRQUFRLEVBQUUsS0FBSyxDQUFDLFFBQVE7U0FDekIsQ0FBQyxDQUFDO1FBRUgsSUFBSSxDQUFDLElBQUksR0FBRyxLQUFLLENBQUMsSUFBSSxDQUFDO1FBQ3ZCLElBQUksQ0FBQyxrQkFBa0IsR0FBRyxLQUFLLENBQUMsa0JBQWtCLENBQUM7UUFDbkQsSUFBSSxDQUFDLG9CQUFvQixHQUFHLFNBQVMsQ0FBQyxJQUFJLENBQUM7SUFDN0MsQ0FBQztJQUVEOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztPQTZCRztJQUNILE9BQU8sQ0FBQyxRQUFnQixFQUFFLFFBQWdCLEVBQUUsS0FBeUI7UUFDbkUsTUFBTSxjQUFjLEdBQUcsSUFBSSxJQUFJLENBQUMsSUFBSSxFQUFFLFFBQVEsRUFBRTtZQUM5QyxJQUFJLEVBQUUsUUFBUTtZQUNkLGtCQUFrQixFQUFFLElBQUksQ0FBQyxrQkFBa0I7WUFDM0Msb0JBQW9CLEVBQUUsSUFBSSxDQUFDLG9CQUFvQjtZQUMvQyxJQUFJLEVBQUUsS0FBSyxFQUFFLElBQUksSUFBSSxPQUFPO1lBQzVCLE1BQU0sRUFBRSxRQUFRO1lBQ2hCLFdBQVcsRUFBRSxLQUFLLEVBQUUsV0FBVyxJQUFJLDBCQUEwQjtZQUM3RCxRQUFRLEVBQUUsS0FBSyxFQUFFLFFBQVEsSUFBSSxFQUFFO1NBQ2hDLENBQUMsQ0FBQztRQUNILElBQUksQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDLFFBQVEsRUFBRSxjQUFjLENBQUMsQ0FBQztRQUN6QyxPQUFPLGNBQWMsQ0FBQztJQUN4QixDQUFDOztBQXhHSCw4QkF5R0M7OztBQUVELE1BQWEsSUFBSyxTQUFRLHNCQUFTO0lBR2pDOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztPQXNDRztJQUNILFlBQVksS0FBZ0IsRUFBRSxFQUFVLEVBQUUsS0FBd0I7UUFDaEUsS0FBSyxDQUFDLEtBQUssRUFBRSxFQUFFLENBQUMsQ0FBQztRQUVqQiw2QkFBNkI7UUFDN0IsSUFBSSwwQkFBVyxDQUFDLElBQUksRUFBRSxNQUFNLEVBQUU7WUFDNUIsSUFBSSxFQUFFLEtBQUssQ0FBQyxJQUFJO1lBQ2hCLGtCQUFrQixFQUFFLEtBQUssQ0FBQyxrQkFBa0I7WUFDNUMsb0JBQW9CLEVBQUUsS0FBSyxDQUFDLG9CQUFvQjtZQUNoRCxJQUFJLEVBQUUsS0FBSyxDQUFDLElBQUk7WUFDaEIsTUFBTSxFQUFFLEtBQUssQ0FBQyxNQUFNO1lBQ3BCLFdBQVcsRUFBRSxLQUFLLENBQUMsV0FBVztZQUM5QixRQUFRLEVBQUUsS0FBSyxDQUFDLFFBQVE7U0FDekIsQ0FBQyxDQUFDO1FBRUgsSUFBSSxDQUFDLElBQUksR0FBRyxLQUFLLENBQUMsSUFBSSxDQUFDO0lBQ3pCLENBQUM7O0FBekRILG9CQTBEQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIFN0b3JhZ2VCbG9iLFxuICBTdG9yYWdlQmxvYkNvbmZpZyxcbn0gZnJvbSBcIkBjZGt0Zi9wcm92aWRlci1henVyZXJtL2xpYi9zdG9yYWdlLWJsb2JcIjtcbmltcG9ydCB7XG4gIFN0b3JhZ2VDb250YWluZXIsXG4gIFN0b3JhZ2VDb250YWluZXJDb25maWcsXG59IGZyb20gXCJAY2RrdGYvcHJvdmlkZXItYXp1cmVybS9saWIvc3RvcmFnZS1jb250YWluZXJcIjtcbmltcG9ydCB7IENvbnN0cnVjdCB9IGZyb20gXCJjb25zdHJ1Y3RzXCI7XG5cbmV4cG9ydCBjbGFzcyBDb250YWluZXIgZXh0ZW5kcyBDb25zdHJ1Y3Qge1xuICBwdWJsaWMgcmVhZG9ubHkgbmFtZTogc3RyaW5nO1xuICBwcml2YXRlIHJlYWRvbmx5IGJsb2JzOiBNYXA8c3RyaW5nLCBCbG9iPjtcbiAgcHJpdmF0ZSByZWFkb25seSBzdG9yYWdlQWNjb3VudE5hbWU6IHN0cmluZztcbiAgcHJpdmF0ZSByZWFkb25seSBzdG9yYWdlQ29udGFpbmVyTmFtZTogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBSZXByZXNlbnRzIGFuIEF6dXJlIFN0b3JhZ2UgQ29udGFpbmVyIHdpdGhpbiBhIHNwZWNpZmljIEF6dXJlIFN0b3JhZ2UgQWNjb3VudC5cbiAgICpcbiAgICogVGhpcyBjbGFzcyBpcyBkZXNpZ25lZCBmb3IgdGhlIGNyZWF0aW9uIGFuZCBtYW5hZ2VtZW50IG9mIGFuIEF6dXJlIFN0b3JhZ2UgQ29udGFpbmVyLCB3aGljaCBzZXJ2ZXMgYXMgYSB1bml0IG9mIHN0b3JhZ2VcbiAgICogdGhhdCBob3VzZXMgZGF0YSBvYmplY3RzLCBrbm93biBhcyBibG9icy4gQ29udGFpbmVycyBhcmUgYW5hbG9nb3VzIHRvIGRpcmVjdG9yaWVzIGluIGEgZmlsZSBzeXN0ZW0sIGFuZCBhcmUgdXNlZCB0byBvcmdhbml6ZVxuICAgKiBzZXRzIG9mIGJsb2JzIHdpdGhpbiBhIHN0b3JhZ2UgYWNjb3VudC4gVGhpcyBjbGFzcyBhbGxvd3MgZm9yIGdyYW51bGFyIGNvbnRyb2wgb3ZlciBibG9iIHN0b3JhZ2UsIHByb3ZpZGluZyBmdW5jdGlvbmFsaXRpZXNcbiAgICogc3VjaCBhcyBzZXR0aW5nIGFjY2VzcyBsZXZlbHMsIG1hbmFnaW5nIG1ldGFkYXRhLCBhbmQgaW1wbGVtZW50aW5nIHNlY3VyaXR5IG1lYXN1cmVzIGxpa2UgZW5jcnlwdGlvbiBzY29wZXMuXG4gICAqXG4gICAqIEBwYXJhbSBzY29wZSAtIFRoZSBzY29wZSBpbiB3aGljaCB0byBkZWZpbmUgdGhpcyBjb25zdHJ1Y3QsIHR5cGljYWxseSBhIHJlZmVyZW5jZSB0byB0aGUgQ2xvdWQgRGV2ZWxvcG1lbnQgS2l0IChDREspIHN0YWNrLlxuICAgKiBAcGFyYW0gaWQgLSBUaGUgdW5pcXVlIGlkZW50aWZpZXIgZm9yIHRoaXMgaW5zdGFuY2Ugb2YgdGhlIGNvbnRhaW5lci5cbiAgICogQHBhcmFtIHByb3BzIC0gQ29uZmlndXJhdGlvbiBwcm9wZXJ0aWVzIGZvciB0aGUgQXp1cmUgU3RvcmFnZSBDb250YWluZXIsIGJhc2VkIG9uIHRoZSBTdG9yYWdlQ29udGFpbmVyQ29uZmlnIGludGVyZmFjZS4gVGhlc2UgaW5jbHVkZTpcbiAgICogICAgICAgICAgICAgICAgLSBgbmFtZWA6IFRoZSBuYW1lIG9mIHRoZSBzdG9yYWdlIGNvbnRhaW5lciwgd2hpY2ggbXVzdCBiZSB1bmlxdWUgd2l0aGluIHRoZSBhc3NvY2lhdGVkIHN0b3JhZ2UgYWNjb3VudC5cbiAgICogICAgICAgICAgICAgICAgLSBgc3RvcmFnZUFjY291bnROYW1lYDogVGhlIG5hbWUgb2YgdGhlIHN0b3JhZ2UgYWNjb3VudCB3aGVyZSB0aGlzIGNvbnRhaW5lciBpcyBsb2NhdGVkLlxuICAgKiAgICAgICAgICAgICAgICAtIGBjb250YWluZXJBY2Nlc3NUeXBlYDogRGVmaW5lcyB0aGUgbGV2ZWwgb2YgcHVibGljIGFjY2VzcyB0byB0aGUgY29udGFpbmVyLiBPcHRpb25zIGluY2x1ZGUgJ2NvbnRhaW5lcicsXG4gICAqICAgICAgICAgICAgICAgICAgJ2Jsb2InLCBvciAnbm9uZScsIGNvbnRyb2xsaW5nIGhvdyB0aGUgYmxvYnMgd2l0aGluIHRoZSBjb250YWluZXIgY2FuIGJlIGFjY2Vzc2VkLlxuICAgKiAgICAgICAgICAgICAgICAtIGBkZWZhdWx0RW5jcnlwdGlvblNjb3BlYDogU3BlY2lmaWVzIHRoZSBkZWZhdWx0IGVuY3J5cHRpb24gc2NvcGUgZm9yIHRoZSBjb250YWluZXIsIGVuaGFuY2luZyBkYXRhIHNlY3VyaXR5LlxuICAgKiAgICAgICAgICAgICAgICAtIGBlbmNyeXB0aW9uU2NvcGVPdmVycmlkZUVuYWJsZWRgOiBBbGxvd3Mgb3IgcHJldmVudHMgb3ZlcnJpZGluZyB0aGUgZW5jcnlwdGlvbiBzY29wZSBvbiBhIHBlci1ibG9iIGJhc2lzLlxuICAgKiAgICAgICAgICAgICAgICAtIGBtZXRhZGF0YWA6IEtleS12YWx1ZSBwYWlycyB0aGF0IHByb3ZpZGUgYWRkaXRpb25hbCBpbmZvcm1hdGlvbiBhYm91dCB0aGUgY29udGFpbmVyLCB3aGljaCBjYW4gYmUgdXNlZCBmb3JcbiAgICogICAgICAgICAgICAgICAgICBvcmdhbml6YXRpb25hbCwgc2VhcmNoLCBvciBiaWxsaW5nIHB1cnBvc2VzLlxuICAgKiAgICAgICAgICAgICAgICAtIGB0aW1lb3V0c2A6IFNwZWNpZmllcyBjdXN0b20gdGltZW91dCBzZXR0aW5ncyBmb3IgQ1JVRCBvcGVyYXRpb25zIG9uIHRoZSBjb250YWluZXIsIHByb3ZpZGluZyBjb250cm9sIG92ZXJcbiAgICogICAgICAgICAgICAgICAgICBvcGVyYXRpb24gZHVyYXRpb25zIGFuZCByZXRyaWVzLlxuICAgKlxuICAgKiBFeGFtcGxlIHVzYWdlOlxuICAgKiBgYGB0eXBlc2NyaXB0XG4gICAqIGNvbnN0IHN0b3JhZ2VDb250YWluZXIgPSBuZXcgQ29udGFpbmVyKHRoaXMsICdNeUNvbnRhaW5lcicsIHtcbiAgICogICBuYW1lOiAnbXljb250YWluZXInLFxuICAgKiAgIHN0b3JhZ2VBY2NvdW50TmFtZTogJ215c3RvcmFnZWFjY291bnQnLFxuICAgKiAgIGNvbnRhaW5lckFjY2Vzc1R5cGU6ICdibG9iJyxcbiAgICogICBkZWZhdWx0RW5jcnlwdGlvblNjb3BlOiAnbXlFbmNyeXB0aW9uU2NvcGUnLFxuICAgKiAgIGVuY3J5cHRpb25TY29wZU92ZXJyaWRlRW5hYmxlZDogdHJ1ZSxcbiAgICogICBtZXRhZGF0YToge1xuICAgKiAgICAgZGVwYXJ0bWVudDogJ0ZpbmFuY2UnXG4gICAqICAgfVxuICAgKiB9KTtcbiAgICogYGBgXG4gICAqIFRoaXMgaW5zdGFudGlhdGlvbiBzZXRzIHVwIGEgc3RvcmFnZSBjb250YWluZXIgd2l0aCBzcGVjaWZpZWQgcHJvcGVydGllcyBpbmNsdWRpbmcgYWNjZXNzIHR5cGVzIGFuZCBtZXRhZGF0YS4gSXQgaXMgcmVhZHlcbiAgICogdG8gaG91c2UgYmxvYnMgYW5kIHByb3ZpZGVzIG1ldGhvZHMgdG8gbWFuYWdlIHRoZXNlIGJsb2JzIGVmZmVjdGl2ZWx5LlxuICAgKi9cbiAgY29uc3RydWN0b3Ioc2NvcGU6IENvbnN0cnVjdCwgaWQ6IHN0cmluZywgcHJvcHM6IFN0b3JhZ2VDb250YWluZXJDb25maWcpIHtcbiAgICBzdXBlcihzY29wZSwgaWQpO1xuXG4gICAgdGhpcy5ibG9icyA9IG5ldyBNYXA8c3RyaW5nLCBCbG9iPigpO1xuXG4gICAgLy8gQ3JlYXRlIGEgc3RvcmFnZSBjb250YWluZXJcbiAgICBjb25zdCBjb250YWluZXIgPSBuZXcgU3RvcmFnZUNvbnRhaW5lcih0aGlzLCBcImNvbnRhaW5lclwiLCB7XG4gICAgICBuYW1lOiBwcm9wcy5uYW1lLFxuICAgICAgc3RvcmFnZUFjY291bnROYW1lOiBwcm9wcy5zdG9yYWdlQWNjb3VudE5hbWUsXG4gICAgICBjb250YWluZXJBY2Nlc3NUeXBlOiBwcm9wcy5jb250YWluZXJBY2Nlc3NUeXBlLFxuICAgICAgbWV0YWRhdGE6IHByb3BzLm1ldGFkYXRhLFxuICAgIH0pO1xuXG4gICAgdGhpcy5uYW1lID0gcHJvcHMubmFtZTtcbiAgICB0aGlzLnN0b3JhZ2VBY2NvdW50TmFtZSA9IHByb3BzLnN0b3JhZ2VBY2NvdW50TmFtZTtcbiAgICB0aGlzLnN0b3JhZ2VDb250YWluZXJOYW1lID0gY29udGFpbmVyLm5hbWU7XG4gIH1cblxuICAvKipcbiAgICogQWRkcyBhIGJsb2IgdG8gdGhpcyBBenVyZSBTdG9yYWdlIENvbnRhaW5lci5cbiAgICpcbiAgICogVGhpcyBtZXRob2QgZmFjaWxpdGF0ZXMgdGhlIGFkZGl0aW9uIG9mIGEgYmxvYiB0byBhbiBBenVyZSBTdG9yYWdlIENvbnRhaW5lciBtYW5hZ2VkIGJ5IHRoaXMgY2xhc3MuIEl0IGhhbmRsZXMgdGhlIGNyZWF0aW9uIGFuZFxuICAgKiBjb25maWd1cmF0aW9uIG9mIHRoZSBibG9iLCBpbmNsdWRpbmcgc2V0dGluZyBpdHMgdHlwZSwgc291cmNlIGNvbnRlbnQsIGFuZCBtZXRhZGF0YS4gVGhpcyBpcyB1c2VmdWwgZm9yIHVwbG9hZGluZyB2YXJpb3VzIHR5cGVzXG4gICAqIG9mIHVuc3RydWN0dXJlZCBkYXRhLCBzdWNoIGFzIGltYWdlcywgdmlkZW9zLCBkb2N1bWVudHMsIG9yIG90aGVyIGJpbmFyeSBmaWxlcywgaW50byBhIGNsb3VkLWJhc2VkIHN0b3JhZ2Ugc29sdXRpb24uXG4gICAqXG4gICAqIEBwYXJhbSBibG9iTmFtZSAtIFRoZSBuYW1lIG9mIHRoZSBibG9iIHRvIGJlIGFkZGVkLCB3aGljaCB3aWxsIGJlIHVzZWQgYXMgdGhlIGJsb2IncyB1bmlxdWUgaWRlbnRpZmllciB3aXRoaW4gdGhlIGNvbnRhaW5lci5cbiAgICogQHBhcmFtIGZpbGVQYXRoIC0gVGhlIGZpbGUgcGF0aCBvciBVUkwgZm9yIHRoZSBzb3VyY2Ugb2YgdGhlIGJsb2IncyBjb250ZW50LiBUaGlzIHNwZWNpZmllcyB0aGUgbG9jYXRpb24gb2YgdGhlIGZpbGUgdG8gYmUgdXBsb2FkZWQuXG4gICAqIEBwYXJhbSBwcm9wcyAtIE9wdGlvbmFsIGNvbmZpZ3VyYXRpb24gcHJvcGVydGllcyBmb3IgdGhlIGJsb2IsIHdoaWNoIGluY2x1ZGU6XG4gICAqICAgICAgICAgICAgICAgIC0gYHR5cGVgOiBUaGUgdHlwZSBvZiB0aGUgYmxvYiAoZS5nLiwgJ0Jsb2NrJywgJ0FwcGVuZCcsICdQYWdlJykuIERlZmF1bHQgaXMgJ0Jsb2NrJy5cbiAgICogICAgICAgICAgICAgICAgLSBgY29udGVudFR5cGVgOiBUaGUgTUlNRSB0eXBlIG9mIHRoZSBibG9iJ3MgY29udGVudCwgc3VjaCBhcyAnYXBwbGljYXRpb24vb2N0ZXQtc3RyZWFtJyBmb3IgYmluYXJ5IGRhdGEuIFRoaXMgaGVscHMgYnJvd3NlcnNcbiAgICogICAgICAgICAgICAgICAgICBhbmQgb3RoZXIgY2xpZW50cyBoYW5kbGUgdGhlIGZpbGUgY29ycmVjdGx5IHdoZW4gaXQncyBkb3dubG9hZGVkIG9yIGFjY2Vzc2VkLlxuICAgKiAgICAgICAgICAgICAgICAtIGBtZXRhZGF0YWA6IEEgZGljdGlvbmFyeSBvZiBrZXktdmFsdWUgcGFpcnMgdG8gc3RvcmUgYXMgbWV0YWRhdGEgd2l0aCB0aGUgYmxvYi4gTWV0YWRhdGEgaXMgdHlwaWNhbGx5IHVzZWQgdG8gc3RvcmUgYWRkaXRpb25hbFxuICAgKiAgICAgICAgICAgICAgICAgIGRldGFpbHMgYWJvdXQgdGhlIGJsb2IsIHN1Y2ggYXMgdGFncywgZGVzY3JpcHRpb25zLCBvciBvdGhlciBhdHRyaWJ1dGVzLlxuICAgKlxuICAgKiBAcmV0dXJucyBUaGUgbmV3bHkgY3JlYXRlZCBCbG9iIG9iamVjdCwgd2hpY2ggcmVwcmVzZW50cyB0aGUgYmxvYiBhZGRlZCB0byB0aGUgc3RvcmFnZSBjb250YWluZXIuXG4gICAqXG4gICAqIEV4YW1wbGUgdXNhZ2U6XG4gICAqIGBgYHR5cGVzY3JpcHRcbiAgICogY29uc3Qgc3RvcmFnZUJsb2IgPSBzdG9yYWdlQ29udGFpbmVyLmFkZEJsb2IoJ2V4YW1wbGVCbG9iJywgJy4vcGF0aC90by9sb2NhbC9maWxlLnR4dCcsIHtcbiAgICogICB0eXBlOiAnQmxvY2snLFxuICAgKiAgIGNvbnRlbnRUeXBlOiAndGV4dC9wbGFpbicsXG4gICAqICAgbWV0YWRhdGE6IHsgY3VzdG9tS2V5OiAnY3VzdG9tVmFsdWUnIH1cbiAgICogfSk7XG4gICAqIGBgYFxuICAgKiBJbiB0aGlzIGV4YW1wbGUsIGEgbmV3IGJsb2IgbmFtZWQgJ2V4YW1wbGVCbG9iJyBpcyBhZGRlZCB0byB0aGUgc3RvcmFnZSBjb250YWluZXIuIFRoZSBjb250ZW50IG9mIHRoZSBibG9iIGlzIHNvdXJjZWRcbiAgICogZnJvbSBhIGxvY2FsIGZpbGUgc3BlY2lmaWVkIGJ5IGBmaWxlUGF0aGAuIFRoZSBibG9iIGlzIGNvbmZpZ3VyZWQgYXMgYSAnQmxvY2snIHR5cGUgd2l0aCAndGV4dC9wbGFpbicgY29udGVudCB0eXBlIGFuZFxuICAgKiBjdXN0b20gbWV0YWRhdGEuIFRoZSBtZXRob2QgcmV0dXJucyB0aGUgYmxvYiBpbnN0YW5jZSBmb3IgZnVydGhlciB1c2Ugb3IgcmVmZXJlbmNlLlxuICAgKi9cbiAgYWRkQmxvYihibG9iTmFtZTogc3RyaW5nLCBmaWxlUGF0aDogc3RyaW5nLCBwcm9wcz86IFN0b3JhZ2VCbG9iQ29uZmlnKTogQmxvYiB7XG4gICAgY29uc3QgbmV3U3RvcmFnZUJsb2IgPSBuZXcgQmxvYih0aGlzLCBibG9iTmFtZSwge1xuICAgICAgbmFtZTogYmxvYk5hbWUsXG4gICAgICBzdG9yYWdlQWNjb3VudE5hbWU6IHRoaXMuc3RvcmFnZUFjY291bnROYW1lLFxuICAgICAgc3RvcmFnZUNvbnRhaW5lck5hbWU6IHRoaXMuc3RvcmFnZUNvbnRhaW5lck5hbWUsXG4gICAgICB0eXBlOiBwcm9wcz8udHlwZSB8fCBcIkJsb2NrXCIsXG4gICAgICBzb3VyY2U6IGZpbGVQYXRoLFxuICAgICAgY29udGVudFR5cGU6IHByb3BzPy5jb250ZW50VHlwZSB8fCBcImFwcGxpY2F0aW9uL29jdGV0LXN0cmVhbVwiLFxuICAgICAgbWV0YWRhdGE6IHByb3BzPy5tZXRhZGF0YSB8fCB7fSxcbiAgICB9KTtcbiAgICB0aGlzLmJsb2JzLnNldChibG9iTmFtZSwgbmV3U3RvcmFnZUJsb2IpO1xuICAgIHJldHVybiBuZXdTdG9yYWdlQmxvYjtcbiAgfVxufVxuXG5leHBvcnQgY2xhc3MgQmxvYiBleHRlbmRzIENvbnN0cnVjdCB7XG4gIHJlYWRvbmx5IG5hbWU6IHN0cmluZztcblxuICAvKipcbiAgICogUmVwcmVzZW50cyBhIGJsb2Igd2l0aGluIGFuIEF6dXJlIFN0b3JhZ2UgQ29udGFpbmVyLlxuICAgKlxuICAgKiBUaGlzIGNsYXNzIGlzIHJlc3BvbnNpYmxlIGZvciB0aGUgY3JlYXRpb24gYW5kIG1hbmFnZW1lbnQgb2YgYSBibG9iIGluIGFuIEF6dXJlIFN0b3JhZ2UgQ29udGFpbmVyLiBCbG9icyBhcmUgdW5zdHJ1Y3R1cmVkXG4gICAqIGRhdGEgb2JqZWN0cywgd2hpY2ggY2FuIGluY2x1ZGUgZmlsZXMgbGlrZSBpbWFnZXMsIGRvY3VtZW50cywgdmlkZW9zLCBvciBhbnkgb3RoZXIgZmlsZSB0eXBlLiBUaGUgQmxvYiBjbGFzcyBwcm92aWRlcyBhIHdheVxuICAgKiB0byBtYW5hZ2UgdGhlc2UgZmlsZXMgaW4gdGhlIGNsb3VkLCBhbGxvd2luZyBmb3Igc2NhbGFibGUsIGR1cmFibGUsIGFuZCBhY2Nlc3NpYmxlIGRhdGEgc3RvcmFnZS4gVGhpcyBjbGFzcyBzdXBwb3J0cyB2YXJpb3VzXG4gICAqIGJsb2IgdHlwZXMgc3VjaCBhcyBibG9jayBibG9icyBmb3IgdGV4dCBhbmQgYmluYXJ5IGRhdGEsIGFwcGVuZCBibG9icyBmb3IgbG9nIGZpbGVzLCBhbmQgcGFnZSBibG9icyBmb3IgbGFyZ2Ugdm9sdW1lcyBvZlxuICAgKiByYW5kb20gYWNjZXNzIGRhdGEuXG4gICAqXG4gICAqIEBwYXJhbSBzY29wZSAtIFRoZSBzY29wZSBpbiB3aGljaCB0byBkZWZpbmUgdGhpcyBjb25zdHJ1Y3QsIHR5cGljYWxseSByZXByZXNlbnRpbmcgdGhlIENsb3VkIERldmVsb3BtZW50IEtpdCAoQ0RLKSBzdGFjay5cbiAgICogQHBhcmFtIGlkIC0gVGhlIHVuaXF1ZSBpZGVudGlmaWVyIGZvciB0aGlzIGluc3RhbmNlIG9mIHRoZSBibG9iLlxuICAgKiBAcGFyYW0gcHJvcHMgLSBDb25maWd1cmF0aW9uIHByb3BlcnRpZXMgZm9yIHRoZSBBenVyZSBTdG9yYWdlIEJsb2IuIFRoZXNlIHByb3BlcnRpZXMgbWF5IGluY2x1ZGU6XG4gICAqICAgICAgICAgICAgICAgIC0gYG5hbWVgOiBUaGUgbmFtZSBvZiB0aGUgYmxvYiwgd2hpY2ggbXVzdCBiZSB1bmlxdWUgd2l0aGluIHRoZSBjb250YWluZXIuXG4gICAqICAgICAgICAgICAgICAgIC0gYHN0b3JhZ2VBY2NvdW50TmFtZWA6IFRoZSBuYW1lIG9mIHRoZSBzdG9yYWdlIGFjY291bnQgaW4gd2hpY2ggdGhlIGJsb2IgaXMgc3RvcmVkLlxuICAgKiAgICAgICAgICAgICAgICAtIGBzdG9yYWdlQ29udGFpbmVyTmFtZWA6IFRoZSBuYW1lIG9mIHRoZSBzdG9yYWdlIGNvbnRhaW5lciBpbiB3aGljaCB0aGUgYmxvYiByZXNpZGVzLlxuICAgKiAgICAgICAgICAgICAgICAtIGB0eXBlYDogVGhlIHR5cGUgb2YgdGhlIGJsb2IgKGUuZy4sICdCbG9jaycsICdBcHBlbmQnLCAnUGFnZScpLlxuICAgKiAgICAgICAgICAgICAgICAtIGBzb3VyY2VgOiBUaGUgc291cmNlIG9mIHRoZSBibG9iJ3MgY29udGVudCwgd2hpY2ggY291bGQgYmUgYSBwYXRoIHRvIGEgZmlsZSBvciBhIFVSTC5cbiAgICogICAgICAgICAgICAgICAgLSBgY29udGVudFR5cGVgOiBUaGUgTUlNRSB0eXBlIG9mIHRoZSBibG9iJ3MgY29udGVudCwgc3VjaCBhcyAnYXBwbGljYXRpb24vb2N0ZXQtc3RyZWFtJyBmb3IgYmluYXJ5IGRhdGEuXG4gICAqICAgICAgICAgICAgICAgIC0gYG1ldGFkYXRhYDogQSBkaWN0aW9uYXJ5IG9mIHN0cmluZ3MgdGhhdCByZXByZXNlbnRzIG1ldGFkYXRhIHRvIGFzc29jaWF0ZSB3aXRoIHRoZSBibG9iLlxuICAgKiAgICAgICAgICAgICAgICAtIGBhY2Nlc3NUaWVyYDogVGhlIGRhdGEgYWNjZXNzIHRpZXIsIGFmZmVjdGluZyBzdG9yYWdlIGNvc3RzIGFuZCBkYXRhIHJldHJpZXZhbCBzcGVlZHMuXG4gICAqICAgICAgICAgICAgICAgIC0gYGNhY2hlQ29udHJvbGAsIGBjb250ZW50RW5jb2RpbmdgLCBgY29udGVudERpc3Bvc2l0aW9uYCwgYGNvbnRlbnRNZDVgOiBPcHRpb25hbCBwYXJhbWV0ZXJzIGZvciBjb250cm9sbGluZyB0aGUgY2FjaGluZyBiZWhhdmlvcixcbiAgICogICAgICAgICAgICAgICAgICBlbmNvZGluZywgY29udGVudCBkaXNwb3NpdGlvbiwgYW5kIGludGVncml0eSBjaGVjayBvZiB0aGUgYmxvYi5cbiAgICpcbiAgICogRXhhbXBsZSB1c2FnZTpcbiAgICogYGBgdHlwZXNjcmlwdFxuICAgKiBjb25zdCBteUJsb2IgPSBuZXcgQmxvYih0aGlzLCAnTXlCbG9iJywge1xuICAgKiAgIG5hbWU6ICdleGFtcGxlYmxvYicsXG4gICAqICAgc3RvcmFnZUFjY291bnROYW1lOiAnbXlzdG9yYWdlYWNjb3VudCcsXG4gICAqICAgc3RvcmFnZUNvbnRhaW5lck5hbWU6ICdteWNvbnRhaW5lcicsXG4gICAqICAgdHlwZTogJ0Jsb2NrJyxcbiAgICogICBzb3VyY2U6ICcuL3BhdGgvdG8vZmlsZS5qcGcnLFxuICAgKiAgIGNvbnRlbnRUeXBlOiAnaW1hZ2UvanBlZycsXG4gICAqICAgbWV0YWRhdGE6IHtcbiAgICogICAgIGF1dGhvcjogJ0pvaG4gRG9lJ1xuICAgKiAgIH1cbiAgICogfSk7XG4gICAqIGBgYFxuICAgKiBUaGlzIGNsYXNzIGluaXRpYWxpemVzIGEgYmxvYiB3aXRoIHRoZSBzcGVjaWZpZWQgY29uZmlndXJhdGlvbnMgYW5kIGhhbmRsZXMgdGhlIHVwbG9hZGluZyBvZiBjb250ZW50IGZyb20gdGhlIHNwZWNpZmllZCBzb3VyY2UuXG4gICAqL1xuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wczogU3RvcmFnZUJsb2JDb25maWcpIHtcbiAgICBzdXBlcihzY29wZSwgaWQpO1xuXG4gICAgLy8gQ3JlYXRlIGEgc3RvcmFnZSBjb250YWluZXJcbiAgICBuZXcgU3RvcmFnZUJsb2IodGhpcywgXCJibG9iXCIsIHtcbiAgICAgIG5hbWU6IHByb3BzLm5hbWUsXG4gICAgICBzdG9yYWdlQWNjb3VudE5hbWU6IHByb3BzLnN0b3JhZ2VBY2NvdW50TmFtZSxcbiAgICAgIHN0b3JhZ2VDb250YWluZXJOYW1lOiBwcm9wcy5zdG9yYWdlQ29udGFpbmVyTmFtZSxcbiAgICAgIHR5cGU6IHByb3BzLnR5cGUsXG4gICAgICBzb3VyY2U6IHByb3BzLnNvdXJjZSxcbiAgICAgIGNvbnRlbnRUeXBlOiBwcm9wcy5jb250ZW50VHlwZSxcbiAgICAgIG1ldGFkYXRhOiBwcm9wcy5tZXRhZGF0YSxcbiAgICB9KTtcblxuICAgIHRoaXMubmFtZSA9IHByb3BzLm5hbWU7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
import { StorageShareConfig } from "@cdktf/provider-azurerm/lib/storage-share";
|
|
2
|
-
import { StorageShareFileConfig } from "@cdktf/provider-azurerm/lib/storage-share-file";
|
|
3
|
-
import { Construct } from "constructs";
|
|
4
|
-
export interface FileShareProps {
|
|
5
|
-
/**
|
|
6
|
-
* The maximum size of the storage share, in gigabytes.
|
|
7
|
-
*/
|
|
8
|
-
readonly quota?: number;
|
|
9
|
-
/**
|
|
10
|
-
* The access tier of the storage share. This property is only applicable to storage shares with a premium account type.
|
|
11
|
-
* Example values: Hot, Cool.
|
|
12
|
-
*/
|
|
13
|
-
readonly accessTier?: string;
|
|
14
|
-
/**
|
|
15
|
-
* The protocol to use when accessing the storage share.
|
|
16
|
-
* Example values: SMB, NFS.
|
|
17
|
-
*/
|
|
18
|
-
readonly enabledProtocol?: string;
|
|
19
|
-
/**
|
|
20
|
-
* A list of access control rules for the storage share.
|
|
21
|
-
*/
|
|
22
|
-
readonly acl?: any;
|
|
23
|
-
/**
|
|
24
|
-
* A mapping of tags to assign to the storage share.
|
|
25
|
-
* Format: { [key: string]: string }
|
|
26
|
-
*/
|
|
27
|
-
readonly metadata?: {
|
|
28
|
-
readonly [key: string]: string;
|
|
29
|
-
};
|
|
30
|
-
}
|
|
31
|
-
export declare class FileShare extends Construct {
|
|
32
|
-
readonly name: string;
|
|
33
|
-
readonly id: string;
|
|
34
|
-
private readonly files;
|
|
35
|
-
readonly storageAccountName: string;
|
|
36
|
-
readonly storageShareName: string;
|
|
37
|
-
constructor(scope: Construct, id: string, props: StorageShareConfig);
|
|
38
|
-
/**
|
|
39
|
-
* Adds a file to the Azure Storage File Share.
|
|
40
|
-
*
|
|
41
|
-
* @param fileName The name of the file to be added.
|
|
42
|
-
* @param fileSource Optional path or URL to the source of the file's content.
|
|
43
|
-
* @param props Optional configuration properties for the file, such as content type, encoding, and metadata.
|
|
44
|
-
* @returns The created AzureStorageShareFile instance.
|
|
45
|
-
*
|
|
46
|
-
* This method allows you to add a file to your Azure Storage File Share, optionally specifying
|
|
47
|
-
* the file's content source and other properties like content type, encoding, and metadata.
|
|
48
|
-
* If `fileSource` is provided, the content of the file is sourced from this location.
|
|
49
|
-
* The `props` parameter allows for further customization of the file, such as setting the content type
|
|
50
|
-
* (default is 'application/octet-stream') and adding metadata.
|
|
51
|
-
*
|
|
52
|
-
* Example usage:
|
|
53
|
-
* ```typescript
|
|
54
|
-
* const storageShareFile = storageShare.addFile('example.txt', './path/to/local/file.txt', {
|
|
55
|
-
* contentType: 'text/plain',
|
|
56
|
-
* metadata: { customKey: 'customValue' }
|
|
57
|
-
* });
|
|
58
|
-
* ```
|
|
59
|
-
*
|
|
60
|
-
* In this example, a text file named 'example.txt' is added to the storage share. The content of the file
|
|
61
|
-
* is sourced from a local file, and the content type is specified as 'text/plain' with custom metadata.
|
|
62
|
-
*/
|
|
63
|
-
addFile(fileName: string, fileSource?: string, props?: StorageShareFileConfig): File;
|
|
64
|
-
}
|
|
65
|
-
export declare class File extends Construct {
|
|
66
|
-
readonly name: string;
|
|
67
|
-
readonly id: string;
|
|
68
|
-
/**
|
|
69
|
-
* Represents a file within an Azure Storage Share.
|
|
70
|
-
*
|
|
71
|
-
* This class is responsible for the creation and management of a file in an Azure Storage Share, which allows for cloud file storage
|
|
72
|
-
* that can be accessed and managed like a file system. The File class enables detailed configuration of file properties including
|
|
73
|
-
* content type, encoding, and metadata, making it suitable for storing and accessing various types of data.
|
|
74
|
-
*
|
|
75
|
-
* @param scope - The scope in which to define this construct, typically representing the Cloud Development Kit (CDK) stack.
|
|
76
|
-
* @param id - The unique identifier for this instance of the file.
|
|
77
|
-
* @param props - Configuration properties for the Azure Storage Share File. These properties include:
|
|
78
|
-
* - `name`: The name of the file within the storage share.
|
|
79
|
-
* - `storageShareId`: The identifier for the storage share in which this file is located.
|
|
80
|
-
* - `source`: The source of the file's content, which can be a path to a local file or a URL.
|
|
81
|
-
* - `contentType`: The MIME type of the file's content, helping clients handle the file appropriately when downloaded.
|
|
82
|
-
* - `contentEncoding`: The encoding format of the file's content (e.g., 'gzip').
|
|
83
|
-
* - `contentDisposition`: Provides instructions on how the content should be displayed or handled.
|
|
84
|
-
* - `contentMd5`: An MD5 hash of the file content for verifying the integrity of the file upon transfer.
|
|
85
|
-
* - `metadata`: A dictionary of key-value pairs to store as metadata with the file. Metadata is typically used to store additional
|
|
86
|
-
* details about the file such as tags, descriptions, or other attributes.
|
|
87
|
-
*
|
|
88
|
-
* Example usage:
|
|
89
|
-
* ```typescript
|
|
90
|
-
* const myFile = new File(this, 'MyFile', {
|
|
91
|
-
* name: 'examplefile.txt',
|
|
92
|
-
* storageShareId: 'share123',
|
|
93
|
-
* source: './path/to/local/file.txt',
|
|
94
|
-
* contentType: 'text/plain',
|
|
95
|
-
* contentEncoding: 'utf-8',
|
|
96
|
-
* metadata: {
|
|
97
|
-
* createdBy: 'John Doe'
|
|
98
|
-
* }
|
|
99
|
-
* });
|
|
100
|
-
* ```
|
|
101
|
-
* This class initializes a file with the specified configurations and handles the uploading of content from the specified source, providing
|
|
102
|
-
* a way to manage file storage in Azure efficiently.
|
|
103
|
-
*/
|
|
104
|
-
constructor(scope: Construct, id: string, props: StorageShareFileConfig);
|
|
105
|
-
}
|
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var _a, _b;
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.File = exports.FileShare = void 0;
|
|
5
|
-
const JSII_RTTI_SYMBOL_1 = Symbol.for("jsii.rtti");
|
|
6
|
-
const storage_share_1 = require("@cdktf/provider-azurerm/lib/storage-share");
|
|
7
|
-
const storage_share_file_1 = require("@cdktf/provider-azurerm/lib/storage-share-file");
|
|
8
|
-
const constructs_1 = require("constructs");
|
|
9
|
-
class FileShare extends constructs_1.Construct {
|
|
10
|
-
constructor(scope, id, props) {
|
|
11
|
-
super(scope, id);
|
|
12
|
-
this.files = new Map();
|
|
13
|
-
const share = new storage_share_1.StorageShare(this, "share", {
|
|
14
|
-
name: props.name,
|
|
15
|
-
storageAccountName: props.storageAccountName,
|
|
16
|
-
quota: props.quota,
|
|
17
|
-
accessTier: props.accessTier,
|
|
18
|
-
enabledProtocol: props.enabledProtocol,
|
|
19
|
-
acl: props.acl,
|
|
20
|
-
metadata: props.metadata,
|
|
21
|
-
});
|
|
22
|
-
this.name = share.name;
|
|
23
|
-
this.storageAccountName = share.storageAccountName;
|
|
24
|
-
this.storageShareName = share.name;
|
|
25
|
-
this.id = share.id;
|
|
26
|
-
}
|
|
27
|
-
/**
|
|
28
|
-
* Adds a file to the Azure Storage File Share.
|
|
29
|
-
*
|
|
30
|
-
* @param fileName The name of the file to be added.
|
|
31
|
-
* @param fileSource Optional path or URL to the source of the file's content.
|
|
32
|
-
* @param props Optional configuration properties for the file, such as content type, encoding, and metadata.
|
|
33
|
-
* @returns The created AzureStorageShareFile instance.
|
|
34
|
-
*
|
|
35
|
-
* This method allows you to add a file to your Azure Storage File Share, optionally specifying
|
|
36
|
-
* the file's content source and other properties like content type, encoding, and metadata.
|
|
37
|
-
* If `fileSource` is provided, the content of the file is sourced from this location.
|
|
38
|
-
* The `props` parameter allows for further customization of the file, such as setting the content type
|
|
39
|
-
* (default is 'application/octet-stream') and adding metadata.
|
|
40
|
-
*
|
|
41
|
-
* Example usage:
|
|
42
|
-
* ```typescript
|
|
43
|
-
* const storageShareFile = storageShare.addFile('example.txt', './path/to/local/file.txt', {
|
|
44
|
-
* contentType: 'text/plain',
|
|
45
|
-
* metadata: { customKey: 'customValue' }
|
|
46
|
-
* });
|
|
47
|
-
* ```
|
|
48
|
-
*
|
|
49
|
-
* In this example, a text file named 'example.txt' is added to the storage share. The content of the file
|
|
50
|
-
* is sourced from a local file, and the content type is specified as 'text/plain' with custom metadata.
|
|
51
|
-
*/
|
|
52
|
-
addFile(fileName, fileSource, props) {
|
|
53
|
-
const newStorageFile = new File(this, "file", {
|
|
54
|
-
name: fileName,
|
|
55
|
-
storageShareId: this.id,
|
|
56
|
-
contentDisposition: props?.contentDisposition,
|
|
57
|
-
contentEncoding: props?.contentEncoding,
|
|
58
|
-
contentMd5: props?.contentMd5,
|
|
59
|
-
source: fileSource,
|
|
60
|
-
contentType: props?.contentType || "application/octet-stream",
|
|
61
|
-
metadata: props?.metadata || {},
|
|
62
|
-
});
|
|
63
|
-
this.files.set(fileName, newStorageFile);
|
|
64
|
-
return newStorageFile;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
exports.FileShare = FileShare;
|
|
68
|
-
_a = JSII_RTTI_SYMBOL_1;
|
|
69
|
-
FileShare[_a] = { fqn: "@microsoft/terraform-cdk-constructs.azure_storageaccount.FileShare", version: "0.0.3-pre.7" };
|
|
70
|
-
class File extends constructs_1.Construct {
|
|
71
|
-
/**
|
|
72
|
-
* Represents a file within an Azure Storage Share.
|
|
73
|
-
*
|
|
74
|
-
* This class is responsible for the creation and management of a file in an Azure Storage Share, which allows for cloud file storage
|
|
75
|
-
* that can be accessed and managed like a file system. The File class enables detailed configuration of file properties including
|
|
76
|
-
* content type, encoding, and metadata, making it suitable for storing and accessing various types of data.
|
|
77
|
-
*
|
|
78
|
-
* @param scope - The scope in which to define this construct, typically representing the Cloud Development Kit (CDK) stack.
|
|
79
|
-
* @param id - The unique identifier for this instance of the file.
|
|
80
|
-
* @param props - Configuration properties for the Azure Storage Share File. These properties include:
|
|
81
|
-
* - `name`: The name of the file within the storage share.
|
|
82
|
-
* - `storageShareId`: The identifier for the storage share in which this file is located.
|
|
83
|
-
* - `source`: The source of the file's content, which can be a path to a local file or a URL.
|
|
84
|
-
* - `contentType`: The MIME type of the file's content, helping clients handle the file appropriately when downloaded.
|
|
85
|
-
* - `contentEncoding`: The encoding format of the file's content (e.g., 'gzip').
|
|
86
|
-
* - `contentDisposition`: Provides instructions on how the content should be displayed or handled.
|
|
87
|
-
* - `contentMd5`: An MD5 hash of the file content for verifying the integrity of the file upon transfer.
|
|
88
|
-
* - `metadata`: A dictionary of key-value pairs to store as metadata with the file. Metadata is typically used to store additional
|
|
89
|
-
* details about the file such as tags, descriptions, or other attributes.
|
|
90
|
-
*
|
|
91
|
-
* Example usage:
|
|
92
|
-
* ```typescript
|
|
93
|
-
* const myFile = new File(this, 'MyFile', {
|
|
94
|
-
* name: 'examplefile.txt',
|
|
95
|
-
* storageShareId: 'share123',
|
|
96
|
-
* source: './path/to/local/file.txt',
|
|
97
|
-
* contentType: 'text/plain',
|
|
98
|
-
* contentEncoding: 'utf-8',
|
|
99
|
-
* metadata: {
|
|
100
|
-
* createdBy: 'John Doe'
|
|
101
|
-
* }
|
|
102
|
-
* });
|
|
103
|
-
* ```
|
|
104
|
-
* This class initializes a file with the specified configurations and handles the uploading of content from the specified source, providing
|
|
105
|
-
* a way to manage file storage in Azure efficiently.
|
|
106
|
-
*/
|
|
107
|
-
constructor(scope, id, props) {
|
|
108
|
-
super(scope, id);
|
|
109
|
-
const file = new storage_share_file_1.StorageShareFile(this, "file", {
|
|
110
|
-
name: props.name,
|
|
111
|
-
storageShareId: props.storageShareId,
|
|
112
|
-
source: props.source,
|
|
113
|
-
contentType: props.contentType,
|
|
114
|
-
contentEncoding: props.contentEncoding,
|
|
115
|
-
contentDisposition: props.contentDisposition,
|
|
116
|
-
contentMd5: props.contentMd5,
|
|
117
|
-
metadata: props.metadata,
|
|
118
|
-
});
|
|
119
|
-
this.name = props.name;
|
|
120
|
-
this.id = file.id;
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
exports.File = File;
|
|
124
|
-
_b = JSII_RTTI_SYMBOL_1;
|
|
125
|
-
File[_b] = { fqn: "@microsoft/terraform-cdk-constructs.azure_storageaccount.File", version: "0.0.3-pre.7" };
|
|
126
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlsZXNoYXJlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2F6dXJlLXN0b3JhZ2VhY2NvdW50L2xpYi9maWxlc2hhcmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSw2RUFHbUQ7QUFDbkQsdUZBR3dEO0FBQ3hELDJDQUF1QztBQWdDdkMsTUFBYSxTQUFVLFNBQVEsc0JBQVM7SUFPdEMsWUFBWSxLQUFnQixFQUFFLEVBQVUsRUFBRSxLQUF5QjtRQUNqRSxLQUFLLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDO1FBRWpCLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxHQUFHLEVBQXFCLENBQUM7UUFFMUMsTUFBTSxLQUFLLEdBQUcsSUFBSSw0QkFBWSxDQUFDLElBQUksRUFBRSxPQUFPLEVBQUU7WUFDNUMsSUFBSSxFQUFFLEtBQUssQ0FBQyxJQUFJO1lBQ2hCLGtCQUFrQixFQUFFLEtBQUssQ0FBQyxrQkFBa0I7WUFDNUMsS0FBSyxFQUFFLEtBQUssQ0FBQyxLQUFLO1lBQ2xCLFVBQVUsRUFBRSxLQUFLLENBQUMsVUFBVTtZQUM1QixlQUFlLEVBQUUsS0FBSyxDQUFDLGVBQWU7WUFDdEMsR0FBRyxFQUFFLEtBQUssQ0FBQyxHQUFHO1lBQ2QsUUFBUSxFQUFFLEtBQUssQ0FBQyxRQUFRO1NBQ3pCLENBQUMsQ0FBQztRQUVILElBQUksQ0FBQyxJQUFJLEdBQUcsS0FBSyxDQUFDLElBQUksQ0FBQztRQUN2QixJQUFJLENBQUMsa0JBQWtCLEdBQUcsS0FBSyxDQUFDLGtCQUFrQixDQUFDO1FBQ25ELElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxLQUFLLENBQUMsSUFBSSxDQUFDO1FBQ25DLElBQUksQ0FBQyxFQUFFLEdBQUcsS0FBSyxDQUFDLEVBQUUsQ0FBQztJQUNyQixDQUFDO0lBRUQ7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztPQXdCRztJQUNILE9BQU8sQ0FDTCxRQUFnQixFQUNoQixVQUFtQixFQUNuQixLQUE4QjtRQUU5QixNQUFNLGNBQWMsR0FBRyxJQUFJLElBQUksQ0FBQyxJQUFJLEVBQUUsTUFBTSxFQUFFO1lBQzVDLElBQUksRUFBRSxRQUFRO1lBQ2QsY0FBYyxFQUFFLElBQUksQ0FBQyxFQUFFO1lBQ3ZCLGtCQUFrQixFQUFFLEtBQUssRUFBRSxrQkFBa0I7WUFDN0MsZUFBZSxFQUFFLEtBQUssRUFBRSxlQUFlO1lBQ3ZDLFVBQVUsRUFBRSxLQUFLLEVBQUUsVUFBVTtZQUM3QixNQUFNLEVBQUUsVUFBVTtZQUNsQixXQUFXLEVBQUUsS0FBSyxFQUFFLFdBQVcsSUFBSSwwQkFBMEI7WUFDN0QsUUFBUSxFQUFFLEtBQUssRUFBRSxRQUFRLElBQUksRUFBRTtTQUNoQyxDQUFDLENBQUM7UUFDSCxJQUFJLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxRQUFRLEVBQUUsY0FBYyxDQUFDLENBQUM7UUFDekMsT0FBTyxjQUFjLENBQUM7SUFDeEIsQ0FBQzs7QUF0RUgsOEJBdUVDOzs7QUFFRCxNQUFhLElBQUssU0FBUSxzQkFBUztJQUlqQzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7T0FtQ0c7SUFDSCxZQUFZLEtBQWdCLEVBQUUsRUFBVSxFQUFFLEtBQTZCO1FBQ3JFLEtBQUssQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLENBQUM7UUFFakIsTUFBTSxJQUFJLEdBQUcsSUFBSSxxQ0FBZ0IsQ0FBQyxJQUFJLEVBQUUsTUFBTSxFQUFFO1lBQzlDLElBQUksRUFBRSxLQUFLLENBQUMsSUFBSTtZQUNoQixjQUFjLEVBQUUsS0FBSyxDQUFDLGNBQWM7WUFDcEMsTUFBTSxFQUFFLEtBQUssQ0FBQyxNQUFNO1lBQ3BCLFdBQVcsRUFBRSxLQUFLLENBQUMsV0FBVztZQUM5QixlQUFlLEVBQUUsS0FBSyxDQUFDLGVBQWU7WUFDdEMsa0JBQWtCLEVBQUUsS0FBSyxDQUFDLGtCQUFrQjtZQUM1QyxVQUFVLEVBQUUsS0FBSyxDQUFDLFVBQVU7WUFDNUIsUUFBUSxFQUFFLEtBQUssQ0FBQyxRQUFRO1NBQ3pCLENBQUMsQ0FBQztRQUVILElBQUksQ0FBQyxJQUFJLEdBQUcsS0FBSyxDQUFDLElBQUksQ0FBQztRQUN2QixJQUFJLENBQUMsRUFBRSxHQUFHLElBQUksQ0FBQyxFQUFFLENBQUM7SUFDcEIsQ0FBQzs7QUF4REgsb0JBeURDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgU3RvcmFnZVNoYXJlLFxuICBTdG9yYWdlU2hhcmVDb25maWcsXG59IGZyb20gXCJAY2RrdGYvcHJvdmlkZXItYXp1cmVybS9saWIvc3RvcmFnZS1zaGFyZVwiO1xuaW1wb3J0IHtcbiAgU3RvcmFnZVNoYXJlRmlsZSxcbiAgU3RvcmFnZVNoYXJlRmlsZUNvbmZpZyxcbn0gZnJvbSBcIkBjZGt0Zi9wcm92aWRlci1henVyZXJtL2xpYi9zdG9yYWdlLXNoYXJlLWZpbGVcIjtcbmltcG9ydCB7IENvbnN0cnVjdCB9IGZyb20gXCJjb25zdHJ1Y3RzXCI7XG5cbmV4cG9ydCBpbnRlcmZhY2UgRmlsZVNoYXJlUHJvcHMge1xuICAvKipcbiAgICogVGhlIG1heGltdW0gc2l6ZSBvZiB0aGUgc3RvcmFnZSBzaGFyZSwgaW4gZ2lnYWJ5dGVzLlxuICAgKi9cbiAgcmVhZG9ubHkgcXVvdGE/OiBudW1iZXI7XG5cbiAgLyoqXG4gICAqIFRoZSBhY2Nlc3MgdGllciBvZiB0aGUgc3RvcmFnZSBzaGFyZS4gVGhpcyBwcm9wZXJ0eSBpcyBvbmx5IGFwcGxpY2FibGUgdG8gc3RvcmFnZSBzaGFyZXMgd2l0aCBhIHByZW1pdW0gYWNjb3VudCB0eXBlLlxuICAgKiBFeGFtcGxlIHZhbHVlczogSG90LCBDb29sLlxuICAgKi9cbiAgcmVhZG9ubHkgYWNjZXNzVGllcj86IHN0cmluZztcblxuICAvKipcbiAgICogVGhlIHByb3RvY29sIHRvIHVzZSB3aGVuIGFjY2Vzc2luZyB0aGUgc3RvcmFnZSBzaGFyZS5cbiAgICogRXhhbXBsZSB2YWx1ZXM6IFNNQiwgTkZTLlxuICAgKi9cbiAgcmVhZG9ubHkgZW5hYmxlZFByb3RvY29sPzogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBBIGxpc3Qgb2YgYWNjZXNzIGNvbnRyb2wgcnVsZXMgZm9yIHRoZSBzdG9yYWdlIHNoYXJlLlxuICAgKi9cbiAgcmVhZG9ubHkgYWNsPzogYW55OyAvLyBSZXBsYWNlICdhbnknIHdpdGggYSBtb3JlIHNwZWNpZmljIHR5cGUgaWYgYXZhaWxhYmxlLlxuXG4gIC8qKlxuICAgKiBBIG1hcHBpbmcgb2YgdGFncyB0byBhc3NpZ24gdG8gdGhlIHN0b3JhZ2Ugc2hhcmUuXG4gICAqIEZvcm1hdDogeyBba2V5OiBzdHJpbmddOiBzdHJpbmcgfVxuICAgKi9cbiAgcmVhZG9ubHkgbWV0YWRhdGE/OiB7IHJlYWRvbmx5IFtrZXk6IHN0cmluZ106IHN0cmluZyB9O1xufVxuXG5leHBvcnQgY2xhc3MgRmlsZVNoYXJlIGV4dGVuZHMgQ29uc3RydWN0IHtcbiAgcHVibGljIHJlYWRvbmx5IG5hbWU6IHN0cmluZztcbiAgcHVibGljIHJlYWRvbmx5IGlkOiBzdHJpbmc7XG4gIHByaXZhdGUgcmVhZG9ubHkgZmlsZXM6IE1hcDxzdHJpbmcsIEZpbGU+O1xuICBwdWJsaWMgcmVhZG9ubHkgc3RvcmFnZUFjY291bnROYW1lOiBzdHJpbmc7XG4gIHB1YmxpYyByZWFkb25seSBzdG9yYWdlU2hhcmVOYW1lOiBzdHJpbmc7XG5cbiAgY29uc3RydWN0b3Ioc2NvcGU6IENvbnN0cnVjdCwgaWQ6IHN0cmluZywgcHJvcHM6IFN0b3JhZ2VTaGFyZUNvbmZpZykge1xuICAgIHN1cGVyKHNjb3BlLCBpZCk7XG5cbiAgICB0aGlzLmZpbGVzID0gbmV3IE1hcDxzdHJpbmcsIEZpbGVTaGFyZT4oKTtcblxuICAgIGNvbnN0IHNoYXJlID0gbmV3IFN0b3JhZ2VTaGFyZSh0aGlzLCBcInNoYXJlXCIsIHtcbiAgICAgIG5hbWU6IHByb3BzLm5hbWUsXG4gICAgICBzdG9yYWdlQWNjb3VudE5hbWU6IHByb3BzLnN0b3JhZ2VBY2NvdW50TmFtZSxcbiAgICAgIHF1b3RhOiBwcm9wcy5xdW90YSxcbiAgICAgIGFjY2Vzc1RpZXI6IHByb3BzLmFjY2Vzc1RpZXIsXG4gICAgICBlbmFibGVkUHJvdG9jb2w6IHByb3BzLmVuYWJsZWRQcm90b2NvbCxcbiAgICAgIGFjbDogcHJvcHMuYWNsLFxuICAgICAgbWV0YWRhdGE6IHByb3BzLm1ldGFkYXRhLFxuICAgIH0pO1xuXG4gICAgdGhpcy5uYW1lID0gc2hhcmUubmFtZTtcbiAgICB0aGlzLnN0b3JhZ2VBY2NvdW50TmFtZSA9IHNoYXJlLnN0b3JhZ2VBY2NvdW50TmFtZTtcbiAgICB0aGlzLnN0b3JhZ2VTaGFyZU5hbWUgPSBzaGFyZS5uYW1lO1xuICAgIHRoaXMuaWQgPSBzaGFyZS5pZDtcbiAgfVxuXG4gIC8qKlxuICAgKiBBZGRzIGEgZmlsZSB0byB0aGUgQXp1cmUgU3RvcmFnZSBGaWxlIFNoYXJlLlxuICAgKlxuICAgKiBAcGFyYW0gZmlsZU5hbWUgVGhlIG5hbWUgb2YgdGhlIGZpbGUgdG8gYmUgYWRkZWQuXG4gICAqIEBwYXJhbSBmaWxlU291cmNlIE9wdGlvbmFsIHBhdGggb3IgVVJMIHRvIHRoZSBzb3VyY2Ugb2YgdGhlIGZpbGUncyBjb250ZW50LlxuICAgKiBAcGFyYW0gcHJvcHMgT3B0aW9uYWwgY29uZmlndXJhdGlvbiBwcm9wZXJ0aWVzIGZvciB0aGUgZmlsZSwgc3VjaCBhcyBjb250ZW50IHR5cGUsIGVuY29kaW5nLCBhbmQgbWV0YWRhdGEuXG4gICAqIEByZXR1cm5zIFRoZSBjcmVhdGVkIEF6dXJlU3RvcmFnZVNoYXJlRmlsZSBpbnN0YW5jZS5cbiAgICpcbiAgICogVGhpcyBtZXRob2QgYWxsb3dzIHlvdSB0byBhZGQgYSBmaWxlIHRvIHlvdXIgQXp1cmUgU3RvcmFnZSBGaWxlIFNoYXJlLCBvcHRpb25hbGx5IHNwZWNpZnlpbmdcbiAgICogdGhlIGZpbGUncyBjb250ZW50IHNvdXJjZSBhbmQgb3RoZXIgcHJvcGVydGllcyBsaWtlIGNvbnRlbnQgdHlwZSwgZW5jb2RpbmcsIGFuZCBtZXRhZGF0YS5cbiAgICogSWYgYGZpbGVTb3VyY2VgIGlzIHByb3ZpZGVkLCB0aGUgY29udGVudCBvZiB0aGUgZmlsZSBpcyBzb3VyY2VkIGZyb20gdGhpcyBsb2NhdGlvbi5cbiAgICogVGhlIGBwcm9wc2AgcGFyYW1ldGVyIGFsbG93cyBmb3IgZnVydGhlciBjdXN0b21pemF0aW9uIG9mIHRoZSBmaWxlLCBzdWNoIGFzIHNldHRpbmcgdGhlIGNvbnRlbnQgdHlwZVxuICAgKiAoZGVmYXVsdCBpcyAnYXBwbGljYXRpb24vb2N0ZXQtc3RyZWFtJykgYW5kIGFkZGluZyBtZXRhZGF0YS5cbiAgICpcbiAgICogRXhhbXBsZSB1c2FnZTpcbiAgICogYGBgdHlwZXNjcmlwdFxuICAgKiBjb25zdCBzdG9yYWdlU2hhcmVGaWxlID0gc3RvcmFnZVNoYXJlLmFkZEZpbGUoJ2V4YW1wbGUudHh0JywgJy4vcGF0aC90by9sb2NhbC9maWxlLnR4dCcsIHtcbiAgICogICBjb250ZW50VHlwZTogJ3RleHQvcGxhaW4nLFxuICAgKiAgIG1ldGFkYXRhOiB7IGN1c3RvbUtleTogJ2N1c3RvbVZhbHVlJyB9XG4gICAqIH0pO1xuICAgKiBgYGBcbiAgICpcbiAgICogSW4gdGhpcyBleGFtcGxlLCBhIHRleHQgZmlsZSBuYW1lZCAnZXhhbXBsZS50eHQnIGlzIGFkZGVkIHRvIHRoZSBzdG9yYWdlIHNoYXJlLiBUaGUgY29udGVudCBvZiB0aGUgZmlsZVxuICAgKiBpcyBzb3VyY2VkIGZyb20gYSBsb2NhbCBmaWxlLCBhbmQgdGhlIGNvbnRlbnQgdHlwZSBpcyBzcGVjaWZpZWQgYXMgJ3RleHQvcGxhaW4nIHdpdGggY3VzdG9tIG1ldGFkYXRhLlxuICAgKi9cbiAgYWRkRmlsZShcbiAgICBmaWxlTmFtZTogc3RyaW5nLFxuICAgIGZpbGVTb3VyY2U/OiBzdHJpbmcsXG4gICAgcHJvcHM/OiBTdG9yYWdlU2hhcmVGaWxlQ29uZmlnLFxuICApOiBGaWxlIHtcbiAgICBjb25zdCBuZXdTdG9yYWdlRmlsZSA9IG5ldyBGaWxlKHRoaXMsIFwiZmlsZVwiLCB7XG4gICAgICBuYW1lOiBmaWxlTmFtZSxcbiAgICAgIHN0b3JhZ2VTaGFyZUlkOiB0aGlzLmlkLFxuICAgICAgY29udGVudERpc3Bvc2l0aW9uOiBwcm9wcz8uY29udGVudERpc3Bvc2l0aW9uLFxuICAgICAgY29udGVudEVuY29kaW5nOiBwcm9wcz8uY29udGVudEVuY29kaW5nLFxuICAgICAgY29udGVudE1kNTogcHJvcHM/LmNvbnRlbnRNZDUsXG4gICAgICBzb3VyY2U6IGZpbGVTb3VyY2UsXG4gICAgICBjb250ZW50VHlwZTogcHJvcHM/LmNvbnRlbnRUeXBlIHx8IFwiYXBwbGljYXRpb24vb2N0ZXQtc3RyZWFtXCIsXG4gICAgICBtZXRhZGF0YTogcHJvcHM/Lm1ldGFkYXRhIHx8IHt9LFxuICAgIH0pO1xuICAgIHRoaXMuZmlsZXMuc2V0KGZpbGVOYW1lLCBuZXdTdG9yYWdlRmlsZSk7XG4gICAgcmV0dXJuIG5ld1N0b3JhZ2VGaWxlO1xuICB9XG59XG5cbmV4cG9ydCBjbGFzcyBGaWxlIGV4dGVuZHMgQ29uc3RydWN0IHtcbiAgcHVibGljIHJlYWRvbmx5IG5hbWU6IHN0cmluZztcbiAgcHVibGljIHJlYWRvbmx5IGlkOiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIFJlcHJlc2VudHMgYSBmaWxlIHdpdGhpbiBhbiBBenVyZSBTdG9yYWdlIFNoYXJlLlxuICAgKlxuICAgKiBUaGlzIGNsYXNzIGlzIHJlc3BvbnNpYmxlIGZvciB0aGUgY3JlYXRpb24gYW5kIG1hbmFnZW1lbnQgb2YgYSBmaWxlIGluIGFuIEF6dXJlIFN0b3JhZ2UgU2hhcmUsIHdoaWNoIGFsbG93cyBmb3IgY2xvdWQgZmlsZSBzdG9yYWdlXG4gICAqIHRoYXQgY2FuIGJlIGFjY2Vzc2VkIGFuZCBtYW5hZ2VkIGxpa2UgYSBmaWxlIHN5c3RlbS4gVGhlIEZpbGUgY2xhc3MgZW5hYmxlcyBkZXRhaWxlZCBjb25maWd1cmF0aW9uIG9mIGZpbGUgcHJvcGVydGllcyBpbmNsdWRpbmdcbiAgICogY29udGVudCB0eXBlLCBlbmNvZGluZywgYW5kIG1ldGFkYXRhLCBtYWtpbmcgaXQgc3VpdGFibGUgZm9yIHN0b3JpbmcgYW5kIGFjY2Vzc2luZyB2YXJpb3VzIHR5cGVzIG9mIGRhdGEuXG4gICAqXG4gICAqIEBwYXJhbSBzY29wZSAtIFRoZSBzY29wZSBpbiB3aGljaCB0byBkZWZpbmUgdGhpcyBjb25zdHJ1Y3QsIHR5cGljYWxseSByZXByZXNlbnRpbmcgdGhlIENsb3VkIERldmVsb3BtZW50IEtpdCAoQ0RLKSBzdGFjay5cbiAgICogQHBhcmFtIGlkIC0gVGhlIHVuaXF1ZSBpZGVudGlmaWVyIGZvciB0aGlzIGluc3RhbmNlIG9mIHRoZSBmaWxlLlxuICAgKiBAcGFyYW0gcHJvcHMgLSBDb25maWd1cmF0aW9uIHByb3BlcnRpZXMgZm9yIHRoZSBBenVyZSBTdG9yYWdlIFNoYXJlIEZpbGUuIFRoZXNlIHByb3BlcnRpZXMgaW5jbHVkZTpcbiAgICogICAgICAgICAgICAgICAgLSBgbmFtZWA6IFRoZSBuYW1lIG9mIHRoZSBmaWxlIHdpdGhpbiB0aGUgc3RvcmFnZSBzaGFyZS5cbiAgICogICAgICAgICAgICAgICAgLSBgc3RvcmFnZVNoYXJlSWRgOiBUaGUgaWRlbnRpZmllciBmb3IgdGhlIHN0b3JhZ2Ugc2hhcmUgaW4gd2hpY2ggdGhpcyBmaWxlIGlzIGxvY2F0ZWQuXG4gICAqICAgICAgICAgICAgICAgIC0gYHNvdXJjZWA6IFRoZSBzb3VyY2Ugb2YgdGhlIGZpbGUncyBjb250ZW50LCB3aGljaCBjYW4gYmUgYSBwYXRoIHRvIGEgbG9jYWwgZmlsZSBvciBhIFVSTC5cbiAgICogICAgICAgICAgICAgICAgLSBgY29udGVudFR5cGVgOiBUaGUgTUlNRSB0eXBlIG9mIHRoZSBmaWxlJ3MgY29udGVudCwgaGVscGluZyBjbGllbnRzIGhhbmRsZSB0aGUgZmlsZSBhcHByb3ByaWF0ZWx5IHdoZW4gZG93bmxvYWRlZC5cbiAgICogICAgICAgICAgICAgICAgLSBgY29udGVudEVuY29kaW5nYDogVGhlIGVuY29kaW5nIGZvcm1hdCBvZiB0aGUgZmlsZSdzIGNvbnRlbnQgKGUuZy4sICdnemlwJykuXG4gICAqICAgICAgICAgICAgICAgIC0gYGNvbnRlbnREaXNwb3NpdGlvbmA6IFByb3ZpZGVzIGluc3RydWN0aW9ucyBvbiBob3cgdGhlIGNvbnRlbnQgc2hvdWxkIGJlIGRpc3BsYXllZCBvciBoYW5kbGVkLlxuICAgKiAgICAgICAgICAgICAgICAtIGBjb250ZW50TWQ1YDogQW4gTUQ1IGhhc2ggb2YgdGhlIGZpbGUgY29udGVudCBmb3IgdmVyaWZ5aW5nIHRoZSBpbnRlZ3JpdHkgb2YgdGhlIGZpbGUgdXBvbiB0cmFuc2Zlci5cbiAgICogICAgICAgICAgICAgICAgLSBgbWV0YWRhdGFgOiBBIGRpY3Rpb25hcnkgb2Yga2V5LXZhbHVlIHBhaXJzIHRvIHN0b3JlIGFzIG1ldGFkYXRhIHdpdGggdGhlIGZpbGUuIE1ldGFkYXRhIGlzIHR5cGljYWxseSB1c2VkIHRvIHN0b3JlIGFkZGl0aW9uYWxcbiAgICogICAgICAgICAgICAgICAgICBkZXRhaWxzIGFib3V0IHRoZSBmaWxlIHN1Y2ggYXMgdGFncywgZGVzY3JpcHRpb25zLCBvciBvdGhlciBhdHRyaWJ1dGVzLlxuICAgKlxuICAgKiBFeGFtcGxlIHVzYWdlOlxuICAgKiBgYGB0eXBlc2NyaXB0XG4gICAqIGNvbnN0IG15RmlsZSA9IG5ldyBGaWxlKHRoaXMsICdNeUZpbGUnLCB7XG4gICAqICAgbmFtZTogJ2V4YW1wbGVmaWxlLnR4dCcsXG4gICAqICAgc3RvcmFnZVNoYXJlSWQ6ICdzaGFyZTEyMycsXG4gICAqICAgc291cmNlOiAnLi9wYXRoL3RvL2xvY2FsL2ZpbGUudHh0JyxcbiAgICogICBjb250ZW50VHlwZTogJ3RleHQvcGxhaW4nLFxuICAgKiAgIGNvbnRlbnRFbmNvZGluZzogJ3V0Zi04JyxcbiAgICogICBtZXRhZGF0YToge1xuICAgKiAgICAgY3JlYXRlZEJ5OiAnSm9obiBEb2UnXG4gICAqICAgfVxuICAgKiB9KTtcbiAgICogYGBgXG4gICAqIFRoaXMgY2xhc3MgaW5pdGlhbGl6ZXMgYSBmaWxlIHdpdGggdGhlIHNwZWNpZmllZCBjb25maWd1cmF0aW9ucyBhbmQgaGFuZGxlcyB0aGUgdXBsb2FkaW5nIG9mIGNvbnRlbnQgZnJvbSB0aGUgc3BlY2lmaWVkIHNvdXJjZSwgcHJvdmlkaW5nXG4gICAqIGEgd2F5IHRvIG1hbmFnZSBmaWxlIHN0b3JhZ2UgaW4gQXp1cmUgZWZmaWNpZW50bHkuXG4gICAqL1xuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wczogU3RvcmFnZVNoYXJlRmlsZUNvbmZpZykge1xuICAgIHN1cGVyKHNjb3BlLCBpZCk7XG5cbiAgICBjb25zdCBmaWxlID0gbmV3IFN0b3JhZ2VTaGFyZUZpbGUodGhpcywgXCJmaWxlXCIsIHtcbiAgICAgIG5hbWU6IHByb3BzLm5hbWUsXG4gICAgICBzdG9yYWdlU2hhcmVJZDogcHJvcHMuc3RvcmFnZVNoYXJlSWQsXG4gICAgICBzb3VyY2U6IHByb3BzLnNvdXJjZSxcbiAgICAgIGNvbnRlbnRUeXBlOiBwcm9wcy5jb250ZW50VHlwZSxcbiAgICAgIGNvbnRlbnRFbmNvZGluZzogcHJvcHMuY29udGVudEVuY29kaW5nLFxuICAgICAgY29udGVudERpc3Bvc2l0aW9uOiBwcm9wcy5jb250ZW50RGlzcG9zaXRpb24sXG4gICAgICBjb250ZW50TWQ1OiBwcm9wcy5jb250ZW50TWQ1LFxuICAgICAgbWV0YWRhdGE6IHByb3BzLm1ldGFkYXRhLFxuICAgIH0pO1xuXG4gICAgdGhpcy5uYW1lID0gcHJvcHMubmFtZTtcbiAgICB0aGlzLmlkID0gZmlsZS5pZDtcbiAgfVxufVxuIl19
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { StorageQueueConfig } from "@cdktf/provider-azurerm/lib/storage-queue";
|
|
2
|
-
import { Construct } from "constructs";
|
|
3
|
-
export declare class Queue extends Construct {
|
|
4
|
-
readonly name: string;
|
|
5
|
-
/**
|
|
6
|
-
* Represents an Azure Storage Queue within a specific Azure Storage Account.
|
|
7
|
-
*
|
|
8
|
-
* This class is responsible for the creation and management of an Azure Storage Queue, which is a service for storing large numbers
|
|
9
|
-
* of messages that can be accessed from anywhere in the world via authenticated calls using HTTP or HTTPS. A single queue message
|
|
10
|
-
* can be up to 64 KB in size, and a queue can contain millions of messages, up to the total capacity limit of a storage account.
|
|
11
|
-
* This class provides a way to manage messages in a scalable and secure manner.
|
|
12
|
-
*
|
|
13
|
-
* @param scope - The scope in which to define this construct, typically representing the Cloud Development Kit (CDK) stack.
|
|
14
|
-
* @param id - The unique identifier for this instance of the queue.
|
|
15
|
-
* @param props - Configuration properties for the Azure Storage Queue. These properties may include:
|
|
16
|
-
* - `name`: The name of the queue, which must be unique within the storage account.
|
|
17
|
-
* - `storageAccountName`: The name of the storage account in which this queue is being created.
|
|
18
|
-
* - `metadata`: A dictionary of strings that represents metadata to associate with the queue.
|
|
19
|
-
* - `timeouts`: Custom timeout settings for CRUD operations on the queue to manage operation durations and retries.
|
|
20
|
-
*
|
|
21
|
-
* Example usage:
|
|
22
|
-
* ```typescript
|
|
23
|
-
* const myQueue = new Queue(this, 'MyQueue', {
|
|
24
|
-
* name: 'taskqueue',
|
|
25
|
-
* storageAccountName: 'mystorageaccount',
|
|
26
|
-
* metadata: {
|
|
27
|
-
* department: 'IT'
|
|
28
|
-
* }
|
|
29
|
-
* });
|
|
30
|
-
* ```
|
|
31
|
-
* This class initializes a storage queue with the specified configurations. It can be used to enqueue and process messages as needed
|
|
32
|
-
* within applications, providing a reliable messaging solution for asynchronous communication and coordination of tasks across systems.
|
|
33
|
-
*/
|
|
34
|
-
constructor(scope: Construct, id: string, props: StorageQueueConfig);
|
|
35
|
-
}
|