@microsoft/terraform-cdk-constructs 0.0.3-pre.6 → 1.0.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 +23090 -10333
- package/API.md +25525 -7841
- package/LICENSE +16 -18
- package/README.md +192 -23
- package/cdktf.json +1 -1
- package/docs/ARCHITECTURE.md +836 -0
- package/docs/azapi-testing-architecture.md +482 -0
- package/docs/images/ide-documentation.png +0 -0
- package/docs/testing.md +39 -137
- package/docs/versioning-and-migrations-user-guide.md +409 -0
- package/go.mod +12 -12
- package/go.sum +27 -23
- 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 +173 -21
- package/lib/azure-resourcegroup/lib/resource-group.js +226 -32
- package/lib/azure-resourcegroup/test/resource-group.integ.d.ts +9 -0
- package/lib/azure-resourcegroup/test/resource-group.integ.js +60 -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 +40 -0
- package/lib/azure-storageaccount/lib/storage-account-schemas.js +378 -0
- package/lib/azure-storageaccount/lib/storage-account.d.ts +311 -0
- package/lib/azure-storageaccount/lib/storage-account.js +229 -0
- package/lib/azure-storageaccount/test/storage-account.integ.d.ts +9 -0
- package/lib/azure-storageaccount/test/storage-account.integ.js +72 -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/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 +413 -0
- package/lib/core-azure/lib/azapi/azapi-resource.js +468 -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 +62 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-client-config/index.js +161 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource/index.d.ts +327 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource/index.js +521 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-action/index.d.ts +331 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-action/index.js +436 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-id/index.d.ts +116 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-id/index.js +213 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-list/index.d.ts +272 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-list/index.js +368 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-plane-resource/index.d.ts +505 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-plane-resource/index.js +620 -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/provider/index.d.ts +435 -0
- package/lib/core-azure/lib/azapi/providers-azapi/provider/index.js +584 -0
- package/lib/core-azure/lib/azapi/providers-azapi/resource/index.d.ts +675 -0
- package/lib/core-azure/lib/azapi/providers-azapi/resource/index.js +856 -0
- package/lib/core-azure/lib/azapi/providers-azapi/resource-action/index.d.ts +387 -0
- package/lib/core-azure/lib/azapi/providers-azapi/resource-action/index.js +531 -0
- package/lib/core-azure/lib/azapi/providers-azapi/update-resource/index.d.ts +437 -0
- package/lib/core-azure/lib/azapi/providers-azapi/update-resource/index.js +589 -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 +565 -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 +20 -16
- package/lib/index.js +41 -18
- package/lib/testing/index.d.ts +33 -0
- package/lib/testing/index.js +238 -2
- package/lib/util/azureTenantIdHelpers.js +3 -4
- package/lib/util/randomName.js +2 -3
- package/package.json +53 -40
- 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/index.d.ts +0 -1
- package/lib/azure-actiongroup/index.js +0 -18
- package/lib/azure-actiongroup/lib/actiongroup.d.ts +0 -10
- package/lib/azure-actiongroup/lib/actiongroup.js +0 -46
- package/lib/azure-actiongroup/lib/index.d.ts +0 -1
- package/lib/azure-actiongroup/lib/index.js +0 -18
- 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 -172
- package/lib/azure-applicationgateway/lib/gateway.js +0 -123
- 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 -60
- package/lib/azure-applicationinsights/lib/appinsights.js +0 -85
- 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 -41
- package/lib/azure-containerregistry/lib/registry.js +0 -47
- 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 -14
- package/lib/azure-datalake/lib/datalake.js +0 -42
- package/lib/azure-datalake/lib/filesystem.d.ts +0 -19
- package/lib/azure-datalake/lib/filesystem.js +0 -32
- 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 -12
- package/lib/azure-datalake/lib/path.js +0 -14
- 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 -28
- package/lib/azure-eventhub/lib/authorization.js +0 -54
- package/lib/azure-eventhub/lib/cluster.d.ts +0 -27
- package/lib/azure-eventhub/lib/cluster.js +0 -35
- package/lib/azure-eventhub/lib/consumer.d.ts +0 -26
- package/lib/azure-eventhub/lib/consumer.js +0 -31
- 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 -46
- package/lib/azure-eventhub/lib/instance.js +0 -66
- package/lib/azure-eventhub/lib/kusto-connection.d.ts +0 -68
- package/lib/azure-eventhub/lib/kusto-connection.js +0 -35
- package/lib/azure-eventhub/lib/namespace.d.ts +0 -77
- package/lib/azure-eventhub/lib/namespace.js +0 -58
- 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 -39
- package/lib/azure-keyvault/lib/certificate.js +0 -94
- 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 -36
- package/lib/azure-keyvault/lib/key.js +0 -33
- package/lib/azure-keyvault/lib/policy.d.ts +0 -46
- package/lib/azure-keyvault/lib/policy.js +0 -26
- package/lib/azure-keyvault/lib/secret.d.ts +0 -39
- package/lib/azure-keyvault/lib/secret.js +0 -33
- package/lib/azure-keyvault/lib/vault.d.ts +0 -94
- package/lib/azure-keyvault/lib/vault.js +0 -208
- 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 -72
- package/lib/azure-kubernetes/lib/cluster.js +0 -42
- 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 -83
- package/lib/azure-kusto/lib/cluster.js +0 -85
- 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 -59
- package/lib/azure-kusto/lib/database.js +0 -77
- 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 -116
- package/lib/azure-loganalytics/lib/workspace.js +0 -79
- 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/index.d.ts +0 -2
- package/lib/azure-metricalert/index.js +0 -19
- package/lib/azure-metricalert/lib/index.d.ts +0 -1
- package/lib/azure-metricalert/lib/index.js +0 -18
- package/lib/azure-metricalert/lib/metric-alert.d.ts +0 -17
- package/lib/azure-metricalert/lib/metric-alert.js +0 -89
- 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/index.d.ts +0 -1
- package/lib/azure-networksecuritygroup/index.js +0 -18
- package/lib/azure-networksecuritygroup/lib/index.d.ts +0 -2
- package/lib/azure-networksecuritygroup/lib/index.js +0 -19
- 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 -98
- package/lib/azure-networksecuritygroup/lib/securitygroup.js +0 -82
- 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 -144
- package/lib/azure-queryrulealert/lib/query-rule-alert.js +0 -174
- 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 -205
- package/lib/azure-storageaccount/lib/account.js +0 -198
- package/lib/azure-storageaccount/lib/container.d.ts +0 -40
- package/lib/azure-storageaccount/lib/container.js +0 -85
- package/lib/azure-storageaccount/lib/fileshare.d.ts +0 -69
- package/lib/azure-storageaccount/lib/fileshare.js +0 -90
- package/lib/azure-storageaccount/lib/queue.d.ts +0 -6
- package/lib/azure-storageaccount/lib/queue.js +0 -23
- package/lib/azure-storageaccount/lib/table.d.ts +0 -6
- package/lib/azure-storageaccount/lib/table.js +0 -23
- 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/index.d.ts +0 -1
- package/lib/azure-virtualmachine/index.js +0 -18
- 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/index.d.ts +0 -2
- package/lib/azure-virtualmachine/lib/index.js +0 -19
- package/lib/azure-virtualmachine/lib/vm.d.ts +0 -205
- package/lib/azure-virtualmachine/lib/vm.js +0 -207
- 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 -234
- package/lib/azure-virtualmachinescaleset/lib/cluster.js +0 -174
- 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/index.d.ts +0 -1
- package/lib/azure-virtualnetwork/index.js +0 -18
- package/lib/azure-virtualnetwork/lib/index.d.ts +0 -2
- package/lib/azure-virtualnetwork/lib/index.js +0 -19
- package/lib/azure-virtualnetwork/lib/network.d.ts +0 -61
- package/lib/azure-virtualnetwork/lib/network.js +0 -60
- package/lib/azure-virtualnetwork/lib/peering.d.ts +0 -51
- package/lib/azure-virtualnetwork/lib/peering.js +0 -32
- 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 -52
- package/lib/core-azure/lib/diagsettings.js +0 -46
- package/lib/core-azure/lib/rbac.d.ts +0 -32
- package/lib/core-azure/lib/rbac.js +0 -30
- package/lib/core-azure/lib/resource.d.ts +0 -17
- package/lib/core-azure/lib/resource.js +0 -74
- 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
|
@@ -0,0 +1,669 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Core interfaces and type definitions for the AzAPI versioning framework
|
|
3
|
+
*
|
|
4
|
+
* These interfaces provide JSII-compliant definitions for version management,
|
|
5
|
+
* schema transformation, and migration analysis. All interfaces are designed
|
|
6
|
+
* for multi-language code generation supporting TypeScript, Java, Python, and .NET.
|
|
7
|
+
*
|
|
8
|
+
* @packageDocumentation
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Version support level enumeration for API lifecycle management
|
|
12
|
+
*
|
|
13
|
+
* Defines the current support status of an API version to help developers
|
|
14
|
+
* understand maintenance commitments and migration planning.
|
|
15
|
+
*
|
|
16
|
+
* @stability stable
|
|
17
|
+
*/
|
|
18
|
+
export declare class VersionSupportLevel {
|
|
19
|
+
/**
|
|
20
|
+
* Active support - full feature development and bug fixes
|
|
21
|
+
* Recommended for new development
|
|
22
|
+
*/
|
|
23
|
+
static readonly ACTIVE = "active";
|
|
24
|
+
/**
|
|
25
|
+
* Maintenance support - critical bug fixes only, no new features
|
|
26
|
+
* Stable for production use but consider migration planning
|
|
27
|
+
*/
|
|
28
|
+
static readonly MAINTENANCE = "maintenance";
|
|
29
|
+
/**
|
|
30
|
+
* Deprecated - security fixes only, migration recommended
|
|
31
|
+
* Should not be used for new development
|
|
32
|
+
*/
|
|
33
|
+
static readonly DEPRECATED = "deprecated";
|
|
34
|
+
/**
|
|
35
|
+
* Sunset - no longer supported, immediate migration required
|
|
36
|
+
* May be removed in future releases
|
|
37
|
+
*/
|
|
38
|
+
static readonly SUNSET = "sunset";
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Migration effort estimation for version transitions
|
|
42
|
+
*
|
|
43
|
+
* Helps developers understand the complexity of migrating between versions
|
|
44
|
+
* and plan development resources accordingly.
|
|
45
|
+
*
|
|
46
|
+
* @stability stable
|
|
47
|
+
*/
|
|
48
|
+
export declare class MigrationEffort {
|
|
49
|
+
/**
|
|
50
|
+
* Low effort - mostly automatic with minimal manual changes
|
|
51
|
+
* Estimated time: < 1 hour
|
|
52
|
+
*/
|
|
53
|
+
static readonly LOW = "low";
|
|
54
|
+
/**
|
|
55
|
+
* Medium effort - some manual changes required
|
|
56
|
+
* Estimated time: 1-8 hours
|
|
57
|
+
*/
|
|
58
|
+
static readonly MEDIUM = "medium";
|
|
59
|
+
/**
|
|
60
|
+
* High effort - significant manual changes required
|
|
61
|
+
* Estimated time: 1-3 days
|
|
62
|
+
*/
|
|
63
|
+
static readonly HIGH = "high";
|
|
64
|
+
/**
|
|
65
|
+
* Breaking changes - major refactoring required
|
|
66
|
+
* Estimated time: > 3 days
|
|
67
|
+
*/
|
|
68
|
+
static readonly BREAKING = "breaking";
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Property type enumeration for schema definitions
|
|
72
|
+
*
|
|
73
|
+
* Defines the basic data types supported in API schemas for validation
|
|
74
|
+
* and transformation purposes.
|
|
75
|
+
*
|
|
76
|
+
* @stability stable
|
|
77
|
+
*/
|
|
78
|
+
export declare class PropertyType {
|
|
79
|
+
/** String data type */
|
|
80
|
+
static readonly STRING = "string";
|
|
81
|
+
/** Numeric data type (integer or float) */
|
|
82
|
+
static readonly NUMBER = "number";
|
|
83
|
+
/** Boolean data type (true/false) */
|
|
84
|
+
static readonly BOOLEAN = "boolean";
|
|
85
|
+
/** Object data type (key-value pairs) */
|
|
86
|
+
static readonly OBJECT = "object";
|
|
87
|
+
/** Array data type (ordered collection) */
|
|
88
|
+
static readonly ARRAY = "array";
|
|
89
|
+
/** Any data type (no validation) */
|
|
90
|
+
static readonly ANY = "any";
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Validation rule types for property validation
|
|
94
|
+
*
|
|
95
|
+
* Defines the types of validation rules that can be applied to properties
|
|
96
|
+
* for input validation and data integrity.
|
|
97
|
+
*
|
|
98
|
+
* @stability stable
|
|
99
|
+
*/
|
|
100
|
+
export declare class ValidationRuleType {
|
|
101
|
+
/** Property is required and cannot be undefined */
|
|
102
|
+
static readonly REQUIRED = "required";
|
|
103
|
+
/** Validate property type matches expected type */
|
|
104
|
+
static readonly TYPE_CHECK = "type-check";
|
|
105
|
+
/** Validate property value matches regex pattern */
|
|
106
|
+
static readonly PATTERN_MATCH = "pattern-match";
|
|
107
|
+
/** Validate property value is within specified range */
|
|
108
|
+
static readonly VALUE_RANGE = "value-range";
|
|
109
|
+
/** Custom validation function */
|
|
110
|
+
static readonly CUSTOM_VALIDATION = "custom-validation";
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* Breaking change types for migration analysis
|
|
114
|
+
*
|
|
115
|
+
* Categorizes the types of breaking changes that can occur between API versions
|
|
116
|
+
* to enable automated migration analysis and tooling.
|
|
117
|
+
*
|
|
118
|
+
* @stability stable
|
|
119
|
+
*/
|
|
120
|
+
export declare class BreakingChangeType {
|
|
121
|
+
/** Property has been removed from the API */
|
|
122
|
+
static readonly PROPERTY_REMOVED = "property-removed";
|
|
123
|
+
/** Property has been renamed */
|
|
124
|
+
static readonly PROPERTY_RENAMED = "property-renamed";
|
|
125
|
+
/** Property data type has changed */
|
|
126
|
+
static readonly PROPERTY_TYPE_CHANGED = "property-type-changed";
|
|
127
|
+
/** Previously optional property is now required */
|
|
128
|
+
static readonly PROPERTY_REQUIRED = "property-required";
|
|
129
|
+
/** Overall schema structure has been reorganized */
|
|
130
|
+
static readonly SCHEMA_RESTRUCTURED = "schema-restructured";
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* Property transformation types for schema mapping
|
|
134
|
+
*
|
|
135
|
+
* Defines the types of transformations that can be applied when mapping
|
|
136
|
+
* properties between different schema versions.
|
|
137
|
+
*
|
|
138
|
+
* @stability stable
|
|
139
|
+
*/
|
|
140
|
+
export declare class PropertyTransformationType {
|
|
141
|
+
/** Direct copy with no transformation */
|
|
142
|
+
static readonly DIRECT_COPY = "direct-copy";
|
|
143
|
+
/** Map values using a lookup table */
|
|
144
|
+
static readonly VALUE_MAPPING = "value-mapping";
|
|
145
|
+
/** Transform object structure */
|
|
146
|
+
static readonly STRUCTURE_TRANSFORMATION = "structure-transformation";
|
|
147
|
+
/** Apply custom transformation function */
|
|
148
|
+
static readonly CUSTOM_FUNCTION = "custom-function";
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* Validation rule definition for property validation
|
|
152
|
+
*
|
|
153
|
+
* Defines a single validation rule that can be applied to a property
|
|
154
|
+
* to ensure data integrity and provide user feedback.
|
|
155
|
+
*
|
|
156
|
+
* @stability stable
|
|
157
|
+
*/
|
|
158
|
+
export interface ValidationRule {
|
|
159
|
+
/**
|
|
160
|
+
* The type of validation rule to apply
|
|
161
|
+
* Must be one of the ValidationRuleType constants
|
|
162
|
+
*/
|
|
163
|
+
readonly ruleType: string;
|
|
164
|
+
/**
|
|
165
|
+
* The value or parameter for the validation rule
|
|
166
|
+
* Type depends on the validation rule type
|
|
167
|
+
*
|
|
168
|
+
* @example For PATTERN_MATCH: regex pattern string
|
|
169
|
+
* @example For VALUE_RANGE: { min: 0, max: 100 }
|
|
170
|
+
*/
|
|
171
|
+
readonly value?: any;
|
|
172
|
+
/**
|
|
173
|
+
* Custom error message to display when validation fails
|
|
174
|
+
* If not provided, a default message will be generated
|
|
175
|
+
*/
|
|
176
|
+
readonly message?: string;
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* Property definition for API schema
|
|
180
|
+
*
|
|
181
|
+
* Defines the characteristics, validation rules, and metadata for a single
|
|
182
|
+
* property in an API schema. This enables type validation, transformation,
|
|
183
|
+
* and documentation generation.
|
|
184
|
+
*
|
|
185
|
+
* @stability stable
|
|
186
|
+
*/
|
|
187
|
+
export interface PropertyDefinition {
|
|
188
|
+
/**
|
|
189
|
+
* The data type of the property
|
|
190
|
+
* Must be one of the PropertyType constants
|
|
191
|
+
*/
|
|
192
|
+
readonly dataType: string;
|
|
193
|
+
/**
|
|
194
|
+
* Whether this property is required
|
|
195
|
+
* If true, the property must be provided by the user
|
|
196
|
+
*
|
|
197
|
+
* @defaultValue false
|
|
198
|
+
*/
|
|
199
|
+
readonly required?: boolean;
|
|
200
|
+
/**
|
|
201
|
+
* Default value to use if property is not provided
|
|
202
|
+
* Type must match the property type
|
|
203
|
+
*/
|
|
204
|
+
readonly defaultValue?: any;
|
|
205
|
+
/**
|
|
206
|
+
* Whether this property is deprecated
|
|
207
|
+
* If true, usage warnings will be generated
|
|
208
|
+
*
|
|
209
|
+
* @defaultValue false
|
|
210
|
+
*/
|
|
211
|
+
readonly deprecated?: boolean;
|
|
212
|
+
/**
|
|
213
|
+
* The API version in which this property was added
|
|
214
|
+
* Used for compatibility analysis and migration planning
|
|
215
|
+
*
|
|
216
|
+
* @example "2024-01-01"
|
|
217
|
+
*/
|
|
218
|
+
readonly addedInVersion?: string;
|
|
219
|
+
/**
|
|
220
|
+
* The API version in which this property was removed
|
|
221
|
+
* Used for compatibility analysis and migration planning
|
|
222
|
+
*
|
|
223
|
+
* @example "2025-01-01"
|
|
224
|
+
*/
|
|
225
|
+
readonly removedInVersion?: string;
|
|
226
|
+
/**
|
|
227
|
+
* Human-readable description of the property
|
|
228
|
+
* Used for documentation generation and IDE support
|
|
229
|
+
*/
|
|
230
|
+
readonly description?: string;
|
|
231
|
+
/**
|
|
232
|
+
* Array of validation rules to apply to this property
|
|
233
|
+
* Rules are evaluated in order and all must pass
|
|
234
|
+
*/
|
|
235
|
+
readonly validation?: ValidationRule[];
|
|
236
|
+
}
|
|
237
|
+
/**
|
|
238
|
+
* Property validation configuration
|
|
239
|
+
*
|
|
240
|
+
* Defines validation rules that apply to specific properties,
|
|
241
|
+
* enabling complex validation scenarios and cross-property validation.
|
|
242
|
+
*
|
|
243
|
+
* @stability stable
|
|
244
|
+
*/
|
|
245
|
+
export interface PropertyValidation {
|
|
246
|
+
/**
|
|
247
|
+
* The name of the property this validation applies to
|
|
248
|
+
*/
|
|
249
|
+
readonly property: string;
|
|
250
|
+
/**
|
|
251
|
+
* Array of validation rules to apply to this property
|
|
252
|
+
* Rules are evaluated in order and all must pass
|
|
253
|
+
*/
|
|
254
|
+
readonly rules: ValidationRule[];
|
|
255
|
+
}
|
|
256
|
+
/**
|
|
257
|
+
* Property transformation interface for schema mapping
|
|
258
|
+
*
|
|
259
|
+
* Defines how properties should be transformed when mapping between
|
|
260
|
+
* different schema versions or formats.
|
|
261
|
+
*
|
|
262
|
+
* @stability stable
|
|
263
|
+
*/
|
|
264
|
+
export interface PropertyTransformer {
|
|
265
|
+
/**
|
|
266
|
+
* The type of transformation to apply
|
|
267
|
+
* Must be one of the PropertyTransformationType constants
|
|
268
|
+
*/
|
|
269
|
+
readonly transformationType: string;
|
|
270
|
+
/**
|
|
271
|
+
* Configuration object for the transformation
|
|
272
|
+
* Structure depends on the transformation type
|
|
273
|
+
*/
|
|
274
|
+
readonly config?: any;
|
|
275
|
+
}
|
|
276
|
+
/**
|
|
277
|
+
* Property mapping definition
|
|
278
|
+
*
|
|
279
|
+
* Defines how a property should be mapped from source to target schema,
|
|
280
|
+
* including any transformations or default values to apply.
|
|
281
|
+
*
|
|
282
|
+
* @stability stable
|
|
283
|
+
*/
|
|
284
|
+
export interface PropertyMapping {
|
|
285
|
+
/**
|
|
286
|
+
* The name of the source property
|
|
287
|
+
*/
|
|
288
|
+
readonly sourceProperty: string;
|
|
289
|
+
/**
|
|
290
|
+
* The name of the target property
|
|
291
|
+
*/
|
|
292
|
+
readonly targetProperty: string;
|
|
293
|
+
/**
|
|
294
|
+
* Optional transformer to apply during mapping
|
|
295
|
+
*/
|
|
296
|
+
readonly transformer?: PropertyTransformer;
|
|
297
|
+
/**
|
|
298
|
+
* Default value to use if source property is not provided
|
|
299
|
+
*/
|
|
300
|
+
readonly defaultValue?: any;
|
|
301
|
+
/**
|
|
302
|
+
* Whether this property is required in the target schema
|
|
303
|
+
*
|
|
304
|
+
* @defaultValue false
|
|
305
|
+
*/
|
|
306
|
+
readonly required?: boolean;
|
|
307
|
+
}
|
|
308
|
+
/**
|
|
309
|
+
* API Schema definition using TypeScript objects
|
|
310
|
+
*
|
|
311
|
+
* Defines the complete schema for an API version including all properties,
|
|
312
|
+
* validation rules, and transformation mappings. This schema-driven approach
|
|
313
|
+
* enables automatic validation, transformation, and multi-language support.
|
|
314
|
+
*
|
|
315
|
+
* @stability stable
|
|
316
|
+
*/
|
|
317
|
+
export interface ApiSchema {
|
|
318
|
+
/**
|
|
319
|
+
* The Azure resource type this schema applies to
|
|
320
|
+
*
|
|
321
|
+
* @example "Microsoft.Resources/resourceGroups"
|
|
322
|
+
*/
|
|
323
|
+
readonly resourceType: string;
|
|
324
|
+
/**
|
|
325
|
+
* The API version this schema represents
|
|
326
|
+
*
|
|
327
|
+
* @example "2024-11-01"
|
|
328
|
+
*/
|
|
329
|
+
readonly version: string;
|
|
330
|
+
/**
|
|
331
|
+
* Dictionary of property definitions keyed by property name
|
|
332
|
+
* Each property defines its type, validation, and metadata
|
|
333
|
+
*
|
|
334
|
+
* @example { "location": { type: "string", required: true } }
|
|
335
|
+
*/
|
|
336
|
+
readonly properties: {
|
|
337
|
+
[key: string]: PropertyDefinition;
|
|
338
|
+
};
|
|
339
|
+
/**
|
|
340
|
+
* Array of property names that are required
|
|
341
|
+
* Properties listed here must be provided by the user
|
|
342
|
+
*/
|
|
343
|
+
readonly required: string[];
|
|
344
|
+
/**
|
|
345
|
+
* Array of property names that are optional
|
|
346
|
+
* Used for documentation and validation optimization
|
|
347
|
+
*/
|
|
348
|
+
readonly optional?: string[];
|
|
349
|
+
/**
|
|
350
|
+
* Array of property names that are deprecated
|
|
351
|
+
* Usage of these properties will generate warnings
|
|
352
|
+
*/
|
|
353
|
+
readonly deprecated?: string[];
|
|
354
|
+
/**
|
|
355
|
+
* Property transformation rules for schema mapping
|
|
356
|
+
* Maps input property names to target property names
|
|
357
|
+
*
|
|
358
|
+
* @example { "oldName": "newName" }
|
|
359
|
+
*/
|
|
360
|
+
readonly transformationRules?: {
|
|
361
|
+
[key: string]: string;
|
|
362
|
+
};
|
|
363
|
+
/**
|
|
364
|
+
* Property-specific validation rules
|
|
365
|
+
* Applied in addition to individual property validation
|
|
366
|
+
*/
|
|
367
|
+
readonly validationRules?: PropertyValidation[];
|
|
368
|
+
}
|
|
369
|
+
/**
|
|
370
|
+
* Breaking change documentation
|
|
371
|
+
*
|
|
372
|
+
* Documents a breaking change between API versions to enable automated
|
|
373
|
+
* migration analysis and provide guidance to developers.
|
|
374
|
+
*
|
|
375
|
+
* @stability stable
|
|
376
|
+
*/
|
|
377
|
+
export interface BreakingChange {
|
|
378
|
+
/**
|
|
379
|
+
* The type of breaking change
|
|
380
|
+
* Must be one of the BreakingChangeType constants
|
|
381
|
+
*/
|
|
382
|
+
readonly changeType: string;
|
|
383
|
+
/**
|
|
384
|
+
* The property name affected by the breaking change
|
|
385
|
+
* Omit for schema-level changes
|
|
386
|
+
*/
|
|
387
|
+
readonly property?: string;
|
|
388
|
+
/**
|
|
389
|
+
* The old value or format (for reference)
|
|
390
|
+
* Helps developers understand what changed
|
|
391
|
+
*/
|
|
392
|
+
readonly oldValue?: string;
|
|
393
|
+
/**
|
|
394
|
+
* The new value or format
|
|
395
|
+
* Shows developers what to change to
|
|
396
|
+
*/
|
|
397
|
+
readonly newValue?: string;
|
|
398
|
+
/**
|
|
399
|
+
* Human-readable description of the breaking change
|
|
400
|
+
* Explains the impact and reasoning behind the change
|
|
401
|
+
*/
|
|
402
|
+
readonly description: string;
|
|
403
|
+
/**
|
|
404
|
+
* Guidance on how to migrate from old to new format
|
|
405
|
+
* Should include code examples where applicable
|
|
406
|
+
*/
|
|
407
|
+
readonly migrationPath?: string;
|
|
408
|
+
}
|
|
409
|
+
/**
|
|
410
|
+
* Version changelog entry
|
|
411
|
+
*
|
|
412
|
+
* Documents changes made in a specific version for transparency
|
|
413
|
+
* and to help developers understand version evolution.
|
|
414
|
+
*
|
|
415
|
+
* @stability stable
|
|
416
|
+
*/
|
|
417
|
+
export interface VersionChangeLog {
|
|
418
|
+
/**
|
|
419
|
+
* The type of change (added, changed, deprecated, removed, fixed)
|
|
420
|
+
*/
|
|
421
|
+
readonly changeType: string;
|
|
422
|
+
/**
|
|
423
|
+
* Brief description of the change
|
|
424
|
+
*/
|
|
425
|
+
readonly description: string;
|
|
426
|
+
/**
|
|
427
|
+
* Property or feature affected by the change
|
|
428
|
+
*/
|
|
429
|
+
readonly affectedProperty?: string;
|
|
430
|
+
/**
|
|
431
|
+
* Whether this change is breaking
|
|
432
|
+
*
|
|
433
|
+
* @defaultValue false
|
|
434
|
+
*/
|
|
435
|
+
readonly breaking?: boolean;
|
|
436
|
+
}
|
|
437
|
+
/**
|
|
438
|
+
* Migration analysis result
|
|
439
|
+
*
|
|
440
|
+
* Results of analyzing the migration path between two API versions.
|
|
441
|
+
* Provides compatibility assessment, effort estimation, and detailed
|
|
442
|
+
* guidance for version transitions.
|
|
443
|
+
*
|
|
444
|
+
* @stability stable
|
|
445
|
+
*/
|
|
446
|
+
export interface MigrationAnalysis {
|
|
447
|
+
/**
|
|
448
|
+
* Source API version being migrated from
|
|
449
|
+
*
|
|
450
|
+
* @example "2024-01-01"
|
|
451
|
+
*/
|
|
452
|
+
readonly fromVersion: string;
|
|
453
|
+
/**
|
|
454
|
+
* Target API version being migrated to
|
|
455
|
+
*
|
|
456
|
+
* @example "2024-11-01"
|
|
457
|
+
*/
|
|
458
|
+
readonly toVersion: string;
|
|
459
|
+
/**
|
|
460
|
+
* Whether the migration is backward compatible
|
|
461
|
+
* If true, migration should be straightforward
|
|
462
|
+
*/
|
|
463
|
+
readonly compatible: boolean;
|
|
464
|
+
/**
|
|
465
|
+
* Array of breaking changes that affect the migration
|
|
466
|
+
* Each change includes guidance on how to handle it
|
|
467
|
+
*/
|
|
468
|
+
readonly breakingChanges: BreakingChange[];
|
|
469
|
+
/**
|
|
470
|
+
* Array of non-breaking warnings about the migration
|
|
471
|
+
* May include deprecation notices or recommendations
|
|
472
|
+
*/
|
|
473
|
+
readonly warnings: string[];
|
|
474
|
+
/**
|
|
475
|
+
* Estimated effort required for the migration
|
|
476
|
+
* Must be one of the MigrationEffort constants
|
|
477
|
+
*/
|
|
478
|
+
readonly estimatedEffort: string;
|
|
479
|
+
/**
|
|
480
|
+
* Whether automatic upgrade tooling can handle this migration
|
|
481
|
+
* If true, migration can be largely automated
|
|
482
|
+
*/
|
|
483
|
+
readonly automaticUpgradePossible: boolean;
|
|
484
|
+
}
|
|
485
|
+
/**
|
|
486
|
+
* Version configuration interface
|
|
487
|
+
*
|
|
488
|
+
* Complete configuration for an API version including schema, lifecycle
|
|
489
|
+
* information, and migration metadata. This is the primary interface
|
|
490
|
+
* for version management and automated tooling.
|
|
491
|
+
*
|
|
492
|
+
* @stability stable
|
|
493
|
+
*/
|
|
494
|
+
export interface VersionConfig {
|
|
495
|
+
/**
|
|
496
|
+
* The API version string
|
|
497
|
+
*
|
|
498
|
+
* @example "2024-11-01"
|
|
499
|
+
*/
|
|
500
|
+
readonly version: string;
|
|
501
|
+
/**
|
|
502
|
+
* The complete API schema for this version
|
|
503
|
+
* Defines all properties, validation, and transformation rules
|
|
504
|
+
*/
|
|
505
|
+
readonly schema: ApiSchema;
|
|
506
|
+
/**
|
|
507
|
+
* Current support level for this version
|
|
508
|
+
* Must be one of the VersionSupportLevel constants
|
|
509
|
+
*/
|
|
510
|
+
readonly supportLevel: string;
|
|
511
|
+
/**
|
|
512
|
+
* Date when this version was released
|
|
513
|
+
* Used for lifecycle management and compatibility analysis
|
|
514
|
+
*
|
|
515
|
+
* @example "2024-11-01"
|
|
516
|
+
*/
|
|
517
|
+
readonly releaseDate: string;
|
|
518
|
+
/**
|
|
519
|
+
* Date when this version was deprecated (if applicable)
|
|
520
|
+
* Indicates when migration planning should begin
|
|
521
|
+
*
|
|
522
|
+
* @example "2025-11-01"
|
|
523
|
+
*/
|
|
524
|
+
readonly deprecationDate?: string;
|
|
525
|
+
/**
|
|
526
|
+
* Date when this version will be sunset (if known)
|
|
527
|
+
* Indicates deadline for migration completion
|
|
528
|
+
*
|
|
529
|
+
* @example "2026-11-01"
|
|
530
|
+
*/
|
|
531
|
+
readonly sunsetDate?: string;
|
|
532
|
+
/**
|
|
533
|
+
* Array of breaking changes introduced in this version
|
|
534
|
+
* Used for migration analysis and automated tooling
|
|
535
|
+
*/
|
|
536
|
+
readonly breakingChanges?: BreakingChange[];
|
|
537
|
+
/**
|
|
538
|
+
* URL or path to detailed migration guide
|
|
539
|
+
* Provides comprehensive migration instructions
|
|
540
|
+
*
|
|
541
|
+
* @example "/docs/migration-guides/v2024-11-01"
|
|
542
|
+
*/
|
|
543
|
+
readonly migrationGuide?: string;
|
|
544
|
+
/**
|
|
545
|
+
* Array of changes made in this version
|
|
546
|
+
* Provides transparency and helps with troubleshooting
|
|
547
|
+
*/
|
|
548
|
+
readonly changeLog?: VersionChangeLog[];
|
|
549
|
+
}
|
|
550
|
+
/**
|
|
551
|
+
* Validation result interface
|
|
552
|
+
*
|
|
553
|
+
* Results of validating properties against a schema.
|
|
554
|
+
* Provides detailed error and warning information for debugging
|
|
555
|
+
* and user feedback.
|
|
556
|
+
*
|
|
557
|
+
* @stability stable
|
|
558
|
+
*/
|
|
559
|
+
export interface ValidationResult {
|
|
560
|
+
/**
|
|
561
|
+
* Whether validation passed
|
|
562
|
+
* If false, the errors array will contain details
|
|
563
|
+
*/
|
|
564
|
+
readonly valid: boolean;
|
|
565
|
+
/**
|
|
566
|
+
* Array of validation error messages
|
|
567
|
+
* Empty if validation passed
|
|
568
|
+
*/
|
|
569
|
+
readonly errors: string[];
|
|
570
|
+
/**
|
|
571
|
+
* Array of validation warning messages
|
|
572
|
+
* Non-blocking issues that should be addressed
|
|
573
|
+
*/
|
|
574
|
+
readonly warnings: string[];
|
|
575
|
+
/**
|
|
576
|
+
* Property-specific error messages
|
|
577
|
+
* Maps property names to arrays of error messages
|
|
578
|
+
*/
|
|
579
|
+
readonly propertyErrors?: {
|
|
580
|
+
[key: string]: string[];
|
|
581
|
+
};
|
|
582
|
+
}
|
|
583
|
+
/**
|
|
584
|
+
* Version lifecycle phases
|
|
585
|
+
*
|
|
586
|
+
* Defines the phases in an API version's lifecycle from initial
|
|
587
|
+
* development through sunset.
|
|
588
|
+
*
|
|
589
|
+
* @stability stable
|
|
590
|
+
*/
|
|
591
|
+
export declare class VersionPhase {
|
|
592
|
+
/** Preview/beta phase - not recommended for production */
|
|
593
|
+
static readonly PREVIEW = "preview";
|
|
594
|
+
/** Active phase - fully supported and recommended */
|
|
595
|
+
static readonly ACTIVE = "active";
|
|
596
|
+
/** Maintenance phase - bug fixes only */
|
|
597
|
+
static readonly MAINTENANCE = "maintenance";
|
|
598
|
+
/** Deprecated phase - migration recommended */
|
|
599
|
+
static readonly DEPRECATED = "deprecated";
|
|
600
|
+
/** Sunset phase - no longer supported */
|
|
601
|
+
static readonly SUNSET = "sunset";
|
|
602
|
+
}
|
|
603
|
+
/**
|
|
604
|
+
* Version lifecycle management
|
|
605
|
+
*
|
|
606
|
+
* Tracks the current phase and transition timeline for an API version
|
|
607
|
+
* to enable proactive lifecycle management.
|
|
608
|
+
*
|
|
609
|
+
* @stability stable
|
|
610
|
+
*/
|
|
611
|
+
export interface VersionLifecycle {
|
|
612
|
+
/**
|
|
613
|
+
* The API version string
|
|
614
|
+
*/
|
|
615
|
+
readonly version: string;
|
|
616
|
+
/**
|
|
617
|
+
* Current lifecycle phase
|
|
618
|
+
* Must be one of the VersionPhase constants
|
|
619
|
+
*/
|
|
620
|
+
readonly phase: string;
|
|
621
|
+
/**
|
|
622
|
+
* Date when the current phase was entered
|
|
623
|
+
*
|
|
624
|
+
* @example "2024-11-01"
|
|
625
|
+
*/
|
|
626
|
+
readonly transitionDate?: string;
|
|
627
|
+
/**
|
|
628
|
+
* Next planned phase in the lifecycle
|
|
629
|
+
* Must be one of the VersionPhase constants
|
|
630
|
+
*/
|
|
631
|
+
readonly nextPhase?: string;
|
|
632
|
+
/**
|
|
633
|
+
* Estimated date when version will be sunset
|
|
634
|
+
* Used for long-term planning
|
|
635
|
+
*
|
|
636
|
+
* @example "2026-11-01"
|
|
637
|
+
*/
|
|
638
|
+
readonly estimatedSunsetDate?: string;
|
|
639
|
+
}
|
|
640
|
+
/**
|
|
641
|
+
* Version selection constraints
|
|
642
|
+
*
|
|
643
|
+
* Defines constraints for automatic version selection to help
|
|
644
|
+
* choose the most appropriate version based on requirements.
|
|
645
|
+
*
|
|
646
|
+
* @stability stable
|
|
647
|
+
*/
|
|
648
|
+
export interface VersionConstraints {
|
|
649
|
+
/**
|
|
650
|
+
* Required support level
|
|
651
|
+
* Must be one of the VersionSupportLevel constants
|
|
652
|
+
*/
|
|
653
|
+
readonly supportLevel?: string;
|
|
654
|
+
/**
|
|
655
|
+
* Minimum release date for version selection
|
|
656
|
+
* Versions older than this date will be excluded
|
|
657
|
+
*/
|
|
658
|
+
readonly notOlderThan?: Date;
|
|
659
|
+
/**
|
|
660
|
+
* Array of required features that the version must support
|
|
661
|
+
*/
|
|
662
|
+
readonly requiredFeatures?: string[];
|
|
663
|
+
/**
|
|
664
|
+
* Whether to exclude deprecated versions
|
|
665
|
+
*
|
|
666
|
+
* @defaultValue true
|
|
667
|
+
*/
|
|
668
|
+
readonly excludeDeprecated?: boolean;
|
|
669
|
+
}
|