-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deprecate: Deprecates Serverless functionality (#2742)
* deprecates serverless functionality * documentation * deprecate attributes in data sources * set link to migration guide with supported migration paths
- Loading branch information
Showing
15 changed files
with
109 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
```release-note:note | ||
resource/mongodbatlas_serverless_instance: Deprecates `continuous_backup_enabled` attribute | ||
``` | ||
|
||
```release-note:note | ||
resource/mongodbatlas_serverless_instance: Deprecates `auto_indexing` attribute | ||
``` | ||
|
||
```release-note:note | ||
data-source/mongodbatlas_serverless_instance: Deprecates `continuous_backup_enabled` attribute | ||
``` | ||
|
||
```release-note:note | ||
data-source/mongodbatlas_serverless_instance: Deprecates `auto_indexing` attribute | ||
``` | ||
|
||
```release-note:note | ||
data-source/mongodbatlas_serverless_instances: Deprecates `continuous_backup_enabled` attribute | ||
``` | ||
|
||
```release-note:note | ||
data-source/mongodbatlas_serverless_instances: Deprecates `auto_indexing` attribute | ||
``` | ||
|
||
```release-note:note | ||
resource/mongodbatlas_privatelink_endpoint_serverless: Deprecates resource | ||
``` | ||
|
||
```release-note:note | ||
resource/mongodbatlas_privatelink_endpoint_service_serverless: Deprecates resource | ||
``` | ||
|
||
```release-note:note | ||
data-source/mongodbatlas_privatelink_endpoint_service_serverless: Deprecates data source | ||
``` | ||
|
||
```release-note:note | ||
data-source/mongodbatlas_privatelink_endpoints_service_serverless: Deprecates data source | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
docs/data-sources/privatelink_endpoints_service_serverless.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
package constant | ||
|
||
const ( | ||
DeprecationParam = "This parameter is deprecated." | ||
DeprecationParamWithReplacement = "This parameter is deprecated. Please transition to %s." | ||
DeprecationParamByVersion = "This parameter is deprecated and will be removed in version %s." | ||
DeprecationParamByVersionWithReplacement = "This parameter is deprecated and will be removed in version %s. Please transition to %s." | ||
DeprecationParamFutureWithReplacement = "This parameter is deprecated and will be removed in the future. Please transition to %s" | ||
DeprecationResourceByDateWithReplacement = "This resource is deprecated and will be removed in %s. Please transition to %s." | ||
DeprecationDataSourceByDateWithReplacement = "This data source is deprecated and will be removed in %s. Please transition to %s." | ||
DeprecationParam = "This parameter is deprecated." | ||
DeprecationParamWithReplacement = "This parameter is deprecated. Please transition to %s." | ||
DeprecationParamByVersion = "This parameter is deprecated and will be removed in version %s." | ||
DeprecationParamByVersionWithReplacement = "This parameter is deprecated and will be removed in version %s. Please transition to %s." | ||
DeprecationParamFutureWithReplacement = "This parameter is deprecated and will be removed in the future. Please transition to %s" | ||
DeprecationResourceByDateWithReplacement = "This resource is deprecated and will be removed in %s. Please transition to %s." | ||
DeprecationDataSourceByDateWithReplacement = "This data source is deprecated and will be removed in %s. Please transition to %s." | ||
DeprecationResourceByDateWithExternalLink = "This resource is deprecated and will be removed in %s. For more details see %s." | ||
DeprecationDataSourceByDateWithExternalLink = "This data source is deprecated and will be removed in %s. For more details see %s." | ||
DeprecatioParamByDateWithExternalLink = "This parameter is deprecated and will be removed in %s. For more details see %s." | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters