@pulumi/ns1 3.10.0 → 3.10.1
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 +6 -6
- package/redirect.d.ts +15 -15
- package/types/input.d.ts +2 -2
- package/types/output.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/ns1",
|
|
3
|
-
"version": "3.10.
|
|
3
|
+
"version": "3.10.1",
|
|
4
4
|
"description": "A Pulumi package for creating and managing ns1 cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "ns1",
|
|
26
|
-
"version": "3.10.
|
|
26
|
+
"version": "3.10.1"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/record.d.ts
CHANGED
|
@@ -216,8 +216,8 @@ It is suggested to migrate to a regular "answers" block. Using Terraform 0.12+,
|
|
|
216
216
|
/**
|
|
217
217
|
* Whether to use EDNS client subnet data when
|
|
218
218
|
* available(in filter chain).
|
|
219
|
-
* * `
|
|
220
|
-
*
|
|
219
|
+
* * ` meta ` - (Optional) meta is supported at the `record` level. Meta
|
|
220
|
+
* is documented below.
|
|
221
221
|
*/
|
|
222
222
|
readonly useClientSubnet: pulumi.Output<boolean | undefined>;
|
|
223
223
|
/**
|
|
@@ -303,8 +303,8 @@ It is suggested to migrate to a regular "answers" block. Using Terraform 0.12+,
|
|
|
303
303
|
/**
|
|
304
304
|
* Whether to use EDNS client subnet data when
|
|
305
305
|
* available(in filter chain).
|
|
306
|
-
* * `
|
|
307
|
-
*
|
|
306
|
+
* * ` meta ` - (Optional) meta is supported at the `record` level. Meta
|
|
307
|
+
* is documented below.
|
|
308
308
|
*/
|
|
309
309
|
useClientSubnet?: pulumi.Input<boolean | undefined>;
|
|
310
310
|
/**
|
|
@@ -382,8 +382,8 @@ It is suggested to migrate to a regular "answers" block. Using Terraform 0.12+,
|
|
|
382
382
|
/**
|
|
383
383
|
* Whether to use EDNS client subnet data when
|
|
384
384
|
* available(in filter chain).
|
|
385
|
-
* * `
|
|
386
|
-
*
|
|
385
|
+
* * ` meta ` - (Optional) meta is supported at the `record` level. Meta
|
|
386
|
+
* is documented below.
|
|
387
387
|
*/
|
|
388
388
|
useClientSubnet?: pulumi.Input<boolean | undefined>;
|
|
389
389
|
/**
|
package/redirect.d.ts
CHANGED
|
@@ -79,13 +79,13 @@ export declare class Redirect extends pulumi.CustomResource {
|
|
|
79
79
|
/**
|
|
80
80
|
* How the redirect is executed:
|
|
81
81
|
* * __permanent__ (HTTP 301) indicates to search engines that they should remove the old page from
|
|
82
|
-
*
|
|
82
|
+
* their database and replace it with the new target page (this is recommended for SEO);
|
|
83
83
|
* * __temporary__ (HTTP 302) less common, indicates that search engines should keep the old domain or
|
|
84
|
-
*
|
|
85
|
-
*
|
|
86
|
-
*
|
|
84
|
+
* page indexed as the redirect is only temporary (while both pages might appear in the
|
|
85
|
+
* search results, a temporary redirect suggests to the search engine that it should
|
|
86
|
+
* prefer the new target page);
|
|
87
87
|
* * __masking__ preserves the redirected domain in the browser's address bar (this lets users see the
|
|
88
|
-
*
|
|
88
|
+
* address they entered, even though the displayed content comes from a different web page).
|
|
89
89
|
*/
|
|
90
90
|
readonly forwardingType: pulumi.Output<string | undefined>;
|
|
91
91
|
/**
|
|
@@ -149,13 +149,13 @@ export interface RedirectState {
|
|
|
149
149
|
/**
|
|
150
150
|
* How the redirect is executed:
|
|
151
151
|
* * __permanent__ (HTTP 301) indicates to search engines that they should remove the old page from
|
|
152
|
-
*
|
|
152
|
+
* their database and replace it with the new target page (this is recommended for SEO);
|
|
153
153
|
* * __temporary__ (HTTP 302) less common, indicates that search engines should keep the old domain or
|
|
154
|
-
*
|
|
155
|
-
*
|
|
156
|
-
*
|
|
154
|
+
* page indexed as the redirect is only temporary (while both pages might appear in the
|
|
155
|
+
* search results, a temporary redirect suggests to the search engine that it should
|
|
156
|
+
* prefer the new target page);
|
|
157
157
|
* * __masking__ preserves the redirected domain in the browser's address bar (this lets users see the
|
|
158
|
-
*
|
|
158
|
+
* address they entered, even though the displayed content comes from a different web page).
|
|
159
159
|
*/
|
|
160
160
|
forwardingType?: pulumi.Input<string | undefined>;
|
|
161
161
|
/**
|
|
@@ -211,13 +211,13 @@ export interface RedirectArgs {
|
|
|
211
211
|
/**
|
|
212
212
|
* How the redirect is executed:
|
|
213
213
|
* * __permanent__ (HTTP 301) indicates to search engines that they should remove the old page from
|
|
214
|
-
*
|
|
214
|
+
* their database and replace it with the new target page (this is recommended for SEO);
|
|
215
215
|
* * __temporary__ (HTTP 302) less common, indicates that search engines should keep the old domain or
|
|
216
|
-
*
|
|
217
|
-
*
|
|
218
|
-
*
|
|
216
|
+
* page indexed as the redirect is only temporary (while both pages might appear in the
|
|
217
|
+
* search results, a temporary redirect suggests to the search engine that it should
|
|
218
|
+
* prefer the new target page);
|
|
219
219
|
* * __masking__ preserves the redirected domain in the browser's address bar (this lets users see the
|
|
220
|
-
*
|
|
220
|
+
* address they entered, even though the displayed content comes from a different web page).
|
|
221
221
|
*/
|
|
222
222
|
forwardingType?: pulumi.Input<string | undefined>;
|
|
223
223
|
/**
|
package/types/input.d.ts
CHANGED
|
@@ -203,8 +203,8 @@ export interface RecordAnswer {
|
|
|
203
203
|
* single `region` per answer is currently supported. If you want an answer in
|
|
204
204
|
* multiple regions, duplicating the answer (including metadata) is the correct
|
|
205
205
|
* approach.
|
|
206
|
-
* * `
|
|
207
|
-
*
|
|
206
|
+
* * ` meta ` - (Optional) meta is supported at the `answer` level. Meta
|
|
207
|
+
* is documented below.
|
|
208
208
|
*/
|
|
209
209
|
region?: pulumi.Input<string | undefined>;
|
|
210
210
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -371,8 +371,8 @@ export interface RecordAnswer {
|
|
|
371
371
|
* single `region` per answer is currently supported. If you want an answer in
|
|
372
372
|
* multiple regions, duplicating the answer (including metadata) is the correct
|
|
373
373
|
* approach.
|
|
374
|
-
* * `
|
|
375
|
-
*
|
|
374
|
+
* * ` meta ` - (Optional) meta is supported at the `answer` level. Meta
|
|
375
|
+
* is documented below.
|
|
376
376
|
*/
|
|
377
377
|
region?: string;
|
|
378
378
|
}
|