From 21198a8b7d04f922c4612d4953001c4a5b26be55 Mon Sep 17 00:00:00 2001 From: Bevan Arps Date: Thu, 30 Jan 2025 21:35:17 +0000 Subject: [PATCH 1/6] Update report generator --- .../pipeline/report_resource_versions.go | 158 +++++++++++++----- 1 file changed, 120 insertions(+), 38 deletions(-) diff --git a/v2/tools/generator/internal/codegen/pipeline/report_resource_versions.go b/v2/tools/generator/internal/codegen/pipeline/report_resource_versions.go index 1955b007529..bbd20c02b3e 100644 --- a/v2/tools/generator/internal/codegen/pipeline/report_resource_versions.go +++ b/v2/tools/generator/internal/codegen/pipeline/report_resource_versions.go @@ -14,10 +14,10 @@ import ( "net/url" "os" "path/filepath" + "slices" "strings" "github.com/rotisserie/eris" - "golang.org/x/exp/slices" "golang.org/x/text/cases" "golang.org/x/text/language" kerrors "k8s.io/apimachinery/pkg/util/errors" @@ -354,6 +354,12 @@ func (report *ResourceVersionsReport) WriteGroupResourcesReportToBuffer( return report.writeGroupSections(info, items, buffer) } +type resourceVersionsReportSection struct { + id string + title string + kinds set.Set[ResourceVersionsReportResourceItem] +} + func (report *ResourceVersionsReport) writeGroupSections( group *ResourceVersionsReportGroupInfo, kinds set.Set[ResourceVersionsReportResourceItem], @@ -362,49 +368,79 @@ func (report *ResourceVersionsReport) writeGroupSections( // By default, we treat everything as released releasedResources := kinds - // Pull out any deprecated resources - deprecatedResources := releasedResources.Where(report.isDeprecatedResource) - releasedResources = releasedResources.Except(deprecatedResources) - - // Pull out any prerelease resources - prereleaseResources := releasedResources.Where(report.isUnreleasedResource) - releasedResources = releasedResources.Except(prereleaseResources) - - // First list prerelease reources, if any - err := report.writeSection( - group, - "prerelease", - "### Next Release", - prereleaseResources, - buffer) - if err != nil { - return eris.Wrapf(err, "writing prerelease resources for group %s", group) + createSection := func( + id string, + title string, + kinds set.Set[ResourceVersionsReportResourceItem], + ) resourceVersionsReportSection { + releasedResources = releasedResources.Except(kinds) + + return resourceVersionsReportSection{ + id: id, + title: title, + kinds: kinds, + } } - // Prerelease may have no usage, but we don't want that to trigger an error - report.typoAdvisor.AddTerm("prerelease") + // Create a section for all deprecated resources (this is commonly empty) + deprecatedSection := createSection( + "deprecated", + "Deprecated", + releasedResources.Where(report.isDeprecatedResource)) - err = report.writeSection( - group, + // Create a section for all prerelease resources (those not yet released) + prereleaseSection := createSection( + "prerelease", + "Next Release", + releasedResources.Where(report.isUnreleasedResource)) + + // Create a section for the latest versions of all supported resources + latestSection := createSection( + "latest", + "Latest Released Versions", + findRecommendedReleases(releasedResources)) + + // Create a section for all other supported versions + otherSection := createSection( + "other", + "Other Supported Versions", + releasedResources) + + // Create an empty section for all released resources + // (This will initially be empty, but ) + releasedSection := createSection( "released", - "### Released", - releasedResources, - buffer) - if err != nil { - return eris.Wrapf(err, "writing released resources for group %s", group) - } - - err = report.writeSection( - group, - "deprecated", - "### Deprecated", - deprecatedResources, - buffer) - if err != nil { - return eris.Wrapf(err, "writing deprecated resources for group %s", group) + "Released", + set.Make[ResourceVersionsReportResourceItem]()) + + // If every resource is the latest version, move them to the released section + if len(otherSection.kinds) == 0 { + releasedSection.kinds = latestSection.kinds + latestSection.kinds = nil + } + + sections := []resourceVersionsReportSection{ + prereleaseSection, + latestSection, + otherSection, + releasedSection, + deprecatedSection, + } + + for _, section := range sections { + err := report.writeSection( + group, + section.id, + "### "+section.title, + section.kinds, + buffer) + if err != nil { + return eris.Wrapf(err, "writing section %s for group %s", section.id, group) + } } - // Deprecated fragment may have no usage, but we don't want that to trigger an error + // Always flag the prerelease and deprecated fragments as used + report.typoAdvisor.AddTerm("prerelease") report.typoAdvisor.AddTerm("deprecated") return nil @@ -435,6 +471,52 @@ func (report *ResourceVersionsReport) isDeprecatedResource(item ResourceVersions return result } +// findRecommendedReleases selects a single version of each resource to recommend. +// Stable versions are preferred over preview. +// Later versions are preferred over earlier. +func findRecommendedReleases( + kinds set.Set[ResourceVersionsReportResourceItem], +) set.Set[ResourceVersionsReportResourceItem] { + index := make(map[string]ResourceVersionsReportResourceItem) + + for _, item := range kinds.Values() { + known, ok := index[item.name.Name()] + if !ok { + // First time we've seen this resource, use this version + index[item.name.Name()] = item + continue + } + + knownVersion := known.name.InternalPackageReference() + itemVersion := item.name.InternalPackageReference() + + if knownVersion.IsPreview() && !itemVersion.IsPreview() { + // Prefer stable versions over preview, so replace the preview version + index[item.name.Name()] = item + continue + } + + if !knownVersion.IsPreview() && itemVersion.IsPreview() { + // Prefer stable versions over preview, so keep what we have + continue + } + + // Both are either preview or stable, so compare versions + if astmodel.ComparePathAndVersion(itemVersion.Version(), knownVersion.Version()) > 0 { + // Prefer later versions + index[item.name.Name()] = item + } + } + + result := set.Make[ResourceVersionsReportResourceItem]() + + for _, item := range index { + result.Add(item) + } + + return result +} + // writeSection writes a section to the buffer, consisting of a header, description, and a table listing resources. func (report *ResourceVersionsReport) writeSection( info *ResourceVersionsReportGroupInfo, From d15eb817ebf515f1daf36328d97baa55190c7611 Mon Sep 17 00:00:00 2001 From: Bevan Arps Date: Thu, 30 Jan 2025 21:35:38 +0000 Subject: [PATCH 2/6] Update documentation fragments for report --- docs/v2/azure/supported-resources/latest.md | 1 + docs/v2/azure/supported-resources/other.md | 1 + docs/v2/azure/supported-resources/released.md | 1 - 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 docs/v2/azure/supported-resources/latest.md create mode 100644 docs/v2/azure/supported-resources/other.md diff --git a/docs/v2/azure/supported-resources/latest.md b/docs/v2/azure/supported-resources/latest.md new file mode 100644 index 00000000000..1bc1d907781 --- /dev/null +++ b/docs/v2/azure/supported-resources/latest.md @@ -0,0 +1 @@ +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. diff --git a/docs/v2/azure/supported-resources/other.md b/docs/v2/azure/supported-resources/other.md new file mode 100644 index 00000000000..31f78e238d0 --- /dev/null +++ b/docs/v2/azure/supported-resources/other.md @@ -0,0 +1 @@ +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. diff --git a/docs/v2/azure/supported-resources/released.md b/docs/v2/azure/supported-resources/released.md index d4c0beb35b5..a3dc8ab665c 100644 --- a/docs/v2/azure/supported-resources/released.md +++ b/docs/v2/azure/supported-resources/released.md @@ -1,2 +1 @@ These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - From 9e0ca63eb50f42a74e22c9dc8ea5e526b7eecb86 Mon Sep 17 00:00:00 2001 From: Bevan Arps Date: Fri, 31 Jan 2025 10:36:28 +1300 Subject: [PATCH 3/6] Update docs --- docs/hugo/content/reference/_index.md | 415 ++++++++++-------- .../reference/alertsmanagement/_index.md | 1 - .../content/reference/apimanagement/_index.md | 37 +- .../reference/appconfiguration/_index.md | 1 - .../content/reference/authorization/_index.md | 13 +- docs/hugo/content/reference/batch/_index.md | 1 - docs/hugo/content/reference/cache/_index.md | 21 +- docs/hugo/content/reference/cdn/_index.md | 13 +- docs/hugo/content/reference/compute/_index.md | 25 +- .../reference/containerinstance/_index.md | 1 - .../reference/containerregistry/_index.md | 1 - .../reference/containerservice/_index.md | 23 +- .../content/reference/datafactory/_index.md | 1 - .../reference/dataprotection/_index.md | 15 +- .../content/reference/dbformariadb/_index.md | 1 - .../content/reference/dbformysql/_index.md | 21 +- .../reference/dbforpostgresql/_index.md | 19 +- docs/hugo/content/reference/devices/_index.md | 1 - .../content/reference/documentdb/_index.md | 35 +- .../content/reference/eventgrid/_index.md | 1 - .../hugo/content/reference/eventhub/_index.md | 1 - .../hugo/content/reference/insights/_index.md | 13 +- .../hugo/content/reference/keyvault/_index.md | 11 +- .../kubernetesconfiguration/_index.md | 1 - .../machinelearningservices/_index.md | 15 +- .../reference/managedidentity/_index.md | 13 +- docs/hugo/content/reference/monitor/_index.md | 1 - .../reference/network.frontdoor/_index.md | 1 - docs/hugo/content/reference/network/_index.md | 65 +-- .../reference/operationalinsights/_index.md | 1 - .../reference/redhatopenshift/_index.md | 1 - .../content/reference/resources/_index.md | 1 - docs/hugo/content/reference/search/_index.md | 1 - .../content/reference/servicebus/_index.md | 21 +- .../reference/signalrservice/_index.md | 1 - docs/hugo/content/reference/sql/_index.md | 1 - docs/hugo/content/reference/storage/_index.md | 29 +- .../content/reference/subscription/_index.md | 1 - docs/hugo/content/reference/synapse/_index.md | 1 - docs/hugo/content/reference/web/_index.md | 1 - 40 files changed, 476 insertions(+), 350 deletions(-) diff --git a/docs/hugo/content/reference/_index.md b/docs/hugo/content/reference/_index.md index 61e46b1ed86..45b01be86eb 100644 --- a/docs/hugo/content/reference/_index.md +++ b/docs/hugo/content/reference/_index.md @@ -21,7 +21,6 @@ To install the CRDs for these resources, your ASO configuration must include `al ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------| | [PrometheusRuleGroup](https://azure.github.io/azure-service-operator/reference/alertsmanagement/v1api20230301/#alertsmanagement.azure.com/v1api20230301.PrometheusRuleGroup) | 2023-03-01 | v1api20230301 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/alertsmanagement/v1api20230301/v1api20230301_prometheusrulegroup.yaml) | @@ -31,40 +30,45 @@ These resource(s) are available for use in the current release of ASO. Different To install the CRDs for these resources, your ASO configuration must include `apimanagement.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - +### Latest Released Versions + +These resource(s) are the latest versions available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| [Api](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Api) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_api.yaml) | +| [ApiVersionSet](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.ApiVersionSet) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_apiversionset.yaml) | +| [AuthorizationProvider](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.AuthorizationProvider) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_authorizationprovider.yaml) | +| [AuthorizationProvidersAuthorization](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.AuthorizationProvidersAuthorization) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_authorizationprovidersauthorization.yaml) | +| [AuthorizationProvidersAuthorizationsAccessPolicy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.AuthorizationProvidersAuthorizationsAccessPolicy) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_authorizationprovidersauthorizationsaccesspolicy.yaml) | +| [Backend](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Backend) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_backend.yaml) | +| [NamedValue](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.NamedValue) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_namedvalue.yaml) | +| [Policy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Policy) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_policy.yaml) | +| [PolicyFragment](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.PolicyFragment) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_policyfragment.yaml) | +| [Product](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Product) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_product.yaml) | +| [ProductApi](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.ProductApi) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_productapi.yaml) | +| [ProductPolicy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.ProductPolicy) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_productpolicy.yaml) | +| [Service](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Service) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_service.yaml) | +| [Subscription](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Subscription) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_subscription.yaml) | + +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Api](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.Api) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_api.yaml) | -| [Api](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Api) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_api.yaml) | | [ApiVersionSet](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.ApiVersionSet) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_apiversionset.yaml) | -| [ApiVersionSet](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.ApiVersionSet) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_apiversionset.yaml) | | [AuthorizationProvider](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.AuthorizationProvider) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_authorizationprovider.yaml) | -| [AuthorizationProvider](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.AuthorizationProvider) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_authorizationprovider.yaml) | | [AuthorizationProvidersAuthorization](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.AuthorizationProvidersAuthorization) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_authorizationprovidersauthorization.yaml) | -| [AuthorizationProvidersAuthorization](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.AuthorizationProvidersAuthorization) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_authorizationprovidersauthorization.yaml) | | [AuthorizationProvidersAuthorizationsAccessPolicy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.AuthorizationProvidersAuthorizationsAccessPolicy) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_authorizationprovidersauthorizationsaccesspolicy.yaml) | -| [AuthorizationProvidersAuthorizationsAccessPolicy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.AuthorizationProvidersAuthorizationsAccessPolicy) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_authorizationprovidersauthorizationsaccesspolicy.yaml) | | [Backend](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.Backend) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_backend.yaml) | -| [Backend](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Backend) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_backend.yaml) | | [NamedValue](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.NamedValue) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_namedvalue.yaml) | -| [NamedValue](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.NamedValue) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_namedvalue.yaml) | | [Policy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.Policy) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_policy.yaml) | -| [Policy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Policy) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_policy.yaml) | | [PolicyFragment](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.PolicyFragment) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_policyfragment.yaml) | -| [PolicyFragment](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.PolicyFragment) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_policyfragment.yaml) | | [Product](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.Product) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_product.yaml) | -| [Product](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Product) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_product.yaml) | | [ProductApi](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.ProductApi) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_productapi.yaml) | -| [ProductApi](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.ProductApi) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_productapi.yaml) | | [ProductPolicy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.ProductPolicy) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_productpolicy.yaml) | -| [ProductPolicy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.ProductPolicy) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_productpolicy.yaml) | | [Service](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.Service) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_service.yaml) | -| [Service](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Service) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_service.yaml) | | [Subscription](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.Subscription) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_subscription.yaml) | -| [Subscription](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Subscription) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_subscription.yaml) | ## AppConfiguration @@ -73,7 +77,6 @@ To install the CRDs for these resources, your ASO configuration must include `ap ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------| | [ConfigurationStore](https://azure.github.io/azure-service-operator/reference/appconfiguration/v1api20220501/#appconfiguration.azure.com/v1api20220501.ConfigurationStore) | 2022-05-01 | v1api20220501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/appconfiguration/v1api/v1api20220501_configurationstore.yaml) | @@ -82,15 +85,20 @@ These resource(s) are available for use in the current release of ASO. Different To install the CRDs for these resources, your ASO configuration must include `authorization.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released +### Latest Released Versions -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +These resource(s) are the latest versions available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|--------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------| +| [RoleAssignment](https://azure.github.io/azure-service-operator/reference/authorization/v1api20220401/#authorization.azure.com/v1api20220401.RoleAssignment) | 2022-04-01 | v1api20220401 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/authorization/v1api20220401/v1api20220401_roleassignment.yaml) | +| [RoleDefinition](https://azure.github.io/azure-service-operator/reference/authorization/v1api20220401/#authorization.azure.com/v1api20220401.RoleDefinition) | 2022-04-01 | v1api20220401 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/authorization/v1api20220401/v1api20220401_roledefinition.yaml) | + +### Other Supported Versions +These are older versions of resourced still available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|----------------------------------------------------------------------------------------------------------------------------------------------------------| -| [RoleAssignment](https://azure.github.io/azure-service-operator/reference/authorization/v1api20220401/#authorization.azure.com/v1api20220401.RoleAssignment) | 2022-04-01 | v1api20220401 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/authorization/v1api20220401/v1api20220401_roleassignment.yaml) | | [RoleAssignment](https://azure.github.io/azure-service-operator/reference/authorization/v1api20200801preview/#authorization.azure.com/v1api20200801preview.RoleAssignment) | 2020-08-01-preview | v1api20200801preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/authorization/v1api20200801preview/v1api20200801preview_roleassignment.yaml) | -| [RoleDefinition](https://azure.github.io/azure-service-operator/reference/authorization/v1api20220401/#authorization.azure.com/v1api20220401.RoleDefinition) | 2022-04-01 | v1api20220401 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/authorization/v1api20220401/v1api20220401_roledefinition.yaml) | ## Batch @@ -99,7 +107,6 @@ To install the CRDs for these resources, your ASO configuration must include `ba ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|--------------------------------------------------------------------------------------------------------------------------| | [BatchAccount](https://azure.github.io/azure-service-operator/reference/batch/v1api20210101/#batch.azure.com/v1api20210101.BatchAccount) | 2021-01-01 | v1api20210101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/batch/v1api/v1api20210101_batchaccount.yaml) | @@ -108,26 +115,31 @@ These resource(s) are available for use in the current release of ASO. Different To install the CRDs for these resources, your ASO configuration must include `cache.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------| | [Redis](https://azure.github.io/azure-service-operator/reference/cache/v1api20230801/#cache.azure.com/v1api20230801.Redis) | 2023-08-01 | v1api20230801 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230801/v1api20230801_redis.yaml) | +| [RedisEnterprise](https://azure.github.io/azure-service-operator/reference/cache/v1api20230701/#cache.azure.com/v1api20230701.RedisEnterprise) | 2023-07-01 | v1api20230701 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230701/v1api20230701_redisenterprise.yaml) | +| [RedisEnterpriseDatabase](https://azure.github.io/azure-service-operator/reference/cache/v1api20230701/#cache.azure.com/v1api20230701.RedisEnterpriseDatabase) | 2023-07-01 | v1api20230701 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230701/v1api20230701_redisenterprisedatabase.yaml) | +| [RedisFirewallRule](https://azure.github.io/azure-service-operator/reference/cache/v1api20230801/#cache.azure.com/v1api20230801.RedisFirewallRule) | 2023-08-01 | v1api20230801 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230801/v1api20230801_redisfirewallrule.yaml) | +| [RedisLinkedServer](https://azure.github.io/azure-service-operator/reference/cache/v1api20230801/#cache.azure.com/v1api20230801.RedisLinkedServer) | 2023-08-01 | v1api20230801 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230801/v1api20230801_redislinkedserver.yaml) | +| [RedisPatchSchedule](https://azure.github.io/azure-service-operator/reference/cache/v1api20230801/#cache.azure.com/v1api20230801.RedisPatchSchedule) | 2023-08-01 | v1api20230801 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230801/v1api20230801_redispatchschedule.yaml) | + +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------| | [Redis](https://azure.github.io/azure-service-operator/reference/cache/v1api20230401/#cache.azure.com/v1api20230401.Redis) | 2023-04-01 | v1api20230401 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230401/v1api20230401_redis.yaml) | | [Redis](https://azure.github.io/azure-service-operator/reference/cache/v1api20201201/#cache.azure.com/v1api20201201.Redis) | 2020-12-01 | v1api20201201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20201201/v1api20201201_redis.yaml) | -| [RedisEnterprise](https://azure.github.io/azure-service-operator/reference/cache/v1api20230701/#cache.azure.com/v1api20230701.RedisEnterprise) | 2023-07-01 | v1api20230701 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230701/v1api20230701_redisenterprise.yaml) | | [RedisEnterprise](https://azure.github.io/azure-service-operator/reference/cache/v1api20210301/#cache.azure.com/v1api20210301.RedisEnterprise) | 2021-03-01 | v1api20210301 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20210301/v1api20210301_redisenterprise.yaml) | -| [RedisEnterpriseDatabase](https://azure.github.io/azure-service-operator/reference/cache/v1api20230701/#cache.azure.com/v1api20230701.RedisEnterpriseDatabase) | 2023-07-01 | v1api20230701 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230701/v1api20230701_redisenterprisedatabase.yaml) | | [RedisEnterpriseDatabase](https://azure.github.io/azure-service-operator/reference/cache/v1api20210301/#cache.azure.com/v1api20210301.RedisEnterpriseDatabase) | 2021-03-01 | v1api20210301 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20210301/v1api20210301_redisenterprisedatabase.yaml) | -| [RedisFirewallRule](https://azure.github.io/azure-service-operator/reference/cache/v1api20230801/#cache.azure.com/v1api20230801.RedisFirewallRule) | 2023-08-01 | v1api20230801 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230801/v1api20230801_redisfirewallrule.yaml) | | [RedisFirewallRule](https://azure.github.io/azure-service-operator/reference/cache/v1api20230401/#cache.azure.com/v1api20230401.RedisFirewallRule) | 2023-04-01 | v1api20230401 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230401/v1api20230401_redisfirewallrule.yaml) | | [RedisFirewallRule](https://azure.github.io/azure-service-operator/reference/cache/v1api20201201/#cache.azure.com/v1api20201201.RedisFirewallRule) | 2020-12-01 | v1api20201201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20201201/v1api20201201_redisfirewallrule.yaml) | -| [RedisLinkedServer](https://azure.github.io/azure-service-operator/reference/cache/v1api20230801/#cache.azure.com/v1api20230801.RedisLinkedServer) | 2023-08-01 | v1api20230801 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230801/v1api20230801_redislinkedserver.yaml) | | [RedisLinkedServer](https://azure.github.io/azure-service-operator/reference/cache/v1api20230401/#cache.azure.com/v1api20230401.RedisLinkedServer) | 2023-04-01 | v1api20230401 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230401/v1api20230401_redislinkedserver.yaml) | | [RedisLinkedServer](https://azure.github.io/azure-service-operator/reference/cache/v1api20201201/#cache.azure.com/v1api20201201.RedisLinkedServer) | 2020-12-01 | v1api20201201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20201201/v1api20201201_redislinkedserver.yaml) | -| [RedisPatchSchedule](https://azure.github.io/azure-service-operator/reference/cache/v1api20230801/#cache.azure.com/v1api20230801.RedisPatchSchedule) | 2023-08-01 | v1api20230801 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230801/v1api20230801_redispatchschedule.yaml) | | [RedisPatchSchedule](https://azure.github.io/azure-service-operator/reference/cache/v1api20230401/#cache.azure.com/v1api20230401.RedisPatchSchedule) | 2023-04-01 | v1api20230401 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230401/v1api20230401_redispatchschedule.yaml) | | [RedisPatchSchedule](https://azure.github.io/azure-service-operator/reference/cache/v1api20201201/#cache.azure.com/v1api20201201.RedisPatchSchedule) | 2020-12-01 | v1api20201201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20201201/v1api20201201_redispatchschedule.yaml) | @@ -135,10 +147,9 @@ These resource(s) are available for use in the current release of ASO. Different To install the CRDs for these resources, your ASO configuration must include `cdn.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------| | [AfdCustomDomain](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.AfdCustomDomain) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_afdcustomdomain.yaml) | @@ -146,7 +157,6 @@ These resource(s) are available for use in the current release of ASO. Different | [AfdOrigin](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.AfdOrigin) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_afdorigin.yaml) | | [AfdOriginGroup](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.AfdOriginGroup) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_afdorigingroup.yaml) | | [Profile](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.Profile) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_profile.yaml) | -| [Profile](https://azure.github.io/azure-service-operator/reference/cdn/v1api20210601/#cdn.azure.com/v1api20210601.Profile) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20210601/v1api20210601_profile.yaml) | | [ProfilesEndpoint](https://azure.github.io/azure-service-operator/reference/cdn/v1api20210601/#cdn.azure.com/v1api20210601.ProfilesEndpoint) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20210601/v1api20210601_profilesendpoint.yaml) | | [Route](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.Route) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_route.yaml) | | [Rule](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.Rule) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_rule.yaml) | @@ -154,32 +164,44 @@ These resource(s) are available for use in the current release of ASO. Different | [Secret](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.Secret) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_secret.yaml) | | [SecurityPolicy](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.SecurityPolicy) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_securitypolicy.yaml) | +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------| +| [Profile](https://azure.github.io/azure-service-operator/reference/cdn/v1api20210601/#cdn.azure.com/v1api20210601.Profile) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20210601/v1api20210601_profile.yaml) | + ## Compute To install the CRDs for these resources, your ASO configuration must include `compute.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------| | [Disk](https://azure.github.io/azure-service-operator/reference/compute/v1api20240302/#compute.azure.com/v1api20240302.Disk) | 2024-03-02 | v1api20240302 | v2.9.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20240302_disk.yaml) | -| [Disk](https://azure.github.io/azure-service-operator/reference/compute/v1api20200930/#compute.azure.com/v1api20200930.Disk) | 2020-09-30 | v1api20200930 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20200930_disk.yaml) | | [DiskAccess](https://azure.github.io/azure-service-operator/reference/compute/v1api20240302/#compute.azure.com/v1api20240302.DiskAccess) | 2024-03-02 | v1api20240302 | v2.9.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20240302_diskaccess.yaml) | | [DiskEncryptionSet](https://azure.github.io/azure-service-operator/reference/compute/v1api20240302/#compute.azure.com/v1api20240302.DiskEncryptionSet) | 2024-03-02 | v1api20240302 | v2.9.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20240302_diskencryptionset.yaml) | -| [DiskEncryptionSet](https://azure.github.io/azure-service-operator/reference/compute/v1api20220702/#compute.azure.com/v1api20220702.DiskEncryptionSet) | 2022-07-02 | v1api20220702 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20220702_diskencryptionset.yaml) | | [Image](https://azure.github.io/azure-service-operator/reference/compute/v1api20220301/#compute.azure.com/v1api20220301.Image) | 2022-03-01 | v1api20220301 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20220301_image.yaml) | -| [Image](https://azure.github.io/azure-service-operator/reference/compute/v1api20210701/#compute.azure.com/v1api20210701.Image) | 2021-07-01 | v1api20210701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20210701_image.yaml) | | [Snapshot](https://azure.github.io/azure-service-operator/reference/compute/v1api20240302/#compute.azure.com/v1api20240302.Snapshot) | 2024-03-02 | v1api20240302 | v2.9.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20240302_snapshot.yaml) | -| [Snapshot](https://azure.github.io/azure-service-operator/reference/compute/v1api20200930/#compute.azure.com/v1api20200930.Snapshot) | 2020-09-30 | v1api20200930 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20200930_snapshot.yaml) | | [VirtualMachine](https://azure.github.io/azure-service-operator/reference/compute/v1api20220301/#compute.azure.com/v1api20220301.VirtualMachine) | 2022-03-01 | v1api20220301 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20220301_virtualmachine.yaml) | -| [VirtualMachine](https://azure.github.io/azure-service-operator/reference/compute/v1api20201201/#compute.azure.com/v1api20201201.VirtualMachine) | 2020-12-01 | v1api20201201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20201201_virtualmachine.yaml) | | [VirtualMachineScaleSet](https://azure.github.io/azure-service-operator/reference/compute/v1api20220301/#compute.azure.com/v1api20220301.VirtualMachineScaleSet) | 2022-03-01 | v1api20220301 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20220301_virtualmachinescaleset.yaml) | -| [VirtualMachineScaleSet](https://azure.github.io/azure-service-operator/reference/compute/v1api20201201/#compute.azure.com/v1api20201201.VirtualMachineScaleSet) | 2020-12-01 | v1api20201201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20201201_virtualmachinescaleset.yaml) | | [VirtualMachineScaleSetsExtension](https://azure.github.io/azure-service-operator/reference/compute/v1api20220301/#compute.azure.com/v1api20220301.VirtualMachineScaleSetsExtension) | 2022-03-01 | v1api20220301 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20220301_virtualmachinescalesetsextension.yaml) | -| [VirtualMachineScaleSetsExtension](https://azure.github.io/azure-service-operator/reference/compute/v1api20201201/#compute.azure.com/v1api20201201.VirtualMachineScaleSetsExtension) | 2020-12-01 | v1api20201201 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20201201_virtualmachinescalesetsextension.yaml) | | [VirtualMachinesExtension](https://azure.github.io/azure-service-operator/reference/compute/v1api20220301/#compute.azure.com/v1api20220301.VirtualMachinesExtension) | 2022-03-01 | v1api20220301 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20220301_virtualmachinesextension.yaml) | + +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------| +| [Disk](https://azure.github.io/azure-service-operator/reference/compute/v1api20200930/#compute.azure.com/v1api20200930.Disk) | 2020-09-30 | v1api20200930 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20200930_disk.yaml) | +| [DiskEncryptionSet](https://azure.github.io/azure-service-operator/reference/compute/v1api20220702/#compute.azure.com/v1api20220702.DiskEncryptionSet) | 2022-07-02 | v1api20220702 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20220702_diskencryptionset.yaml) | +| [Image](https://azure.github.io/azure-service-operator/reference/compute/v1api20210701/#compute.azure.com/v1api20210701.Image) | 2021-07-01 | v1api20210701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20210701_image.yaml) | +| [Snapshot](https://azure.github.io/azure-service-operator/reference/compute/v1api20200930/#compute.azure.com/v1api20200930.Snapshot) | 2020-09-30 | v1api20200930 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20200930_snapshot.yaml) | +| [VirtualMachine](https://azure.github.io/azure-service-operator/reference/compute/v1api20201201/#compute.azure.com/v1api20201201.VirtualMachine) | 2020-12-01 | v1api20201201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20201201_virtualmachine.yaml) | +| [VirtualMachineScaleSet](https://azure.github.io/azure-service-operator/reference/compute/v1api20201201/#compute.azure.com/v1api20201201.VirtualMachineScaleSet) | 2020-12-01 | v1api20201201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20201201_virtualmachinescaleset.yaml) | +| [VirtualMachineScaleSetsExtension](https://azure.github.io/azure-service-operator/reference/compute/v1api20201201/#compute.azure.com/v1api20201201.VirtualMachineScaleSetsExtension) | 2020-12-01 | v1api20201201 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20201201_virtualmachinescalesetsextension.yaml) | | [VirtualMachinesExtension](https://azure.github.io/azure-service-operator/reference/compute/v1api20201201/#compute.azure.com/v1api20201201.VirtualMachinesExtension) | 2020-12-01 | v1api20201201 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20201201_virtualmachinesextension.yaml) | ## ContainerInstance @@ -189,7 +211,6 @@ To install the CRDs for these resources, your ASO configuration must include `co ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|----------------------------------------------------------------------------------------------------------------------------------------| | [ContainerGroup](https://azure.github.io/azure-service-operator/reference/containerinstance/v1api20211001/#containerinstance.azure.com/v1api20211001.ContainerGroup) | 2021-10-01 | v1api20211001 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerinstance/v1api/v1api20211001_containergroup.yaml) | @@ -210,7 +231,6 @@ Development of these new resources is complete and they will be available in the ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------| | [Registry](https://azure.github.io/azure-service-operator/reference/containerregistry/v1api20210901/#containerregistry.azure.com/v1api20210901.Registry) | 2021-09-01 | v1api20210901 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerregistry/v1api20210901/v1api20210901_registry.yaml) | @@ -219,29 +239,34 @@ These resource(s) are available for use in the current release of ASO. Different To install the CRDs for these resources, your ASO configuration must include `containerservice.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released +### Latest Released Versions -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +These resource(s) are the latest versions available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------| +| [Fleet](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230315preview/#containerservice.azure.com/v1api20230315preview.Fleet) | 2023-03-15-preview | v1api20230315preview | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleet.yaml) | +| [FleetsMember](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230315preview/#containerservice.azure.com/v1api20230315preview.FleetsMember) | 2023-03-15-preview | v1api20230315preview | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleetsmember.yaml) | +| [FleetsUpdateRun](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230315preview/#containerservice.azure.com/v1api20230315preview.FleetsUpdateRun) | 2023-03-15-preview | v1api20230315preview | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleetsupdaterun.yaml) | +| [MaintenanceConfiguration](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240901/#containerservice.azure.com/v1api20240901.MaintenanceConfiguration) | 2024-09-01 | v1api20240901 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240901/v1api20240901_maintenanceconfiguration.yaml) | +| [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240901/#containerservice.azure.com/v1api20240901.ManagedCluster) | 2024-09-01 | v1api20240901 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240901/v1api20240901_managedcluster.yaml) | +| [ManagedClustersAgentPool](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240901/#containerservice.azure.com/v1api20240901.ManagedClustersAgentPool) | 2024-09-01 | v1api20240901 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240901/v1api20240901_managedclustersagentpool.yaml) | +| [TrustedAccessRoleBinding](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240901/#containerservice.azure.com/v1api20240901.TrustedAccessRoleBinding) | 2024-09-01 | v1api20240901 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240901/v1api20240901_trustedaccessrolebinding.yaml) | + +### Other Supported Versions +These are older versions of resourced still available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| [Fleet](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230315preview/#containerservice.azure.com/v1api20230315preview.Fleet) | 2023-03-15-preview | v1api20230315preview | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleet.yaml) | -| [FleetsMember](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230315preview/#containerservice.azure.com/v1api20230315preview.FleetsMember) | 2023-03-15-preview | v1api20230315preview | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleetsmember.yaml) | -| [FleetsUpdateRun](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230315preview/#containerservice.azure.com/v1api20230315preview.FleetsUpdateRun) | 2023-03-15-preview | v1api20230315preview | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleetsupdaterun.yaml) | -| [MaintenanceConfiguration](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240901/#containerservice.azure.com/v1api20240901.MaintenanceConfiguration) | 2024-09-01 | v1api20240901 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240901/v1api20240901_maintenanceconfiguration.yaml) | -| [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240901/#containerservice.azure.com/v1api20240901.ManagedCluster) | 2024-09-01 | v1api20240901 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240901/v1api20240901_managedcluster.yaml) | | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240402preview/#containerservice.azure.com/v1api20240402preview.ManagedCluster) | 2024-04-02-preview | v1api20240402preview | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240402preview/v1api20240402preview_managedcluster.yaml) | | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20231102preview/#containerservice.azure.com/v1api20231102preview.ManagedCluster) | 2023-11-02-preview | v1api20231102preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20231102preview/v1api20231102preview_managedcluster.yaml) | | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20231001/#containerservice.azure.com/v1api20231001.ManagedCluster) | 2023-10-01 | v1api20231001 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20231001/v1api20231001_managedcluster.yaml) | | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230201/#containerservice.azure.com/v1api20230201.ManagedCluster) | 2023-02-01 | v1api20230201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230201/v1api20230201_managedcluster.yaml) | | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20210501/#containerservice.azure.com/v1api20210501.ManagedCluster) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20210501/v1api20210501_managedcluster.yaml) | -| [ManagedClustersAgentPool](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240901/#containerservice.azure.com/v1api20240901.ManagedClustersAgentPool) | 2024-09-01 | v1api20240901 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240901/v1api20240901_managedclustersagentpool.yaml) | | [ManagedClustersAgentPool](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240402preview/#containerservice.azure.com/v1api20240402preview.ManagedClustersAgentPool) | 2024-04-02-preview | v1api20240402preview | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240402preview/v1api20240402preview_managedclustersagentpool.yaml) | | [ManagedClustersAgentPool](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20231102preview/#containerservice.azure.com/v1api20231102preview.ManagedClustersAgentPool) | 2023-11-02-preview | v1api20231102preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20231102preview/v1api20231102preview_managedclustersagentpool.yaml) | | [ManagedClustersAgentPool](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20231001/#containerservice.azure.com/v1api20231001.ManagedClustersAgentPool) | 2023-10-01 | v1api20231001 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20231001/v1api20231001_managedclustersagentpool.yaml) | | [ManagedClustersAgentPool](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230201/#containerservice.azure.com/v1api20230201.ManagedClustersAgentPool) | 2023-02-01 | v1api20230201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230201/v1api20230201_managedclustersagentpool.yaml) | | [ManagedClustersAgentPool](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20210501/#containerservice.azure.com/v1api20210501.ManagedClustersAgentPool) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20210501/v1api20210501_managedclustersagentpool.yaml) | -| [TrustedAccessRoleBinding](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240901/#containerservice.azure.com/v1api20240901.TrustedAccessRoleBinding) | 2024-09-01 | v1api20240901 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240901/v1api20240901_trustedaccessrolebinding.yaml) | | [TrustedAccessRoleBinding](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240402preview/#containerservice.azure.com/v1api20240402preview.TrustedAccessRoleBinding) | 2024-04-02-preview | v1api20240402preview | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240402preview/v1api20240402preview_trustedaccessrolebinding.yaml) | | [TrustedAccessRoleBinding](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20231001/#containerservice.azure.com/v1api20231001.TrustedAccessRoleBinding) | 2023-10-01 | v1api20231001 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20231001/v1api20231001_trustedaccessrolebinding.yaml) | @@ -252,7 +277,6 @@ To install the CRDs for these resources, your ASO configuration must include `da ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------| | [Factory](https://azure.github.io/azure-service-operator/reference/datafactory/v1api20180601/#datafactory.azure.com/v1api20180601.Factory) | 2018-06-01 | v1api20180601 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/datafactory/v1api/v1api20180601_factory.yaml) | @@ -261,17 +285,22 @@ These resource(s) are available for use in the current release of ASO. Different To install the CRDs for these resources, your ASO configuration must include `dataprotection.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| | [BackupVault](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20231101/#dataprotection.azure.com/v1api20231101.BackupVault) | 2023-11-01 | v1api20231101 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20231101/v1api20231101_backupvault.yaml) | -| [BackupVault](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20230101/#dataprotection.azure.com/v1api20230101.BackupVault) | 2023-01-01 | v1api20230101 | v2.2.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20230101/v1api20230101_backupvault.yaml) | | [BackupVaultsBackupInstance](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20231101/#dataprotection.azure.com/v1api20231101.BackupVaultsBackupInstance) | 2023-11-01 | v1api20231101 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20231101/v1api20231101_backupvaultsbackupinstance.yaml) | | [BackupVaultsBackupPolicy](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20231101/#dataprotection.azure.com/v1api20231101.BackupVaultsBackupPolicy) | 2023-11-01 | v1api20231101 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20231101/v1api20231101_backupvaultsbackuppolicy.yaml) | -| [BackupVaultsBackupPolicy](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20230101/#dataprotection.azure.com/v1api20230101.BackupVaultsBackupPolicy) | 2023-01-01 | v1api20230101 | v2.2.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20230101/v1api20230101_backupvaultsbackuppolicy.yaml) | + +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------| +| [BackupVault](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20230101/#dataprotection.azure.com/v1api20230101.BackupVault) | 2023-01-01 | v1api20230101 | v2.2.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20230101/v1api20230101_backupvault.yaml) | +| [BackupVaultsBackupPolicy](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20230101/#dataprotection.azure.com/v1api20230101.BackupVaultsBackupPolicy) | 2023-01-01 | v1api20230101 | v2.2.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20230101/v1api20230101_backupvaultsbackuppolicy.yaml) | ## DBforMariaDB @@ -280,7 +309,6 @@ To install the CRDs for these resources, your ASO configuration must include `db ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|----------------------------------------------------------------------------------------------------------------------------------| | [Configuration](https://azure.github.io/azure-service-operator/reference/dbformariadb/v1api20180601/#dbformariadb.azure.com/v1api20180601.Configuration) | 2018-06-01 | v1api20180601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformariadb/v1api/v1api20180601_configuration.yaml) | @@ -295,51 +323,61 @@ Azure Database for MySQL - Single Server is on the retirement path and is [sched Existing instances of *Single Server* can be migrated to *Azure Database for MySQL - Flexible Server* using the [Azure Database migration Service](https://azure.microsoft.com/en-us/products/database-migration). -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------| | [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20230630/#dbformysql.azure.com/v1api20230630.FlexibleServer) | 2023-06-30 | v1api20230630 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20230630/v1api20230630_flexibleserver.yaml) | -| [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20210501/#dbformysql.azure.com/v1api20210501.FlexibleServer) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20220101/v1api20210501_flexibleserver.yaml) | | [FlexibleServersAdministrator](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20230630/#dbformysql.azure.com/v1api20230630.FlexibleServersAdministrator) | 2023-06-30 | v1api20230630 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20230630/v1api20230630_flexibleserversadministrator.yaml) | -| [FlexibleServersAdministrator](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20220101/#dbformysql.azure.com/v1api20220101.FlexibleServersAdministrator) | 2022-01-01 | v1api20220101 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20220101/v1api20220101_flexibleserversadministrator.yaml) | | [FlexibleServersConfiguration](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20230630/#dbformysql.azure.com/v1api20230630.FlexibleServersConfiguration) | 2023-06-30 | v1api20230630 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20230630/v1api20230630_flexibleserversconfiguration.yaml) | -| [FlexibleServersConfiguration](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20220101/#dbformysql.azure.com/v1api20220101.FlexibleServersConfiguration) | 2022-01-01 | v1api20220101 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20220101/v1api20220101_flexibleserversconfiguration.yaml) | | [FlexibleServersDatabase](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20230630/#dbformysql.azure.com/v1api20230630.FlexibleServersDatabase) | 2023-06-30 | v1api20230630 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20230630/v1api20230630_flexibleserversdatabase.yaml) | -| [FlexibleServersDatabase](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20210501/#dbformysql.azure.com/v1api20210501.FlexibleServersDatabase) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20210501/v1api20210501_flexibleserversdatabase.yaml) | | [FlexibleServersFirewallRule](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20230630/#dbformysql.azure.com/v1api20230630.FlexibleServersFirewallRule) | 2023-06-30 | v1api20230630 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20230630/v1api20230630_flexibleserversfirewallrule.yaml) | -| [FlexibleServersFirewallRule](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20210501/#dbformysql.azure.com/v1api20210501.FlexibleServersFirewallRule) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20210501/v1api20210501_flexibleserversfirewallrule.yaml) | | [User](https://azure.github.io/azure-service-operator/reference/dbformysql/v1/#dbformysql.azure.com/v1.User) | v1 | v1 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api/v1_user.yaml) | +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------| +| [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20210501/#dbformysql.azure.com/v1api20210501.FlexibleServer) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20220101/v1api20210501_flexibleserver.yaml) | +| [FlexibleServersAdministrator](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20220101/#dbformysql.azure.com/v1api20220101.FlexibleServersAdministrator) | 2022-01-01 | v1api20220101 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20220101/v1api20220101_flexibleserversadministrator.yaml) | +| [FlexibleServersConfiguration](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20220101/#dbformysql.azure.com/v1api20220101.FlexibleServersConfiguration) | 2022-01-01 | v1api20220101 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20220101/v1api20220101_flexibleserversconfiguration.yaml) | +| [FlexibleServersDatabase](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20210501/#dbformysql.azure.com/v1api20210501.FlexibleServersDatabase) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20210501/v1api20210501_flexibleserversdatabase.yaml) | +| [FlexibleServersFirewallRule](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20210501/#dbformysql.azure.com/v1api20210501.FlexibleServersFirewallRule) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20210501/v1api20210501_flexibleserversfirewallrule.yaml) | + ## DBforPostgreSQL To install the CRDs for these resources, your ASO configuration must include `dbforpostgresql.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released +### Latest Released Versions -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +These resource(s) are the latest versions available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| +| [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServer) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserver.yaml) | +| [FlexibleServersConfiguration](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServersConfiguration) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserversconfiguration.yaml) | +| [FlexibleServersDatabase](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServersDatabase) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserversdatabase.yaml) | +| [FlexibleServersFirewallRule](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServersFirewallRule) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserversfirewallrule.yaml) | +| [User](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1/#dbforpostgresql.azure.com/v1.User) | v1 | v1 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api/v1_user.yaml) | +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20230601preview/#dbforpostgresql.azure.com/v1api20230601preview.FlexibleServer) | 2023-06-01-preview | v1api20230601preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20230601preview/v1api20230601preview_flexibleserver.yaml) | -| [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServer) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserver.yaml) | | [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20220120preview/#dbforpostgresql.azure.com/v1api20220120preview.FlexibleServer) | 2022-01-20-preview | v1api20220120preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20220120preview/v1api20220120preview_flexibleserver.yaml) | | [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20210601/#dbforpostgresql.azure.com/v1api20210601.FlexibleServer) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20210601/v1api20210601_flexibleserver.yaml) | | [FlexibleServersConfiguration](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20230601preview/#dbforpostgresql.azure.com/v1api20230601preview.FlexibleServersConfiguration) | 2023-06-01-preview | v1api20230601preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20230601preview/v1api20230601preview_flexibleserversconfiguration.yaml) | -| [FlexibleServersConfiguration](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServersConfiguration) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserversconfiguration.yaml) | | [FlexibleServersConfiguration](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20220120preview/#dbforpostgresql.azure.com/v1api20220120preview.FlexibleServersConfiguration) | 2022-01-20-preview | v1api20220120preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20220120preview/v1api20220120preview_flexibleserversconfiguration.yaml) | | [FlexibleServersConfiguration](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20210601/#dbforpostgresql.azure.com/v1api20210601.FlexibleServersConfiguration) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20210601/v1api20210601_flexibleserversconfiguration.yaml) | | [FlexibleServersDatabase](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20230601preview/#dbforpostgresql.azure.com/v1api20230601preview.FlexibleServersDatabase) | 2023-06-01-preview | v1api20230601preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20230601preview/v1api20230601preview_flexibleserversdatabase.yaml) | -| [FlexibleServersDatabase](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServersDatabase) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserversdatabase.yaml) | | [FlexibleServersDatabase](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20220120preview/#dbforpostgresql.azure.com/v1api20220120preview.FlexibleServersDatabase) | 2022-01-20-preview | v1api20220120preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20220120preview/v1api20220120preview_flexibleserversdatabase.yaml) | | [FlexibleServersDatabase](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20210601/#dbforpostgresql.azure.com/v1api20210601.FlexibleServersDatabase) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20210601/v1api20210601_flexibleserversdatabase.yaml) | | [FlexibleServersFirewallRule](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20230601preview/#dbforpostgresql.azure.com/v1api20230601preview.FlexibleServersFirewallRule) | 2023-06-01-preview | v1api20230601preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20230601preview/v1api20230601preview_flexibleserversfirewallrule.yaml) | -| [FlexibleServersFirewallRule](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServersFirewallRule) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserversfirewallrule.yaml) | | [FlexibleServersFirewallRule](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20220120preview/#dbforpostgresql.azure.com/v1api20220120preview.FlexibleServersFirewallRule) | 2022-01-20-preview | v1api20220120preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20220120preview/v1api20220120preview_flexibleserversfirewallrule.yaml) | | [FlexibleServersFirewallRule](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20210601/#dbforpostgresql.azure.com/v1api20210601.FlexibleServersFirewallRule) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20210601/v1api20210601_flexibleserversfirewallrule.yaml) | -| [User](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1/#dbforpostgresql.azure.com/v1.User) | v1 | v1 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api/v1_user.yaml) | ## Devices @@ -348,7 +386,6 @@ To install the CRDs for these resources, your ASO configuration must include `de ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|----------------------------------------------------------------------------------------------------------------------| | [IotHub](https://azure.github.io/azure-service-operator/reference/devices/v1api20210702/#devices.azure.com/v1api20210702.IotHub) | 2021-07-02 | v1api20210702 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/devices/v1api/v1api20210702_iothub.yaml) | @@ -357,37 +394,42 @@ These resource(s) are available for use in the current release of ASO. Different To install the CRDs for these resources, your ASO configuration must include `documentdb.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [DatabaseAccount](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.DatabaseAccount) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20231115/v1api20231115_databaseaccount.yaml) | -| [DatabaseAccount](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.DatabaseAccount) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_databaseaccount.yaml) | | [MongodbDatabase](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.MongodbDatabase) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20231115/v1api20231115_mongodbdatabase.yaml) | -| [MongodbDatabase](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.MongodbDatabase) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_mongodbdatabase.yaml) | | [MongodbDatabaseCollection](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.MongodbDatabaseCollection) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20231115/v1api20231115_mongodbdatabasecollection.yaml) | -| [MongodbDatabaseCollection](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.MongodbDatabaseCollection) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_mongodbdatabasecollection.yaml) | | [MongodbDatabaseCollectionThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.MongodbDatabaseCollectionThroughputSetting) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20231115/v1api20231115_mongodbdatabasecollectionthroughputsetting.yaml) | -| [MongodbDatabaseCollectionThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.MongodbDatabaseCollectionThroughputSetting) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_mongodbdatabasecollectionthroughputsetting.yaml) | | [MongodbDatabaseThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.MongodbDatabaseThroughputSetting) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20231115/v1api20231115_mongodbdatabasethroughputsetting.yaml) | -| [MongodbDatabaseThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.MongodbDatabaseThroughputSetting) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_mongodbdatabasethroughputsetting.yaml) | | [SqlDatabase](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.SqlDatabase) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20231115/v1api20231115_sqldatabase.yaml) | -| [SqlDatabase](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabase) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabase.yaml) | | [SqlDatabaseContainer](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.SqlDatabaseContainer) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20231115/v1api20231115_sqldatabasecontainer.yaml) | -| [SqlDatabaseContainer](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainer) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontainer.yaml) | | [SqlDatabaseContainerStoredProcedure](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.SqlDatabaseContainerStoredProcedure) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20231115/v1api20231115_sqldatabasecontainerstoredprocedure.yaml) | -| [SqlDatabaseContainerStoredProcedure](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainerStoredProcedure) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontainerstoredprocedure.yaml) | | [SqlDatabaseContainerThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.SqlDatabaseContainerThroughputSetting) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20231115/v1api20231115_sqldatabasecontainerthroughputsetting.yaml) | -| [SqlDatabaseContainerThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainerThroughputSetting) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontainerthroughputsetting.yaml) | | [SqlDatabaseContainerTrigger](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.SqlDatabaseContainerTrigger) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20231115/v1api20231115_sqldatabasecontainertrigger.yaml) | -| [SqlDatabaseContainerTrigger](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainerTrigger) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontainertrigger.yaml) | | [SqlDatabaseContainerUserDefinedFunction](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.SqlDatabaseContainerUserDefinedFunction) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20231115/v1api20231115_sqldatabasecontaineruserdefinedfunction.yaml) | -| [SqlDatabaseContainerUserDefinedFunction](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainerUserDefinedFunction) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontaineruserdefinedfunction.yaml) | | [SqlDatabaseThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.SqlDatabaseThroughputSetting) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20231115/v1api20231115_sqldatabasethroughputsetting.yaml) | -| [SqlDatabaseThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseThroughputSetting) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasethroughputsetting.yaml) | | [SqlRoleAssignment](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.SqlRoleAssignment) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20231115/v1api20231115_sqlroleassignment.yaml) | + +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| [DatabaseAccount](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.DatabaseAccount) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_databaseaccount.yaml) | +| [MongodbDatabase](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.MongodbDatabase) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_mongodbdatabase.yaml) | +| [MongodbDatabaseCollection](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.MongodbDatabaseCollection) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_mongodbdatabasecollection.yaml) | +| [MongodbDatabaseCollectionThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.MongodbDatabaseCollectionThroughputSetting) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_mongodbdatabasecollectionthroughputsetting.yaml) | +| [MongodbDatabaseThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.MongodbDatabaseThroughputSetting) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_mongodbdatabasethroughputsetting.yaml) | +| [SqlDatabase](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabase) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabase.yaml) | +| [SqlDatabaseContainer](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainer) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontainer.yaml) | +| [SqlDatabaseContainerStoredProcedure](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainerStoredProcedure) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontainerstoredprocedure.yaml) | +| [SqlDatabaseContainerThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainerThroughputSetting) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontainerthroughputsetting.yaml) | +| [SqlDatabaseContainerTrigger](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainerTrigger) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontainertrigger.yaml) | +| [SqlDatabaseContainerUserDefinedFunction](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainerUserDefinedFunction) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontaineruserdefinedfunction.yaml) | +| [SqlDatabaseThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseThroughputSetting) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasethroughputsetting.yaml) | | [SqlRoleAssignment](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlRoleAssignment) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqlroleassignment.yaml) | ## EventGrid @@ -397,7 +439,6 @@ To install the CRDs for these resources, your ASO configuration must include `ev ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-----------------------------------------------------------------------------------------------------------------------------------| | [Domain](https://azure.github.io/azure-service-operator/reference/eventgrid/v1api20200601/#eventgrid.azure.com/v1api20200601.Domain) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/eventgrid/v1api/v1api20200601_domain.yaml) | @@ -424,7 +465,6 @@ Development of these new resources is complete and they will be available in the ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Namespace](https://azure.github.io/azure-service-operator/reference/eventhub/v1api20211101/#eventhub.azure.com/v1api20211101.Namespace) | 2021-11-01 | v1api20211101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/eventhub/v1api20211101/v1api20211101_namespace.yaml) | @@ -437,10 +477,9 @@ These resource(s) are available for use in the current release of ASO. Different To install the CRDs for these resources, your ASO configuration must include `insights.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------| | [ActionGroup](https://azure.github.io/azure-service-operator/reference/insights/v1api20230101/#insights.azure.com/v1api20230101.ActionGroup) | 2023-01-01 | v1api20230101 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api/v1api20230101_actiongroup.yaml) | @@ -450,19 +489,30 @@ These resource(s) are available for use in the current release of ASO. Different | [MetricAlert](https://azure.github.io/azure-service-operator/reference/insights/v1api20180301/#insights.azure.com/v1api20180301.MetricAlert) | 2018-03-01 | v1api20180301 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api/v1api20180301_metricalert.yaml) | | [ScheduledQueryRule](https://azure.github.io/azure-service-operator/reference/insights/v1api20220615/#insights.azure.com/v1api20220615.ScheduledQueryRule) | 2022-06-15 | v1api20220615 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api/v1api20220615_scheduledqueryrule.yaml) | | [Webtest](https://azure.github.io/azure-service-operator/reference/insights/v1api20220615/#insights.azure.com/v1api20220615.Webtest) | 2022-06-15 | v1api20220615 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api/v1api20220615_webtest.yaml) | -| [Webtest](https://azure.github.io/azure-service-operator/reference/insights/v1api20180501preview/#insights.azure.com/v1api20180501preview.Webtest) | 2018-05-01-preview | v1api20180501preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api/v1api20180501preview_webtest.yaml) | + +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|-------------------------------------------------------------------------------------------------------------------------------| +| [Webtest](https://azure.github.io/azure-service-operator/reference/insights/v1api20180501preview/#insights.azure.com/v1api20180501preview.Webtest) | 2018-05-01-preview | v1api20180501preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api/v1api20180501preview_webtest.yaml) | ## KeyVault To install the CRDs for these resources, your ASO configuration must include `keyvault.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released +### Latest Released Versions -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +These resource(s) are the latest versions available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------| +| [Vault](https://azure.github.io/azure-service-operator/reference/keyvault/v1api20230701/#keyvault.azure.com/v1api20230701.Vault) | 2023-07-01 | v1api20230701 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/keyvault/v1api20230701/v1api20230701_vault.yaml) | + +### Other Supported Versions +These are older versions of resourced still available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------| -| [Vault](https://azure.github.io/azure-service-operator/reference/keyvault/v1api20230701/#keyvault.azure.com/v1api20230701.Vault) | 2023-07-01 | v1api20230701 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/keyvault/v1api20230701/v1api20230701_vault.yaml) | | [Vault](https://azure.github.io/azure-service-operator/reference/keyvault/v1api20210401preview/#keyvault.azure.com/v1api20210401preview.Vault) | 2021-04-01-preview | v1api20210401preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/keyvault/v1api20210401preview/v1api20210401preview_vault.yaml) | ## KubernetesConfiguration @@ -472,7 +522,6 @@ To install the CRDs for these resources, your ASO configuration must include `ku ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------| | [Extension](https://azure.github.io/azure-service-operator/reference/kubernetesconfiguration/v1api20230501/#kubernetesconfiguration.azure.com/v1api20230501.Extension) | 2023-05-01 | v1api20230501 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/kubernetesconfiguration/v1api/v1api20230501_extension.yaml) | @@ -482,33 +531,43 @@ These resource(s) are available for use in the current release of ASO. Different To install the CRDs for these resources, your ASO configuration must include `machinelearningservices.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Registry](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20240401/#machinelearningservices.azure.com/v1api20240401.Registry) | 2024-04-01 | v1api20240401 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20240401/v1api20240401_registry.yaml) | | [Workspace](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20240401/#machinelearningservices.azure.com/v1api20240401.Workspace) | 2024-04-01 | v1api20240401 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20240401/v1api20240401_workspace.yaml) | -| [Workspace](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20210701/#machinelearningservices.azure.com/v1api20210701.Workspace) | 2021-07-01 | v1api20210701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20210701/v1api20210701_workspace.yaml) | | [WorkspacesCompute](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20240401/#machinelearningservices.azure.com/v1api20240401.WorkspacesCompute) | 2024-04-01 | v1api20240401 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20240401/v1api20240401_workspacescompute.yaml) | -| [WorkspacesCompute](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20210701/#machinelearningservices.azure.com/v1api20210701.WorkspacesCompute) | 2021-07-01 | v1api20210701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20210701/v1api20210701_workspacescompute.yaml) | | [WorkspacesConnection](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20240401/#machinelearningservices.azure.com/v1api20240401.WorkspacesConnection) | 2024-04-01 | v1api20240401 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20240401/v1api20240401_workspacesconnection.yaml) | + +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| +| [Workspace](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20210701/#machinelearningservices.azure.com/v1api20210701.Workspace) | 2021-07-01 | v1api20210701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20210701/v1api20210701_workspace.yaml) | +| [WorkspacesCompute](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20210701/#machinelearningservices.azure.com/v1api20210701.WorkspacesCompute) | 2021-07-01 | v1api20210701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20210701/v1api20210701_workspacescompute.yaml) | | [WorkspacesConnection](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20210701/#machinelearningservices.azure.com/v1api20210701.WorkspacesConnection) | 2021-07-01 | v1api20210701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20210701/v1api20210701_workspacesconnection.yaml) | ## ManagedIdentity To install the CRDs for these resources, your ASO configuration must include `managedidentity.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released +### Latest Released Versions -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +These resource(s) are the latest versions available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------| +| [FederatedIdentityCredential](https://azure.github.io/azure-service-operator/reference/managedidentity/v1api20230131/#managedidentity.azure.com/v1api20230131.FederatedIdentityCredential) | 2023-01-31 | v1api20230131 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/managedidentity/v1api20230131/v1api20230131_federatedidentitycredential.yaml) | +| [UserAssignedIdentity](https://azure.github.io/azure-service-operator/reference/managedidentity/v1api20230131/#managedidentity.azure.com/v1api20230131.UserAssignedIdentity) | 2023-01-31 | v1api20230131 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/managedidentity/v1api20230131/v1api20230131_userassignedidentity.yaml) | + +### Other Supported Versions +These are older versions of resourced still available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| [FederatedIdentityCredential](https://azure.github.io/azure-service-operator/reference/managedidentity/v1api20230131/#managedidentity.azure.com/v1api20230131.FederatedIdentityCredential) | 2023-01-31 | v1api20230131 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/managedidentity/v1api20230131/v1api20230131_federatedidentitycredential.yaml) | | [FederatedIdentityCredential](https://azure.github.io/azure-service-operator/reference/managedidentity/v1api20220131preview/#managedidentity.azure.com/v1api20220131preview.FederatedIdentityCredential) | 2022-01-31-preview | v1api20220131preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/managedidentity/v1api20220131preview/v1api20220131preview_federatedidentitycredential.yaml) | -| [UserAssignedIdentity](https://azure.github.io/azure-service-operator/reference/managedidentity/v1api20230131/#managedidentity.azure.com/v1api20230131.UserAssignedIdentity) | 2023-01-31 | v1api20230131 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/managedidentity/v1api20230131/v1api20230131_userassignedidentity.yaml) | | [UserAssignedIdentity](https://azure.github.io/azure-service-operator/reference/managedidentity/v1api20181130/#managedidentity.azure.com/v1api20181130.UserAssignedIdentity) | 2018-11-30 | v1api20181130 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/managedidentity/v1api20181130/v1api20181130_userassignedidentity.yaml) | ## Monitor @@ -518,7 +577,6 @@ To install the CRDs for these resources, your ASO configuration must include `mo ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------| | [Account](https://azure.github.io/azure-service-operator/reference/monitor/v1api20230403/#monitor.azure.com/v1api20230403.Account) | 2023-04-03 | v1api20230403 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/monitor/v1api20230403/v1api20230403_account.yaml) | @@ -527,16 +585,14 @@ These resource(s) are available for use in the current release of ASO. Different To install the CRDs for these resources, your ASO configuration must include `network.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------| | [ApplicationGateway](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.ApplicationGateway) | 2022-07-01 | v1api20220701 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_applicationgateway.yaml) | | [ApplicationSecurityGroup](https://azure.github.io/azure-service-operator/reference/network/v1api20240101/#network.azure.com/v1api20240101.ApplicationSecurityGroup) | 2024-01-01 | v1api20240101 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240101/v1api20240101_applicationsecuritygroup.yaml) | | [BastionHost](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.BastionHost) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_bastionhost.yaml) | -| [BastionHost](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.BastionHost) | 2022-07-01 | v1api20220701 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_bastionhost.yaml) | | [DnsForwardingRuleSetsForwardingRule](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.DnsForwardingRuleSetsForwardingRule) | 2022-07-01 | v1api20220701 | v2.2.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_dnsforwardingrulesetsforwardingrule.yaml) | | [DnsForwardingRuleSetsVirtualNetworkLink](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.DnsForwardingRuleSetsVirtualNetworkLink) | 2022-07-01 | v1api20220701 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_dnsforwardingrulesetsvirtualnetworklink.yaml) | | [DnsForwardingRuleset](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.DnsForwardingRuleset) | 2022-07-01 | v1api20220701 | v2.2.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_dnsforwardingruleset.yaml) | @@ -554,63 +610,70 @@ These resource(s) are available for use in the current release of ASO. Different | [DnsZonesSRVRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20180501/#network.azure.com/v1api20180501.DnsZonesSRVRecord) | 2018-05-01 | v1api20180501 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20180501/v1api20180501_dnszonessrvrecord.yaml) | | [DnsZonesTXTRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20180501/#network.azure.com/v1api20180501.DnsZonesTXTRecord) | 2018-05-01 | v1api20180501 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20180501/v1api20180501_dnszonestxtrecord.yaml) | | [LoadBalancer](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.LoadBalancer) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_loadbalancer.yaml) | -| [LoadBalancer](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.LoadBalancer) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_loadbalancer.yaml) | | [LoadBalancersInboundNatRule](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.LoadBalancersInboundNatRule) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_loadbalancersinboundnatrule.yaml) | -| [LoadBalancersInboundNatRule](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.LoadBalancersInboundNatRule) | 2020-11-01 | v1api20201101 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_loadbalancersinboundnatrule.yaml) | | [NatGateway](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.NatGateway) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_natgateway.yaml) | -| [NatGateway](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.NatGateway) | 2022-07-01 | v1api20220701 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_natgateway.yaml) | | [NetworkInterface](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.NetworkInterface) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_networkinterface.yaml) | -| [NetworkInterface](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.NetworkInterface) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_networkinterface.yaml) | | [NetworkSecurityGroup](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.NetworkSecurityGroup) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_networksecuritygroup.yaml) | -| [NetworkSecurityGroup](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.NetworkSecurityGroup) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_networksecuritygroup.yaml) | | [NetworkSecurityGroupsSecurityRule](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.NetworkSecurityGroupsSecurityRule) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_networksecuritygroupssecurityrule.yaml) | -| [NetworkSecurityGroupsSecurityRule](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.NetworkSecurityGroupsSecurityRule) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_networksecuritygroupssecurityrule.yaml) | | [PrivateDnsZone](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZone) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszone.yaml) | -| [PrivateDnsZone](https://azure.github.io/azure-service-operator/reference/network/v1api20180901/#network.azure.com/v1api20180901.PrivateDnsZone) | 2018-09-01 | v1api20180901 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20180901/v1api20180901_privatednszone.yaml) | | [PrivateDnsZonesAAAARecord](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZonesAAAARecord) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszonesaaaarecord.yaml) | -| [PrivateDnsZonesAAAARecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesAAAARecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesaaaarecord.yaml) | | [PrivateDnsZonesARecord](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZonesARecord) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszonesarecord.yaml) | -| [PrivateDnsZonesARecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesARecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesarecord.yaml) | | [PrivateDnsZonesCNAMERecord](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZonesCNAMERecord) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszonescnamerecord.yaml) | -| [PrivateDnsZonesCNAMERecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesCNAMERecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonescnamerecord.yaml) | | [PrivateDnsZonesMXRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZonesMXRecord) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszonesmxrecord.yaml) | -| [PrivateDnsZonesMXRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesMXRecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesmxrecord.yaml) | | [PrivateDnsZonesPTRRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZonesPTRRecord) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszonesptrrecord.yaml) | -| [PrivateDnsZonesPTRRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesPTRRecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesptrrecord.yaml) | | [PrivateDnsZonesSRVRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZonesSRVRecord) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszonessrvrecord.yaml) | -| [PrivateDnsZonesSRVRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesSRVRecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonessrvrecord.yaml) | | [PrivateDnsZonesTXTRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZonesTXTRecord) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszonestxtrecord.yaml) | -| [PrivateDnsZonesTXTRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesTXTRecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonestxtrecord.yaml) | | [PrivateDnsZonesVirtualNetworkLink](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZonesVirtualNetworkLink) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszonesvirtualnetworklink.yaml) | -| [PrivateDnsZonesVirtualNetworkLink](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesVirtualNetworkLink) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesvirtualnetworklink.yaml) | | [PrivateEndpoint](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.PrivateEndpoint) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_privateendpoint.yaml) | -| [PrivateEndpoint](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.PrivateEndpoint) | 2022-07-01 | v1api20220701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_privateendpoint.yaml) | | [PrivateEndpointsPrivateDnsZoneGroup](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.PrivateEndpointsPrivateDnsZoneGroup) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_privateendpointsprivatednszonegroup.yaml) | -| [PrivateEndpointsPrivateDnsZoneGroup](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.PrivateEndpointsPrivateDnsZoneGroup) | 2022-07-01 | v1api20220701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_privateendpointsprivatednszonegroup.yaml) | | [PrivateLinkService](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.PrivateLinkService) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_privatelinkservice.yaml) | -| [PrivateLinkService](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.PrivateLinkService) | 2022-07-01 | v1api20220701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_privatelinkservice.yaml) | | [PublicIPAddress](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.PublicIPAddress) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_publicipaddress.yaml) | -| [PublicIPAddress](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.PublicIPAddress) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_publicipaddress.yaml) | | [PublicIPPrefix](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.PublicIPPrefix) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_publicipprefix.yaml) | -| [PublicIPPrefix](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.PublicIPPrefix) | 2022-07-01 | v1api20220701 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_publicipprefix.yaml) | | [RouteTable](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.RouteTable) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_routetable.yaml) | -| [RouteTable](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.RouteTable) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_routetable.yaml) | | [RouteTablesRoute](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.RouteTablesRoute) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_routetablesroute.yaml) | -| [RouteTablesRoute](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.RouteTablesRoute) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_routetablesroute.yaml) | | [TrafficManagerProfile](https://azure.github.io/azure-service-operator/reference/network/v1api20220401/#network.azure.com/v1api20220401.TrafficManagerProfile) | 2022-04-01 | v1api20220401 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220401/v1api20220401_trafficmanagerprofile.yaml) | | [TrafficManagerProfilesAzureEndpoint](https://azure.github.io/azure-service-operator/reference/network/v1api20220401/#network.azure.com/v1api20220401.TrafficManagerProfilesAzureEndpoint) | 2022-04-01 | v1api20220401 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220401/v1api20220401_trafficmanagerprofilesazureendpoint.yaml) | | [TrafficManagerProfilesExternalEndpoint](https://azure.github.io/azure-service-operator/reference/network/v1api20220401/#network.azure.com/v1api20220401.TrafficManagerProfilesExternalEndpoint) | 2022-04-01 | v1api20220401 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220401/v1api20220401_trafficmanagerprofilesexternalendpoint.yaml) | | [TrafficManagerProfilesNestedEndpoint](https://azure.github.io/azure-service-operator/reference/network/v1api20220401/#network.azure.com/v1api20220401.TrafficManagerProfilesNestedEndpoint) | 2022-04-01 | v1api20220401 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220401/v1api20220401_trafficmanagerprofilesnestedendpoint.yaml) | | [VirtualNetwork](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.VirtualNetwork) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_virtualnetwork.yaml) | -| [VirtualNetwork](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.VirtualNetwork) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_virtualnetwork.yaml) | | [VirtualNetworkGateway](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.VirtualNetworkGateway) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_virtualnetworkgateway.yaml) | -| [VirtualNetworkGateway](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.VirtualNetworkGateway) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_virtualnetworkgateway.yaml) | | [VirtualNetworksSubnet](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.VirtualNetworksSubnet) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_virtualnetworkssubnet.yaml) | -| [VirtualNetworksSubnet](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.VirtualNetworksSubnet) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_virtualnetworkssubnet.yaml) | | [VirtualNetworksVirtualNetworkPeering](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.VirtualNetworksVirtualNetworkPeering) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_virtualnetworksvirtualnetworkpeering.yaml) | -| [VirtualNetworksVirtualNetworkPeering](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.VirtualNetworksVirtualNetworkPeering) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_virtualnetworksvirtualnetworkpeering.yaml) | | [WebApplicationFirewallPolicy](https://azure.github.io/azure-service-operator/reference/network/v1api20240101/#network.azure.com/v1api20240101.WebApplicationFirewallPolicy) | 2024-01-01 | v1api20240101 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20240101_webapplicationfirewallpolicy.yaml) | +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| +| [BastionHost](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.BastionHost) | 2022-07-01 | v1api20220701 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_bastionhost.yaml) | +| [LoadBalancer](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.LoadBalancer) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_loadbalancer.yaml) | +| [LoadBalancersInboundNatRule](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.LoadBalancersInboundNatRule) | 2020-11-01 | v1api20201101 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_loadbalancersinboundnatrule.yaml) | +| [NatGateway](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.NatGateway) | 2022-07-01 | v1api20220701 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_natgateway.yaml) | +| [NetworkInterface](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.NetworkInterface) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_networkinterface.yaml) | +| [NetworkSecurityGroup](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.NetworkSecurityGroup) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_networksecuritygroup.yaml) | +| [NetworkSecurityGroupsSecurityRule](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.NetworkSecurityGroupsSecurityRule) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_networksecuritygroupssecurityrule.yaml) | +| [PrivateDnsZone](https://azure.github.io/azure-service-operator/reference/network/v1api20180901/#network.azure.com/v1api20180901.PrivateDnsZone) | 2018-09-01 | v1api20180901 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20180901/v1api20180901_privatednszone.yaml) | +| [PrivateDnsZonesAAAARecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesAAAARecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesaaaarecord.yaml) | +| [PrivateDnsZonesARecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesARecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesarecord.yaml) | +| [PrivateDnsZonesCNAMERecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesCNAMERecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonescnamerecord.yaml) | +| [PrivateDnsZonesMXRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesMXRecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesmxrecord.yaml) | +| [PrivateDnsZonesPTRRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesPTRRecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesptrrecord.yaml) | +| [PrivateDnsZonesSRVRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesSRVRecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonessrvrecord.yaml) | +| [PrivateDnsZonesTXTRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesTXTRecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonestxtrecord.yaml) | +| [PrivateDnsZonesVirtualNetworkLink](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesVirtualNetworkLink) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesvirtualnetworklink.yaml) | +| [PrivateEndpoint](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.PrivateEndpoint) | 2022-07-01 | v1api20220701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_privateendpoint.yaml) | +| [PrivateEndpointsPrivateDnsZoneGroup](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.PrivateEndpointsPrivateDnsZoneGroup) | 2022-07-01 | v1api20220701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_privateendpointsprivatednszonegroup.yaml) | +| [PrivateLinkService](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.PrivateLinkService) | 2022-07-01 | v1api20220701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_privatelinkservice.yaml) | +| [PublicIPAddress](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.PublicIPAddress) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_publicipaddress.yaml) | +| [PublicIPPrefix](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.PublicIPPrefix) | 2022-07-01 | v1api20220701 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_publicipprefix.yaml) | +| [RouteTable](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.RouteTable) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_routetable.yaml) | +| [RouteTablesRoute](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.RouteTablesRoute) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_routetablesroute.yaml) | +| [VirtualNetwork](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.VirtualNetwork) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_virtualnetwork.yaml) | +| [VirtualNetworkGateway](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.VirtualNetworkGateway) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_virtualnetworkgateway.yaml) | +| [VirtualNetworksSubnet](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.VirtualNetworksSubnet) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_virtualnetworkssubnet.yaml) | +| [VirtualNetworksVirtualNetworkPeering](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.VirtualNetworksVirtualNetworkPeering) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_virtualnetworksvirtualnetworkpeering.yaml) | + ## Network To install the CRDs for these resources, your ASO configuration must include `network.frontdoor.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. @@ -618,7 +681,6 @@ To install the CRDs for these resources, your ASO configuration must include `ne ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------| | [WebApplicationFirewallPolicy](https://azure.github.io/azure-service-operator/reference/network.frontdoor/v1api20220501/#network.frontdoor.azure.com/v1api20220501.WebApplicationFirewallPolicy) | 2022-05-01 | v1api20220501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network.frontdoor/v1api/v1api20220501_webapplicationfirewallpolicy.yaml) | @@ -630,7 +692,6 @@ To install the CRDs for these resources, your ASO configuration must include `op ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------| | [Workspace](https://azure.github.io/azure-service-operator/reference/operationalinsights/v1api20210601/#operationalinsights.azure.com/v1api20210601.Workspace) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/operationalinsights/v1api/v1api20210601_workspace.yaml) | @@ -642,7 +703,6 @@ To install the CRDs for these resources, your ASO configuration must include `re ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|----------------------------------------------------------------------------------------------------------------------------------------| | [OpenShiftCluster](https://azure.github.io/azure-service-operator/reference/redhatopenshift/v1api20231122/#redhatopenshift.azure.com/v1api20231122.OpenShiftCluster) | 2023-11-22 | v1api20231122 | v2.9.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/redhatopenshift/v1api/v1api20231122_openshiftcluster.yaml) | @@ -654,7 +714,6 @@ To install the CRDs for these resources, your ASO configuration must include `re ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------| | [ResourceGroup](https://azure.github.io/azure-service-operator/reference/resources/v1api20200601/#resources.azure.com/v1api20200601.ResourceGroup) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/resources/v1api/v1api20200601_resourcegroup.yaml) | @@ -668,7 +727,6 @@ The `authOptions` and `operatorSpec` properties on [`SearchService`](https://azu ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|----------------------------------------------------------------------------------------------------------------------------| | [SearchService](https://azure.github.io/azure-service-operator/reference/search/v1api20220901/#search.azure.com/v1api20220901.SearchService) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/search/v1api/v1api20220901_searchservice.yaml) | @@ -677,29 +735,34 @@ These resource(s) are available for use in the current release of ASO. Different To install the CRDs for these resources, your ASO configuration must include `servicebus.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released +### Latest Released Versions -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +These resource(s) are the latest versions available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| +| [Namespace](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.Namespace) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespace.yaml) | +| [NamespacesAuthorizationRule](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesAuthorizationRule) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacesauthorizationrule.yaml) | +| [NamespacesQueue](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesQueue) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacesqueue.yaml) | +| [NamespacesTopic](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesTopic) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacestopic.yaml) | +| [NamespacesTopicsSubscription](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesTopicsSubscription) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacestopicssubscription.yaml) | +| [NamespacesTopicsSubscriptionsRule](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesTopicsSubscriptionsRule) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacestopicssubscriptionsrule.yaml) | + +### Other Supported Versions +These are older versions of resourced still available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Namespace](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20221001preview/#servicebus.azure.com/v1api20221001preview.Namespace) | 2022-10-01-preview | v1api20221001preview | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20221001preview/v1api20221001preview_namespace.yaml) | -| [Namespace](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.Namespace) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespace.yaml) | | [Namespace](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20210101preview/#servicebus.azure.com/v1api20210101preview.Namespace) | 2021-01-01-preview | v1api20210101preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20210101preview/v1api20210101preview_namespace.yaml) | | [NamespacesAuthorizationRule](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20221001preview/#servicebus.azure.com/v1api20221001preview.NamespacesAuthorizationRule) | 2022-10-01-preview | v1api20221001preview | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20221001preview/v1api20221001preview_namespacesauthorizationrule.yaml) | -| [NamespacesAuthorizationRule](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesAuthorizationRule) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacesauthorizationrule.yaml) | | [NamespacesAuthorizationRule](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20210101preview/#servicebus.azure.com/v1api20210101preview.NamespacesAuthorizationRule) | 2021-01-01-preview | v1api20210101preview | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20210101preview/v1api20210101preview_namespacesauthorizationrule.yaml) | | [NamespacesQueue](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20221001preview/#servicebus.azure.com/v1api20221001preview.NamespacesQueue) | 2022-10-01-preview | v1api20221001preview | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20221001preview/v1api20221001preview_namespacesqueue.yaml) | -| [NamespacesQueue](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesQueue) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacesqueue.yaml) | | [NamespacesQueue](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20210101preview/#servicebus.azure.com/v1api20210101preview.NamespacesQueue) | 2021-01-01-preview | v1api20210101preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20210101preview/v1api20210101preview_namespacesqueue.yaml) | | [NamespacesTopic](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20221001preview/#servicebus.azure.com/v1api20221001preview.NamespacesTopic) | 2022-10-01-preview | v1api20221001preview | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20221001preview/v1api20221001preview_namespacestopic.yaml) | -| [NamespacesTopic](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesTopic) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacestopic.yaml) | | [NamespacesTopic](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20210101preview/#servicebus.azure.com/v1api20210101preview.NamespacesTopic) | 2021-01-01-preview | v1api20210101preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20210101preview/v1api20210101preview_namespacestopic.yaml) | | [NamespacesTopicsSubscription](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20221001preview/#servicebus.azure.com/v1api20221001preview.NamespacesTopicsSubscription) | 2022-10-01-preview | v1api20221001preview | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20221001preview/v1api20221001preview_namespacestopicssubscription.yaml) | -| [NamespacesTopicsSubscription](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesTopicsSubscription) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacestopicssubscription.yaml) | | [NamespacesTopicsSubscription](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20210101preview/#servicebus.azure.com/v1api20210101preview.NamespacesTopicsSubscription) | 2021-01-01-preview | v1api20210101preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20210101preview/v1api20210101preview_namespacestopicssubscription.yaml) | | [NamespacesTopicsSubscriptionsRule](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20221001preview/#servicebus.azure.com/v1api20221001preview.NamespacesTopicsSubscriptionsRule) | 2022-10-01-preview | v1api20221001preview | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20221001preview/v1api20221001preview_namespacestopicssubscriptionsrule.yaml) | -| [NamespacesTopicsSubscriptionsRule](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesTopicsSubscriptionsRule) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacestopicssubscriptionsrule.yaml) | | [NamespacesTopicsSubscriptionsRule](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20210101preview/#servicebus.azure.com/v1api20210101preview.NamespacesTopicsSubscriptionsRule) | 2021-01-01-preview | v1api20210101preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20210101preview/v1api20210101preview_namespacestopicssubscriptionsrule.yaml) | ## SignalRService @@ -709,7 +772,6 @@ To install the CRDs for these resources, your ASO configuration must include `si ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------| | [SignalR](https://azure.github.io/azure-service-operator/reference/signalrservice/v1api20211001/#signalrservice.azure.com/v1api20211001.SignalR) | 2021-10-01 | v1api20211001 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/signalrservice/v1api/v1api20211001_signalr.yaml) | @@ -721,7 +783,6 @@ To install the CRDs for these resources, your ASO configuration must include `sq ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Server](https://azure.github.io/azure-service-operator/reference/sql/v1api20211101/#sql.azure.com/v1api20211101.Server) | 2021-11-01 | v1api20211101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/sql/v1api20211101/v1api20211101_server.yaml) | @@ -752,37 +813,42 @@ These resource(s) are available for use in the current release of ASO. Different To install the CRDs for these resources, your ASO configuration must include `storage.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [StorageAccount](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccount) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccount.yaml) | +| [StorageAccountsBlobService](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsBlobService) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsblobservice.yaml) | +| [StorageAccountsBlobServicesContainer](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsBlobServicesContainer) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsblobservicescontainer.yaml) | +| [StorageAccountsFileService](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsFileService) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsfileservice.yaml) | +| [StorageAccountsFileServicesShare](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsFileServicesShare) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsfileservicesshare.yaml) | +| [StorageAccountsManagementPolicy](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsManagementPolicy) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsmanagementpolicy.yaml) | +| [StorageAccountsQueueService](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsQueueService) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsqueueservice.yaml) | +| [StorageAccountsQueueServicesQueue](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsQueueServicesQueue) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsqueueservicesqueue.yaml) | +| [StorageAccountsTableService](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsTableService) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountstableservice.yaml) | +| [StorageAccountsTableServicesTable](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsTableServicesTable) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountstableservicestable.yaml) | + +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [StorageAccount](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccount) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccount.yaml) | | [StorageAccount](https://azure.github.io/azure-service-operator/reference/storage/v1api20210401/#storage.azure.com/v1api20210401.StorageAccount) | 2021-04-01 | v1api20210401 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20210401/v1api20210401_storageaccount.yaml) | -| [StorageAccountsBlobService](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsBlobService) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsblobservice.yaml) | | [StorageAccountsBlobService](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsBlobService) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountsblobservice.yaml) | | [StorageAccountsBlobService](https://azure.github.io/azure-service-operator/reference/storage/v1api20210401/#storage.azure.com/v1api20210401.StorageAccountsBlobService) | 2021-04-01 | v1api20210401 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20210401/v1api20210401_storageaccountsblobservice.yaml) | -| [StorageAccountsBlobServicesContainer](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsBlobServicesContainer) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsblobservicescontainer.yaml) | | [StorageAccountsBlobServicesContainer](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsBlobServicesContainer) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountsblobservicescontainer.yaml) | | [StorageAccountsBlobServicesContainer](https://azure.github.io/azure-service-operator/reference/storage/v1api20210401/#storage.azure.com/v1api20210401.StorageAccountsBlobServicesContainer) | 2021-04-01 | v1api20210401 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20210401/v1api20210401_storageaccountsblobservicescontainer.yaml) | -| [StorageAccountsFileService](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsFileService) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsfileservice.yaml) | | [StorageAccountsFileService](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsFileService) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountsfileservice.yaml) | -| [StorageAccountsFileServicesShare](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsFileServicesShare) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsfileservicesshare.yaml) | | [StorageAccountsFileServicesShare](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsFileServicesShare) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountsfileservicesshare.yaml) | -| [StorageAccountsManagementPolicy](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsManagementPolicy) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsmanagementpolicy.yaml) | | [StorageAccountsManagementPolicy](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsManagementPolicy) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountsmanagementpolicy.yaml) | | [StorageAccountsManagementPolicy](https://azure.github.io/azure-service-operator/reference/storage/v1api20210401/#storage.azure.com/v1api20210401.StorageAccountsManagementPolicy) | 2021-04-01 | v1api20210401 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20210401/v1api20210401_storageaccountsmanagementpolicy.yaml) | -| [StorageAccountsQueueService](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsQueueService) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsqueueservice.yaml) | | [StorageAccountsQueueService](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsQueueService) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountsqueueservice.yaml) | | [StorageAccountsQueueService](https://azure.github.io/azure-service-operator/reference/storage/v1api20210401/#storage.azure.com/v1api20210401.StorageAccountsQueueService) | 2021-04-01 | v1api20210401 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20210401/v1api20210401_storageaccountsqueueservice.yaml) | -| [StorageAccountsQueueServicesQueue](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsQueueServicesQueue) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsqueueservicesqueue.yaml) | | [StorageAccountsQueueServicesQueue](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsQueueServicesQueue) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountsqueueservicesqueue.yaml) | | [StorageAccountsQueueServicesQueue](https://azure.github.io/azure-service-operator/reference/storage/v1api20210401/#storage.azure.com/v1api20210401.StorageAccountsQueueServicesQueue) | 2021-04-01 | v1api20210401 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20210401/v1api20210401_storageaccountsqueueservicesqueue.yaml) | -| [StorageAccountsTableService](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsTableService) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountstableservice.yaml) | | [StorageAccountsTableService](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsTableService) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountstableservice.yaml) | -| [StorageAccountsTableServicesTable](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsTableServicesTable) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountstableservicestable.yaml) | | [StorageAccountsTableServicesTable](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsTableServicesTable) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountstableservicestable.yaml) | ## Subscription @@ -792,7 +858,6 @@ To install the CRDs for these resources, your ASO configuration must include `su ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|--------------------------------------------------------------------------------------------------------------------------| | [Alias](https://azure.github.io/azure-service-operator/reference/subscription/v1api20211001/#subscription.azure.com/v1api20211001.Alias) | 2021-10-01 | v1api20211001 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/subscription/v1api/v1api20211001_alias.yaml) | @@ -804,7 +869,6 @@ To install the CRDs for these resources, your ASO configuration must include `sy ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------| | [Workspace](https://azure.github.io/azure-service-operator/reference/synapse/v1api20210601/#synapse.azure.com/v1api20210601.Workspace) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/synapse/v1api/v1api20210601_workspace.yaml) | @@ -825,7 +889,6 @@ Development of these new resources is complete and they will be available in the ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|----------------------------------------------------------------------------------------------------------------------| | [ServerFarm](https://azure.github.io/azure-service-operator/reference/web/v1api20220301/#web.azure.com/v1api20220301.ServerFarm) | 2022-03-01 | v1api20220301 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/web/v1api/v1api20220301_serverfarm.yaml) | diff --git a/docs/hugo/content/reference/alertsmanagement/_index.md b/docs/hugo/content/reference/alertsmanagement/_index.md index b6b9be36b5b..64ff0385965 100644 --- a/docs/hugo/content/reference/alertsmanagement/_index.md +++ b/docs/hugo/content/reference/alertsmanagement/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `al ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------| | [PrometheusRuleGroup](https://azure.github.io/azure-service-operator/reference/alertsmanagement/v1api20230301/#alertsmanagement.azure.com/v1api20230301.PrometheusRuleGroup) | 2023-03-01 | v1api20230301 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/alertsmanagement/v1api20230301/v1api20230301_prometheusrulegroup.yaml) | diff --git a/docs/hugo/content/reference/apimanagement/_index.md b/docs/hugo/content/reference/apimanagement/_index.md index 5e825ce38ff..7fdc30a7544 100644 --- a/docs/hugo/content/reference/apimanagement/_index.md +++ b/docs/hugo/content/reference/apimanagement/_index.md @@ -5,38 +5,43 @@ no_list: true --- To install the CRDs for these resources, your ASO configuration must include `apimanagement.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released +### Latest Released Versions -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +These resource(s) are the latest versions available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| [Api](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Api) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_api.yaml) | +| [ApiVersionSet](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.ApiVersionSet) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_apiversionset.yaml) | +| [AuthorizationProvider](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.AuthorizationProvider) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_authorizationprovider.yaml) | +| [AuthorizationProvidersAuthorization](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.AuthorizationProvidersAuthorization) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_authorizationprovidersauthorization.yaml) | +| [AuthorizationProvidersAuthorizationsAccessPolicy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.AuthorizationProvidersAuthorizationsAccessPolicy) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_authorizationprovidersauthorizationsaccesspolicy.yaml) | +| [Backend](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Backend) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_backend.yaml) | +| [NamedValue](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.NamedValue) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_namedvalue.yaml) | +| [Policy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Policy) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_policy.yaml) | +| [PolicyFragment](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.PolicyFragment) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_policyfragment.yaml) | +| [Product](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Product) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_product.yaml) | +| [ProductApi](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.ProductApi) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_productapi.yaml) | +| [ProductPolicy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.ProductPolicy) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_productpolicy.yaml) | +| [Service](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Service) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_service.yaml) | +| [Subscription](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Subscription) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_subscription.yaml) | +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Api](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.Api) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_api.yaml) | -| [Api](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Api) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_api.yaml) | | [ApiVersionSet](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.ApiVersionSet) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_apiversionset.yaml) | -| [ApiVersionSet](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.ApiVersionSet) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_apiversionset.yaml) | | [AuthorizationProvider](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.AuthorizationProvider) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_authorizationprovider.yaml) | -| [AuthorizationProvider](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.AuthorizationProvider) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_authorizationprovider.yaml) | | [AuthorizationProvidersAuthorization](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.AuthorizationProvidersAuthorization) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_authorizationprovidersauthorization.yaml) | -| [AuthorizationProvidersAuthorization](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.AuthorizationProvidersAuthorization) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_authorizationprovidersauthorization.yaml) | | [AuthorizationProvidersAuthorizationsAccessPolicy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.AuthorizationProvidersAuthorizationsAccessPolicy) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_authorizationprovidersauthorizationsaccesspolicy.yaml) | -| [AuthorizationProvidersAuthorizationsAccessPolicy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.AuthorizationProvidersAuthorizationsAccessPolicy) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_authorizationprovidersauthorizationsaccesspolicy.yaml) | | [Backend](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.Backend) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_backend.yaml) | -| [Backend](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Backend) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_backend.yaml) | | [NamedValue](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.NamedValue) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_namedvalue.yaml) | -| [NamedValue](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.NamedValue) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_namedvalue.yaml) | | [Policy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.Policy) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_policy.yaml) | -| [Policy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Policy) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_policy.yaml) | | [PolicyFragment](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.PolicyFragment) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_policyfragment.yaml) | -| [PolicyFragment](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.PolicyFragment) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_policyfragment.yaml) | | [Product](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.Product) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_product.yaml) | -| [Product](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Product) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_product.yaml) | | [ProductApi](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.ProductApi) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_productapi.yaml) | -| [ProductApi](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.ProductApi) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_productapi.yaml) | | [ProductPolicy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.ProductPolicy) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_productpolicy.yaml) | -| [ProductPolicy](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.ProductPolicy) | 2022-08-01 | v1api20220801 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_productpolicy.yaml) | | [Service](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.Service) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_service.yaml) | -| [Service](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Service) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_service.yaml) | | [Subscription](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.Subscription) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_subscription.yaml) | -| [Subscription](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Subscription) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_subscription.yaml) | diff --git a/docs/hugo/content/reference/appconfiguration/_index.md b/docs/hugo/content/reference/appconfiguration/_index.md index cfc5aa01520..877cdab3dfc 100644 --- a/docs/hugo/content/reference/appconfiguration/_index.md +++ b/docs/hugo/content/reference/appconfiguration/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `ap ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------| | [ConfigurationStore](https://azure.github.io/azure-service-operator/reference/appconfiguration/v1api20220501/#appconfiguration.azure.com/v1api20220501.ConfigurationStore) | 2022-05-01 | v1api20220501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/appconfiguration/v1api/v1api20220501_configurationstore.yaml) | diff --git a/docs/hugo/content/reference/authorization/_index.md b/docs/hugo/content/reference/authorization/_index.md index 6b2cd596fb0..c7b0b4f093b 100644 --- a/docs/hugo/content/reference/authorization/_index.md +++ b/docs/hugo/content/reference/authorization/_index.md @@ -5,13 +5,18 @@ no_list: true --- To install the CRDs for these resources, your ASO configuration must include `authorization.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released +### Latest Released Versions -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +These resource(s) are the latest versions available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|--------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------| +| [RoleAssignment](https://azure.github.io/azure-service-operator/reference/authorization/v1api20220401/#authorization.azure.com/v1api20220401.RoleAssignment) | 2022-04-01 | v1api20220401 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/authorization/v1api20220401/v1api20220401_roleassignment.yaml) | +| [RoleDefinition](https://azure.github.io/azure-service-operator/reference/authorization/v1api20220401/#authorization.azure.com/v1api20220401.RoleDefinition) | 2022-04-01 | v1api20220401 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/authorization/v1api20220401/v1api20220401_roledefinition.yaml) | +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|----------------------------------------------------------------------------------------------------------------------------------------------------------| -| [RoleAssignment](https://azure.github.io/azure-service-operator/reference/authorization/v1api20220401/#authorization.azure.com/v1api20220401.RoleAssignment) | 2022-04-01 | v1api20220401 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/authorization/v1api20220401/v1api20220401_roleassignment.yaml) | | [RoleAssignment](https://azure.github.io/azure-service-operator/reference/authorization/v1api20200801preview/#authorization.azure.com/v1api20200801preview.RoleAssignment) | 2020-08-01-preview | v1api20200801preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/authorization/v1api20200801preview/v1api20200801preview_roleassignment.yaml) | -| [RoleDefinition](https://azure.github.io/azure-service-operator/reference/authorization/v1api20220401/#authorization.azure.com/v1api20220401.RoleDefinition) | 2022-04-01 | v1api20220401 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/authorization/v1api20220401/v1api20220401_roledefinition.yaml) | diff --git a/docs/hugo/content/reference/batch/_index.md b/docs/hugo/content/reference/batch/_index.md index 1c2e3e7273a..4938a5d13c4 100644 --- a/docs/hugo/content/reference/batch/_index.md +++ b/docs/hugo/content/reference/batch/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `ba ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|--------------------------------------------------------------------------------------------------------------------------| | [BatchAccount](https://azure.github.io/azure-service-operator/reference/batch/v1api20210101/#batch.azure.com/v1api20210101.BatchAccount) | 2021-01-01 | v1api20210101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/batch/v1api/v1api20210101_batchaccount.yaml) | diff --git a/docs/hugo/content/reference/cache/_index.md b/docs/hugo/content/reference/cache/_index.md index 58c9839a494..0983c386dd7 100644 --- a/docs/hugo/content/reference/cache/_index.md +++ b/docs/hugo/content/reference/cache/_index.md @@ -5,26 +5,31 @@ no_list: true --- To install the CRDs for these resources, your ASO configuration must include `cache.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------| | [Redis](https://azure.github.io/azure-service-operator/reference/cache/v1api20230801/#cache.azure.com/v1api20230801.Redis) | 2023-08-01 | v1api20230801 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230801/v1api20230801_redis.yaml) | +| [RedisEnterprise](https://azure.github.io/azure-service-operator/reference/cache/v1api20230701/#cache.azure.com/v1api20230701.RedisEnterprise) | 2023-07-01 | v1api20230701 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230701/v1api20230701_redisenterprise.yaml) | +| [RedisEnterpriseDatabase](https://azure.github.io/azure-service-operator/reference/cache/v1api20230701/#cache.azure.com/v1api20230701.RedisEnterpriseDatabase) | 2023-07-01 | v1api20230701 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230701/v1api20230701_redisenterprisedatabase.yaml) | +| [RedisFirewallRule](https://azure.github.io/azure-service-operator/reference/cache/v1api20230801/#cache.azure.com/v1api20230801.RedisFirewallRule) | 2023-08-01 | v1api20230801 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230801/v1api20230801_redisfirewallrule.yaml) | +| [RedisLinkedServer](https://azure.github.io/azure-service-operator/reference/cache/v1api20230801/#cache.azure.com/v1api20230801.RedisLinkedServer) | 2023-08-01 | v1api20230801 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230801/v1api20230801_redislinkedserver.yaml) | +| [RedisPatchSchedule](https://azure.github.io/azure-service-operator/reference/cache/v1api20230801/#cache.azure.com/v1api20230801.RedisPatchSchedule) | 2023-08-01 | v1api20230801 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230801/v1api20230801_redispatchschedule.yaml) | + +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------| | [Redis](https://azure.github.io/azure-service-operator/reference/cache/v1api20230401/#cache.azure.com/v1api20230401.Redis) | 2023-04-01 | v1api20230401 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230401/v1api20230401_redis.yaml) | | [Redis](https://azure.github.io/azure-service-operator/reference/cache/v1api20201201/#cache.azure.com/v1api20201201.Redis) | 2020-12-01 | v1api20201201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20201201/v1api20201201_redis.yaml) | -| [RedisEnterprise](https://azure.github.io/azure-service-operator/reference/cache/v1api20230701/#cache.azure.com/v1api20230701.RedisEnterprise) | 2023-07-01 | v1api20230701 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230701/v1api20230701_redisenterprise.yaml) | | [RedisEnterprise](https://azure.github.io/azure-service-operator/reference/cache/v1api20210301/#cache.azure.com/v1api20210301.RedisEnterprise) | 2021-03-01 | v1api20210301 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20210301/v1api20210301_redisenterprise.yaml) | -| [RedisEnterpriseDatabase](https://azure.github.io/azure-service-operator/reference/cache/v1api20230701/#cache.azure.com/v1api20230701.RedisEnterpriseDatabase) | 2023-07-01 | v1api20230701 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230701/v1api20230701_redisenterprisedatabase.yaml) | | [RedisEnterpriseDatabase](https://azure.github.io/azure-service-operator/reference/cache/v1api20210301/#cache.azure.com/v1api20210301.RedisEnterpriseDatabase) | 2021-03-01 | v1api20210301 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20210301/v1api20210301_redisenterprisedatabase.yaml) | -| [RedisFirewallRule](https://azure.github.io/azure-service-operator/reference/cache/v1api20230801/#cache.azure.com/v1api20230801.RedisFirewallRule) | 2023-08-01 | v1api20230801 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230801/v1api20230801_redisfirewallrule.yaml) | | [RedisFirewallRule](https://azure.github.io/azure-service-operator/reference/cache/v1api20230401/#cache.azure.com/v1api20230401.RedisFirewallRule) | 2023-04-01 | v1api20230401 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230401/v1api20230401_redisfirewallrule.yaml) | | [RedisFirewallRule](https://azure.github.io/azure-service-operator/reference/cache/v1api20201201/#cache.azure.com/v1api20201201.RedisFirewallRule) | 2020-12-01 | v1api20201201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20201201/v1api20201201_redisfirewallrule.yaml) | -| [RedisLinkedServer](https://azure.github.io/azure-service-operator/reference/cache/v1api20230801/#cache.azure.com/v1api20230801.RedisLinkedServer) | 2023-08-01 | v1api20230801 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230801/v1api20230801_redislinkedserver.yaml) | | [RedisLinkedServer](https://azure.github.io/azure-service-operator/reference/cache/v1api20230401/#cache.azure.com/v1api20230401.RedisLinkedServer) | 2023-04-01 | v1api20230401 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230401/v1api20230401_redislinkedserver.yaml) | | [RedisLinkedServer](https://azure.github.io/azure-service-operator/reference/cache/v1api20201201/#cache.azure.com/v1api20201201.RedisLinkedServer) | 2020-12-01 | v1api20201201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20201201/v1api20201201_redislinkedserver.yaml) | -| [RedisPatchSchedule](https://azure.github.io/azure-service-operator/reference/cache/v1api20230801/#cache.azure.com/v1api20230801.RedisPatchSchedule) | 2023-08-01 | v1api20230801 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230801/v1api20230801_redispatchschedule.yaml) | | [RedisPatchSchedule](https://azure.github.io/azure-service-operator/reference/cache/v1api20230401/#cache.azure.com/v1api20230401.RedisPatchSchedule) | 2023-04-01 | v1api20230401 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230401/v1api20230401_redispatchschedule.yaml) | | [RedisPatchSchedule](https://azure.github.io/azure-service-operator/reference/cache/v1api20201201/#cache.azure.com/v1api20201201.RedisPatchSchedule) | 2020-12-01 | v1api20201201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20201201/v1api20201201_redispatchschedule.yaml) | diff --git a/docs/hugo/content/reference/cdn/_index.md b/docs/hugo/content/reference/cdn/_index.md index 482dbabec13..6164771743d 100644 --- a/docs/hugo/content/reference/cdn/_index.md +++ b/docs/hugo/content/reference/cdn/_index.md @@ -5,10 +5,9 @@ no_list: true --- To install the CRDs for these resources, your ASO configuration must include `cdn.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------| | [AfdCustomDomain](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.AfdCustomDomain) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_afdcustomdomain.yaml) | @@ -16,7 +15,6 @@ These resource(s) are available for use in the current release of ASO. Different | [AfdOrigin](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.AfdOrigin) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_afdorigin.yaml) | | [AfdOriginGroup](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.AfdOriginGroup) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_afdorigingroup.yaml) | | [Profile](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.Profile) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_profile.yaml) | -| [Profile](https://azure.github.io/azure-service-operator/reference/cdn/v1api20210601/#cdn.azure.com/v1api20210601.Profile) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20210601/v1api20210601_profile.yaml) | | [ProfilesEndpoint](https://azure.github.io/azure-service-operator/reference/cdn/v1api20210601/#cdn.azure.com/v1api20210601.ProfilesEndpoint) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20210601/v1api20210601_profilesendpoint.yaml) | | [Route](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.Route) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_route.yaml) | | [Rule](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.Rule) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_rule.yaml) | @@ -24,3 +22,10 @@ These resource(s) are available for use in the current release of ASO. Different | [Secret](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.Secret) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_secret.yaml) | | [SecurityPolicy](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.SecurityPolicy) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_securitypolicy.yaml) | +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------| +| [Profile](https://azure.github.io/azure-service-operator/reference/cdn/v1api20210601/#cdn.azure.com/v1api20210601.Profile) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20210601/v1api20210601_profile.yaml) | + diff --git a/docs/hugo/content/reference/compute/_index.md b/docs/hugo/content/reference/compute/_index.md index cdeffefea0b..f1a0fc24edf 100644 --- a/docs/hugo/content/reference/compute/_index.md +++ b/docs/hugo/content/reference/compute/_index.md @@ -5,27 +5,32 @@ no_list: true --- To install the CRDs for these resources, your ASO configuration must include `compute.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------| | [Disk](https://azure.github.io/azure-service-operator/reference/compute/v1api20240302/#compute.azure.com/v1api20240302.Disk) | 2024-03-02 | v1api20240302 | v2.9.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20240302_disk.yaml) | -| [Disk](https://azure.github.io/azure-service-operator/reference/compute/v1api20200930/#compute.azure.com/v1api20200930.Disk) | 2020-09-30 | v1api20200930 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20200930_disk.yaml) | | [DiskAccess](https://azure.github.io/azure-service-operator/reference/compute/v1api20240302/#compute.azure.com/v1api20240302.DiskAccess) | 2024-03-02 | v1api20240302 | v2.9.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20240302_diskaccess.yaml) | | [DiskEncryptionSet](https://azure.github.io/azure-service-operator/reference/compute/v1api20240302/#compute.azure.com/v1api20240302.DiskEncryptionSet) | 2024-03-02 | v1api20240302 | v2.9.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20240302_diskencryptionset.yaml) | -| [DiskEncryptionSet](https://azure.github.io/azure-service-operator/reference/compute/v1api20220702/#compute.azure.com/v1api20220702.DiskEncryptionSet) | 2022-07-02 | v1api20220702 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20220702_diskencryptionset.yaml) | | [Image](https://azure.github.io/azure-service-operator/reference/compute/v1api20220301/#compute.azure.com/v1api20220301.Image) | 2022-03-01 | v1api20220301 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20220301_image.yaml) | -| [Image](https://azure.github.io/azure-service-operator/reference/compute/v1api20210701/#compute.azure.com/v1api20210701.Image) | 2021-07-01 | v1api20210701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20210701_image.yaml) | | [Snapshot](https://azure.github.io/azure-service-operator/reference/compute/v1api20240302/#compute.azure.com/v1api20240302.Snapshot) | 2024-03-02 | v1api20240302 | v2.9.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20240302_snapshot.yaml) | -| [Snapshot](https://azure.github.io/azure-service-operator/reference/compute/v1api20200930/#compute.azure.com/v1api20200930.Snapshot) | 2020-09-30 | v1api20200930 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20200930_snapshot.yaml) | | [VirtualMachine](https://azure.github.io/azure-service-operator/reference/compute/v1api20220301/#compute.azure.com/v1api20220301.VirtualMachine) | 2022-03-01 | v1api20220301 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20220301_virtualmachine.yaml) | -| [VirtualMachine](https://azure.github.io/azure-service-operator/reference/compute/v1api20201201/#compute.azure.com/v1api20201201.VirtualMachine) | 2020-12-01 | v1api20201201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20201201_virtualmachine.yaml) | | [VirtualMachineScaleSet](https://azure.github.io/azure-service-operator/reference/compute/v1api20220301/#compute.azure.com/v1api20220301.VirtualMachineScaleSet) | 2022-03-01 | v1api20220301 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20220301_virtualmachinescaleset.yaml) | -| [VirtualMachineScaleSet](https://azure.github.io/azure-service-operator/reference/compute/v1api20201201/#compute.azure.com/v1api20201201.VirtualMachineScaleSet) | 2020-12-01 | v1api20201201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20201201_virtualmachinescaleset.yaml) | | [VirtualMachineScaleSetsExtension](https://azure.github.io/azure-service-operator/reference/compute/v1api20220301/#compute.azure.com/v1api20220301.VirtualMachineScaleSetsExtension) | 2022-03-01 | v1api20220301 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20220301_virtualmachinescalesetsextension.yaml) | -| [VirtualMachineScaleSetsExtension](https://azure.github.io/azure-service-operator/reference/compute/v1api20201201/#compute.azure.com/v1api20201201.VirtualMachineScaleSetsExtension) | 2020-12-01 | v1api20201201 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20201201_virtualmachinescalesetsextension.yaml) | | [VirtualMachinesExtension](https://azure.github.io/azure-service-operator/reference/compute/v1api20220301/#compute.azure.com/v1api20220301.VirtualMachinesExtension) | 2022-03-01 | v1api20220301 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20220301_virtualmachinesextension.yaml) | + +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------| +| [Disk](https://azure.github.io/azure-service-operator/reference/compute/v1api20200930/#compute.azure.com/v1api20200930.Disk) | 2020-09-30 | v1api20200930 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20200930_disk.yaml) | +| [DiskEncryptionSet](https://azure.github.io/azure-service-operator/reference/compute/v1api20220702/#compute.azure.com/v1api20220702.DiskEncryptionSet) | 2022-07-02 | v1api20220702 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20220702_diskencryptionset.yaml) | +| [Image](https://azure.github.io/azure-service-operator/reference/compute/v1api20210701/#compute.azure.com/v1api20210701.Image) | 2021-07-01 | v1api20210701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20210701_image.yaml) | +| [Snapshot](https://azure.github.io/azure-service-operator/reference/compute/v1api20200930/#compute.azure.com/v1api20200930.Snapshot) | 2020-09-30 | v1api20200930 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20200930_snapshot.yaml) | +| [VirtualMachine](https://azure.github.io/azure-service-operator/reference/compute/v1api20201201/#compute.azure.com/v1api20201201.VirtualMachine) | 2020-12-01 | v1api20201201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20201201_virtualmachine.yaml) | +| [VirtualMachineScaleSet](https://azure.github.io/azure-service-operator/reference/compute/v1api20201201/#compute.azure.com/v1api20201201.VirtualMachineScaleSet) | 2020-12-01 | v1api20201201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20201201_virtualmachinescaleset.yaml) | +| [VirtualMachineScaleSetsExtension](https://azure.github.io/azure-service-operator/reference/compute/v1api20201201/#compute.azure.com/v1api20201201.VirtualMachineScaleSetsExtension) | 2020-12-01 | v1api20201201 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20201201_virtualmachinescalesetsextension.yaml) | | [VirtualMachinesExtension](https://azure.github.io/azure-service-operator/reference/compute/v1api20201201/#compute.azure.com/v1api20201201.VirtualMachinesExtension) | 2020-12-01 | v1api20201201 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20201201_virtualmachinesextension.yaml) | diff --git a/docs/hugo/content/reference/containerinstance/_index.md b/docs/hugo/content/reference/containerinstance/_index.md index 5813d10f269..087c61249b0 100644 --- a/docs/hugo/content/reference/containerinstance/_index.md +++ b/docs/hugo/content/reference/containerinstance/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `co ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|----------------------------------------------------------------------------------------------------------------------------------------| | [ContainerGroup](https://azure.github.io/azure-service-operator/reference/containerinstance/v1api20211001/#containerinstance.azure.com/v1api20211001.ContainerGroup) | 2021-10-01 | v1api20211001 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerinstance/v1api/v1api20211001_containergroup.yaml) | diff --git a/docs/hugo/content/reference/containerregistry/_index.md b/docs/hugo/content/reference/containerregistry/_index.md index ab4cf016030..8df0f6089c4 100644 --- a/docs/hugo/content/reference/containerregistry/_index.md +++ b/docs/hugo/content/reference/containerregistry/_index.md @@ -17,7 +17,6 @@ Development of these new resources is complete and they will be available in the ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------| | [Registry](https://azure.github.io/azure-service-operator/reference/containerregistry/v1api20210901/#containerregistry.azure.com/v1api20210901.Registry) | 2021-09-01 | v1api20210901 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerregistry/v1api20210901/v1api20210901_registry.yaml) | diff --git a/docs/hugo/content/reference/containerservice/_index.md b/docs/hugo/content/reference/containerservice/_index.md index 20f0e44f377..c2fd7852baa 100644 --- a/docs/hugo/content/reference/containerservice/_index.md +++ b/docs/hugo/content/reference/containerservice/_index.md @@ -5,29 +5,34 @@ no_list: true --- To install the CRDs for these resources, your ASO configuration must include `containerservice.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released +### Latest Released Versions -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +These resource(s) are the latest versions available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------| +| [Fleet](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230315preview/#containerservice.azure.com/v1api20230315preview.Fleet) | 2023-03-15-preview | v1api20230315preview | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleet.yaml) | +| [FleetsMember](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230315preview/#containerservice.azure.com/v1api20230315preview.FleetsMember) | 2023-03-15-preview | v1api20230315preview | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleetsmember.yaml) | +| [FleetsUpdateRun](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230315preview/#containerservice.azure.com/v1api20230315preview.FleetsUpdateRun) | 2023-03-15-preview | v1api20230315preview | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleetsupdaterun.yaml) | +| [MaintenanceConfiguration](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240901/#containerservice.azure.com/v1api20240901.MaintenanceConfiguration) | 2024-09-01 | v1api20240901 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240901/v1api20240901_maintenanceconfiguration.yaml) | +| [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240901/#containerservice.azure.com/v1api20240901.ManagedCluster) | 2024-09-01 | v1api20240901 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240901/v1api20240901_managedcluster.yaml) | +| [ManagedClustersAgentPool](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240901/#containerservice.azure.com/v1api20240901.ManagedClustersAgentPool) | 2024-09-01 | v1api20240901 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240901/v1api20240901_managedclustersagentpool.yaml) | +| [TrustedAccessRoleBinding](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240901/#containerservice.azure.com/v1api20240901.TrustedAccessRoleBinding) | 2024-09-01 | v1api20240901 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240901/v1api20240901_trustedaccessrolebinding.yaml) | +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| [Fleet](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230315preview/#containerservice.azure.com/v1api20230315preview.Fleet) | 2023-03-15-preview | v1api20230315preview | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleet.yaml) | -| [FleetsMember](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230315preview/#containerservice.azure.com/v1api20230315preview.FleetsMember) | 2023-03-15-preview | v1api20230315preview | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleetsmember.yaml) | -| [FleetsUpdateRun](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230315preview/#containerservice.azure.com/v1api20230315preview.FleetsUpdateRun) | 2023-03-15-preview | v1api20230315preview | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleetsupdaterun.yaml) | -| [MaintenanceConfiguration](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240901/#containerservice.azure.com/v1api20240901.MaintenanceConfiguration) | 2024-09-01 | v1api20240901 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240901/v1api20240901_maintenanceconfiguration.yaml) | -| [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240901/#containerservice.azure.com/v1api20240901.ManagedCluster) | 2024-09-01 | v1api20240901 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240901/v1api20240901_managedcluster.yaml) | | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240402preview/#containerservice.azure.com/v1api20240402preview.ManagedCluster) | 2024-04-02-preview | v1api20240402preview | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240402preview/v1api20240402preview_managedcluster.yaml) | | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20231102preview/#containerservice.azure.com/v1api20231102preview.ManagedCluster) | 2023-11-02-preview | v1api20231102preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20231102preview/v1api20231102preview_managedcluster.yaml) | | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20231001/#containerservice.azure.com/v1api20231001.ManagedCluster) | 2023-10-01 | v1api20231001 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20231001/v1api20231001_managedcluster.yaml) | | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230201/#containerservice.azure.com/v1api20230201.ManagedCluster) | 2023-02-01 | v1api20230201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230201/v1api20230201_managedcluster.yaml) | | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20210501/#containerservice.azure.com/v1api20210501.ManagedCluster) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20210501/v1api20210501_managedcluster.yaml) | -| [ManagedClustersAgentPool](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240901/#containerservice.azure.com/v1api20240901.ManagedClustersAgentPool) | 2024-09-01 | v1api20240901 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240901/v1api20240901_managedclustersagentpool.yaml) | | [ManagedClustersAgentPool](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240402preview/#containerservice.azure.com/v1api20240402preview.ManagedClustersAgentPool) | 2024-04-02-preview | v1api20240402preview | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240402preview/v1api20240402preview_managedclustersagentpool.yaml) | | [ManagedClustersAgentPool](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20231102preview/#containerservice.azure.com/v1api20231102preview.ManagedClustersAgentPool) | 2023-11-02-preview | v1api20231102preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20231102preview/v1api20231102preview_managedclustersagentpool.yaml) | | [ManagedClustersAgentPool](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20231001/#containerservice.azure.com/v1api20231001.ManagedClustersAgentPool) | 2023-10-01 | v1api20231001 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20231001/v1api20231001_managedclustersagentpool.yaml) | | [ManagedClustersAgentPool](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230201/#containerservice.azure.com/v1api20230201.ManagedClustersAgentPool) | 2023-02-01 | v1api20230201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230201/v1api20230201_managedclustersagentpool.yaml) | | [ManagedClustersAgentPool](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20210501/#containerservice.azure.com/v1api20210501.ManagedClustersAgentPool) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20210501/v1api20210501_managedclustersagentpool.yaml) | -| [TrustedAccessRoleBinding](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240901/#containerservice.azure.com/v1api20240901.TrustedAccessRoleBinding) | 2024-09-01 | v1api20240901 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240901/v1api20240901_trustedaccessrolebinding.yaml) | | [TrustedAccessRoleBinding](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240402preview/#containerservice.azure.com/v1api20240402preview.TrustedAccessRoleBinding) | 2024-04-02-preview | v1api20240402preview | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240402preview/v1api20240402preview_trustedaccessrolebinding.yaml) | | [TrustedAccessRoleBinding](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20231001/#containerservice.azure.com/v1api20231001.TrustedAccessRoleBinding) | 2023-10-01 | v1api20231001 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20231001/v1api20231001_trustedaccessrolebinding.yaml) | diff --git a/docs/hugo/content/reference/datafactory/_index.md b/docs/hugo/content/reference/datafactory/_index.md index 29e46bb5eb9..1bb0556287b 100644 --- a/docs/hugo/content/reference/datafactory/_index.md +++ b/docs/hugo/content/reference/datafactory/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `da ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------| | [Factory](https://azure.github.io/azure-service-operator/reference/datafactory/v1api20180601/#datafactory.azure.com/v1api20180601.Factory) | 2018-06-01 | v1api20180601 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/datafactory/v1api/v1api20180601_factory.yaml) | diff --git a/docs/hugo/content/reference/dataprotection/_index.md b/docs/hugo/content/reference/dataprotection/_index.md index ab15455cf39..a401f477b74 100644 --- a/docs/hugo/content/reference/dataprotection/_index.md +++ b/docs/hugo/content/reference/dataprotection/_index.md @@ -5,15 +5,20 @@ no_list: true --- To install the CRDs for these resources, your ASO configuration must include `dataprotection.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| | [BackupVault](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20231101/#dataprotection.azure.com/v1api20231101.BackupVault) | 2023-11-01 | v1api20231101 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20231101/v1api20231101_backupvault.yaml) | -| [BackupVault](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20230101/#dataprotection.azure.com/v1api20230101.BackupVault) | 2023-01-01 | v1api20230101 | v2.2.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20230101/v1api20230101_backupvault.yaml) | | [BackupVaultsBackupInstance](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20231101/#dataprotection.azure.com/v1api20231101.BackupVaultsBackupInstance) | 2023-11-01 | v1api20231101 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20231101/v1api20231101_backupvaultsbackupinstance.yaml) | | [BackupVaultsBackupPolicy](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20231101/#dataprotection.azure.com/v1api20231101.BackupVaultsBackupPolicy) | 2023-11-01 | v1api20231101 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20231101/v1api20231101_backupvaultsbackuppolicy.yaml) | -| [BackupVaultsBackupPolicy](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20230101/#dataprotection.azure.com/v1api20230101.BackupVaultsBackupPolicy) | 2023-01-01 | v1api20230101 | v2.2.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20230101/v1api20230101_backupvaultsbackuppolicy.yaml) | + +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------| +| [BackupVault](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20230101/#dataprotection.azure.com/v1api20230101.BackupVault) | 2023-01-01 | v1api20230101 | v2.2.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20230101/v1api20230101_backupvault.yaml) | +| [BackupVaultsBackupPolicy](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20230101/#dataprotection.azure.com/v1api20230101.BackupVaultsBackupPolicy) | 2023-01-01 | v1api20230101 | v2.2.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20230101/v1api20230101_backupvaultsbackuppolicy.yaml) | diff --git a/docs/hugo/content/reference/dbformariadb/_index.md b/docs/hugo/content/reference/dbformariadb/_index.md index 8cf5b187e79..17e4fdfca33 100644 --- a/docs/hugo/content/reference/dbformariadb/_index.md +++ b/docs/hugo/content/reference/dbformariadb/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `db ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|----------------------------------------------------------------------------------------------------------------------------------| | [Configuration](https://azure.github.io/azure-service-operator/reference/dbformariadb/v1api20180601/#dbformariadb.azure.com/v1api20180601.Configuration) | 2018-06-01 | v1api20180601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformariadb/v1api/v1api20180601_configuration.yaml) | diff --git a/docs/hugo/content/reference/dbformysql/_index.md b/docs/hugo/content/reference/dbformysql/_index.md index e07302df777..3873061700c 100644 --- a/docs/hugo/content/reference/dbformysql/_index.md +++ b/docs/hugo/content/reference/dbformysql/_index.md @@ -9,21 +9,26 @@ Azure Database for MySQL - Single Server is on the retirement path and is [sched Existing instances of *Single Server* can be migrated to *Azure Database for MySQL - Flexible Server* using the [Azure Database migration Service](https://azure.microsoft.com/en-us/products/database-migration). -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------| | [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20230630/#dbformysql.azure.com/v1api20230630.FlexibleServer) | 2023-06-30 | v1api20230630 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20230630/v1api20230630_flexibleserver.yaml) | -| [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20210501/#dbformysql.azure.com/v1api20210501.FlexibleServer) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20220101/v1api20210501_flexibleserver.yaml) | | [FlexibleServersAdministrator](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20230630/#dbformysql.azure.com/v1api20230630.FlexibleServersAdministrator) | 2023-06-30 | v1api20230630 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20230630/v1api20230630_flexibleserversadministrator.yaml) | -| [FlexibleServersAdministrator](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20220101/#dbformysql.azure.com/v1api20220101.FlexibleServersAdministrator) | 2022-01-01 | v1api20220101 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20220101/v1api20220101_flexibleserversadministrator.yaml) | | [FlexibleServersConfiguration](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20230630/#dbformysql.azure.com/v1api20230630.FlexibleServersConfiguration) | 2023-06-30 | v1api20230630 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20230630/v1api20230630_flexibleserversconfiguration.yaml) | -| [FlexibleServersConfiguration](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20220101/#dbformysql.azure.com/v1api20220101.FlexibleServersConfiguration) | 2022-01-01 | v1api20220101 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20220101/v1api20220101_flexibleserversconfiguration.yaml) | | [FlexibleServersDatabase](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20230630/#dbformysql.azure.com/v1api20230630.FlexibleServersDatabase) | 2023-06-30 | v1api20230630 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20230630/v1api20230630_flexibleserversdatabase.yaml) | -| [FlexibleServersDatabase](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20210501/#dbformysql.azure.com/v1api20210501.FlexibleServersDatabase) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20210501/v1api20210501_flexibleserversdatabase.yaml) | | [FlexibleServersFirewallRule](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20230630/#dbformysql.azure.com/v1api20230630.FlexibleServersFirewallRule) | 2023-06-30 | v1api20230630 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20230630/v1api20230630_flexibleserversfirewallrule.yaml) | -| [FlexibleServersFirewallRule](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20210501/#dbformysql.azure.com/v1api20210501.FlexibleServersFirewallRule) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20210501/v1api20210501_flexibleserversfirewallrule.yaml) | | [User](https://azure.github.io/azure-service-operator/reference/dbformysql/v1/#dbformysql.azure.com/v1.User) | v1 | v1 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api/v1_user.yaml) | +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------| +| [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20210501/#dbformysql.azure.com/v1api20210501.FlexibleServer) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20220101/v1api20210501_flexibleserver.yaml) | +| [FlexibleServersAdministrator](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20220101/#dbformysql.azure.com/v1api20220101.FlexibleServersAdministrator) | 2022-01-01 | v1api20220101 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20220101/v1api20220101_flexibleserversadministrator.yaml) | +| [FlexibleServersConfiguration](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20220101/#dbformysql.azure.com/v1api20220101.FlexibleServersConfiguration) | 2022-01-01 | v1api20220101 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20220101/v1api20220101_flexibleserversconfiguration.yaml) | +| [FlexibleServersDatabase](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20210501/#dbformysql.azure.com/v1api20210501.FlexibleServersDatabase) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20210501/v1api20210501_flexibleserversdatabase.yaml) | +| [FlexibleServersFirewallRule](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20210501/#dbformysql.azure.com/v1api20210501.FlexibleServersFirewallRule) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20210501/v1api20210501_flexibleserversfirewallrule.yaml) | + diff --git a/docs/hugo/content/reference/dbforpostgresql/_index.md b/docs/hugo/content/reference/dbforpostgresql/_index.md index a661f06cfc1..e5386e172ca 100644 --- a/docs/hugo/content/reference/dbforpostgresql/_index.md +++ b/docs/hugo/content/reference/dbforpostgresql/_index.md @@ -5,27 +5,32 @@ no_list: true --- To install the CRDs for these resources, your ASO configuration must include `dbforpostgresql.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released +### Latest Released Versions -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +These resource(s) are the latest versions available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| +| [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServer) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserver.yaml) | +| [FlexibleServersConfiguration](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServersConfiguration) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserversconfiguration.yaml) | +| [FlexibleServersDatabase](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServersDatabase) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserversdatabase.yaml) | +| [FlexibleServersFirewallRule](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServersFirewallRule) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserversfirewallrule.yaml) | +| [User](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1/#dbforpostgresql.azure.com/v1.User) | v1 | v1 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api/v1_user.yaml) | +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20230601preview/#dbforpostgresql.azure.com/v1api20230601preview.FlexibleServer) | 2023-06-01-preview | v1api20230601preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20230601preview/v1api20230601preview_flexibleserver.yaml) | -| [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServer) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserver.yaml) | | [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20220120preview/#dbforpostgresql.azure.com/v1api20220120preview.FlexibleServer) | 2022-01-20-preview | v1api20220120preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20220120preview/v1api20220120preview_flexibleserver.yaml) | | [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20210601/#dbforpostgresql.azure.com/v1api20210601.FlexibleServer) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20210601/v1api20210601_flexibleserver.yaml) | | [FlexibleServersConfiguration](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20230601preview/#dbforpostgresql.azure.com/v1api20230601preview.FlexibleServersConfiguration) | 2023-06-01-preview | v1api20230601preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20230601preview/v1api20230601preview_flexibleserversconfiguration.yaml) | -| [FlexibleServersConfiguration](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServersConfiguration) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserversconfiguration.yaml) | | [FlexibleServersConfiguration](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20220120preview/#dbforpostgresql.azure.com/v1api20220120preview.FlexibleServersConfiguration) | 2022-01-20-preview | v1api20220120preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20220120preview/v1api20220120preview_flexibleserversconfiguration.yaml) | | [FlexibleServersConfiguration](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20210601/#dbforpostgresql.azure.com/v1api20210601.FlexibleServersConfiguration) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20210601/v1api20210601_flexibleserversconfiguration.yaml) | | [FlexibleServersDatabase](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20230601preview/#dbforpostgresql.azure.com/v1api20230601preview.FlexibleServersDatabase) | 2023-06-01-preview | v1api20230601preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20230601preview/v1api20230601preview_flexibleserversdatabase.yaml) | -| [FlexibleServersDatabase](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServersDatabase) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserversdatabase.yaml) | | [FlexibleServersDatabase](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20220120preview/#dbforpostgresql.azure.com/v1api20220120preview.FlexibleServersDatabase) | 2022-01-20-preview | v1api20220120preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20220120preview/v1api20220120preview_flexibleserversdatabase.yaml) | | [FlexibleServersDatabase](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20210601/#dbforpostgresql.azure.com/v1api20210601.FlexibleServersDatabase) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20210601/v1api20210601_flexibleserversdatabase.yaml) | | [FlexibleServersFirewallRule](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20230601preview/#dbforpostgresql.azure.com/v1api20230601preview.FlexibleServersFirewallRule) | 2023-06-01-preview | v1api20230601preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20230601preview/v1api20230601preview_flexibleserversfirewallrule.yaml) | -| [FlexibleServersFirewallRule](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServersFirewallRule) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserversfirewallrule.yaml) | | [FlexibleServersFirewallRule](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20220120preview/#dbforpostgresql.azure.com/v1api20220120preview.FlexibleServersFirewallRule) | 2022-01-20-preview | v1api20220120preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20220120preview/v1api20220120preview_flexibleserversfirewallrule.yaml) | | [FlexibleServersFirewallRule](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20210601/#dbforpostgresql.azure.com/v1api20210601.FlexibleServersFirewallRule) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20210601/v1api20210601_flexibleserversfirewallrule.yaml) | -| [User](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1/#dbforpostgresql.azure.com/v1.User) | v1 | v1 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api/v1_user.yaml) | diff --git a/docs/hugo/content/reference/devices/_index.md b/docs/hugo/content/reference/devices/_index.md index e7bbd5371a9..62cfe0212c0 100644 --- a/docs/hugo/content/reference/devices/_index.md +++ b/docs/hugo/content/reference/devices/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `de ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|----------------------------------------------------------------------------------------------------------------------| | [IotHub](https://azure.github.io/azure-service-operator/reference/devices/v1api20210702/#devices.azure.com/v1api20210702.IotHub) | 2021-07-02 | v1api20210702 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/devices/v1api/v1api20210702_iothub.yaml) | diff --git a/docs/hugo/content/reference/documentdb/_index.md b/docs/hugo/content/reference/documentdb/_index.md index 86171e5cc4d..2f9952570b9 100644 --- a/docs/hugo/content/reference/documentdb/_index.md +++ b/docs/hugo/content/reference/documentdb/_index.md @@ -5,36 +5,41 @@ no_list: true --- To install the CRDs for these resources, your ASO configuration must include `documentdb.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [DatabaseAccount](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.DatabaseAccount) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20231115/v1api20231115_databaseaccount.yaml) | -| [DatabaseAccount](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.DatabaseAccount) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_databaseaccount.yaml) | | [MongodbDatabase](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.MongodbDatabase) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20231115/v1api20231115_mongodbdatabase.yaml) | -| [MongodbDatabase](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.MongodbDatabase) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_mongodbdatabase.yaml) | | [MongodbDatabaseCollection](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.MongodbDatabaseCollection) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20231115/v1api20231115_mongodbdatabasecollection.yaml) | -| [MongodbDatabaseCollection](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.MongodbDatabaseCollection) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_mongodbdatabasecollection.yaml) | | [MongodbDatabaseCollectionThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.MongodbDatabaseCollectionThroughputSetting) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20231115/v1api20231115_mongodbdatabasecollectionthroughputsetting.yaml) | -| [MongodbDatabaseCollectionThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.MongodbDatabaseCollectionThroughputSetting) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_mongodbdatabasecollectionthroughputsetting.yaml) | | [MongodbDatabaseThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.MongodbDatabaseThroughputSetting) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20231115/v1api20231115_mongodbdatabasethroughputsetting.yaml) | -| [MongodbDatabaseThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.MongodbDatabaseThroughputSetting) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_mongodbdatabasethroughputsetting.yaml) | | [SqlDatabase](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.SqlDatabase) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20231115/v1api20231115_sqldatabase.yaml) | -| [SqlDatabase](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabase) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabase.yaml) | | [SqlDatabaseContainer](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.SqlDatabaseContainer) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20231115/v1api20231115_sqldatabasecontainer.yaml) | -| [SqlDatabaseContainer](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainer) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontainer.yaml) | | [SqlDatabaseContainerStoredProcedure](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.SqlDatabaseContainerStoredProcedure) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20231115/v1api20231115_sqldatabasecontainerstoredprocedure.yaml) | -| [SqlDatabaseContainerStoredProcedure](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainerStoredProcedure) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontainerstoredprocedure.yaml) | | [SqlDatabaseContainerThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.SqlDatabaseContainerThroughputSetting) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20231115/v1api20231115_sqldatabasecontainerthroughputsetting.yaml) | -| [SqlDatabaseContainerThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainerThroughputSetting) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontainerthroughputsetting.yaml) | | [SqlDatabaseContainerTrigger](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.SqlDatabaseContainerTrigger) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20231115/v1api20231115_sqldatabasecontainertrigger.yaml) | -| [SqlDatabaseContainerTrigger](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainerTrigger) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontainertrigger.yaml) | | [SqlDatabaseContainerUserDefinedFunction](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.SqlDatabaseContainerUserDefinedFunction) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20231115/v1api20231115_sqldatabasecontaineruserdefinedfunction.yaml) | -| [SqlDatabaseContainerUserDefinedFunction](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainerUserDefinedFunction) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontaineruserdefinedfunction.yaml) | | [SqlDatabaseThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.SqlDatabaseThroughputSetting) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20231115/v1api20231115_sqldatabasethroughputsetting.yaml) | -| [SqlDatabaseThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseThroughputSetting) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasethroughputsetting.yaml) | | [SqlRoleAssignment](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.SqlRoleAssignment) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20231115/v1api20231115_sqlroleassignment.yaml) | + +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| [DatabaseAccount](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.DatabaseAccount) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_databaseaccount.yaml) | +| [MongodbDatabase](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.MongodbDatabase) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_mongodbdatabase.yaml) | +| [MongodbDatabaseCollection](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.MongodbDatabaseCollection) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_mongodbdatabasecollection.yaml) | +| [MongodbDatabaseCollectionThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.MongodbDatabaseCollectionThroughputSetting) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_mongodbdatabasecollectionthroughputsetting.yaml) | +| [MongodbDatabaseThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.MongodbDatabaseThroughputSetting) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_mongodbdatabasethroughputsetting.yaml) | +| [SqlDatabase](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabase) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabase.yaml) | +| [SqlDatabaseContainer](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainer) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontainer.yaml) | +| [SqlDatabaseContainerStoredProcedure](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainerStoredProcedure) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontainerstoredprocedure.yaml) | +| [SqlDatabaseContainerThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainerThroughputSetting) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontainerthroughputsetting.yaml) | +| [SqlDatabaseContainerTrigger](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainerTrigger) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontainertrigger.yaml) | +| [SqlDatabaseContainerUserDefinedFunction](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseContainerUserDefinedFunction) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasecontaineruserdefinedfunction.yaml) | +| [SqlDatabaseThroughputSetting](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlDatabaseThroughputSetting) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqldatabasethroughputsetting.yaml) | | [SqlRoleAssignment](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.SqlRoleAssignment) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20210515/v1api20210515_sqlroleassignment.yaml) | diff --git a/docs/hugo/content/reference/eventgrid/_index.md b/docs/hugo/content/reference/eventgrid/_index.md index 2ca1111ca8f..aa1eb92f2c5 100644 --- a/docs/hugo/content/reference/eventgrid/_index.md +++ b/docs/hugo/content/reference/eventgrid/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `ev ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-----------------------------------------------------------------------------------------------------------------------------------| | [Domain](https://azure.github.io/azure-service-operator/reference/eventgrid/v1api20200601/#eventgrid.azure.com/v1api20200601.Domain) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/eventgrid/v1api/v1api20200601_domain.yaml) | diff --git a/docs/hugo/content/reference/eventhub/_index.md b/docs/hugo/content/reference/eventhub/_index.md index 5863ef2ca49..5d458611a07 100644 --- a/docs/hugo/content/reference/eventhub/_index.md +++ b/docs/hugo/content/reference/eventhub/_index.md @@ -20,7 +20,6 @@ Development of these new resources is complete and they will be available in the ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Namespace](https://azure.github.io/azure-service-operator/reference/eventhub/v1api20211101/#eventhub.azure.com/v1api20211101.Namespace) | 2021-11-01 | v1api20211101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/eventhub/v1api20211101/v1api20211101_namespace.yaml) | diff --git a/docs/hugo/content/reference/insights/_index.md b/docs/hugo/content/reference/insights/_index.md index ce1798d156b..3c51e509b03 100644 --- a/docs/hugo/content/reference/insights/_index.md +++ b/docs/hugo/content/reference/insights/_index.md @@ -5,10 +5,9 @@ no_list: true --- To install the CRDs for these resources, your ASO configuration must include `insights.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------| | [ActionGroup](https://azure.github.io/azure-service-operator/reference/insights/v1api20230101/#insights.azure.com/v1api20230101.ActionGroup) | 2023-01-01 | v1api20230101 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api/v1api20230101_actiongroup.yaml) | @@ -18,5 +17,11 @@ These resource(s) are available for use in the current release of ASO. Different | [MetricAlert](https://azure.github.io/azure-service-operator/reference/insights/v1api20180301/#insights.azure.com/v1api20180301.MetricAlert) | 2018-03-01 | v1api20180301 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api/v1api20180301_metricalert.yaml) | | [ScheduledQueryRule](https://azure.github.io/azure-service-operator/reference/insights/v1api20220615/#insights.azure.com/v1api20220615.ScheduledQueryRule) | 2022-06-15 | v1api20220615 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api/v1api20220615_scheduledqueryrule.yaml) | | [Webtest](https://azure.github.io/azure-service-operator/reference/insights/v1api20220615/#insights.azure.com/v1api20220615.Webtest) | 2022-06-15 | v1api20220615 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api/v1api20220615_webtest.yaml) | -| [Webtest](https://azure.github.io/azure-service-operator/reference/insights/v1api20180501preview/#insights.azure.com/v1api20180501preview.Webtest) | 2018-05-01-preview | v1api20180501preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api/v1api20180501preview_webtest.yaml) | + +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|-------------------------------------------------------------------------------------------------------------------------------| +| [Webtest](https://azure.github.io/azure-service-operator/reference/insights/v1api20180501preview/#insights.azure.com/v1api20180501preview.Webtest) | 2018-05-01-preview | v1api20180501preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api/v1api20180501preview_webtest.yaml) | diff --git a/docs/hugo/content/reference/keyvault/_index.md b/docs/hugo/content/reference/keyvault/_index.md index 0a1554997bb..428419a4020 100644 --- a/docs/hugo/content/reference/keyvault/_index.md +++ b/docs/hugo/content/reference/keyvault/_index.md @@ -5,12 +5,17 @@ no_list: true --- To install the CRDs for these resources, your ASO configuration must include `keyvault.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released +### Latest Released Versions -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +These resource(s) are the latest versions available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------| +| [Vault](https://azure.github.io/azure-service-operator/reference/keyvault/v1api20230701/#keyvault.azure.com/v1api20230701.Vault) | 2023-07-01 | v1api20230701 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/keyvault/v1api20230701/v1api20230701_vault.yaml) | +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------| -| [Vault](https://azure.github.io/azure-service-operator/reference/keyvault/v1api20230701/#keyvault.azure.com/v1api20230701.Vault) | 2023-07-01 | v1api20230701 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/keyvault/v1api20230701/v1api20230701_vault.yaml) | | [Vault](https://azure.github.io/azure-service-operator/reference/keyvault/v1api20210401preview/#keyvault.azure.com/v1api20210401preview.Vault) | 2021-04-01-preview | v1api20210401preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/keyvault/v1api20210401preview/v1api20210401preview_vault.yaml) | diff --git a/docs/hugo/content/reference/kubernetesconfiguration/_index.md b/docs/hugo/content/reference/kubernetesconfiguration/_index.md index e0a0b4cccbf..1a16b098a80 100644 --- a/docs/hugo/content/reference/kubernetesconfiguration/_index.md +++ b/docs/hugo/content/reference/kubernetesconfiguration/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `ku ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------| | [Extension](https://azure.github.io/azure-service-operator/reference/kubernetesconfiguration/v1api20230501/#kubernetesconfiguration.azure.com/v1api20230501.Extension) | 2023-05-01 | v1api20230501 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/kubernetesconfiguration/v1api/v1api20230501_extension.yaml) | diff --git a/docs/hugo/content/reference/machinelearningservices/_index.md b/docs/hugo/content/reference/machinelearningservices/_index.md index e806c73d581..04d1251a750 100644 --- a/docs/hugo/content/reference/machinelearningservices/_index.md +++ b/docs/hugo/content/reference/machinelearningservices/_index.md @@ -5,17 +5,22 @@ no_list: true --- To install the CRDs for these resources, your ASO configuration must include `machinelearningservices.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Registry](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20240401/#machinelearningservices.azure.com/v1api20240401.Registry) | 2024-04-01 | v1api20240401 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20240401/v1api20240401_registry.yaml) | | [Workspace](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20240401/#machinelearningservices.azure.com/v1api20240401.Workspace) | 2024-04-01 | v1api20240401 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20240401/v1api20240401_workspace.yaml) | -| [Workspace](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20210701/#machinelearningservices.azure.com/v1api20210701.Workspace) | 2021-07-01 | v1api20210701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20210701/v1api20210701_workspace.yaml) | | [WorkspacesCompute](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20240401/#machinelearningservices.azure.com/v1api20240401.WorkspacesCompute) | 2024-04-01 | v1api20240401 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20240401/v1api20240401_workspacescompute.yaml) | -| [WorkspacesCompute](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20210701/#machinelearningservices.azure.com/v1api20210701.WorkspacesCompute) | 2021-07-01 | v1api20210701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20210701/v1api20210701_workspacescompute.yaml) | | [WorkspacesConnection](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20240401/#machinelearningservices.azure.com/v1api20240401.WorkspacesConnection) | 2024-04-01 | v1api20240401 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20240401/v1api20240401_workspacesconnection.yaml) | + +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| +| [Workspace](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20210701/#machinelearningservices.azure.com/v1api20210701.Workspace) | 2021-07-01 | v1api20210701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20210701/v1api20210701_workspace.yaml) | +| [WorkspacesCompute](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20210701/#machinelearningservices.azure.com/v1api20210701.WorkspacesCompute) | 2021-07-01 | v1api20210701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20210701/v1api20210701_workspacescompute.yaml) | | [WorkspacesConnection](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20210701/#machinelearningservices.azure.com/v1api20210701.WorkspacesConnection) | 2021-07-01 | v1api20210701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20210701/v1api20210701_workspacesconnection.yaml) | diff --git a/docs/hugo/content/reference/managedidentity/_index.md b/docs/hugo/content/reference/managedidentity/_index.md index 4891ae4bad9..073881f5a34 100644 --- a/docs/hugo/content/reference/managedidentity/_index.md +++ b/docs/hugo/content/reference/managedidentity/_index.md @@ -5,14 +5,19 @@ no_list: true --- To install the CRDs for these resources, your ASO configuration must include `managedidentity.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released +### Latest Released Versions -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +These resource(s) are the latest versions available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------| +| [FederatedIdentityCredential](https://azure.github.io/azure-service-operator/reference/managedidentity/v1api20230131/#managedidentity.azure.com/v1api20230131.FederatedIdentityCredential) | 2023-01-31 | v1api20230131 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/managedidentity/v1api20230131/v1api20230131_federatedidentitycredential.yaml) | +| [UserAssignedIdentity](https://azure.github.io/azure-service-operator/reference/managedidentity/v1api20230131/#managedidentity.azure.com/v1api20230131.UserAssignedIdentity) | 2023-01-31 | v1api20230131 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/managedidentity/v1api20230131/v1api20230131_userassignedidentity.yaml) | +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| [FederatedIdentityCredential](https://azure.github.io/azure-service-operator/reference/managedidentity/v1api20230131/#managedidentity.azure.com/v1api20230131.FederatedIdentityCredential) | 2023-01-31 | v1api20230131 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/managedidentity/v1api20230131/v1api20230131_federatedidentitycredential.yaml) | | [FederatedIdentityCredential](https://azure.github.io/azure-service-operator/reference/managedidentity/v1api20220131preview/#managedidentity.azure.com/v1api20220131preview.FederatedIdentityCredential) | 2022-01-31-preview | v1api20220131preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/managedidentity/v1api20220131preview/v1api20220131preview_federatedidentitycredential.yaml) | -| [UserAssignedIdentity](https://azure.github.io/azure-service-operator/reference/managedidentity/v1api20230131/#managedidentity.azure.com/v1api20230131.UserAssignedIdentity) | 2023-01-31 | v1api20230131 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/managedidentity/v1api20230131/v1api20230131_userassignedidentity.yaml) | | [UserAssignedIdentity](https://azure.github.io/azure-service-operator/reference/managedidentity/v1api20181130/#managedidentity.azure.com/v1api20181130.UserAssignedIdentity) | 2018-11-30 | v1api20181130 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/managedidentity/v1api20181130/v1api20181130_userassignedidentity.yaml) | diff --git a/docs/hugo/content/reference/monitor/_index.md b/docs/hugo/content/reference/monitor/_index.md index f0efeae0604..7136c185a61 100644 --- a/docs/hugo/content/reference/monitor/_index.md +++ b/docs/hugo/content/reference/monitor/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `mo ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------| | [Account](https://azure.github.io/azure-service-operator/reference/monitor/v1api20230403/#monitor.azure.com/v1api20230403.Account) | 2023-04-03 | v1api20230403 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/monitor/v1api20230403/v1api20230403_account.yaml) | diff --git a/docs/hugo/content/reference/network.frontdoor/_index.md b/docs/hugo/content/reference/network.frontdoor/_index.md index 4b91bdf7928..bb3ac2687e7 100644 --- a/docs/hugo/content/reference/network.frontdoor/_index.md +++ b/docs/hugo/content/reference/network.frontdoor/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `ne ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------| | [WebApplicationFirewallPolicy](https://azure.github.io/azure-service-operator/reference/network.frontdoor/v1api20220501/#network.frontdoor.azure.com/v1api20220501.WebApplicationFirewallPolicy) | 2022-05-01 | v1api20220501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network.frontdoor/v1api/v1api20220501_webapplicationfirewallpolicy.yaml) | diff --git a/docs/hugo/content/reference/network/_index.md b/docs/hugo/content/reference/network/_index.md index 65c4a97d9ec..92002586de1 100644 --- a/docs/hugo/content/reference/network/_index.md +++ b/docs/hugo/content/reference/network/_index.md @@ -5,16 +5,14 @@ no_list: true --- To install the CRDs for these resources, your ASO configuration must include `network.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------| | [ApplicationGateway](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.ApplicationGateway) | 2022-07-01 | v1api20220701 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_applicationgateway.yaml) | | [ApplicationSecurityGroup](https://azure.github.io/azure-service-operator/reference/network/v1api20240101/#network.azure.com/v1api20240101.ApplicationSecurityGroup) | 2024-01-01 | v1api20240101 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240101/v1api20240101_applicationsecuritygroup.yaml) | | [BastionHost](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.BastionHost) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_bastionhost.yaml) | -| [BastionHost](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.BastionHost) | 2022-07-01 | v1api20220701 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_bastionhost.yaml) | | [DnsForwardingRuleSetsForwardingRule](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.DnsForwardingRuleSetsForwardingRule) | 2022-07-01 | v1api20220701 | v2.2.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_dnsforwardingrulesetsforwardingrule.yaml) | | [DnsForwardingRuleSetsVirtualNetworkLink](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.DnsForwardingRuleSetsVirtualNetworkLink) | 2022-07-01 | v1api20220701 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_dnsforwardingrulesetsvirtualnetworklink.yaml) | | [DnsForwardingRuleset](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.DnsForwardingRuleset) | 2022-07-01 | v1api20220701 | v2.2.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_dnsforwardingruleset.yaml) | @@ -32,60 +30,67 @@ These resource(s) are available for use in the current release of ASO. Different | [DnsZonesSRVRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20180501/#network.azure.com/v1api20180501.DnsZonesSRVRecord) | 2018-05-01 | v1api20180501 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20180501/v1api20180501_dnszonessrvrecord.yaml) | | [DnsZonesTXTRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20180501/#network.azure.com/v1api20180501.DnsZonesTXTRecord) | 2018-05-01 | v1api20180501 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20180501/v1api20180501_dnszonestxtrecord.yaml) | | [LoadBalancer](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.LoadBalancer) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_loadbalancer.yaml) | -| [LoadBalancer](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.LoadBalancer) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_loadbalancer.yaml) | | [LoadBalancersInboundNatRule](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.LoadBalancersInboundNatRule) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_loadbalancersinboundnatrule.yaml) | -| [LoadBalancersInboundNatRule](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.LoadBalancersInboundNatRule) | 2020-11-01 | v1api20201101 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_loadbalancersinboundnatrule.yaml) | | [NatGateway](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.NatGateway) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_natgateway.yaml) | -| [NatGateway](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.NatGateway) | 2022-07-01 | v1api20220701 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_natgateway.yaml) | | [NetworkInterface](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.NetworkInterface) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_networkinterface.yaml) | -| [NetworkInterface](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.NetworkInterface) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_networkinterface.yaml) | | [NetworkSecurityGroup](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.NetworkSecurityGroup) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_networksecuritygroup.yaml) | -| [NetworkSecurityGroup](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.NetworkSecurityGroup) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_networksecuritygroup.yaml) | | [NetworkSecurityGroupsSecurityRule](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.NetworkSecurityGroupsSecurityRule) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_networksecuritygroupssecurityrule.yaml) | -| [NetworkSecurityGroupsSecurityRule](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.NetworkSecurityGroupsSecurityRule) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_networksecuritygroupssecurityrule.yaml) | | [PrivateDnsZone](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZone) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszone.yaml) | -| [PrivateDnsZone](https://azure.github.io/azure-service-operator/reference/network/v1api20180901/#network.azure.com/v1api20180901.PrivateDnsZone) | 2018-09-01 | v1api20180901 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20180901/v1api20180901_privatednszone.yaml) | | [PrivateDnsZonesAAAARecord](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZonesAAAARecord) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszonesaaaarecord.yaml) | -| [PrivateDnsZonesAAAARecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesAAAARecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesaaaarecord.yaml) | | [PrivateDnsZonesARecord](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZonesARecord) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszonesarecord.yaml) | -| [PrivateDnsZonesARecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesARecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesarecord.yaml) | | [PrivateDnsZonesCNAMERecord](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZonesCNAMERecord) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszonescnamerecord.yaml) | -| [PrivateDnsZonesCNAMERecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesCNAMERecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonescnamerecord.yaml) | | [PrivateDnsZonesMXRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZonesMXRecord) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszonesmxrecord.yaml) | -| [PrivateDnsZonesMXRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesMXRecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesmxrecord.yaml) | | [PrivateDnsZonesPTRRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZonesPTRRecord) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszonesptrrecord.yaml) | -| [PrivateDnsZonesPTRRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesPTRRecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesptrrecord.yaml) | | [PrivateDnsZonesSRVRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZonesSRVRecord) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszonessrvrecord.yaml) | -| [PrivateDnsZonesSRVRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesSRVRecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonessrvrecord.yaml) | | [PrivateDnsZonesTXTRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZonesTXTRecord) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszonestxtrecord.yaml) | -| [PrivateDnsZonesTXTRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesTXTRecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonestxtrecord.yaml) | | [PrivateDnsZonesVirtualNetworkLink](https://azure.github.io/azure-service-operator/reference/network/v1api20240601/#network.azure.com/v1api20240601.PrivateDnsZonesVirtualNetworkLink) | 2024-06-01 | v1api20240601 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240601/v1api20240601_privatednszonesvirtualnetworklink.yaml) | -| [PrivateDnsZonesVirtualNetworkLink](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesVirtualNetworkLink) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesvirtualnetworklink.yaml) | | [PrivateEndpoint](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.PrivateEndpoint) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_privateendpoint.yaml) | -| [PrivateEndpoint](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.PrivateEndpoint) | 2022-07-01 | v1api20220701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_privateendpoint.yaml) | | [PrivateEndpointsPrivateDnsZoneGroup](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.PrivateEndpointsPrivateDnsZoneGroup) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_privateendpointsprivatednszonegroup.yaml) | -| [PrivateEndpointsPrivateDnsZoneGroup](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.PrivateEndpointsPrivateDnsZoneGroup) | 2022-07-01 | v1api20220701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_privateendpointsprivatednszonegroup.yaml) | | [PrivateLinkService](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.PrivateLinkService) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_privatelinkservice.yaml) | -| [PrivateLinkService](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.PrivateLinkService) | 2022-07-01 | v1api20220701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_privatelinkservice.yaml) | | [PublicIPAddress](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.PublicIPAddress) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_publicipaddress.yaml) | -| [PublicIPAddress](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.PublicIPAddress) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_publicipaddress.yaml) | | [PublicIPPrefix](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.PublicIPPrefix) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_publicipprefix.yaml) | -| [PublicIPPrefix](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.PublicIPPrefix) | 2022-07-01 | v1api20220701 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_publicipprefix.yaml) | | [RouteTable](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.RouteTable) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_routetable.yaml) | -| [RouteTable](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.RouteTable) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_routetable.yaml) | | [RouteTablesRoute](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.RouteTablesRoute) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_routetablesroute.yaml) | -| [RouteTablesRoute](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.RouteTablesRoute) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_routetablesroute.yaml) | | [TrafficManagerProfile](https://azure.github.io/azure-service-operator/reference/network/v1api20220401/#network.azure.com/v1api20220401.TrafficManagerProfile) | 2022-04-01 | v1api20220401 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220401/v1api20220401_trafficmanagerprofile.yaml) | | [TrafficManagerProfilesAzureEndpoint](https://azure.github.io/azure-service-operator/reference/network/v1api20220401/#network.azure.com/v1api20220401.TrafficManagerProfilesAzureEndpoint) | 2022-04-01 | v1api20220401 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220401/v1api20220401_trafficmanagerprofilesazureendpoint.yaml) | | [TrafficManagerProfilesExternalEndpoint](https://azure.github.io/azure-service-operator/reference/network/v1api20220401/#network.azure.com/v1api20220401.TrafficManagerProfilesExternalEndpoint) | 2022-04-01 | v1api20220401 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220401/v1api20220401_trafficmanagerprofilesexternalendpoint.yaml) | | [TrafficManagerProfilesNestedEndpoint](https://azure.github.io/azure-service-operator/reference/network/v1api20220401/#network.azure.com/v1api20220401.TrafficManagerProfilesNestedEndpoint) | 2022-04-01 | v1api20220401 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220401/v1api20220401_trafficmanagerprofilesnestedendpoint.yaml) | | [VirtualNetwork](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.VirtualNetwork) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_virtualnetwork.yaml) | -| [VirtualNetwork](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.VirtualNetwork) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_virtualnetwork.yaml) | | [VirtualNetworkGateway](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.VirtualNetworkGateway) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_virtualnetworkgateway.yaml) | -| [VirtualNetworkGateway](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.VirtualNetworkGateway) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_virtualnetworkgateway.yaml) | | [VirtualNetworksSubnet](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.VirtualNetworksSubnet) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_virtualnetworkssubnet.yaml) | -| [VirtualNetworksSubnet](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.VirtualNetworksSubnet) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_virtualnetworkssubnet.yaml) | | [VirtualNetworksVirtualNetworkPeering](https://azure.github.io/azure-service-operator/reference/network/v1api20240301/#network.azure.com/v1api20240301.VirtualNetworksVirtualNetworkPeering) | 2024-03-01 | v1api20240301 | v2.11.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20240301/v1api20240301_virtualnetworksvirtualnetworkpeering.yaml) | -| [VirtualNetworksVirtualNetworkPeering](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.VirtualNetworksVirtualNetworkPeering) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_virtualnetworksvirtualnetworkpeering.yaml) | | [WebApplicationFirewallPolicy](https://azure.github.io/azure-service-operator/reference/network/v1api20240101/#network.azure.com/v1api20240101.WebApplicationFirewallPolicy) | 2024-01-01 | v1api20240101 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20240101_webapplicationfirewallpolicy.yaml) | +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| +| [BastionHost](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.BastionHost) | 2022-07-01 | v1api20220701 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_bastionhost.yaml) | +| [LoadBalancer](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.LoadBalancer) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_loadbalancer.yaml) | +| [LoadBalancersInboundNatRule](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.LoadBalancersInboundNatRule) | 2020-11-01 | v1api20201101 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_loadbalancersinboundnatrule.yaml) | +| [NatGateway](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.NatGateway) | 2022-07-01 | v1api20220701 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_natgateway.yaml) | +| [NetworkInterface](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.NetworkInterface) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_networkinterface.yaml) | +| [NetworkSecurityGroup](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.NetworkSecurityGroup) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_networksecuritygroup.yaml) | +| [NetworkSecurityGroupsSecurityRule](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.NetworkSecurityGroupsSecurityRule) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_networksecuritygroupssecurityrule.yaml) | +| [PrivateDnsZone](https://azure.github.io/azure-service-operator/reference/network/v1api20180901/#network.azure.com/v1api20180901.PrivateDnsZone) | 2018-09-01 | v1api20180901 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20180901/v1api20180901_privatednszone.yaml) | +| [PrivateDnsZonesAAAARecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesAAAARecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesaaaarecord.yaml) | +| [PrivateDnsZonesARecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesARecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesarecord.yaml) | +| [PrivateDnsZonesCNAMERecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesCNAMERecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonescnamerecord.yaml) | +| [PrivateDnsZonesMXRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesMXRecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesmxrecord.yaml) | +| [PrivateDnsZonesPTRRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesPTRRecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesptrrecord.yaml) | +| [PrivateDnsZonesSRVRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesSRVRecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonessrvrecord.yaml) | +| [PrivateDnsZonesTXTRecord](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesTXTRecord) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonestxtrecord.yaml) | +| [PrivateDnsZonesVirtualNetworkLink](https://azure.github.io/azure-service-operator/reference/network/v1api20200601/#network.azure.com/v1api20200601.PrivateDnsZonesVirtualNetworkLink) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20200601/v1api20200601_privatednszonesvirtualnetworklink.yaml) | +| [PrivateEndpoint](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.PrivateEndpoint) | 2022-07-01 | v1api20220701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_privateendpoint.yaml) | +| [PrivateEndpointsPrivateDnsZoneGroup](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.PrivateEndpointsPrivateDnsZoneGroup) | 2022-07-01 | v1api20220701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_privateendpointsprivatednszonegroup.yaml) | +| [PrivateLinkService](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.PrivateLinkService) | 2022-07-01 | v1api20220701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_privatelinkservice.yaml) | +| [PublicIPAddress](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.PublicIPAddress) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_publicipaddress.yaml) | +| [PublicIPPrefix](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.PublicIPPrefix) | 2022-07-01 | v1api20220701 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_publicipprefix.yaml) | +| [RouteTable](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.RouteTable) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_routetable.yaml) | +| [RouteTablesRoute](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.RouteTablesRoute) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_routetablesroute.yaml) | +| [VirtualNetwork](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.VirtualNetwork) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_virtualnetwork.yaml) | +| [VirtualNetworkGateway](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.VirtualNetworkGateway) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_virtualnetworkgateway.yaml) | +| [VirtualNetworksSubnet](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.VirtualNetworksSubnet) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_virtualnetworkssubnet.yaml) | +| [VirtualNetworksVirtualNetworkPeering](https://azure.github.io/azure-service-operator/reference/network/v1api20201101/#network.azure.com/v1api20201101.VirtualNetworksVirtualNetworkPeering) | 2020-11-01 | v1api20201101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20201101/v1api20201101_virtualnetworksvirtualnetworkpeering.yaml) | + diff --git a/docs/hugo/content/reference/operationalinsights/_index.md b/docs/hugo/content/reference/operationalinsights/_index.md index 1640c194283..820752fdb6b 100644 --- a/docs/hugo/content/reference/operationalinsights/_index.md +++ b/docs/hugo/content/reference/operationalinsights/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `op ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------| | [Workspace](https://azure.github.io/azure-service-operator/reference/operationalinsights/v1api20210601/#operationalinsights.azure.com/v1api20210601.Workspace) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/operationalinsights/v1api/v1api20210601_workspace.yaml) | diff --git a/docs/hugo/content/reference/redhatopenshift/_index.md b/docs/hugo/content/reference/redhatopenshift/_index.md index 8740ace20f8..fc59b579744 100644 --- a/docs/hugo/content/reference/redhatopenshift/_index.md +++ b/docs/hugo/content/reference/redhatopenshift/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `re ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|----------------------------------------------------------------------------------------------------------------------------------------| | [OpenShiftCluster](https://azure.github.io/azure-service-operator/reference/redhatopenshift/v1api20231122/#redhatopenshift.azure.com/v1api20231122.OpenShiftCluster) | 2023-11-22 | v1api20231122 | v2.9.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/redhatopenshift/v1api/v1api20231122_openshiftcluster.yaml) | diff --git a/docs/hugo/content/reference/resources/_index.md b/docs/hugo/content/reference/resources/_index.md index 0459dcba1d4..976ff87afda 100644 --- a/docs/hugo/content/reference/resources/_index.md +++ b/docs/hugo/content/reference/resources/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `re ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------| | [ResourceGroup](https://azure.github.io/azure-service-operator/reference/resources/v1api20200601/#resources.azure.com/v1api20200601.ResourceGroup) | 2020-06-01 | v1api20200601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/resources/v1api/v1api20200601_resourcegroup.yaml) | diff --git a/docs/hugo/content/reference/search/_index.md b/docs/hugo/content/reference/search/_index.md index 053332e259f..a34396d5a89 100644 --- a/docs/hugo/content/reference/search/_index.md +++ b/docs/hugo/content/reference/search/_index.md @@ -10,7 +10,6 @@ The `authOptions` and `operatorSpec` properties on [`SearchService`](https://azu ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|----------------------------------------------------------------------------------------------------------------------------| | [SearchService](https://azure.github.io/azure-service-operator/reference/search/v1api20220901/#search.azure.com/v1api20220901.SearchService) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/search/v1api/v1api20220901_searchservice.yaml) | diff --git a/docs/hugo/content/reference/servicebus/_index.md b/docs/hugo/content/reference/servicebus/_index.md index 7d8589f7a61..ae61f9d5318 100644 --- a/docs/hugo/content/reference/servicebus/_index.md +++ b/docs/hugo/content/reference/servicebus/_index.md @@ -5,28 +5,33 @@ no_list: true --- To install the CRDs for these resources, your ASO configuration must include `servicebus.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released +### Latest Released Versions -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +These resource(s) are the latest versions available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| +| [Namespace](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.Namespace) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespace.yaml) | +| [NamespacesAuthorizationRule](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesAuthorizationRule) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacesauthorizationrule.yaml) | +| [NamespacesQueue](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesQueue) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacesqueue.yaml) | +| [NamespacesTopic](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesTopic) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacestopic.yaml) | +| [NamespacesTopicsSubscription](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesTopicsSubscription) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacestopicssubscription.yaml) | +| [NamespacesTopicsSubscriptionsRule](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesTopicsSubscriptionsRule) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacestopicssubscriptionsrule.yaml) | +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Namespace](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20221001preview/#servicebus.azure.com/v1api20221001preview.Namespace) | 2022-10-01-preview | v1api20221001preview | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20221001preview/v1api20221001preview_namespace.yaml) | -| [Namespace](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.Namespace) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespace.yaml) | | [Namespace](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20210101preview/#servicebus.azure.com/v1api20210101preview.Namespace) | 2021-01-01-preview | v1api20210101preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20210101preview/v1api20210101preview_namespace.yaml) | | [NamespacesAuthorizationRule](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20221001preview/#servicebus.azure.com/v1api20221001preview.NamespacesAuthorizationRule) | 2022-10-01-preview | v1api20221001preview | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20221001preview/v1api20221001preview_namespacesauthorizationrule.yaml) | -| [NamespacesAuthorizationRule](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesAuthorizationRule) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacesauthorizationrule.yaml) | | [NamespacesAuthorizationRule](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20210101preview/#servicebus.azure.com/v1api20210101preview.NamespacesAuthorizationRule) | 2021-01-01-preview | v1api20210101preview | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20210101preview/v1api20210101preview_namespacesauthorizationrule.yaml) | | [NamespacesQueue](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20221001preview/#servicebus.azure.com/v1api20221001preview.NamespacesQueue) | 2022-10-01-preview | v1api20221001preview | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20221001preview/v1api20221001preview_namespacesqueue.yaml) | -| [NamespacesQueue](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesQueue) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacesqueue.yaml) | | [NamespacesQueue](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20210101preview/#servicebus.azure.com/v1api20210101preview.NamespacesQueue) | 2021-01-01-preview | v1api20210101preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20210101preview/v1api20210101preview_namespacesqueue.yaml) | | [NamespacesTopic](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20221001preview/#servicebus.azure.com/v1api20221001preview.NamespacesTopic) | 2022-10-01-preview | v1api20221001preview | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20221001preview/v1api20221001preview_namespacestopic.yaml) | -| [NamespacesTopic](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesTopic) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacestopic.yaml) | | [NamespacesTopic](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20210101preview/#servicebus.azure.com/v1api20210101preview.NamespacesTopic) | 2021-01-01-preview | v1api20210101preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20210101preview/v1api20210101preview_namespacestopic.yaml) | | [NamespacesTopicsSubscription](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20221001preview/#servicebus.azure.com/v1api20221001preview.NamespacesTopicsSubscription) | 2022-10-01-preview | v1api20221001preview | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20221001preview/v1api20221001preview_namespacestopicssubscription.yaml) | -| [NamespacesTopicsSubscription](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesTopicsSubscription) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacestopicssubscription.yaml) | | [NamespacesTopicsSubscription](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20210101preview/#servicebus.azure.com/v1api20210101preview.NamespacesTopicsSubscription) | 2021-01-01-preview | v1api20210101preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20210101preview/v1api20210101preview_namespacestopicssubscription.yaml) | | [NamespacesTopicsSubscriptionsRule](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20221001preview/#servicebus.azure.com/v1api20221001preview.NamespacesTopicsSubscriptionsRule) | 2022-10-01-preview | v1api20221001preview | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20221001preview/v1api20221001preview_namespacestopicssubscriptionsrule.yaml) | -| [NamespacesTopicsSubscriptionsRule](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.NamespacesTopicsSubscriptionsRule) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespacestopicssubscriptionsrule.yaml) | | [NamespacesTopicsSubscriptionsRule](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20210101preview/#servicebus.azure.com/v1api20210101preview.NamespacesTopicsSubscriptionsRule) | 2021-01-01-preview | v1api20210101preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20210101preview/v1api20210101preview_namespacestopicssubscriptionsrule.yaml) | diff --git a/docs/hugo/content/reference/signalrservice/_index.md b/docs/hugo/content/reference/signalrservice/_index.md index 4e8cd4a9562..bc7f8f8c6c3 100644 --- a/docs/hugo/content/reference/signalrservice/_index.md +++ b/docs/hugo/content/reference/signalrservice/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `si ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------| | [SignalR](https://azure.github.io/azure-service-operator/reference/signalrservice/v1api20211001/#signalrservice.azure.com/v1api20211001.SignalR) | 2021-10-01 | v1api20211001 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/signalrservice/v1api/v1api20211001_signalr.yaml) | diff --git a/docs/hugo/content/reference/sql/_index.md b/docs/hugo/content/reference/sql/_index.md index 5605a3484b8..e3a239c4b95 100644 --- a/docs/hugo/content/reference/sql/_index.md +++ b/docs/hugo/content/reference/sql/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `sq ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Server](https://azure.github.io/azure-service-operator/reference/sql/v1api20211101/#sql.azure.com/v1api20211101.Server) | 2021-11-01 | v1api20211101 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/sql/v1api20211101/v1api20211101_server.yaml) | diff --git a/docs/hugo/content/reference/storage/_index.md b/docs/hugo/content/reference/storage/_index.md index 3dbe72e4061..3688e6b6fec 100644 --- a/docs/hugo/content/reference/storage/_index.md +++ b/docs/hugo/content/reference/storage/_index.md @@ -5,36 +5,41 @@ no_list: true --- To install the CRDs for these resources, your ASO configuration must include `storage.azure.com/*` as a one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations. -### Released - -These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. +### Latest Released Versions +These resource(s) are the latest versions available for use in the current release of ASO. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [StorageAccount](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccount) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccount.yaml) | +| [StorageAccountsBlobService](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsBlobService) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsblobservice.yaml) | +| [StorageAccountsBlobServicesContainer](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsBlobServicesContainer) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsblobservicescontainer.yaml) | +| [StorageAccountsFileService](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsFileService) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsfileservice.yaml) | +| [StorageAccountsFileServicesShare](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsFileServicesShare) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsfileservicesshare.yaml) | +| [StorageAccountsManagementPolicy](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsManagementPolicy) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsmanagementpolicy.yaml) | +| [StorageAccountsQueueService](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsQueueService) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsqueueservice.yaml) | +| [StorageAccountsQueueServicesQueue](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsQueueServicesQueue) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsqueueservicesqueue.yaml) | +| [StorageAccountsTableService](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsTableService) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountstableservice.yaml) | +| [StorageAccountsTableServicesTable](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsTableServicesTable) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountstableservicestable.yaml) | + +### Other Supported Versions + +These are older versions of resourced still available for use in the current release of ASO. +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [StorageAccount](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccount) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccount.yaml) | | [StorageAccount](https://azure.github.io/azure-service-operator/reference/storage/v1api20210401/#storage.azure.com/v1api20210401.StorageAccount) | 2021-04-01 | v1api20210401 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20210401/v1api20210401_storageaccount.yaml) | -| [StorageAccountsBlobService](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsBlobService) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsblobservice.yaml) | | [StorageAccountsBlobService](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsBlobService) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountsblobservice.yaml) | | [StorageAccountsBlobService](https://azure.github.io/azure-service-operator/reference/storage/v1api20210401/#storage.azure.com/v1api20210401.StorageAccountsBlobService) | 2021-04-01 | v1api20210401 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20210401/v1api20210401_storageaccountsblobservice.yaml) | -| [StorageAccountsBlobServicesContainer](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsBlobServicesContainer) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsblobservicescontainer.yaml) | | [StorageAccountsBlobServicesContainer](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsBlobServicesContainer) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountsblobservicescontainer.yaml) | | [StorageAccountsBlobServicesContainer](https://azure.github.io/azure-service-operator/reference/storage/v1api20210401/#storage.azure.com/v1api20210401.StorageAccountsBlobServicesContainer) | 2021-04-01 | v1api20210401 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20210401/v1api20210401_storageaccountsblobservicescontainer.yaml) | -| [StorageAccountsFileService](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsFileService) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsfileservice.yaml) | | [StorageAccountsFileService](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsFileService) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountsfileservice.yaml) | -| [StorageAccountsFileServicesShare](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsFileServicesShare) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsfileservicesshare.yaml) | | [StorageAccountsFileServicesShare](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsFileServicesShare) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountsfileservicesshare.yaml) | -| [StorageAccountsManagementPolicy](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsManagementPolicy) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsmanagementpolicy.yaml) | | [StorageAccountsManagementPolicy](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsManagementPolicy) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountsmanagementpolicy.yaml) | | [StorageAccountsManagementPolicy](https://azure.github.io/azure-service-operator/reference/storage/v1api20210401/#storage.azure.com/v1api20210401.StorageAccountsManagementPolicy) | 2021-04-01 | v1api20210401 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20210401/v1api20210401_storageaccountsmanagementpolicy.yaml) | -| [StorageAccountsQueueService](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsQueueService) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsqueueservice.yaml) | | [StorageAccountsQueueService](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsQueueService) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountsqueueservice.yaml) | | [StorageAccountsQueueService](https://azure.github.io/azure-service-operator/reference/storage/v1api20210401/#storage.azure.com/v1api20210401.StorageAccountsQueueService) | 2021-04-01 | v1api20210401 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20210401/v1api20210401_storageaccountsqueueservice.yaml) | -| [StorageAccountsQueueServicesQueue](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsQueueServicesQueue) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountsqueueservicesqueue.yaml) | | [StorageAccountsQueueServicesQueue](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsQueueServicesQueue) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountsqueueservicesqueue.yaml) | | [StorageAccountsQueueServicesQueue](https://azure.github.io/azure-service-operator/reference/storage/v1api20210401/#storage.azure.com/v1api20210401.StorageAccountsQueueServicesQueue) | 2021-04-01 | v1api20210401 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20210401/v1api20210401_storageaccountsqueueservicesqueue.yaml) | -| [StorageAccountsTableService](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsTableService) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountstableservice.yaml) | | [StorageAccountsTableService](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsTableService) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountstableservice.yaml) | -| [StorageAccountsTableServicesTable](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccountsTableServicesTable) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccountstableservicestable.yaml) | | [StorageAccountsTableServicesTable](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccountsTableServicesTable) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccountstableservicestable.yaml) | diff --git a/docs/hugo/content/reference/subscription/_index.md b/docs/hugo/content/reference/subscription/_index.md index 0abe4550ffe..0f8cceba9f0 100644 --- a/docs/hugo/content/reference/subscription/_index.md +++ b/docs/hugo/content/reference/subscription/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `su ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|--------------------------------------------------------------------------------------------------------------------------| | [Alias](https://azure.github.io/azure-service-operator/reference/subscription/v1api20211001/#subscription.azure.com/v1api20211001.Alias) | 2021-10-01 | v1api20211001 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/subscription/v1api/v1api20211001_alias.yaml) | diff --git a/docs/hugo/content/reference/synapse/_index.md b/docs/hugo/content/reference/synapse/_index.md index 83c36b497cb..8454d2b5ea4 100644 --- a/docs/hugo/content/reference/synapse/_index.md +++ b/docs/hugo/content/reference/synapse/_index.md @@ -8,7 +8,6 @@ To install the CRDs for these resources, your ASO configuration must include `sy ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------| | [Workspace](https://azure.github.io/azure-service-operator/reference/synapse/v1api20210601/#synapse.azure.com/v1api20210601.Workspace) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/synapse/v1api/v1api20210601_workspace.yaml) | diff --git a/docs/hugo/content/reference/web/_index.md b/docs/hugo/content/reference/web/_index.md index fed42d3f36c..4203b943c89 100644 --- a/docs/hugo/content/reference/web/_index.md +++ b/docs/hugo/content/reference/web/_index.md @@ -16,7 +16,6 @@ Development of these new resources is complete and they will be available in the ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|----------------------------------------------------------------------------------------------------------------------| | [ServerFarm](https://azure.github.io/azure-service-operator/reference/web/v1api20220301/#web.azure.com/v1api20220301.ServerFarm) | 2022-03-01 | v1api20220301 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/web/v1api/v1api20220301_serverfarm.yaml) | From 0c8bdd51346b547d2fd5228c62366208af60d02f Mon Sep 17 00:00:00 2001 From: Bevan Arps Date: Tue, 4 Feb 2025 14:33:59 +1300 Subject: [PATCH 4/6] Update generated docs --- docs/hugo/content/reference/_index.md | 68 +++++++++---------- .../content/reference/apimanagement/_index.md | 4 +- .../content/reference/authorization/_index.md | 4 +- docs/hugo/content/reference/cache/_index.md | 4 +- docs/hugo/content/reference/cdn/_index.md | 4 +- docs/hugo/content/reference/compute/_index.md | 4 +- .../reference/containerservice/_index.md | 4 +- .../reference/dataprotection/_index.md | 4 +- .../content/reference/dbformysql/_index.md | 4 +- .../reference/dbforpostgresql/_index.md | 4 +- .../content/reference/documentdb/_index.md | 4 +- .../hugo/content/reference/insights/_index.md | 4 +- .../hugo/content/reference/keyvault/_index.md | 4 +- .../machinelearningservices/_index.md | 4 +- .../reference/managedidentity/_index.md | 4 +- docs/hugo/content/reference/network/_index.md | 4 +- .../content/reference/servicebus/_index.md | 4 +- docs/hugo/content/reference/storage/_index.md | 4 +- 18 files changed, 68 insertions(+), 68 deletions(-) diff --git a/docs/hugo/content/reference/_index.md b/docs/hugo/content/reference/_index.md index 45b01be86eb..f32a5f440bf 100644 --- a/docs/hugo/content/reference/_index.md +++ b/docs/hugo/content/reference/_index.md @@ -32,7 +32,7 @@ To install the CRDs for these resources, your ASO configuration must include `ap ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Api](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Api) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_api.yaml) | @@ -52,7 +52,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Api](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.Api) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_api.yaml) | @@ -87,7 +87,7 @@ To install the CRDs for these resources, your ASO configuration must include `au ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------| | [RoleAssignment](https://azure.github.io/azure-service-operator/reference/authorization/v1api20220401/#authorization.azure.com/v1api20220401.RoleAssignment) | 2022-04-01 | v1api20220401 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/authorization/v1api20220401/v1api20220401_roleassignment.yaml) | @@ -95,7 +95,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|----------------------------------------------------------------------------------------------------------------------------------------------------------| | [RoleAssignment](https://azure.github.io/azure-service-operator/reference/authorization/v1api20200801preview/#authorization.azure.com/v1api20200801preview.RoleAssignment) | 2020-08-01-preview | v1api20200801preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/authorization/v1api20200801preview/v1api20200801preview_roleassignment.yaml) | @@ -117,7 +117,7 @@ To install the CRDs for these resources, your ASO configuration must include `ca ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------| | [Redis](https://azure.github.io/azure-service-operator/reference/cache/v1api20230801/#cache.azure.com/v1api20230801.Redis) | 2023-08-01 | v1api20230801 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230801/v1api20230801_redis.yaml) | @@ -129,7 +129,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------| | [Redis](https://azure.github.io/azure-service-operator/reference/cache/v1api20230401/#cache.azure.com/v1api20230401.Redis) | 2023-04-01 | v1api20230401 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230401/v1api20230401_redis.yaml) | @@ -149,7 +149,7 @@ To install the CRDs for these resources, your ASO configuration must include `cd ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------| | [AfdCustomDomain](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.AfdCustomDomain) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_afdcustomdomain.yaml) | @@ -166,7 +166,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------| | [Profile](https://azure.github.io/azure-service-operator/reference/cdn/v1api20210601/#cdn.azure.com/v1api20210601.Profile) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20210601/v1api20210601_profile.yaml) | @@ -177,7 +177,7 @@ To install the CRDs for these resources, your ASO configuration must include `co ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------| | [Disk](https://azure.github.io/azure-service-operator/reference/compute/v1api20240302/#compute.azure.com/v1api20240302.Disk) | 2024-03-02 | v1api20240302 | v2.9.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20240302_disk.yaml) | @@ -192,7 +192,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------| | [Disk](https://azure.github.io/azure-service-operator/reference/compute/v1api20200930/#compute.azure.com/v1api20200930.Disk) | 2020-09-30 | v1api20200930 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20200930_disk.yaml) | @@ -241,7 +241,7 @@ To install the CRDs for these resources, your ASO configuration must include `co ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Fleet](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230315preview/#containerservice.azure.com/v1api20230315preview.Fleet) | 2023-03-15-preview | v1api20230315preview | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleet.yaml) | @@ -254,7 +254,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240402preview/#containerservice.azure.com/v1api20240402preview.ManagedCluster) | 2024-04-02-preview | v1api20240402preview | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240402preview/v1api20240402preview_managedcluster.yaml) | @@ -287,7 +287,7 @@ To install the CRDs for these resources, your ASO configuration must include `da ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| | [BackupVault](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20231101/#dataprotection.azure.com/v1api20231101.BackupVault) | 2023-11-01 | v1api20231101 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20231101/v1api20231101_backupvault.yaml) | @@ -296,7 +296,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------| | [BackupVault](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20230101/#dataprotection.azure.com/v1api20230101.BackupVault) | 2023-01-01 | v1api20230101 | v2.2.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20230101/v1api20230101_backupvault.yaml) | @@ -325,7 +325,7 @@ Existing instances of *Single Server* can be migrated to *Azure Database for MyS ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------| | [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20230630/#dbformysql.azure.com/v1api20230630.FlexibleServer) | 2023-06-30 | v1api20230630 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20230630/v1api20230630_flexibleserver.yaml) | @@ -337,7 +337,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------| | [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20210501/#dbformysql.azure.com/v1api20210501.FlexibleServer) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20220101/v1api20210501_flexibleserver.yaml) | @@ -352,7 +352,7 @@ To install the CRDs for these resources, your ASO configuration must include `db ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServer) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserver.yaml) | @@ -363,7 +363,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20230601preview/#dbforpostgresql.azure.com/v1api20230601preview.FlexibleServer) | 2023-06-01-preview | v1api20230601preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20230601preview/v1api20230601preview_flexibleserver.yaml) | @@ -396,7 +396,7 @@ To install the CRDs for these resources, your ASO configuration must include `do ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [DatabaseAccount](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.DatabaseAccount) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20231115/v1api20231115_databaseaccount.yaml) | @@ -415,7 +415,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [DatabaseAccount](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.DatabaseAccount) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_databaseaccount.yaml) | @@ -479,7 +479,7 @@ To install the CRDs for these resources, your ASO configuration must include `in ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------| | [ActionGroup](https://azure.github.io/azure-service-operator/reference/insights/v1api20230101/#insights.azure.com/v1api20230101.ActionGroup) | 2023-01-01 | v1api20230101 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api/v1api20230101_actiongroup.yaml) | @@ -492,7 +492,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|-------------------------------------------------------------------------------------------------------------------------------| | [Webtest](https://azure.github.io/azure-service-operator/reference/insights/v1api20180501preview/#insights.azure.com/v1api20180501preview.Webtest) | 2018-05-01-preview | v1api20180501preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api/v1api20180501preview_webtest.yaml) | @@ -503,14 +503,14 @@ To install the CRDs for these resources, your ASO configuration must include `ke ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------| | [Vault](https://azure.github.io/azure-service-operator/reference/keyvault/v1api20230701/#keyvault.azure.com/v1api20230701.Vault) | 2023-07-01 | v1api20230701 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/keyvault/v1api20230701/v1api20230701_vault.yaml) | ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------| | [Vault](https://azure.github.io/azure-service-operator/reference/keyvault/v1api20210401preview/#keyvault.azure.com/v1api20210401preview.Vault) | 2021-04-01-preview | v1api20210401preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/keyvault/v1api20210401preview/v1api20210401preview_vault.yaml) | @@ -533,7 +533,7 @@ To install the CRDs for these resources, your ASO configuration must include `ma ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Registry](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20240401/#machinelearningservices.azure.com/v1api20240401.Registry) | 2024-04-01 | v1api20240401 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20240401/v1api20240401_registry.yaml) | @@ -543,7 +543,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Workspace](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20210701/#machinelearningservices.azure.com/v1api20210701.Workspace) | 2021-07-01 | v1api20210701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20210701/v1api20210701_workspace.yaml) | @@ -556,7 +556,7 @@ To install the CRDs for these resources, your ASO configuration must include `ma ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------| | [FederatedIdentityCredential](https://azure.github.io/azure-service-operator/reference/managedidentity/v1api20230131/#managedidentity.azure.com/v1api20230131.FederatedIdentityCredential) | 2023-01-31 | v1api20230131 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/managedidentity/v1api20230131/v1api20230131_federatedidentitycredential.yaml) | @@ -564,7 +564,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [FederatedIdentityCredential](https://azure.github.io/azure-service-operator/reference/managedidentity/v1api20220131preview/#managedidentity.azure.com/v1api20220131preview.FederatedIdentityCredential) | 2022-01-31-preview | v1api20220131preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/managedidentity/v1api20220131preview/v1api20220131preview_federatedidentitycredential.yaml) | @@ -587,7 +587,7 @@ To install the CRDs for these resources, your ASO configuration must include `ne ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------| | [ApplicationGateway](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.ApplicationGateway) | 2022-07-01 | v1api20220701 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_applicationgateway.yaml) | @@ -643,7 +643,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [BastionHost](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.BastionHost) | 2022-07-01 | v1api20220701 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_bastionhost.yaml) | @@ -737,7 +737,7 @@ To install the CRDs for these resources, your ASO configuration must include `se ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Namespace](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.Namespace) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespace.yaml) | @@ -749,7 +749,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Namespace](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20221001preview/#servicebus.azure.com/v1api20221001preview.Namespace) | 2022-10-01-preview | v1api20221001preview | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20221001preview/v1api20221001preview_namespace.yaml) | @@ -815,7 +815,7 @@ To install the CRDs for these resources, your ASO configuration must include `st ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [StorageAccount](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccount) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccount.yaml) | @@ -831,7 +831,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [StorageAccount](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccount) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccount.yaml) | diff --git a/docs/hugo/content/reference/apimanagement/_index.md b/docs/hugo/content/reference/apimanagement/_index.md index 7fdc30a7544..fc5c02cbb4a 100644 --- a/docs/hugo/content/reference/apimanagement/_index.md +++ b/docs/hugo/content/reference/apimanagement/_index.md @@ -7,7 +7,7 @@ To install the CRDs for these resources, your ASO configuration must include `ap ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Api](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20220801/#apimanagement.azure.com/v1api20220801.Api) | 2022-08-01 | v1api20220801 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20220801/v1api20220801_api.yaml) | @@ -27,7 +27,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Api](https://azure.github.io/azure-service-operator/reference/apimanagement/v1api20230501preview/#apimanagement.azure.com/v1api20230501preview.Api) | 2023-05-01-preview | v1api20230501preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/apimanagement/v1api20230501preview/v1api20230501preview_api.yaml) | diff --git a/docs/hugo/content/reference/authorization/_index.md b/docs/hugo/content/reference/authorization/_index.md index c7b0b4f093b..07beb2a1df6 100644 --- a/docs/hugo/content/reference/authorization/_index.md +++ b/docs/hugo/content/reference/authorization/_index.md @@ -7,7 +7,7 @@ To install the CRDs for these resources, your ASO configuration must include `au ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------| | [RoleAssignment](https://azure.github.io/azure-service-operator/reference/authorization/v1api20220401/#authorization.azure.com/v1api20220401.RoleAssignment) | 2022-04-01 | v1api20220401 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/authorization/v1api20220401/v1api20220401_roleassignment.yaml) | @@ -15,7 +15,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|----------------------------------------------------------------------------------------------------------------------------------------------------------| | [RoleAssignment](https://azure.github.io/azure-service-operator/reference/authorization/v1api20200801preview/#authorization.azure.com/v1api20200801preview.RoleAssignment) | 2020-08-01-preview | v1api20200801preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/authorization/v1api20200801preview/v1api20200801preview_roleassignment.yaml) | diff --git a/docs/hugo/content/reference/cache/_index.md b/docs/hugo/content/reference/cache/_index.md index 0983c386dd7..bc631558fee 100644 --- a/docs/hugo/content/reference/cache/_index.md +++ b/docs/hugo/content/reference/cache/_index.md @@ -7,7 +7,7 @@ To install the CRDs for these resources, your ASO configuration must include `ca ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------| | [Redis](https://azure.github.io/azure-service-operator/reference/cache/v1api20230801/#cache.azure.com/v1api20230801.Redis) | 2023-08-01 | v1api20230801 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230801/v1api20230801_redis.yaml) | @@ -19,7 +19,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------| | [Redis](https://azure.github.io/azure-service-operator/reference/cache/v1api20230401/#cache.azure.com/v1api20230401.Redis) | 2023-04-01 | v1api20230401 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cache/v1api20230401/v1api20230401_redis.yaml) | diff --git a/docs/hugo/content/reference/cdn/_index.md b/docs/hugo/content/reference/cdn/_index.md index 6164771743d..5c32850b87f 100644 --- a/docs/hugo/content/reference/cdn/_index.md +++ b/docs/hugo/content/reference/cdn/_index.md @@ -7,7 +7,7 @@ To install the CRDs for these resources, your ASO configuration must include `cd ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------| | [AfdCustomDomain](https://azure.github.io/azure-service-operator/reference/cdn/v1api20230501/#cdn.azure.com/v1api20230501.AfdCustomDomain) | 2023-05-01 | v1api20230501 | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20230501/v1api20230501_afdcustomdomain.yaml) | @@ -24,7 +24,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------| | [Profile](https://azure.github.io/azure-service-operator/reference/cdn/v1api20210601/#cdn.azure.com/v1api20210601.Profile) | 2021-06-01 | v1api20210601 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/cdn/v1api20210601/v1api20210601_profile.yaml) | diff --git a/docs/hugo/content/reference/compute/_index.md b/docs/hugo/content/reference/compute/_index.md index f1a0fc24edf..1e12df30e3e 100644 --- a/docs/hugo/content/reference/compute/_index.md +++ b/docs/hugo/content/reference/compute/_index.md @@ -7,7 +7,7 @@ To install the CRDs for these resources, your ASO configuration must include `co ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------| | [Disk](https://azure.github.io/azure-service-operator/reference/compute/v1api20240302/#compute.azure.com/v1api20240302.Disk) | 2024-03-02 | v1api20240302 | v2.9.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20240302_disk.yaml) | @@ -22,7 +22,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------| | [Disk](https://azure.github.io/azure-service-operator/reference/compute/v1api20200930/#compute.azure.com/v1api20200930.Disk) | 2020-09-30 | v1api20200930 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/compute/v1api/v1api20200930_disk.yaml) | diff --git a/docs/hugo/content/reference/containerservice/_index.md b/docs/hugo/content/reference/containerservice/_index.md index c2fd7852baa..01e43a363f0 100644 --- a/docs/hugo/content/reference/containerservice/_index.md +++ b/docs/hugo/content/reference/containerservice/_index.md @@ -7,7 +7,7 @@ To install the CRDs for these resources, your ASO configuration must include `co ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Fleet](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230315preview/#containerservice.azure.com/v1api20230315preview.Fleet) | 2023-03-15-preview | v1api20230315preview | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleet.yaml) | @@ -20,7 +20,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20240402preview/#containerservice.azure.com/v1api20240402preview.ManagedCluster) | 2024-04-02-preview | v1api20240402preview | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20240402preview/v1api20240402preview_managedcluster.yaml) | diff --git a/docs/hugo/content/reference/dataprotection/_index.md b/docs/hugo/content/reference/dataprotection/_index.md index a401f477b74..dc2122e8714 100644 --- a/docs/hugo/content/reference/dataprotection/_index.md +++ b/docs/hugo/content/reference/dataprotection/_index.md @@ -7,7 +7,7 @@ To install the CRDs for these resources, your ASO configuration must include `da ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| | [BackupVault](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20231101/#dataprotection.azure.com/v1api20231101.BackupVault) | 2023-11-01 | v1api20231101 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20231101/v1api20231101_backupvault.yaml) | @@ -16,7 +16,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------| | [BackupVault](https://azure.github.io/azure-service-operator/reference/dataprotection/v1api20230101/#dataprotection.azure.com/v1api20230101.BackupVault) | 2023-01-01 | v1api20230101 | v2.2.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dataprotection/v1api20230101/v1api20230101_backupvault.yaml) | diff --git a/docs/hugo/content/reference/dbformysql/_index.md b/docs/hugo/content/reference/dbformysql/_index.md index 3873061700c..b50ce92ed56 100644 --- a/docs/hugo/content/reference/dbformysql/_index.md +++ b/docs/hugo/content/reference/dbformysql/_index.md @@ -11,7 +11,7 @@ Existing instances of *Single Server* can be migrated to *Azure Database for MyS ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------| | [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20230630/#dbformysql.azure.com/v1api20230630.FlexibleServer) | 2023-06-30 | v1api20230630 | v2.7.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20230630/v1api20230630_flexibleserver.yaml) | @@ -23,7 +23,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------| | [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbformysql/v1api20210501/#dbformysql.azure.com/v1api20210501.FlexibleServer) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbformysql/v1api20220101/v1api20210501_flexibleserver.yaml) | diff --git a/docs/hugo/content/reference/dbforpostgresql/_index.md b/docs/hugo/content/reference/dbforpostgresql/_index.md index e5386e172ca..6d3d7a99832 100644 --- a/docs/hugo/content/reference/dbforpostgresql/_index.md +++ b/docs/hugo/content/reference/dbforpostgresql/_index.md @@ -7,7 +7,7 @@ To install the CRDs for these resources, your ASO configuration must include `db ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20221201/#dbforpostgresql.azure.com/v1api20221201.FlexibleServer) | 2022-12-01 | v1api20221201 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20221201/v1api20221201_flexibleserver.yaml) | @@ -18,7 +18,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [FlexibleServer](https://azure.github.io/azure-service-operator/reference/dbforpostgresql/v1api20230601preview/#dbforpostgresql.azure.com/v1api20230601preview.FlexibleServer) | 2023-06-01-preview | v1api20230601preview | v2.6.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/dbforpostgresql/v1api20230601preview/v1api20230601preview_flexibleserver.yaml) | diff --git a/docs/hugo/content/reference/documentdb/_index.md b/docs/hugo/content/reference/documentdb/_index.md index 2f9952570b9..40be84ab209 100644 --- a/docs/hugo/content/reference/documentdb/_index.md +++ b/docs/hugo/content/reference/documentdb/_index.md @@ -7,7 +7,7 @@ To install the CRDs for these resources, your ASO configuration must include `do ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [DatabaseAccount](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20231115/#documentdb.azure.com/v1api20231115.DatabaseAccount) | 2023-11-15 | v1api20231115 | v2.8.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20231115/v1api20231115_databaseaccount.yaml) | @@ -26,7 +26,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [DatabaseAccount](https://azure.github.io/azure-service-operator/reference/documentdb/v1api20210515/#documentdb.azure.com/v1api20210515.DatabaseAccount) | 2021-05-15 | v1api20210515 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/mongodb/v1api20210515/v1api20210515_databaseaccount.yaml) | diff --git a/docs/hugo/content/reference/insights/_index.md b/docs/hugo/content/reference/insights/_index.md index 3c51e509b03..7cd48670ee3 100644 --- a/docs/hugo/content/reference/insights/_index.md +++ b/docs/hugo/content/reference/insights/_index.md @@ -7,7 +7,7 @@ To install the CRDs for these resources, your ASO configuration must include `in ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------| | [ActionGroup](https://azure.github.io/azure-service-operator/reference/insights/v1api20230101/#insights.azure.com/v1api20230101.ActionGroup) | 2023-01-01 | v1api20230101 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api/v1api20230101_actiongroup.yaml) | @@ -20,7 +20,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|-------------------------------------------------------------------------------------------------------------------------------| | [Webtest](https://azure.github.io/azure-service-operator/reference/insights/v1api20180501preview/#insights.azure.com/v1api20180501preview.Webtest) | 2018-05-01-preview | v1api20180501preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api/v1api20180501preview_webtest.yaml) | diff --git a/docs/hugo/content/reference/keyvault/_index.md b/docs/hugo/content/reference/keyvault/_index.md index 428419a4020..27d63535653 100644 --- a/docs/hugo/content/reference/keyvault/_index.md +++ b/docs/hugo/content/reference/keyvault/_index.md @@ -7,14 +7,14 @@ To install the CRDs for these resources, your ASO configuration must include `ke ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------| | [Vault](https://azure.github.io/azure-service-operator/reference/keyvault/v1api20230701/#keyvault.azure.com/v1api20230701.Vault) | 2023-07-01 | v1api20230701 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/keyvault/v1api20230701/v1api20230701_vault.yaml) | ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------| | [Vault](https://azure.github.io/azure-service-operator/reference/keyvault/v1api20210401preview/#keyvault.azure.com/v1api20210401preview.Vault) | 2021-04-01-preview | v1api20210401preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/keyvault/v1api20210401preview/v1api20210401preview_vault.yaml) | diff --git a/docs/hugo/content/reference/machinelearningservices/_index.md b/docs/hugo/content/reference/machinelearningservices/_index.md index 04d1251a750..283b0b264d6 100644 --- a/docs/hugo/content/reference/machinelearningservices/_index.md +++ b/docs/hugo/content/reference/machinelearningservices/_index.md @@ -7,7 +7,7 @@ To install the CRDs for these resources, your ASO configuration must include `ma ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Registry](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20240401/#machinelearningservices.azure.com/v1api20240401.Registry) | 2024-04-01 | v1api20240401 | v2.10.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20240401/v1api20240401_registry.yaml) | @@ -17,7 +17,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Workspace](https://azure.github.io/azure-service-operator/reference/machinelearningservices/v1api20210701/#machinelearningservices.azure.com/v1api20210701.Workspace) | 2021-07-01 | v1api20210701 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/machinelearningservices/v1api20210701/v1api20210701_workspace.yaml) | diff --git a/docs/hugo/content/reference/managedidentity/_index.md b/docs/hugo/content/reference/managedidentity/_index.md index 073881f5a34..a98321466e4 100644 --- a/docs/hugo/content/reference/managedidentity/_index.md +++ b/docs/hugo/content/reference/managedidentity/_index.md @@ -7,7 +7,7 @@ To install the CRDs for these resources, your ASO configuration must include `ma ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------| | [FederatedIdentityCredential](https://azure.github.io/azure-service-operator/reference/managedidentity/v1api20230131/#managedidentity.azure.com/v1api20230131.FederatedIdentityCredential) | 2023-01-31 | v1api20230131 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/managedidentity/v1api20230131/v1api20230131_federatedidentitycredential.yaml) | @@ -15,7 +15,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [FederatedIdentityCredential](https://azure.github.io/azure-service-operator/reference/managedidentity/v1api20220131preview/#managedidentity.azure.com/v1api20220131preview.FederatedIdentityCredential) | 2022-01-31-preview | v1api20220131preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/managedidentity/v1api20220131preview/v1api20220131preview_federatedidentitycredential.yaml) | diff --git a/docs/hugo/content/reference/network/_index.md b/docs/hugo/content/reference/network/_index.md index 92002586de1..d4cffb57f5f 100644 --- a/docs/hugo/content/reference/network/_index.md +++ b/docs/hugo/content/reference/network/_index.md @@ -7,7 +7,7 @@ To install the CRDs for these resources, your ASO configuration must include `ne ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------| | [ApplicationGateway](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.ApplicationGateway) | 2022-07-01 | v1api20220701 | v2.4.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_applicationgateway.yaml) | @@ -63,7 +63,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [BastionHost](https://azure.github.io/azure-service-operator/reference/network/v1api20220701/#network.azure.com/v1api20220701.BastionHost) | 2022-07-01 | v1api20220701 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/network/v1api20220701/v1api20220701_bastionhost.yaml) | diff --git a/docs/hugo/content/reference/servicebus/_index.md b/docs/hugo/content/reference/servicebus/_index.md index ae61f9d5318..72decd944e9 100644 --- a/docs/hugo/content/reference/servicebus/_index.md +++ b/docs/hugo/content/reference/servicebus/_index.md @@ -7,7 +7,7 @@ To install the CRDs for these resources, your ASO configuration must include `se ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Namespace](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20211101/#servicebus.azure.com/v1api20211101.Namespace) | 2021-11-01 | v1api20211101 | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20211101/v1api20211101_namespace.yaml) | @@ -19,7 +19,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [Namespace](https://azure.github.io/azure-service-operator/reference/servicebus/v1api20221001preview/#servicebus.azure.com/v1api20221001preview.Namespace) | 2022-10-01-preview | v1api20221001preview | v2.3.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20221001preview/v1api20221001preview_namespace.yaml) | diff --git a/docs/hugo/content/reference/storage/_index.md b/docs/hugo/content/reference/storage/_index.md index 3688e6b6fec..62f69a32de6 100644 --- a/docs/hugo/content/reference/storage/_index.md +++ b/docs/hugo/content/reference/storage/_index.md @@ -7,7 +7,7 @@ To install the CRDs for these resources, your ASO configuration must include `st ### Latest Released Versions -These resource(s) are the latest versions available for use in the current release of ASO. +These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [StorageAccount](https://azure.github.io/azure-service-operator/reference/storage/v1api20230101/#storage.azure.com/v1api20230101.StorageAccount) | 2023-01-01 | v1api20230101 | v2.5.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20230101/v1api20230101_storageaccount.yaml) | @@ -23,7 +23,7 @@ These resource(s) are the latest versions available for use in the current relea ### Other Supported Versions -These are older versions of resourced still available for use in the current release of ASO. +These are older versions of resourced still available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------| | [StorageAccount](https://azure.github.io/azure-service-operator/reference/storage/v1api20220901/#storage.azure.com/v1api20220901.StorageAccount) | 2022-09-01 | v1api20220901 | v2.1.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/storage/v1api20220901/v1api20220901_storageaccount.yaml) | From e9370dcfff49f2776b9da7e18af75698aaf86ada Mon Sep 17 00:00:00 2001 From: Bevan Arps Date: Thu, 6 Feb 2025 20:18:26 +0000 Subject: [PATCH 5/6] Update docs after merge from main --- docs/hugo/content/reference/_index.md | 7 +++---- docs/hugo/content/reference/documentdb/_index.md | 2 +- docs/hugo/content/reference/insights/_index.md | 2 +- docs/hugo/content/reference/servicebus/_index.md | 2 +- docs/hugo/content/reference/signalrservice/_index.md | 1 - 5 files changed, 6 insertions(+), 8 deletions(-) diff --git a/docs/hugo/content/reference/_index.md b/docs/hugo/content/reference/_index.md index 064d35ddf4b..c1a98f91ba6 100644 --- a/docs/hugo/content/reference/_index.md +++ b/docs/hugo/content/reference/_index.md @@ -430,7 +430,7 @@ Development of these new resources is complete and they will be available in the | SqlDatabaseThroughputSetting | 2024-08-15 | v1api20240815 | v2.12.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20240815/v1api20240815_sqldatabasethroughputsetting.yaml) | | SqlRoleAssignment | 2024-08-15 | v1api20240815 | v2.12.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20240815/v1api20240815_sqlroleassignment.yaml) | -### Released +### Latest Released Versions These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | @@ -521,7 +521,7 @@ Development of these new resources is complete and they will be available in the |--------------------|--------------------|----------------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| | ScheduledQueryRule | 2024-01-01-preview | v1api20240101preview | v2.12.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api20240101preview/v1api20240101preview_scheduledqueryrule.yaml) | -### Released +### Latest Released Versions These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | @@ -807,7 +807,7 @@ Development of these new resources is complete and they will be available in the | NamespacesTopicsSubscription | 2024-01-01 | v1api20240101 | v2.12.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20240101/v1api20240101_namespacestopicssubscription.yaml) | | NamespacesTopicsSubscriptionsRule | 2024-01-01 | v1api20240101 | v2.12.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20240101/v1api20240101_namespacestopicssubscriptionsrule.yaml) | -### Released +### Latest Released Versions These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | @@ -855,7 +855,6 @@ Development of these new resources is complete and they will be available in the ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------| | [SignalR](https://azure.github.io/azure-service-operator/reference/signalrservice/v1api20211001/#signalrservice.azure.com/v1api20211001.SignalR) | 2021-10-01 | v1api20211001 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/signalrservice/v1api20211001/v1api20211001_signalr.yaml) | diff --git a/docs/hugo/content/reference/documentdb/_index.md b/docs/hugo/content/reference/documentdb/_index.md index 968a63ba614..92233e4417b 100644 --- a/docs/hugo/content/reference/documentdb/_index.md +++ b/docs/hugo/content/reference/documentdb/_index.md @@ -26,7 +26,7 @@ Development of these new resources is complete and they will be available in the | SqlDatabaseThroughputSetting | 2024-08-15 | v1api20240815 | v2.12.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20240815/v1api20240815_sqldatabasethroughputsetting.yaml) | | SqlRoleAssignment | 2024-08-15 | v1api20240815 | v2.12.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/documentdb/sqldatabase/v1api20240815/v1api20240815_sqlroleassignment.yaml) | -### Released +### Latest Released Versions These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | diff --git a/docs/hugo/content/reference/insights/_index.md b/docs/hugo/content/reference/insights/_index.md index 78c2c432626..9f6fceebb22 100644 --- a/docs/hugo/content/reference/insights/_index.md +++ b/docs/hugo/content/reference/insights/_index.md @@ -13,7 +13,7 @@ Development of these new resources is complete and they will be available in the |--------------------|--------------------|----------------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| | ScheduledQueryRule | 2024-01-01-preview | v1api20240101preview | v2.12.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/insights/v1api20240101preview/v1api20240101preview_scheduledqueryrule.yaml) | -### Released +### Latest Released Versions These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | diff --git a/docs/hugo/content/reference/servicebus/_index.md b/docs/hugo/content/reference/servicebus/_index.md index bc49100665e..bd83b563348 100644 --- a/docs/hugo/content/reference/servicebus/_index.md +++ b/docs/hugo/content/reference/servicebus/_index.md @@ -18,7 +18,7 @@ Development of these new resources is complete and they will be available in the | NamespacesTopicsSubscription | 2024-01-01 | v1api20240101 | v2.12.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20240101/v1api20240101_namespacestopicssubscription.yaml) | | NamespacesTopicsSubscriptionsRule | 2024-01-01 | v1api20240101 | v2.12.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/servicebus/v1api20240101/v1api20240101_namespacestopicssubscriptionsrule.yaml) | -### Released +### Latest Released Versions These resource(s) are the latest versions available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. | Resource | ARM Version | CRD Version | Supported From | Sample | diff --git a/docs/hugo/content/reference/signalrservice/_index.md b/docs/hugo/content/reference/signalrservice/_index.md index 46bdf0bd2d7..5a295cbe716 100644 --- a/docs/hugo/content/reference/signalrservice/_index.md +++ b/docs/hugo/content/reference/signalrservice/_index.md @@ -19,7 +19,6 @@ Development of these new resources is complete and they will be available in the ### Released These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API. - | Resource | ARM Version | CRD Version | Supported From | Sample | |--------------------------------------------------------------------------------------------------------------------------------------------------|-------------|---------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------| | [SignalR](https://azure.github.io/azure-service-operator/reference/signalrservice/v1api20211001/#signalrservice.azure.com/v1api20211001.SignalR) | 2021-10-01 | v1api20211001 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/signalrservice/v1api20211001/v1api20211001_signalr.yaml) | From c2e868726da55ff0c2a3288adfa78a8a3caea976 Mon Sep 17 00:00:00 2001 From: Bevan Arps Date: Thu, 6 Feb 2025 21:18:42 +0000 Subject: [PATCH 6/6] Update crossplane docs --- hack/crossplane/apis/_index.md | 9 +++++++-- hack/crossplane/apis/sql/_index.md | 9 +++++++-- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/hack/crossplane/apis/_index.md b/hack/crossplane/apis/_index.md index 92931c338aa..5d3d89254d1 100644 --- a/hack/crossplane/apis/_index.md +++ b/hack/crossplane/apis/_index.md @@ -14,11 +14,16 @@ These are the Crossplane resources committed to our **main** branch, grouped by ## Sql -### Released +### Latest Released Versions | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------|--------------------|----------------------|----------------|--------| | Server | 2021-11-01 | v1api20211101 | - | - | -| Server | 2020-11-01-preview | v1api20201101preview | - | - | | Servers_Database | 2020-11-01-preview | v1api20201101preview | - | - | +### Other Supported Versions + +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------|--------------------|----------------------|----------------|--------| +| Server | 2020-11-01-preview | v1api20201101preview | - | - | + diff --git a/hack/crossplane/apis/sql/_index.md b/hack/crossplane/apis/sql/_index.md index 14552fe86a7..5e71e96d56f 100644 --- a/hack/crossplane/apis/sql/_index.md +++ b/hack/crossplane/apis/sql/_index.md @@ -3,11 +3,16 @@ title: Sql Supported Resources linktitle: Sql no_list: true --- -### Released +### Latest Released Versions | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------|--------------------|----------------------|----------------|--------| | Server | 2021-11-01 | v1api20211101 | - | - | -| Server | 2020-11-01-preview | v1api20201101preview | - | - | | Servers_Database | 2020-11-01-preview | v1api20201101preview | - | - | +### Other Supported Versions + +| Resource | ARM Version | CRD Version | Supported From | Sample | +|----------|--------------------|----------------------|----------------|--------| +| Server | 2020-11-01-preview | v1api20201101preview | - | - | +