@pulumi/cloudflare 5.46.0 → 5.47.0-alpha.1736196769
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/record.d.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/cloudflare",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.47.0-alpha.1736196769",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Cloudflare cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "cloudflare",
|
|
26
|
-
"version": "5.
|
|
26
|
+
"version": "5.47.0-alpha.1736196769"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/record.d.ts
CHANGED
|
@@ -119,7 +119,7 @@ export declare class Record extends pulumi.CustomResource {
|
|
|
119
119
|
/**
|
|
120
120
|
* The value of the record. Must provide only one of `data`, `content`, `value`.
|
|
121
121
|
*
|
|
122
|
-
* @deprecated `value` is deprecated in favour of `content` and will be removed in the next major release.
|
|
122
|
+
* @deprecated `value` is deprecated in favour of `content` and will be removed in the next major release. Due to reports of inconsistent behavior on the `value` field, we strongly recommend migrating to `content`.
|
|
123
123
|
*/
|
|
124
124
|
readonly value: pulumi.Output<string>;
|
|
125
125
|
/**
|
|
@@ -201,7 +201,7 @@ export interface RecordState {
|
|
|
201
201
|
/**
|
|
202
202
|
* The value of the record. Must provide only one of `data`, `content`, `value`.
|
|
203
203
|
*
|
|
204
|
-
* @deprecated `value` is deprecated in favour of `content` and will be removed in the next major release.
|
|
204
|
+
* @deprecated `value` is deprecated in favour of `content` and will be removed in the next major release. Due to reports of inconsistent behavior on the `value` field, we strongly recommend migrating to `content`.
|
|
205
205
|
*/
|
|
206
206
|
value?: pulumi.Input<string>;
|
|
207
207
|
/**
|
|
@@ -253,7 +253,7 @@ export interface RecordArgs {
|
|
|
253
253
|
/**
|
|
254
254
|
* The value of the record. Must provide only one of `data`, `content`, `value`.
|
|
255
255
|
*
|
|
256
|
-
* @deprecated `value` is deprecated in favour of `content` and will be removed in the next major release.
|
|
256
|
+
* @deprecated `value` is deprecated in favour of `content` and will be removed in the next major release. Due to reports of inconsistent behavior on the `value` field, we strongly recommend migrating to `content`.
|
|
257
257
|
*/
|
|
258
258
|
value?: pulumi.Input<string>;
|
|
259
259
|
/**
|