@pulumi/cloudflare 6.9.0-alpha.1757723728 → 6.9.0
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/getList.d.ts +19 -0
- package/getList.js +4 -0
- package/getList.js.map +1 -1
- package/list.d.ts +14 -12
- package/list.js +2 -12
- package/list.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +22 -0
- package/types/output.d.ts +44 -0
package/getList.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
2
3
|
/**
|
|
3
4
|
* ## Example Usage
|
|
4
5
|
*
|
|
@@ -9,6 +10,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
9
10
|
* const exampleList = cloudflare.getList({
|
|
10
11
|
* accountId: "023e105f4ecef8ad9ca31a8372d0c353",
|
|
11
12
|
* listId: "2c0fc9fa937b11eaa1b71c4d701ab86e",
|
|
13
|
+
* search: "1.1.1.1",
|
|
12
14
|
* });
|
|
13
15
|
* ```
|
|
14
16
|
*/
|
|
@@ -25,6 +27,10 @@ export interface GetListArgs {
|
|
|
25
27
|
* The unique ID of the list.
|
|
26
28
|
*/
|
|
27
29
|
listId: string;
|
|
30
|
+
/**
|
|
31
|
+
* A search query to filter returned items. Its meaning depends on the list type: IP addresses must start with the provided string, hostnames and bulk redirects must contain the string, and ASNs must match the string exactly.
|
|
32
|
+
*/
|
|
33
|
+
search?: string;
|
|
28
34
|
}
|
|
29
35
|
/**
|
|
30
36
|
* A collection of values returned by getList.
|
|
@@ -46,6 +52,10 @@ export interface GetListResult {
|
|
|
46
52
|
* The unique ID of the list.
|
|
47
53
|
*/
|
|
48
54
|
readonly id: string;
|
|
55
|
+
/**
|
|
56
|
+
* The items in the list. If set, this overwrites all items in the list. Do not use with `cloudflare.ListItem`.
|
|
57
|
+
*/
|
|
58
|
+
readonly items: outputs.GetListItem[];
|
|
49
59
|
/**
|
|
50
60
|
* The type of the list. Each type supports specific list items (IP addresses, ASNs, hostnames or redirects).
|
|
51
61
|
* Available values: "ip", "redirect", "hostname", "asn".
|
|
@@ -71,6 +81,10 @@ export interface GetListResult {
|
|
|
71
81
|
* The number of [filters](https://www.terraform.io/api/resources/filters/) referencing the list.
|
|
72
82
|
*/
|
|
73
83
|
readonly numReferencingFilters: number;
|
|
84
|
+
/**
|
|
85
|
+
* A search query to filter returned items. Its meaning depends on the list type: IP addresses must start with the provided string, hostnames and bulk redirects must contain the string, and ASNs must match the string exactly.
|
|
86
|
+
*/
|
|
87
|
+
readonly search?: string;
|
|
74
88
|
}
|
|
75
89
|
/**
|
|
76
90
|
* ## Example Usage
|
|
@@ -82,6 +96,7 @@ export interface GetListResult {
|
|
|
82
96
|
* const exampleList = cloudflare.getList({
|
|
83
97
|
* accountId: "023e105f4ecef8ad9ca31a8372d0c353",
|
|
84
98
|
* listId: "2c0fc9fa937b11eaa1b71c4d701ab86e",
|
|
99
|
+
* search: "1.1.1.1",
|
|
85
100
|
* });
|
|
86
101
|
* ```
|
|
87
102
|
*/
|
|
@@ -98,4 +113,8 @@ export interface GetListOutputArgs {
|
|
|
98
113
|
* The unique ID of the list.
|
|
99
114
|
*/
|
|
100
115
|
listId: pulumi.Input<string>;
|
|
116
|
+
/**
|
|
117
|
+
* A search query to filter returned items. Its meaning depends on the list type: IP addresses must start with the provided string, hostnames and bulk redirects must contain the string, and ASNs must match the string exactly.
|
|
118
|
+
*/
|
|
119
|
+
search?: pulumi.Input<string>;
|
|
101
120
|
}
|
package/getList.js
CHANGED
|
@@ -15,6 +15,7 @@ const utilities = require("./utilities");
|
|
|
15
15
|
* const exampleList = cloudflare.getList({
|
|
16
16
|
* accountId: "023e105f4ecef8ad9ca31a8372d0c353",
|
|
17
17
|
* listId: "2c0fc9fa937b11eaa1b71c4d701ab86e",
|
|
18
|
+
* search: "1.1.1.1",
|
|
18
19
|
* });
|
|
19
20
|
* ```
|
|
20
21
|
*/
|
|
@@ -23,6 +24,7 @@ function getList(args, opts) {
|
|
|
23
24
|
return pulumi.runtime.invoke("cloudflare:index/getList:getList", {
|
|
24
25
|
"accountId": args.accountId,
|
|
25
26
|
"listId": args.listId,
|
|
27
|
+
"search": args.search,
|
|
26
28
|
}, opts);
|
|
27
29
|
}
|
|
28
30
|
exports.getList = getList;
|
|
@@ -36,6 +38,7 @@ exports.getList = getList;
|
|
|
36
38
|
* const exampleList = cloudflare.getList({
|
|
37
39
|
* accountId: "023e105f4ecef8ad9ca31a8372d0c353",
|
|
38
40
|
* listId: "2c0fc9fa937b11eaa1b71c4d701ab86e",
|
|
41
|
+
* search: "1.1.1.1",
|
|
39
42
|
* });
|
|
40
43
|
* ```
|
|
41
44
|
*/
|
|
@@ -44,6 +47,7 @@ function getListOutput(args, opts) {
|
|
|
44
47
|
return pulumi.runtime.invokeOutput("cloudflare:index/getList:getList", {
|
|
45
48
|
"accountId": args.accountId,
|
|
46
49
|
"listId": args.listId,
|
|
50
|
+
"search": args.search,
|
|
47
51
|
}, opts);
|
|
48
52
|
}
|
|
49
53
|
exports.getListOutput = getListOutput;
|
package/getList.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getList.js","sourceRoot":"","sources":["../getList.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getList.js","sourceRoot":"","sources":["../getList.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAClE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,0BAOC;AA0ED;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAAiC;IACpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kCAAkC,EAAE;QACnE,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,sCAOC"}
|
package/list.d.ts
CHANGED
|
@@ -1,19 +1,9 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
2
4
|
/**
|
|
3
5
|
* ## Example Usage
|
|
4
6
|
*
|
|
5
|
-
* ```typescript
|
|
6
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
7
|
-
* import * as cloudflare from "@pulumi/cloudflare";
|
|
8
|
-
*
|
|
9
|
-
* const exampleList = new cloudflare.List("example_list", {
|
|
10
|
-
* accountId: "023e105f4ecef8ad9ca31a8372d0c353",
|
|
11
|
-
* kind: "ip",
|
|
12
|
-
* name: "list1",
|
|
13
|
-
* description: "This is a note",
|
|
14
|
-
* });
|
|
15
|
-
* ```
|
|
16
|
-
*
|
|
17
7
|
* ## Import
|
|
18
8
|
*
|
|
19
9
|
* ```sh
|
|
@@ -48,6 +38,10 @@ export declare class List extends pulumi.CustomResource {
|
|
|
48
38
|
* An informative summary of the list.
|
|
49
39
|
*/
|
|
50
40
|
readonly description: pulumi.Output<string | undefined>;
|
|
41
|
+
/**
|
|
42
|
+
* The items in the list. If set, this overwrites all items in the list. Do not use with `cloudflare.ListItem`.
|
|
43
|
+
*/
|
|
44
|
+
readonly items: pulumi.Output<outputs.ListItem[] | undefined>;
|
|
51
45
|
/**
|
|
52
46
|
* The type of the list. Each type supports specific list items (IP addresses, ASNs, hostnames or redirects).
|
|
53
47
|
* Available values: "ip", "redirect", "hostname", "asn".
|
|
@@ -94,6 +88,10 @@ export interface ListState {
|
|
|
94
88
|
* An informative summary of the list.
|
|
95
89
|
*/
|
|
96
90
|
description?: pulumi.Input<string>;
|
|
91
|
+
/**
|
|
92
|
+
* The items in the list. If set, this overwrites all items in the list. Do not use with `cloudflare.ListItem`.
|
|
93
|
+
*/
|
|
94
|
+
items?: pulumi.Input<pulumi.Input<inputs.ListItem>[]>;
|
|
97
95
|
/**
|
|
98
96
|
* The type of the list. Each type supports specific list items (IP addresses, ASNs, hostnames or redirects).
|
|
99
97
|
* Available values: "ip", "redirect", "hostname", "asn".
|
|
@@ -128,6 +126,10 @@ export interface ListArgs {
|
|
|
128
126
|
* An informative summary of the list.
|
|
129
127
|
*/
|
|
130
128
|
description?: pulumi.Input<string>;
|
|
129
|
+
/**
|
|
130
|
+
* The items in the list. If set, this overwrites all items in the list. Do not use with `cloudflare.ListItem`.
|
|
131
|
+
*/
|
|
132
|
+
items?: pulumi.Input<pulumi.Input<inputs.ListItem>[]>;
|
|
131
133
|
/**
|
|
132
134
|
* The type of the list. Each type supports specific list items (IP addresses, ASNs, hostnames or redirects).
|
|
133
135
|
* Available values: "ip", "redirect", "hostname", "asn".
|
package/list.js
CHANGED
|
@@ -8,18 +8,6 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
11
|
-
* ```typescript
|
|
12
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
-
* import * as cloudflare from "@pulumi/cloudflare";
|
|
14
|
-
*
|
|
15
|
-
* const exampleList = new cloudflare.List("example_list", {
|
|
16
|
-
* accountId: "023e105f4ecef8ad9ca31a8372d0c353",
|
|
17
|
-
* kind: "ip",
|
|
18
|
-
* name: "list1",
|
|
19
|
-
* description: "This is a note",
|
|
20
|
-
* });
|
|
21
|
-
* ```
|
|
22
|
-
*
|
|
23
11
|
* ## Import
|
|
24
12
|
*
|
|
25
13
|
* ```sh
|
|
@@ -57,6 +45,7 @@ class List extends pulumi.CustomResource {
|
|
|
57
45
|
resourceInputs["accountId"] = state?.accountId;
|
|
58
46
|
resourceInputs["createdOn"] = state?.createdOn;
|
|
59
47
|
resourceInputs["description"] = state?.description;
|
|
48
|
+
resourceInputs["items"] = state?.items;
|
|
60
49
|
resourceInputs["kind"] = state?.kind;
|
|
61
50
|
resourceInputs["modifiedOn"] = state?.modifiedOn;
|
|
62
51
|
resourceInputs["name"] = state?.name;
|
|
@@ -76,6 +65,7 @@ class List extends pulumi.CustomResource {
|
|
|
76
65
|
}
|
|
77
66
|
resourceInputs["accountId"] = args?.accountId;
|
|
78
67
|
resourceInputs["description"] = args?.description;
|
|
68
|
+
resourceInputs["items"] = args?.items;
|
|
79
69
|
resourceInputs["kind"] = args?.kind;
|
|
80
70
|
resourceInputs["name"] = args?.name;
|
|
81
71
|
resourceInputs["createdOn"] = undefined /*out*/;
|
package/list.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list.js","sourceRoot":"","sources":["../list.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"list.js","sourceRoot":"","sources":["../list.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/cloudflare",
|
|
3
|
-
"version": "6.9.0
|
|
3
|
+
"version": "6.9.0",
|
|
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": "6.9.0
|
|
26
|
+
"version": "6.9.0"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -6386,6 +6386,28 @@ export interface KeylessCertificateTunnel {
|
|
|
6386
6386
|
*/
|
|
6387
6387
|
vnetId: pulumi.Input<string>;
|
|
6388
6388
|
}
|
|
6389
|
+
export interface ListItem {
|
|
6390
|
+
/**
|
|
6391
|
+
* A non-negative 32 bit integer
|
|
6392
|
+
*/
|
|
6393
|
+
asn?: pulumi.Input<number>;
|
|
6394
|
+
/**
|
|
6395
|
+
* An informative summary of the list item.
|
|
6396
|
+
*/
|
|
6397
|
+
comment?: pulumi.Input<string>;
|
|
6398
|
+
/**
|
|
6399
|
+
* Valid characters for hostnames are ASCII(7) letters from a to z, the digits from 0 to 9, wildcards (*), and the hyphen (-).
|
|
6400
|
+
*/
|
|
6401
|
+
hostname?: pulumi.Input<inputs.ListItemHostname>;
|
|
6402
|
+
/**
|
|
6403
|
+
* An IPv4 address, an IPv4 CIDR, an IPv6 address, or an IPv6 CIDR.
|
|
6404
|
+
*/
|
|
6405
|
+
ip?: pulumi.Input<string>;
|
|
6406
|
+
/**
|
|
6407
|
+
* The definition of the redirect.
|
|
6408
|
+
*/
|
|
6409
|
+
redirect?: pulumi.Input<inputs.ListItemRedirect>;
|
|
6410
|
+
}
|
|
6389
6411
|
export interface ListItemHostname {
|
|
6390
6412
|
/**
|
|
6391
6413
|
* Only applies to wildcard hostnames (e.g., *.example.com). When true (default), only subdomains are blocked. When false, both the root domain and subdomains are blocked.
|
package/types/output.d.ts
CHANGED
|
@@ -8421,6 +8421,28 @@ export interface GetLeakedCredentialCheckRulesResult {
|
|
|
8421
8421
|
*/
|
|
8422
8422
|
username: string;
|
|
8423
8423
|
}
|
|
8424
|
+
export interface GetListItem {
|
|
8425
|
+
/**
|
|
8426
|
+
* A non-negative 32 bit integer
|
|
8427
|
+
*/
|
|
8428
|
+
asn: number;
|
|
8429
|
+
/**
|
|
8430
|
+
* An informative summary of the list item.
|
|
8431
|
+
*/
|
|
8432
|
+
comment: string;
|
|
8433
|
+
/**
|
|
8434
|
+
* Valid characters for hostnames are ASCII(7) letters from a to z, the digits from 0 to 9, wildcards (*), and the hyphen (-).
|
|
8435
|
+
*/
|
|
8436
|
+
hostname: outputs.GetListItemHostname;
|
|
8437
|
+
/**
|
|
8438
|
+
* An IPv4 address, an IPv4 CIDR, an IPv6 address, or an IPv6 CIDR.
|
|
8439
|
+
*/
|
|
8440
|
+
ip: string;
|
|
8441
|
+
/**
|
|
8442
|
+
* The definition of the redirect.
|
|
8443
|
+
*/
|
|
8444
|
+
redirect: outputs.GetListItemRedirect;
|
|
8445
|
+
}
|
|
8424
8446
|
export interface GetListItemHostname {
|
|
8425
8447
|
/**
|
|
8426
8448
|
* Only applies to wildcard hostnames (e.g., *.example.com). When true (default), only subdomains are blocked. When false, both the root domain and subdomains are blocked.
|
|
@@ -26269,6 +26291,28 @@ export interface KeylessCertificateTunnel {
|
|
|
26269
26291
|
*/
|
|
26270
26292
|
vnetId: string;
|
|
26271
26293
|
}
|
|
26294
|
+
export interface ListItem {
|
|
26295
|
+
/**
|
|
26296
|
+
* A non-negative 32 bit integer
|
|
26297
|
+
*/
|
|
26298
|
+
asn?: number;
|
|
26299
|
+
/**
|
|
26300
|
+
* An informative summary of the list item.
|
|
26301
|
+
*/
|
|
26302
|
+
comment?: string;
|
|
26303
|
+
/**
|
|
26304
|
+
* Valid characters for hostnames are ASCII(7) letters from a to z, the digits from 0 to 9, wildcards (*), and the hyphen (-).
|
|
26305
|
+
*/
|
|
26306
|
+
hostname?: outputs.ListItemHostname;
|
|
26307
|
+
/**
|
|
26308
|
+
* An IPv4 address, an IPv4 CIDR, an IPv6 address, or an IPv6 CIDR.
|
|
26309
|
+
*/
|
|
26310
|
+
ip?: string;
|
|
26311
|
+
/**
|
|
26312
|
+
* The definition of the redirect.
|
|
26313
|
+
*/
|
|
26314
|
+
redirect?: outputs.ListItemRedirect;
|
|
26315
|
+
}
|
|
26272
26316
|
export interface ListItemHostname {
|
|
26273
26317
|
/**
|
|
26274
26318
|
* Only applies to wildcard hostnames (e.g., *.example.com). When true (default), only subdomains are blocked. When false, both the root domain and subdomains are blocked.
|