@pulumi/fastly 8.10.0 → 8.11.0-alpha.1724218565
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/configstoreEntries.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export declare class ConfigstoreEntries extends pulumi.CustomResource {
|
|
|
28
28
|
* A map representing an entry in the Config Store, (key/value)
|
|
29
29
|
*/
|
|
30
30
|
readonly entries: pulumi.Output<{
|
|
31
|
-
[key: string]:
|
|
31
|
+
[key: string]: string;
|
|
32
32
|
}>;
|
|
33
33
|
readonly manageEntries: pulumi.Output<boolean | undefined>;
|
|
34
34
|
/**
|
|
@@ -52,7 +52,7 @@ export interface ConfigstoreEntriesState {
|
|
|
52
52
|
* A map representing an entry in the Config Store, (key/value)
|
|
53
53
|
*/
|
|
54
54
|
entries?: pulumi.Input<{
|
|
55
|
-
[key: string]:
|
|
55
|
+
[key: string]: pulumi.Input<string>;
|
|
56
56
|
}>;
|
|
57
57
|
manageEntries?: pulumi.Input<boolean>;
|
|
58
58
|
/**
|
|
@@ -68,7 +68,7 @@ export interface ConfigstoreEntriesArgs {
|
|
|
68
68
|
* A map representing an entry in the Config Store, (key/value)
|
|
69
69
|
*/
|
|
70
70
|
entries: pulumi.Input<{
|
|
71
|
-
[key: string]:
|
|
71
|
+
[key: string]: pulumi.Input<string>;
|
|
72
72
|
}>;
|
|
73
73
|
manageEntries?: pulumi.Input<boolean>;
|
|
74
74
|
/**
|
package/integration.d.ts
CHANGED
|
@@ -77,7 +77,7 @@ export declare class Integration extends pulumi.CustomResource {
|
|
|
77
77
|
* Configuration specific to the integration `type` (see documentation examples).
|
|
78
78
|
*/
|
|
79
79
|
readonly config: pulumi.Output<{
|
|
80
|
-
[key: string]:
|
|
80
|
+
[key: string]: string;
|
|
81
81
|
}>;
|
|
82
82
|
/**
|
|
83
83
|
* User submitted description of the integration.
|
|
@@ -108,7 +108,7 @@ export interface IntegrationState {
|
|
|
108
108
|
* Configuration specific to the integration `type` (see documentation examples).
|
|
109
109
|
*/
|
|
110
110
|
config?: pulumi.Input<{
|
|
111
|
-
[key: string]:
|
|
111
|
+
[key: string]: pulumi.Input<string>;
|
|
112
112
|
}>;
|
|
113
113
|
/**
|
|
114
114
|
* User submitted description of the integration.
|
|
@@ -131,7 +131,7 @@ export interface IntegrationArgs {
|
|
|
131
131
|
* Configuration specific to the integration `type` (see documentation examples).
|
|
132
132
|
*/
|
|
133
133
|
config: pulumi.Input<{
|
|
134
|
-
[key: string]:
|
|
134
|
+
[key: string]: pulumi.Input<string>;
|
|
135
135
|
}>;
|
|
136
136
|
/**
|
|
137
137
|
* User submitted description of the integration.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/fastly",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.11.0-alpha.1724218565",
|
|
4
4
|
"description": "A Pulumi package for creating and managing fastly cloud resources.. Based on terraform-provider-fastly: version v4",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "fastly",
|
|
26
|
-
"version": "8.
|
|
26
|
+
"version": "8.11.0-alpha.1724218565"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -40,7 +40,7 @@ export declare class ServiceDictionaryItems extends pulumi.CustomResource {
|
|
|
40
40
|
* A map representing an entry in the dictionary, (key/value)
|
|
41
41
|
*/
|
|
42
42
|
readonly items: pulumi.Output<{
|
|
43
|
-
[key: string]:
|
|
43
|
+
[key: string]: string;
|
|
44
44
|
} | undefined>;
|
|
45
45
|
/**
|
|
46
46
|
* Whether to reapply changes if the state of the items drifts, i.e. if items are managed externally
|
|
@@ -71,7 +71,7 @@ export interface ServiceDictionaryItemsState {
|
|
|
71
71
|
* A map representing an entry in the dictionary, (key/value)
|
|
72
72
|
*/
|
|
73
73
|
items?: pulumi.Input<{
|
|
74
|
-
[key: string]:
|
|
74
|
+
[key: string]: pulumi.Input<string>;
|
|
75
75
|
}>;
|
|
76
76
|
/**
|
|
77
77
|
* Whether to reapply changes if the state of the items drifts, i.e. if items are managed externally
|
|
@@ -94,7 +94,7 @@ export interface ServiceDictionaryItemsArgs {
|
|
|
94
94
|
* A map representing an entry in the dictionary, (key/value)
|
|
95
95
|
*/
|
|
96
96
|
items?: pulumi.Input<{
|
|
97
|
-
[key: string]:
|
|
97
|
+
[key: string]: pulumi.Input<string>;
|
|
98
98
|
}>;
|
|
99
99
|
/**
|
|
100
100
|
* Whether to reapply changes if the state of the items drifts, i.e. if items are managed externally
|