@pulumi/cloudflare 5.41.0-alpha.1729195730 → 5.41.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.
@@ -163,7 +163,7 @@ export declare class AccessApplication extends pulumi.CustomResource {
163
163
  */
164
164
  readonly tags: pulumi.Output<string[] | undefined>;
165
165
  /**
166
- * A list of mappings to apply to SCIM resources before provisioning them in this application. These can transform or filter the resources to be provisioned.
166
+ * The payload for an infrastructure application which defines the port, protocol, and target attributes. Only applicable to Infrastructure Applications, in which case this field is required.
167
167
  */
168
168
  readonly targetCriterias: pulumi.Output<outputs.AccessApplicationTargetCriteria[] | undefined>;
169
169
  /**
@@ -316,7 +316,7 @@ export interface AccessApplicationState {
316
316
  */
317
317
  tags?: pulumi.Input<pulumi.Input<string>[]>;
318
318
  /**
319
- * A list of mappings to apply to SCIM resources before provisioning them in this application. These can transform or filter the resources to be provisioned.
319
+ * The payload for an infrastructure application which defines the port, protocol, and target attributes. Only applicable to Infrastructure Applications, in which case this field is required.
320
320
  */
321
321
  targetCriterias?: pulumi.Input<pulumi.Input<inputs.AccessApplicationTargetCriteria>[]>;
322
322
  /**
@@ -457,7 +457,7 @@ export interface AccessApplicationArgs {
457
457
  */
458
458
  tags?: pulumi.Input<pulumi.Input<string>[]>;
459
459
  /**
460
- * A list of mappings to apply to SCIM resources before provisioning them in this application. These can transform or filter the resources to be provisioned.
460
+ * The payload for an infrastructure application which defines the port, protocol, and target attributes. Only applicable to Infrastructure Applications, in which case this field is required.
461
461
  */
462
462
  targetCriterias?: pulumi.Input<pulumi.Input<inputs.AccessApplicationTargetCriteria>[]>;
463
463
  /**
package/accessPolicy.d.ts CHANGED
@@ -47,7 +47,7 @@ export declare class AccessPolicy extends pulumi.CustomResource {
47
47
  readonly approvalGroups: pulumi.Output<outputs.AccessPolicyApprovalGroup[] | undefined>;
48
48
  readonly approvalRequired: pulumi.Output<boolean | undefined>;
49
49
  /**
50
- * The rules that define how users may connect to the targets secured by your application.
50
+ * The rules that define how users may connect to the targets secured by your application. Only applicable to Infrastructure Applications, in which case this field is required.
51
51
  */
52
52
  readonly connectionRules: pulumi.Output<outputs.AccessPolicyConnectionRules | undefined>;
53
53
  /**
@@ -118,7 +118,7 @@ export interface AccessPolicyState {
118
118
  approvalGroups?: pulumi.Input<pulumi.Input<inputs.AccessPolicyApprovalGroup>[]>;
119
119
  approvalRequired?: pulumi.Input<boolean>;
120
120
  /**
121
- * The rules that define how users may connect to the targets secured by your application.
121
+ * The rules that define how users may connect to the targets secured by your application. Only applicable to Infrastructure Applications, in which case this field is required.
122
122
  */
123
123
  connectionRules?: pulumi.Input<inputs.AccessPolicyConnectionRules>;
124
124
  /**
@@ -181,7 +181,7 @@ export interface AccessPolicyArgs {
181
181
  approvalGroups?: pulumi.Input<pulumi.Input<inputs.AccessPolicyApprovalGroup>[]>;
182
182
  approvalRequired?: pulumi.Input<boolean>;
183
183
  /**
184
- * The rules that define how users may connect to the targets secured by your application.
184
+ * The rules that define how users may connect to the targets secured by your application. Only applicable to Infrastructure Applications, in which case this field is required.
185
185
  */
186
186
  connectionRules?: pulumi.Input<inputs.AccessPolicyConnectionRules>;
187
187
  /**
@@ -31,7 +31,7 @@ export declare class CertificatePack extends pulumi.CustomResource {
31
31
  */
32
32
  static isInstance(obj: any): obj is CertificatePack;
33
33
  /**
34
- * Which certificate authority to issue the certificate pack. Available values: `digicert`, `letsEncrypt`, `google`. **Modifying this attribute will force creation of a new resource.**
34
+ * Which certificate authority to issue the certificate pack. Available values: `digicert`, `letsEncrypt`, `google`, `sslCom`. **Modifying this attribute will force creation of a new resource.**
35
35
  */
36
36
  readonly certificateAuthority: pulumi.Output<string>;
37
37
  /**
@@ -78,7 +78,7 @@ export declare class CertificatePack extends pulumi.CustomResource {
78
78
  */
79
79
  export interface CertificatePackState {
80
80
  /**
81
- * Which certificate authority to issue the certificate pack. Available values: `digicert`, `letsEncrypt`, `google`. **Modifying this attribute will force creation of a new resource.**
81
+ * Which certificate authority to issue the certificate pack. Available values: `digicert`, `letsEncrypt`, `google`, `sslCom`. **Modifying this attribute will force creation of a new resource.**
82
82
  */
83
83
  certificateAuthority?: pulumi.Input<string>;
84
84
  /**
@@ -117,7 +117,7 @@ export interface CertificatePackState {
117
117
  */
118
118
  export interface CertificatePackArgs {
119
119
  /**
120
- * Which certificate authority to issue the certificate pack. Available values: `digicert`, `letsEncrypt`, `google`. **Modifying this attribute will force creation of a new resource.**
120
+ * Which certificate authority to issue the certificate pack. Available values: `digicert`, `letsEncrypt`, `google`, `sslCom`. **Modifying this attribute will force creation of a new resource.**
121
121
  */
122
122
  certificateAuthority: pulumi.Input<string>;
123
123
  /**
@@ -2,6 +2,20 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as outputs from "./types/output";
3
3
  /**
4
4
  * Use this data source to retrieve all Infrastructure Access Targets.
5
+ *
6
+ * ## Example Usage
7
+ *
8
+ * ```typescript
9
+ * import * as pulumi from "@pulumi/pulumi";
10
+ * import * as cloudflare from "@pulumi/cloudflare";
11
+ *
12
+ * const example = cloudflare.getInfrastructureAccessTargets({
13
+ * accountId: "f037e56e89293a057740de681ac9abbe",
14
+ * hostnameContains: "example",
15
+ * ipv4: "198.51.100.1",
16
+ * });
17
+ * export const targets = example.then(example => example.targets);
18
+ * ```
5
19
  */
6
20
  export declare function getInfrastructureAccessTargets(args: GetInfrastructureAccessTargetsArgs, opts?: pulumi.InvokeOptions): Promise<GetInfrastructureAccessTargetsResult>;
7
21
  /**
@@ -17,19 +31,19 @@ export interface GetInfrastructureAccessTargetsArgs {
17
31
  */
18
32
  createdAfter?: string;
19
33
  /**
20
- * The name of the app type.
34
+ * The hostname of the target.
21
35
  */
22
36
  hostname?: string;
23
37
  /**
24
- * The name of the app type.
38
+ * Partial match to the hostname of a target
25
39
  */
26
40
  hostnameContains?: string;
27
41
  /**
28
- * The name of the app type.
42
+ * The target's IPv4 address.
29
43
  */
30
44
  ipv4?: string;
31
45
  /**
32
- * The name of the app type.
46
+ * The target's IPv6 address.
33
47
  */
34
48
  ipv6?: string;
35
49
  /**
@@ -37,7 +51,7 @@ export interface GetInfrastructureAccessTargetsArgs {
37
51
  */
38
52
  modifiedAfter?: string;
39
53
  /**
40
- * The name of the app type.
54
+ * The private virtual network identifier for the target.
41
55
  */
42
56
  virtualNetworkId?: string;
43
57
  }
@@ -54,11 +68,11 @@ export interface GetInfrastructureAccessTargetsResult {
54
68
  */
55
69
  readonly createdAfter?: string;
56
70
  /**
57
- * The name of the app type.
71
+ * The hostname of the target.
58
72
  */
59
73
  readonly hostname?: string;
60
74
  /**
61
- * The name of the app type.
75
+ * Partial match to the hostname of a target
62
76
  */
63
77
  readonly hostnameContains?: string;
64
78
  /**
@@ -66,11 +80,11 @@ export interface GetInfrastructureAccessTargetsResult {
66
80
  */
67
81
  readonly id: string;
68
82
  /**
69
- * The name of the app type.
83
+ * The target's IPv4 address.
70
84
  */
71
85
  readonly ipv4?: string;
72
86
  /**
73
- * The name of the app type.
87
+ * The target's IPv6 address.
74
88
  */
75
89
  readonly ipv6?: string;
76
90
  /**
@@ -79,12 +93,26 @@ export interface GetInfrastructureAccessTargetsResult {
79
93
  readonly modifiedAfter?: string;
80
94
  readonly targets: outputs.GetInfrastructureAccessTargetsTarget[];
81
95
  /**
82
- * The name of the app type.
96
+ * The private virtual network identifier for the target.
83
97
  */
84
98
  readonly virtualNetworkId?: string;
85
99
  }
86
100
  /**
87
101
  * Use this data source to retrieve all Infrastructure Access Targets.
102
+ *
103
+ * ## Example Usage
104
+ *
105
+ * ```typescript
106
+ * import * as pulumi from "@pulumi/pulumi";
107
+ * import * as cloudflare from "@pulumi/cloudflare";
108
+ *
109
+ * const example = cloudflare.getInfrastructureAccessTargets({
110
+ * accountId: "f037e56e89293a057740de681ac9abbe",
111
+ * hostnameContains: "example",
112
+ * ipv4: "198.51.100.1",
113
+ * });
114
+ * export const targets = example.then(example => example.targets);
115
+ * ```
88
116
  */
89
117
  export declare function getInfrastructureAccessTargetsOutput(args: GetInfrastructureAccessTargetsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetInfrastructureAccessTargetsResult>;
90
118
  /**
@@ -100,19 +128,19 @@ export interface GetInfrastructureAccessTargetsOutputArgs {
100
128
  */
101
129
  createdAfter?: pulumi.Input<string>;
102
130
  /**
103
- * The name of the app type.
131
+ * The hostname of the target.
104
132
  */
105
133
  hostname?: pulumi.Input<string>;
106
134
  /**
107
- * The name of the app type.
135
+ * Partial match to the hostname of a target
108
136
  */
109
137
  hostnameContains?: pulumi.Input<string>;
110
138
  /**
111
- * The name of the app type.
139
+ * The target's IPv4 address.
112
140
  */
113
141
  ipv4?: pulumi.Input<string>;
114
142
  /**
115
- * The name of the app type.
143
+ * The target's IPv6 address.
116
144
  */
117
145
  ipv6?: pulumi.Input<string>;
118
146
  /**
@@ -120,7 +148,7 @@ export interface GetInfrastructureAccessTargetsOutputArgs {
120
148
  */
121
149
  modifiedAfter?: pulumi.Input<string>;
122
150
  /**
123
- * The name of the app type.
151
+ * The private virtual network identifier for the target.
124
152
  */
125
153
  virtualNetworkId?: pulumi.Input<string>;
126
154
  }
@@ -7,6 +7,20 @@ const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
9
  * Use this data source to retrieve all Infrastructure Access Targets.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as cloudflare from "@pulumi/cloudflare";
16
+ *
17
+ * const example = cloudflare.getInfrastructureAccessTargets({
18
+ * accountId: "f037e56e89293a057740de681ac9abbe",
19
+ * hostnameContains: "example",
20
+ * ipv4: "198.51.100.1",
21
+ * });
22
+ * export const targets = example.then(example => example.targets);
23
+ * ```
10
24
  */
11
25
  function getInfrastructureAccessTargets(args, opts) {
12
26
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
@@ -24,6 +38,20 @@ function getInfrastructureAccessTargets(args, opts) {
24
38
  exports.getInfrastructureAccessTargets = getInfrastructureAccessTargets;
25
39
  /**
26
40
  * Use this data source to retrieve all Infrastructure Access Targets.
41
+ *
42
+ * ## Example Usage
43
+ *
44
+ * ```typescript
45
+ * import * as pulumi from "@pulumi/pulumi";
46
+ * import * as cloudflare from "@pulumi/cloudflare";
47
+ *
48
+ * const example = cloudflare.getInfrastructureAccessTargets({
49
+ * accountId: "f037e56e89293a057740de681ac9abbe",
50
+ * hostnameContains: "example",
51
+ * ipv4: "198.51.100.1",
52
+ * });
53
+ * export const targets = example.then(example => example.targets);
54
+ * ```
27
55
  */
28
56
  function getInfrastructureAccessTargetsOutput(args, opts) {
29
57
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
@@ -1 +1 @@
1
- {"version":3,"file":"getInfrastructureAccessTargets.js","sourceRoot":"","sources":["../getInfrastructureAccessTargets.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAA2B;IAChH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gFAAgF,EAAE;QAC3G,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,wEAYC;AAkFD;;GAEG;AACH,SAAgB,oCAAoC,CAAC,IAA8C,EAAE,IAA2B;IAC5H,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,gFAAgF,EAAE;QACjH,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,oFAYC"}
1
+ {"version":3,"file":"getInfrastructureAccessTargets.js","sourceRoot":"","sources":["../getInfrastructureAccessTargets.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAA2B;IAChH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gFAAgF,EAAE;QAC3G,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,wEAYC;AAkFD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,oCAAoC,CAAC,IAA8C,EAAE,IAA2B;IAC5H,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,gFAAgF,EAAE;QACjH,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,oFAYC"}
@@ -15,11 +15,11 @@ import * as outputs from "./types/output";
15
15
  * hostname: "example-target",
16
16
  * ip: {
17
17
  * ipv4: {
18
- * ipAddr: "210.26.29.230",
18
+ * ipAddr: "198.51.100.1",
19
19
  * virtualNetworkId: "238dccd1-149b-463d-8228-560ab83a54fd",
20
20
  * },
21
21
  * ipv6: {
22
- * ipAddr: "24c0:64e8:f0b4:8dbf:7104:72b0:ef8f:f5e0",
22
+ * ipAddr: "2001:db8::",
23
23
  * virtualNetworkId: "238dccd1-149b-463d-8228-560ab83a54fd",
24
24
  * },
25
25
  * },
@@ -29,7 +29,7 @@ import * as outputs from "./types/output";
29
29
  * hostname: "example-ipv4-only",
30
30
  * ip: {
31
31
  * ipv4: {
32
- * ipAddr: "210.26.29.230",
32
+ * ipAddr: "198.51.100.1",
33
33
  * virtualNetworkId: "238dccd1-149b-463d-8228-560ab83a54fd",
34
34
  * },
35
35
  * },
@@ -19,11 +19,11 @@ const utilities = require("./utilities");
19
19
  * hostname: "example-target",
20
20
  * ip: {
21
21
  * ipv4: {
22
- * ipAddr: "210.26.29.230",
22
+ * ipAddr: "198.51.100.1",
23
23
  * virtualNetworkId: "238dccd1-149b-463d-8228-560ab83a54fd",
24
24
  * },
25
25
  * ipv6: {
26
- * ipAddr: "24c0:64e8:f0b4:8dbf:7104:72b0:ef8f:f5e0",
26
+ * ipAddr: "2001:db8::",
27
27
  * virtualNetworkId: "238dccd1-149b-463d-8228-560ab83a54fd",
28
28
  * },
29
29
  * },
@@ -33,7 +33,7 @@ const utilities = require("./utilities");
33
33
  * hostname: "example-ipv4-only",
34
34
  * ip: {
35
35
  * ipv4: {
36
- * ipAddr: "210.26.29.230",
36
+ * ipAddr: "198.51.100.1",
37
37
  * virtualNetworkId: "238dccd1-149b-463d-8228-560ab83a54fd",
38
38
  * },
39
39
  * },
package/list.d.ts CHANGED
@@ -34,13 +34,16 @@ export declare class List extends pulumi.CustomResource {
34
34
  * An optional description of the list.
35
35
  */
36
36
  readonly description: pulumi.Output<string | undefined>;
37
+ /**
38
+ * The items in the list.
39
+ */
37
40
  readonly items: pulumi.Output<outputs.ListItem[] | undefined>;
38
41
  /**
39
- * The type of items the list will contain. Available values: `ip`, `redirect`, `hostname`, `asn`. **Modifying this attribute will force creation of a new resource.**
42
+ * The type of items the list will contain. Must provide only one of: `ip`, `redirect`, `hostname`, `asn`..
40
43
  */
41
44
  readonly kind: pulumi.Output<string>;
42
45
  /**
43
- * The name of the list. **Modifying this attribute will force creation of a new resource.**
46
+ * The name of the list.
44
47
  */
45
48
  readonly name: pulumi.Output<string>;
46
49
  /**
@@ -64,13 +67,16 @@ export interface ListState {
64
67
  * An optional description of the list.
65
68
  */
66
69
  description?: pulumi.Input<string>;
70
+ /**
71
+ * The items in the list.
72
+ */
67
73
  items?: pulumi.Input<pulumi.Input<inputs.ListItem>[]>;
68
74
  /**
69
- * The type of items the list will contain. Available values: `ip`, `redirect`, `hostname`, `asn`. **Modifying this attribute will force creation of a new resource.**
75
+ * The type of items the list will contain. Must provide only one of: `ip`, `redirect`, `hostname`, `asn`..
70
76
  */
71
77
  kind?: pulumi.Input<string>;
72
78
  /**
73
- * The name of the list. **Modifying this attribute will force creation of a new resource.**
79
+ * The name of the list.
74
80
  */
75
81
  name?: pulumi.Input<string>;
76
82
  }
@@ -86,13 +92,16 @@ export interface ListArgs {
86
92
  * An optional description of the list.
87
93
  */
88
94
  description?: pulumi.Input<string>;
95
+ /**
96
+ * The items in the list.
97
+ */
89
98
  items?: pulumi.Input<pulumi.Input<inputs.ListItem>[]>;
90
99
  /**
91
- * The type of items the list will contain. Available values: `ip`, `redirect`, `hostname`, `asn`. **Modifying this attribute will force creation of a new resource.**
100
+ * The type of items the list will contain. Must provide only one of: `ip`, `redirect`, `hostname`, `asn`..
92
101
  */
93
102
  kind: pulumi.Input<string>;
94
103
  /**
95
- * The name of the list. **Modifying this attribute will force creation of a new resource.**
104
+ * The name of the list.
96
105
  */
97
106
  name: pulumi.Input<string>;
98
107
  }
package/list.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"list.js","sourceRoot":"","sources":["../list.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;GAQG;AACH,MAAa,IAAK,SAAQ,MAAM,CAAC,cAAc;IAC3C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiB,EAAE,IAAmC;QAC/G,OAAO,IAAI,IAAI,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC3D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,IAAI,CAAC,YAAY,CAAC;IACrD,CAAC;IA4BD,YAAY,IAAY,EAAE,WAAkC,EAAE,IAAmC;QAC7F,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAoC,CAAC;YACnD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAmC,CAAC;YACjD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,IAAI,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACzD,CAAC;;AAnFL,oBAoFC;AAtEG,gBAAgB;AACO,iBAAY,GAAG,4BAA4B,CAAC"}
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": "5.41.0-alpha.1729195730",
3
+ "version": "5.41.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": "5.41.0-alpha.1729195730"
26
+ "version": "5.41.0"
27
27
  }
28
28
  }
package/teamsRule.d.ts CHANGED
@@ -62,7 +62,7 @@ export declare class TeamsRule extends pulumi.CustomResource {
62
62
  /**
63
63
  * The wirefilter expression to be used for devicePosture check matching.
64
64
  */
65
- readonly devicePosture: pulumi.Output<string | undefined>;
65
+ readonly devicePosture: pulumi.Output<string>;
66
66
  /**
67
67
  * Indicator of rule enablement.
68
68
  */
@@ -74,7 +74,7 @@ export declare class TeamsRule extends pulumi.CustomResource {
74
74
  /**
75
75
  * The wirefilter expression to be used for identity matching.
76
76
  */
77
- readonly identity: pulumi.Output<string | undefined>;
77
+ readonly identity: pulumi.Output<string>;
78
78
  /**
79
79
  * The name of the teams rule.
80
80
  */
@@ -86,11 +86,11 @@ export declare class TeamsRule extends pulumi.CustomResource {
86
86
  /**
87
87
  * Additional rule settings.
88
88
  */
89
- readonly ruleSettings: pulumi.Output<outputs.TeamsRuleRuleSettings | undefined>;
89
+ readonly ruleSettings: pulumi.Output<outputs.TeamsRuleRuleSettings>;
90
90
  /**
91
91
  * The wirefilter expression to be used for traffic matching.
92
92
  */
93
- readonly traffic: pulumi.Output<string | undefined>;
93
+ readonly traffic: pulumi.Output<string>;
94
94
  readonly version: pulumi.Output<number>;
95
95
  /**
96
96
  * Create a TeamsRule resource with the given unique name, arguments, and options.
package/types/input.d.ts CHANGED
@@ -1849,6 +1849,10 @@ export interface DevicePostureRuleInput {
1849
1849
  * The network status from SentinelOne. Available values: `connected`, `disconnected`, `disconnecting`, `connecting`.
1850
1850
  */
1851
1851
  networkStatus?: pulumi.Input<string>;
1852
+ /**
1853
+ * The current operational state of a SentinelOne Agent. Available values: `na`, `partiallyDisabled`, `autoFullyDisabled`, `fullyDisabled`, `autoPartiallyDisabled`, `disabledError`, `dbCorruption`.
1854
+ */
1855
+ operationalState?: pulumi.Input<string>;
1852
1856
  /**
1853
1857
  * The version comparison operator. Available values: `>`, `>=`, `<`, `<=`, `==`.
1854
1858
  */
@@ -2458,7 +2462,7 @@ export interface ListItem {
2458
2462
  * An optional comment for the item.
2459
2463
  */
2460
2464
  comment?: pulumi.Input<string>;
2461
- value: pulumi.Input<inputs.ListItemValue>;
2465
+ value?: pulumi.Input<inputs.ListItemValue>;
2462
2466
  }
2463
2467
  export interface ListItemHostname {
2464
2468
  /**
@@ -7063,6 +7067,10 @@ export interface ZeroTrustDevicePostureRuleInput {
7063
7067
  * The network status from SentinelOne. Available values: `connected`, `disconnected`, `disconnecting`, `connecting`.
7064
7068
  */
7065
7069
  networkStatus?: pulumi.Input<string>;
7070
+ /**
7071
+ * The current operational state of a SentinelOne Agent. Available values: `na`, `partiallyDisabled`, `autoFullyDisabled`, `fullyDisabled`, `autoPartiallyDisabled`, `disabledError`, `dbCorruption`.
7072
+ */
7073
+ operationalState?: pulumi.Input<string>;
7066
7074
  /**
7067
7075
  * The version comparison operator. Available values: `>`, `>=`, `<`, `<=`, `==`.
7068
7076
  */
package/types/output.d.ts CHANGED
@@ -1848,6 +1848,10 @@ export interface DevicePostureRuleInput {
1848
1848
  * The network status from SentinelOne. Available values: `connected`, `disconnected`, `disconnecting`, `connecting`.
1849
1849
  */
1850
1850
  networkStatus?: string;
1851
+ /**
1852
+ * The current operational state of a SentinelOne Agent. Available values: `na`, `partiallyDisabled`, `autoFullyDisabled`, `fullyDisabled`, `autoPartiallyDisabled`, `disabledError`, `dbCorruption`.
1853
+ */
1854
+ operationalState?: string;
1851
1855
  /**
1852
1856
  * The version comparison operator. Available values: `>`, `>=`, `<`, `<=`, `==`.
1853
1857
  */
@@ -3311,7 +3315,7 @@ export interface ListItem {
3311
3315
  * An optional comment for the item.
3312
3316
  */
3313
3317
  comment?: string;
3314
- value: outputs.ListItemValue;
3318
+ value?: outputs.ListItemValue;
3315
3319
  }
3316
3320
  export interface ListItemHostname {
3317
3321
  /**
@@ -7916,6 +7920,10 @@ export interface ZeroTrustDevicePostureRuleInput {
7916
7920
  * The network status from SentinelOne. Available values: `connected`, `disconnected`, `disconnecting`, `connecting`.
7917
7921
  */
7918
7922
  networkStatus?: string;
7923
+ /**
7924
+ * The current operational state of a SentinelOne Agent. Available values: `na`, `partiallyDisabled`, `autoFullyDisabled`, `fullyDisabled`, `autoPartiallyDisabled`, `disabledError`, `dbCorruption`.
7925
+ */
7926
+ operationalState?: string;
7919
7927
  /**
7920
7928
  * The version comparison operator. Available values: `>`, `>=`, `<`, `<=`, `==`.
7921
7929
  */
@@ -163,7 +163,7 @@ export declare class ZeroTrustAccessApplication extends pulumi.CustomResource {
163
163
  */
164
164
  readonly tags: pulumi.Output<string[] | undefined>;
165
165
  /**
166
- * A list of mappings to apply to SCIM resources before provisioning them in this application. These can transform or filter the resources to be provisioned.
166
+ * The payload for an infrastructure application which defines the port, protocol, and target attributes. Only applicable to Infrastructure Applications, in which case this field is required.
167
167
  */
168
168
  readonly targetCriterias: pulumi.Output<outputs.ZeroTrustAccessApplicationTargetCriteria[] | undefined>;
169
169
  /**
@@ -316,7 +316,7 @@ export interface ZeroTrustAccessApplicationState {
316
316
  */
317
317
  tags?: pulumi.Input<pulumi.Input<string>[]>;
318
318
  /**
319
- * A list of mappings to apply to SCIM resources before provisioning them in this application. These can transform or filter the resources to be provisioned.
319
+ * The payload for an infrastructure application which defines the port, protocol, and target attributes. Only applicable to Infrastructure Applications, in which case this field is required.
320
320
  */
321
321
  targetCriterias?: pulumi.Input<pulumi.Input<inputs.ZeroTrustAccessApplicationTargetCriteria>[]>;
322
322
  /**
@@ -457,7 +457,7 @@ export interface ZeroTrustAccessApplicationArgs {
457
457
  */
458
458
  tags?: pulumi.Input<pulumi.Input<string>[]>;
459
459
  /**
460
- * A list of mappings to apply to SCIM resources before provisioning them in this application. These can transform or filter the resources to be provisioned.
460
+ * The payload for an infrastructure application which defines the port, protocol, and target attributes. Only applicable to Infrastructure Applications, in which case this field is required.
461
461
  */
462
462
  targetCriterias?: pulumi.Input<pulumi.Input<inputs.ZeroTrustAccessApplicationTargetCriteria>[]>;
463
463
  /**
@@ -47,7 +47,7 @@ export declare class ZeroTrustAccessPolicy extends pulumi.CustomResource {
47
47
  readonly approvalGroups: pulumi.Output<outputs.ZeroTrustAccessPolicyApprovalGroup[] | undefined>;
48
48
  readonly approvalRequired: pulumi.Output<boolean | undefined>;
49
49
  /**
50
- * The rules that define how users may connect to the targets secured by your application.
50
+ * The rules that define how users may connect to the targets secured by your application. Only applicable to Infrastructure Applications, in which case this field is required.
51
51
  */
52
52
  readonly connectionRules: pulumi.Output<outputs.ZeroTrustAccessPolicyConnectionRules | undefined>;
53
53
  /**
@@ -118,7 +118,7 @@ export interface ZeroTrustAccessPolicyState {
118
118
  approvalGroups?: pulumi.Input<pulumi.Input<inputs.ZeroTrustAccessPolicyApprovalGroup>[]>;
119
119
  approvalRequired?: pulumi.Input<boolean>;
120
120
  /**
121
- * The rules that define how users may connect to the targets secured by your application.
121
+ * The rules that define how users may connect to the targets secured by your application. Only applicable to Infrastructure Applications, in which case this field is required.
122
122
  */
123
123
  connectionRules?: pulumi.Input<inputs.ZeroTrustAccessPolicyConnectionRules>;
124
124
  /**
@@ -181,7 +181,7 @@ export interface ZeroTrustAccessPolicyArgs {
181
181
  approvalGroups?: pulumi.Input<pulumi.Input<inputs.ZeroTrustAccessPolicyApprovalGroup>[]>;
182
182
  approvalRequired?: pulumi.Input<boolean>;
183
183
  /**
184
- * The rules that define how users may connect to the targets secured by your application.
184
+ * The rules that define how users may connect to the targets secured by your application. Only applicable to Infrastructure Applications, in which case this field is required.
185
185
  */
186
186
  connectionRules?: pulumi.Input<inputs.ZeroTrustAccessPolicyConnectionRules>;
187
187
  /**
@@ -62,7 +62,7 @@ export declare class ZeroTrustGatewayPolicy extends pulumi.CustomResource {
62
62
  /**
63
63
  * The wirefilter expression to be used for devicePosture check matching.
64
64
  */
65
- readonly devicePosture: pulumi.Output<string | undefined>;
65
+ readonly devicePosture: pulumi.Output<string>;
66
66
  /**
67
67
  * Indicator of rule enablement.
68
68
  */
@@ -74,7 +74,7 @@ export declare class ZeroTrustGatewayPolicy extends pulumi.CustomResource {
74
74
  /**
75
75
  * The wirefilter expression to be used for identity matching.
76
76
  */
77
- readonly identity: pulumi.Output<string | undefined>;
77
+ readonly identity: pulumi.Output<string>;
78
78
  /**
79
79
  * The name of the teams rule.
80
80
  */
@@ -86,11 +86,11 @@ export declare class ZeroTrustGatewayPolicy extends pulumi.CustomResource {
86
86
  /**
87
87
  * Additional rule settings.
88
88
  */
89
- readonly ruleSettings: pulumi.Output<outputs.ZeroTrustGatewayPolicyRuleSettings | undefined>;
89
+ readonly ruleSettings: pulumi.Output<outputs.ZeroTrustGatewayPolicyRuleSettings>;
90
90
  /**
91
91
  * The wirefilter expression to be used for traffic matching.
92
92
  */
93
- readonly traffic: pulumi.Output<string | undefined>;
93
+ readonly traffic: pulumi.Output<string>;
94
94
  readonly version: pulumi.Output<number>;
95
95
  /**
96
96
  * Create a ZeroTrustGatewayPolicy resource with the given unique name, arguments, and options.