@pulumi/scm 1.2.0-alpha.1783669739 → 1.2.0-alpha.1783684789
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/types/output.d.ts +1 -1
- package/zoneProtectionProfile.d.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/scm",
|
|
3
|
-
"version": "1.2.0-alpha.
|
|
3
|
+
"version": "1.2.0-alpha.1783684789",
|
|
4
4
|
"description": "A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
"pulumi": {
|
|
26
26
|
"resource": true,
|
|
27
27
|
"name": "scm",
|
|
28
|
-
"version": "1.2.0-alpha.
|
|
28
|
+
"version": "1.2.0-alpha.1783684789"
|
|
29
29
|
}
|
|
30
30
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -43477,7 +43477,7 @@ export interface GetZoneProtectionProfileListData {
|
|
|
43477
43477
|
* Check that both conditions are true:
|
|
43478
43478
|
* * The source IP address is not the subnet broadcast IP address of the ingress interface.
|
|
43479
43479
|
* * The source IP address is routable over the exact ingress interface.
|
|
43480
|
-
*
|
|
43480
|
+
* If either condition is not true, discard the packet.
|
|
43481
43481
|
*/
|
|
43482
43482
|
strictIpCheck: boolean;
|
|
43483
43483
|
/**
|
|
@@ -165,7 +165,7 @@ export declare class ZoneProtectionProfile extends pulumi.CustomResource {
|
|
|
165
165
|
* Check that both conditions are true:
|
|
166
166
|
* * The source IP address is not the subnet broadcast IP address of the ingress interface.
|
|
167
167
|
* * The source IP address is routable over the exact ingress interface.
|
|
168
|
-
*
|
|
168
|
+
* If either condition is not true, discard the packet.
|
|
169
169
|
*/
|
|
170
170
|
readonly strictIpCheck: pulumi.Output<boolean | undefined>;
|
|
171
171
|
/**
|
|
@@ -348,7 +348,7 @@ export interface ZoneProtectionProfileState {
|
|
|
348
348
|
* Check that both conditions are true:
|
|
349
349
|
* * The source IP address is not the subnet broadcast IP address of the ingress interface.
|
|
350
350
|
* * The source IP address is routable over the exact ingress interface.
|
|
351
|
-
*
|
|
351
|
+
* If either condition is not true, discard the packet.
|
|
352
352
|
*/
|
|
353
353
|
strictIpCheck?: pulumi.Input<boolean | undefined>;
|
|
354
354
|
/**
|
|
@@ -523,7 +523,7 @@ export interface ZoneProtectionProfileArgs {
|
|
|
523
523
|
* Check that both conditions are true:
|
|
524
524
|
* * The source IP address is not the subnet broadcast IP address of the ingress interface.
|
|
525
525
|
* * The source IP address is routable over the exact ingress interface.
|
|
526
|
-
*
|
|
526
|
+
* If either condition is not true, discard the packet.
|
|
527
527
|
*/
|
|
528
528
|
strictIpCheck?: pulumi.Input<boolean | undefined>;
|
|
529
529
|
/**
|