@pulumi/f5bigip 3.15.1 → 3.15.2
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/fastHttpApp.d.ts +37 -1
- package/fastHttpApp.js +6 -0
- package/fastHttpApp.js.map +1 -1
- package/fastHttpsApp.d.ts +37 -1
- package/fastHttpsApp.js +6 -0
- package/fastHttpsApp.js.map +1 -1
- package/fastTcpApp.d.ts +36 -0
- package/fastTcpApp.js +6 -0
- package/fastTcpApp.js.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +6 -1
- package/index.js.map +1 -1
- package/ltm/cipherGroup.d.ts +10 -10
- package/ltm/index.d.ts +3 -0
- package/ltm/index.js +6 -1
- package/ltm/index.js.map +1 -1
- package/ltm/profileClientSsl.d.ts +6 -6
- package/ltm/profileHttp.d.ts +4 -4
- package/ltm/profileWebAcceleration.d.ts +223 -0
- package/ltm/profileWebAcceleration.js +97 -0
- package/ltm/profileWebAcceleration.js.map +1 -0
- package/package.json +1 -1
- package/partition.d.ts +88 -0
- package/partition.js +72 -0
- package/partition.js.map +1 -0
- package/types/input.d.ts +8 -8
- package/types/output.d.ts +15 -15
package/types/input.d.ts
CHANGED
|
@@ -1092,37 +1092,37 @@ export declare namespace ltm {
|
|
|
1092
1092
|
}
|
|
1093
1093
|
interface ProfileHttpEnforcement {
|
|
1094
1094
|
/**
|
|
1095
|
-
* Specifies which HTTP methods count as being known. Removing RFC-defined methods from this list will cause the HTTP filter to not recognize them. Default value is [CONNECT DELETE GET HEAD LOCK OPTIONS POST PROPFIND PUT TRACE UNLOCK].If no value is specified while creating, then default value will be assigned. In order to remove it, [""]
|
|
1095
|
+
* Specifies which HTTP methods count as being known. Removing RFC-defined methods from this list will cause the HTTP filter to not recognize them. Default value is [CONNECT DELETE GET HEAD LOCK OPTIONS POST PROPFIND PUT TRACE UNLOCK].If no value is specified while creating, then default value will be assigned by BigIP. In order to remove it, [""] list is to be passed. If knownMethods is commented (or not passed) during the update call, then no changes would be applied and previous value will persist. In order to put default value , we need to pass [CONNECT DELETE GET HEAD LOCK OPTIONS POST PROPFIND PUT TRACE UNLOCK] explicitly.
|
|
1096
1096
|
*/
|
|
1097
1097
|
knownMethods?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1098
1098
|
/**
|
|
1099
|
-
* Specifies the maximum number of headers allowed in HTTP request/response. The default is 64 headers.If no value is specified, then default value will be assigned.
|
|
1099
|
+
* Specifies the maximum number of headers allowed in HTTP request/response. The default is 64 headers.If no value is specified while creating, then default value will be assigned by BigIP. If maxHeaderCount is commented (or not passed) during the update call, then no changes would be applied and previous value will persist. In order to put default value, we need to pass "64" explicitly.
|
|
1100
1100
|
*/
|
|
1101
1101
|
maxHeaderCount?: pulumi.Input<number>;
|
|
1102
1102
|
/**
|
|
1103
|
-
* Specifies the maximum header size.The default value is 32768.If no string is specified, then default value will be assigned.
|
|
1103
|
+
* Specifies the maximum header size. The default value is 32768. If no string is specified while creating, then default value will be assigned by BigIP. If maxHeaderSize is commented (or not passed) during the update call, then no changes would be applied and previous value will persist. In order to put default value, we need to pass "32768" explicitly.
|
|
1104
1104
|
*/
|
|
1105
1105
|
maxHeaderSize?: pulumi.Input<number>;
|
|
1106
1106
|
/**
|
|
1107
|
-
* Specifies whether to allow, reject or switch to pass-through mode when an unknown HTTP method is parsed. Default value is allow. If no string is specified, then default value will be assigned.
|
|
1107
|
+
* Specifies whether to allow, reject or switch to pass-through mode when an unknown HTTP method is parsed. Default value is "allow". If no string is specified while creating, then default value will be assigned by BigIP. If unknownMethod is commented (or not passed) during the update call, then no changes would be applied and previous value will persist. In order to put default value, we need to pass "allow" explicitly.
|
|
1108
1108
|
*/
|
|
1109
1109
|
unknownMethod?: pulumi.Input<string>;
|
|
1110
1110
|
}
|
|
1111
1111
|
interface ProfileHttpHttpStrictTransportSecurity {
|
|
1112
1112
|
/**
|
|
1113
|
-
*
|
|
1113
|
+
* The Include Subdomains setting applies the HSTS policy to the HSTS host and its subdomains. The default is "enabled". If no string is specified during Create, then default value will be assigned by BigIp. If includeSubdomains is commented (or not passed) during the update call, then no changes would be applied and previous value will persist. In order to put default value, we need to pass "enabled" explicitly.
|
|
1114
1114
|
*/
|
|
1115
1115
|
includeSubdomains?: pulumi.Input<string>;
|
|
1116
1116
|
/**
|
|
1117
|
-
*
|
|
1117
|
+
* The Maximum Age value specifies the length of time, in seconds, that HSTS functionality requests that clients only use HTTPS to connect to the current host and any subdomains of the current host's domain name. The default is 16070400 seconds. If no value is specified during Create, then default value will be assigned by BigIp. If maximumAge is commented (or not passed) during the update call, then no changes would be applied and previous value will persist. In order to put default value , we need to pass 16070400 explicitly.
|
|
1118
1118
|
*/
|
|
1119
1119
|
maximumAge?: pulumi.Input<number>;
|
|
1120
1120
|
/**
|
|
1121
|
-
*
|
|
1121
|
+
* The Mode setting enables and disables HSTS functionality within the HTTP profile. The default is "disabled". If no string is specified during Create, then default value will be assigned by BigIp. If mode is commented (or not passed) during the update call, then no changes would be applied and previous value will persist. In order to put default value, we need to pass "disabled" explicitly.
|
|
1122
1122
|
*/
|
|
1123
1123
|
mode?: pulumi.Input<string>;
|
|
1124
1124
|
/**
|
|
1125
|
-
*
|
|
1125
|
+
* An HSTS preload list is a list of domains built into a web browser. When you enable the Preload setting, the domain for the web site that this HTTP profile is associated with is submitted for inclusion in the browser's preload list. The default is "disabled". If no string is specified during Create, then default value will be assigned by BigIp. If preload is commented (or not passed) during the update call, then no changes would be applied and previous value will persist. In order to put default value, we need to pass "disabled" explicitly.
|
|
1126
1126
|
*/
|
|
1127
1127
|
preload?: pulumi.Input<string>;
|
|
1128
1128
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -855,39 +855,39 @@ export declare namespace ltm {
|
|
|
855
855
|
}
|
|
856
856
|
interface ProfileHttpEnforcement {
|
|
857
857
|
/**
|
|
858
|
-
* Specifies which HTTP methods count as being known. Removing RFC-defined methods from this list will cause the HTTP filter to not recognize them. Default value is [CONNECT DELETE GET HEAD LOCK OPTIONS POST PROPFIND PUT TRACE UNLOCK].If no value is specified while creating, then default value will be assigned. In order to remove it, [""]
|
|
858
|
+
* Specifies which HTTP methods count as being known. Removing RFC-defined methods from this list will cause the HTTP filter to not recognize them. Default value is [CONNECT DELETE GET HEAD LOCK OPTIONS POST PROPFIND PUT TRACE UNLOCK].If no value is specified while creating, then default value will be assigned by BigIP. In order to remove it, [""] list is to be passed. If knownMethods is commented (or not passed) during the update call, then no changes would be applied and previous value will persist. In order to put default value , we need to pass [CONNECT DELETE GET HEAD LOCK OPTIONS POST PROPFIND PUT TRACE UNLOCK] explicitly.
|
|
859
859
|
*/
|
|
860
860
|
knownMethods: string[];
|
|
861
861
|
/**
|
|
862
|
-
* Specifies the maximum number of headers allowed in HTTP request/response. The default is 64 headers.If no value is specified, then default value will be assigned.
|
|
862
|
+
* Specifies the maximum number of headers allowed in HTTP request/response. The default is 64 headers.If no value is specified while creating, then default value will be assigned by BigIP. If maxHeaderCount is commented (or not passed) during the update call, then no changes would be applied and previous value will persist. In order to put default value, we need to pass "64" explicitly.
|
|
863
863
|
*/
|
|
864
|
-
maxHeaderCount
|
|
864
|
+
maxHeaderCount: number;
|
|
865
865
|
/**
|
|
866
|
-
* Specifies the maximum header size.The default value is 32768.If no string is specified, then default value will be assigned.
|
|
866
|
+
* Specifies the maximum header size. The default value is 32768. If no string is specified while creating, then default value will be assigned by BigIP. If maxHeaderSize is commented (or not passed) during the update call, then no changes would be applied and previous value will persist. In order to put default value, we need to pass "32768" explicitly.
|
|
867
867
|
*/
|
|
868
|
-
maxHeaderSize
|
|
868
|
+
maxHeaderSize: number;
|
|
869
869
|
/**
|
|
870
|
-
* Specifies whether to allow, reject or switch to pass-through mode when an unknown HTTP method is parsed. Default value is allow. If no string is specified, then default value will be assigned.
|
|
870
|
+
* Specifies whether to allow, reject or switch to pass-through mode when an unknown HTTP method is parsed. Default value is "allow". If no string is specified while creating, then default value will be assigned by BigIP. If unknownMethod is commented (or not passed) during the update call, then no changes would be applied and previous value will persist. In order to put default value, we need to pass "allow" explicitly.
|
|
871
871
|
*/
|
|
872
|
-
unknownMethod
|
|
872
|
+
unknownMethod: string;
|
|
873
873
|
}
|
|
874
874
|
interface ProfileHttpHttpStrictTransportSecurity {
|
|
875
875
|
/**
|
|
876
|
-
*
|
|
876
|
+
* The Include Subdomains setting applies the HSTS policy to the HSTS host and its subdomains. The default is "enabled". If no string is specified during Create, then default value will be assigned by BigIp. If includeSubdomains is commented (or not passed) during the update call, then no changes would be applied and previous value will persist. In order to put default value, we need to pass "enabled" explicitly.
|
|
877
877
|
*/
|
|
878
|
-
includeSubdomains
|
|
878
|
+
includeSubdomains: string;
|
|
879
879
|
/**
|
|
880
|
-
*
|
|
880
|
+
* The Maximum Age value specifies the length of time, in seconds, that HSTS functionality requests that clients only use HTTPS to connect to the current host and any subdomains of the current host's domain name. The default is 16070400 seconds. If no value is specified during Create, then default value will be assigned by BigIp. If maximumAge is commented (or not passed) during the update call, then no changes would be applied and previous value will persist. In order to put default value , we need to pass 16070400 explicitly.
|
|
881
881
|
*/
|
|
882
|
-
maximumAge
|
|
882
|
+
maximumAge: number;
|
|
883
883
|
/**
|
|
884
|
-
*
|
|
884
|
+
* The Mode setting enables and disables HSTS functionality within the HTTP profile. The default is "disabled". If no string is specified during Create, then default value will be assigned by BigIp. If mode is commented (or not passed) during the update call, then no changes would be applied and previous value will persist. In order to put default value, we need to pass "disabled" explicitly.
|
|
885
885
|
*/
|
|
886
|
-
mode
|
|
886
|
+
mode: string;
|
|
887
887
|
/**
|
|
888
|
-
*
|
|
888
|
+
* An HSTS preload list is a list of domains built into a web browser. When you enable the Preload setting, the domain for the web site that this HTTP profile is associated with is submitted for inclusion in the browser's preload list. The default is "disabled". If no string is specified during Create, then default value will be assigned by BigIp. If preload is commented (or not passed) during the update call, then no changes would be applied and previous value will persist. In order to put default value, we need to pass "disabled" explicitly.
|
|
889
889
|
*/
|
|
890
|
-
preload
|
|
890
|
+
preload: string;
|
|
891
891
|
}
|
|
892
892
|
interface SnatOrigin {
|
|
893
893
|
appService?: string;
|