@pulumi/meraki 0.2.4 → 0.2.6

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.
@@ -4,6 +4,29 @@ import * as outputs from "../types/output";
4
4
  /**
5
5
  * ## Example Usage
6
6
  *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as meraki from "@pulumi/meraki";
10
+ *
11
+ * const example = new meraki.networks.ApplianceContentFiltering("example", {
12
+ * allowedUrlPatterns: [
13
+ * "http://www.example.org",
14
+ * "http://help.com.au",
15
+ * ],
16
+ * blockedUrlCategories: [
17
+ * "meraki:contentFiltering/category/1",
18
+ * "meraki:contentFiltering/category/7",
19
+ * ],
20
+ * blockedUrlPatterns: [
21
+ * "http://www.example.com",
22
+ * "http://www.betting.com",
23
+ * ],
24
+ * networkId: "string",
25
+ * urlCategoryListSize: "topSites",
26
+ * });
27
+ * export const merakiNetworksApplianceContentFilteringExample = example;
28
+ * ```
29
+ *
7
30
  * ## Import
8
31
  *
9
32
  * ```sh
@@ -30,11 +53,11 @@ export declare class ApplianceContentFiltering extends pulumi.CustomResource {
30
53
  * A list of URL patterns that are allowed
31
54
  */
32
55
  readonly allowedUrlPatterns: pulumi.Output<string[]>;
33
- readonly blockedUrlCategories: pulumi.Output<outputs.networks.ApplianceContentFilteringBlockedUrlCategory[]>;
34
56
  /**
35
57
  * A list of URL categories to block
36
58
  */
37
- readonly blockedUrlCategoriesRs: pulumi.Output<string[]>;
59
+ readonly blockedUrlCategories: pulumi.Output<string[] | undefined>;
60
+ readonly blockedUrlCategoriesResponses: pulumi.Output<outputs.networks.ApplianceContentFilteringBlockedUrlCategoriesResponse[]>;
38
61
  /**
39
62
  * A list of URL patterns that are blocked
40
63
  */
@@ -46,7 +69,7 @@ export declare class ApplianceContentFiltering extends pulumi.CustomResource {
46
69
  /**
47
70
  * URL category list size which is either 'topSites' or 'fullList'
48
71
  */
49
- readonly urlCategoryListSize: pulumi.Output<string>;
72
+ readonly urlCategoryListSize: pulumi.Output<string | undefined>;
50
73
  /**
51
74
  * Create a ApplianceContentFiltering resource with the given unique name, arguments, and options.
52
75
  *
@@ -64,11 +87,11 @@ export interface ApplianceContentFilteringState {
64
87
  * A list of URL patterns that are allowed
65
88
  */
66
89
  allowedUrlPatterns?: pulumi.Input<pulumi.Input<string>[]>;
67
- blockedUrlCategories?: pulumi.Input<pulumi.Input<inputs.networks.ApplianceContentFilteringBlockedUrlCategory>[]>;
68
90
  /**
69
91
  * A list of URL categories to block
70
92
  */
71
- blockedUrlCategoriesRs?: pulumi.Input<pulumi.Input<string>[]>;
93
+ blockedUrlCategories?: pulumi.Input<pulumi.Input<string>[]>;
94
+ blockedUrlCategoriesResponses?: pulumi.Input<pulumi.Input<inputs.networks.ApplianceContentFilteringBlockedUrlCategoriesResponse>[]>;
72
95
  /**
73
96
  * A list of URL patterns that are blocked
74
97
  */
@@ -93,7 +116,7 @@ export interface ApplianceContentFilteringArgs {
93
116
  /**
94
117
  * A list of URL categories to block
95
118
  */
96
- blockedUrlCategoriesRs?: pulumi.Input<pulumi.Input<string>[]>;
119
+ blockedUrlCategories?: pulumi.Input<pulumi.Input<string>[]>;
97
120
  /**
98
121
  * A list of URL patterns that are blocked
99
122
  */
@@ -8,6 +8,29 @@ const utilities = require("../utilities");
8
8
  /**
9
9
  * ## Example Usage
10
10
  *
11
+ * ```typescript
12
+ * import * as pulumi from "@pulumi/pulumi";
13
+ * import * as meraki from "@pulumi/meraki";
14
+ *
15
+ * const example = new meraki.networks.ApplianceContentFiltering("example", {
16
+ * allowedUrlPatterns: [
17
+ * "http://www.example.org",
18
+ * "http://help.com.au",
19
+ * ],
20
+ * blockedUrlCategories: [
21
+ * "meraki:contentFiltering/category/1",
22
+ * "meraki:contentFiltering/category/7",
23
+ * ],
24
+ * blockedUrlPatterns: [
25
+ * "http://www.example.com",
26
+ * "http://www.betting.com",
27
+ * ],
28
+ * networkId: "string",
29
+ * urlCategoryListSize: "topSites",
30
+ * });
31
+ * export const merakiNetworksApplianceContentFilteringExample = example;
32
+ * ```
33
+ *
11
34
  * ## Import
12
35
  *
13
36
  * ```sh
@@ -44,7 +67,7 @@ class ApplianceContentFiltering extends pulumi.CustomResource {
44
67
  const state = argsOrState;
45
68
  resourceInputs["allowedUrlPatterns"] = state ? state.allowedUrlPatterns : undefined;
46
69
  resourceInputs["blockedUrlCategories"] = state ? state.blockedUrlCategories : undefined;
47
- resourceInputs["blockedUrlCategoriesRs"] = state ? state.blockedUrlCategoriesRs : undefined;
70
+ resourceInputs["blockedUrlCategoriesResponses"] = state ? state.blockedUrlCategoriesResponses : undefined;
48
71
  resourceInputs["blockedUrlPatterns"] = state ? state.blockedUrlPatterns : undefined;
49
72
  resourceInputs["networkId"] = state ? state.networkId : undefined;
50
73
  resourceInputs["urlCategoryListSize"] = state ? state.urlCategoryListSize : undefined;
@@ -55,11 +78,11 @@ class ApplianceContentFiltering extends pulumi.CustomResource {
55
78
  throw new Error("Missing required property 'networkId'");
56
79
  }
57
80
  resourceInputs["allowedUrlPatterns"] = args ? args.allowedUrlPatterns : undefined;
58
- resourceInputs["blockedUrlCategoriesRs"] = args ? args.blockedUrlCategoriesRs : undefined;
81
+ resourceInputs["blockedUrlCategories"] = args ? args.blockedUrlCategories : undefined;
59
82
  resourceInputs["blockedUrlPatterns"] = args ? args.blockedUrlPatterns : undefined;
60
83
  resourceInputs["networkId"] = args ? args.networkId : undefined;
61
84
  resourceInputs["urlCategoryListSize"] = args ? args.urlCategoryListSize : undefined;
62
- resourceInputs["blockedUrlCategories"] = undefined /*out*/;
85
+ resourceInputs["blockedUrlCategoriesResponses"] = undefined /*out*/;
63
86
  }
64
87
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
65
88
  super(ApplianceContentFiltering.__pulumiType, name, resourceInputs, opts);
@@ -1 +1 @@
1
- {"version":3,"file":"applianceContentFiltering.js","sourceRoot":"","sources":["../../networks/applianceContentFiltering.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"applianceContentFiltering.js","sourceRoot":"","sources":["../../networks/applianceContentFiltering.ts"],"names":[],"mappings":"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"}
@@ -33,7 +33,11 @@ export declare class ApplianceVpnThirdPartyVpnpeers extends pulumi.CustomResourc
33
33
  /**
34
34
  * The list of VPN peers
35
35
  */
36
- readonly peers: pulumi.Output<outputs.organizations.ApplianceVpnThirdPartyVpnpeersPeer[]>;
36
+ readonly peers: pulumi.Output<outputs.organizations.ApplianceVpnThirdPartyVpnpeersPeer[] | undefined>;
37
+ /**
38
+ * The list of VPN peers
39
+ */
40
+ readonly peersResponses: pulumi.Output<outputs.organizations.ApplianceVpnThirdPartyVpnpeersPeersResponse[]>;
37
41
  /**
38
42
  * Create a ApplianceVpnThirdPartyVpnpeers resource with the given unique name, arguments, and options.
39
43
  *
@@ -55,6 +59,10 @@ export interface ApplianceVpnThirdPartyVpnpeersState {
55
59
  * The list of VPN peers
56
60
  */
57
61
  peers?: pulumi.Input<pulumi.Input<inputs.organizations.ApplianceVpnThirdPartyVpnpeersPeer>[]>;
62
+ /**
63
+ * The list of VPN peers
64
+ */
65
+ peersResponses?: pulumi.Input<pulumi.Input<inputs.organizations.ApplianceVpnThirdPartyVpnpeersPeersResponse>[]>;
58
66
  }
59
67
  /**
60
68
  * The set of arguments for constructing a ApplianceVpnThirdPartyVpnpeers resource.
@@ -44,6 +44,7 @@ class ApplianceVpnThirdPartyVpnpeers extends pulumi.CustomResource {
44
44
  const state = argsOrState;
45
45
  resourceInputs["organizationId"] = state ? state.organizationId : undefined;
46
46
  resourceInputs["peers"] = state ? state.peers : undefined;
47
+ resourceInputs["peersResponses"] = state ? state.peersResponses : undefined;
47
48
  }
48
49
  else {
49
50
  const args = argsOrState;
@@ -52,6 +53,7 @@ class ApplianceVpnThirdPartyVpnpeers extends pulumi.CustomResource {
52
53
  }
53
54
  resourceInputs["organizationId"] = args ? args.organizationId : undefined;
54
55
  resourceInputs["peers"] = args ? args.peers : undefined;
56
+ resourceInputs["peersResponses"] = undefined /*out*/;
55
57
  }
56
58
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
57
59
  super(ApplianceVpnThirdPartyVpnpeers.__pulumiType, name, resourceInputs, opts);
@@ -1 +1 @@
1
- {"version":3,"file":"applianceVpnThirdPartyVpnpeers.js","sourceRoot":"","sources":["../../organizations/applianceVpnThirdPartyVpnpeers.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;GAQG;AACH,MAAa,8BAA+B,SAAQ,MAAM,CAAC,cAAc;IACrE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2C,EAAE,IAAmC;QACzI,OAAO,IAAI,8BAA8B,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACrF,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,8BAA8B,CAAC,YAAY,CAAC;IAC/E,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAsF,EAAE,IAAmC;QACjJ,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA8D,CAAC;YAC7E,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;aAAM;YACH,MAAM,IAAI,GAAG,WAA6D,CAAC;YAC3E,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,cAAc,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3D,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,8BAA8B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACnF,CAAC;;AA9DL,wEA+DC;AAjDG,gBAAgB;AACO,2CAAY,GAAG,oFAAoF,CAAC"}
1
+ {"version":3,"file":"applianceVpnThirdPartyVpnpeers.js","sourceRoot":"","sources":["../../organizations/applianceVpnThirdPartyVpnpeers.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;GAQG;AACH,MAAa,8BAA+B,SAAQ,MAAM,CAAC,cAAc;IACrE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2C,EAAE,IAAmC;QACzI,OAAO,IAAI,8BAA8B,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACrF,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,8BAA8B,CAAC,YAAY,CAAC;IAC/E,CAAC;IAuBD,YAAY,IAAY,EAAE,WAAsF,EAAE,IAAmC;QACjJ,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA8D,CAAC;YAC7E,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/E;aAAM;YACH,MAAM,IAAI,GAAG,WAA6D,CAAC;YAC3E,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,cAAc,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3D,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,gBAAgB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACxD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,8BAA8B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACnF,CAAC;;AApEL,wEAqEC;AAvDG,gBAAgB;AACO,2CAAY,GAAG,oFAAoF,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/meraki",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
4
4
  "description": "A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -24,7 +24,7 @@
24
24
  "pulumi": {
25
25
  "resource": true,
26
26
  "name": "meraki",
27
- "version": "0.2.4",
27
+ "version": "0.2.6",
28
28
  "server": "github://api.github.com/pulumi/pulumi-meraki"
29
29
  }
30
30
  }
package/types/input.d.ts CHANGED
@@ -1570,7 +1570,7 @@ export declare namespace networks {
1570
1570
  */
1571
1571
  ip?: pulumi.Input<string>;
1572
1572
  }
1573
- interface ApplianceContentFilteringBlockedUrlCategory {
1573
+ interface ApplianceContentFilteringBlockedUrlCategoriesResponse {
1574
1574
  id?: pulumi.Input<string>;
1575
1575
  name?: pulumi.Input<string>;
1576
1576
  }
@@ -9138,6 +9138,86 @@ export declare namespace organizations {
9138
9138
  */
9139
9139
  ikePrfAlgos?: pulumi.Input<pulumi.Input<string>[]>;
9140
9140
  }
9141
+ interface ApplianceVpnThirdPartyVpnpeersPeersResponse {
9142
+ /**
9143
+ * [optional] The IKE version to be used for the IPsec VPN peer configuration. Defaults to '1' when omitted.
9144
+ */
9145
+ ikeVersion?: pulumi.Input<string>;
9146
+ /**
9147
+ * Custom IPSec policies for the VPN peer. If not included and a preset has not been chosen, the default preset for IPSec policies will be used.
9148
+ */
9149
+ ipsecPolicies?: pulumi.Input<inputs.organizations.ApplianceVpnThirdPartyVpnpeersPeersResponseIpsecPolicies>;
9150
+ /**
9151
+ * One of the following available presets: 'default', 'aws', 'azure'. If this is provided, the 'ipsecPolicies' parameter is ignored.
9152
+ */
9153
+ ipsecPoliciesPreset?: pulumi.Input<string>;
9154
+ /**
9155
+ * [optional] The local ID is used to identify the MX to the peer. This will apply to all MXs this peer applies to.
9156
+ */
9157
+ localId?: pulumi.Input<string>;
9158
+ /**
9159
+ * The name of the VPN peer
9160
+ */
9161
+ name?: pulumi.Input<string>;
9162
+ /**
9163
+ * A list of network tags that will connect with this peer. Use ['all'] for all networks. Use ['none'] for no networks. If not included, the default is ['all'].
9164
+ */
9165
+ networkTags?: pulumi.Input<pulumi.Input<string>[]>;
9166
+ /**
9167
+ * The list of the private subnets of the VPN peer
9168
+ */
9169
+ privateSubnets?: pulumi.Input<pulumi.Input<string>[]>;
9170
+ /**
9171
+ * [optional] The public IP of the VPN peer
9172
+ */
9173
+ publicIp?: pulumi.Input<string>;
9174
+ /**
9175
+ * [optional] The remote ID is used to identify the connecting VPN peer. This can either be a valid IPv4 Address, FQDN or User FQDN.
9176
+ */
9177
+ remoteId?: pulumi.Input<string>;
9178
+ /**
9179
+ * The shared secret with the VPN peer
9180
+ */
9181
+ secret?: pulumi.Input<string>;
9182
+ }
9183
+ interface ApplianceVpnThirdPartyVpnpeersPeersResponseIpsecPolicies {
9184
+ /**
9185
+ * This is the authentication algorithms to be used in Phase 2. The value should be an array with one of the following algorithms: 'sha256', 'sha1', 'md5'
9186
+ */
9187
+ childAuthAlgos?: pulumi.Input<pulumi.Input<string>[]>;
9188
+ /**
9189
+ * This is the cipher algorithms to be used in Phase 2. The value should be an array with one or more of the following algorithms: 'aes256', 'aes192', 'aes128', 'tripledes', 'des', 'null'
9190
+ */
9191
+ childCipherAlgos?: pulumi.Input<pulumi.Input<string>[]>;
9192
+ /**
9193
+ * The lifetime of the Phase 2 SA in seconds.
9194
+ */
9195
+ childLifetime?: pulumi.Input<number>;
9196
+ /**
9197
+ * This is the Diffie-Hellman group to be used for Perfect Forward Secrecy in Phase 2. The value should be an array with one of the following values: 'disabled','group14', 'group5', 'group2', 'group1'
9198
+ */
9199
+ childPfsGroups?: pulumi.Input<pulumi.Input<string>[]>;
9200
+ /**
9201
+ * This is the authentication algorithm to be used in Phase 1. The value should be an array with one of the following algorithms: 'sha256', 'sha1', 'md5'
9202
+ */
9203
+ ikeAuthAlgos?: pulumi.Input<pulumi.Input<string>[]>;
9204
+ /**
9205
+ * This is the cipher algorithm to be used in Phase 1. The value should be an array with one of the following algorithms: 'aes256', 'aes192', 'aes128', 'tripledes', 'des'
9206
+ */
9207
+ ikeCipherAlgos?: pulumi.Input<pulumi.Input<string>[]>;
9208
+ /**
9209
+ * This is the Diffie-Hellman group to be used in Phase 1. The value should be an array with one of the following algorithms: 'group14', 'group5', 'group2', 'group1'
9210
+ */
9211
+ ikeDiffieHellmanGroups?: pulumi.Input<pulumi.Input<string>[]>;
9212
+ /**
9213
+ * The lifetime of the Phase 1 SA in seconds.
9214
+ */
9215
+ ikeLifetime?: pulumi.Input<number>;
9216
+ /**
9217
+ * [optional] This is the pseudo-random function to be used in IKE_SA. The value should be an array with one of the following algorithms: 'prfsha256', 'prfsha1', 'prfmd5', 'default'. The 'default' option can be used to default to the Authentication algorithm.
9218
+ */
9219
+ ikePrfAlgos?: pulumi.Input<pulumi.Input<string>[]>;
9220
+ }
9141
9221
  interface ApplianceVpnVpnFirewallRulesRule {
9142
9222
  /**
9143
9223
  * Description of the rule (optional)
package/types/output.d.ts CHANGED
@@ -3679,7 +3679,7 @@ export declare namespace networks {
3679
3679
  */
3680
3680
  ip: string;
3681
3681
  }
3682
- interface ApplianceContentFilteringBlockedUrlCategory {
3682
+ interface ApplianceContentFilteringBlockedUrlCategoriesResponse {
3683
3683
  id: string;
3684
3684
  name: string;
3685
3685
  }
@@ -17589,7 +17589,7 @@ export declare namespace networks {
17589
17589
  /**
17590
17590
  * Name of the VLAN, string length must be from 1 to 32 characters
17591
17591
  */
17592
- name: string;
17592
+ name?: string;
17593
17593
  /**
17594
17594
  * VLAN ID
17595
17595
  */
@@ -19413,6 +19413,86 @@ export declare namespace organizations {
19413
19413
  ruleId: string;
19414
19414
  }
19415
19415
  interface ApplianceVpnThirdPartyVpnpeersPeer {
19416
+ /**
19417
+ * [optional] The IKE version to be used for the IPsec VPN peer configuration. Defaults to '1' when omitted.
19418
+ */
19419
+ ikeVersion?: string;
19420
+ /**
19421
+ * Custom IPSec policies for the VPN peer. If not included and a preset has not been chosen, the default preset for IPSec policies will be used.
19422
+ */
19423
+ ipsecPolicies?: outputs.organizations.ApplianceVpnThirdPartyVpnpeersPeerIpsecPolicies;
19424
+ /**
19425
+ * One of the following available presets: 'default', 'aws', 'azure'. If this is provided, the 'ipsecPolicies' parameter is ignored.
19426
+ */
19427
+ ipsecPoliciesPreset?: string;
19428
+ /**
19429
+ * [optional] The local ID is used to identify the MX to the peer. This will apply to all MXs this peer applies to.
19430
+ */
19431
+ localId?: string;
19432
+ /**
19433
+ * The name of the VPN peer
19434
+ */
19435
+ name?: string;
19436
+ /**
19437
+ * A list of network tags that will connect with this peer. Use ['all'] for all networks. Use ['none'] for no networks. If not included, the default is ['all'].
19438
+ */
19439
+ networkTags?: string[];
19440
+ /**
19441
+ * The list of the private subnets of the VPN peer
19442
+ */
19443
+ privateSubnets?: string[];
19444
+ /**
19445
+ * [optional] The public IP of the VPN peer
19446
+ */
19447
+ publicIp?: string;
19448
+ /**
19449
+ * [optional] The remote ID is used to identify the connecting VPN peer. This can either be a valid IPv4 Address, FQDN or User FQDN.
19450
+ */
19451
+ remoteId?: string;
19452
+ /**
19453
+ * The shared secret with the VPN peer
19454
+ */
19455
+ secret?: string;
19456
+ }
19457
+ interface ApplianceVpnThirdPartyVpnpeersPeerIpsecPolicies {
19458
+ /**
19459
+ * This is the authentication algorithms to be used in Phase 2. The value should be an array with one of the following algorithms: 'sha256', 'sha1', 'md5'
19460
+ */
19461
+ childAuthAlgos: string[];
19462
+ /**
19463
+ * This is the cipher algorithms to be used in Phase 2. The value should be an array with one or more of the following algorithms: 'aes256', 'aes192', 'aes128', 'tripledes', 'des', 'null'
19464
+ */
19465
+ childCipherAlgos: string[];
19466
+ /**
19467
+ * The lifetime of the Phase 2 SA in seconds.
19468
+ */
19469
+ childLifetime?: number;
19470
+ /**
19471
+ * This is the Diffie-Hellman group to be used for Perfect Forward Secrecy in Phase 2. The value should be an array with one of the following values: 'disabled','group14', 'group5', 'group2', 'group1'
19472
+ */
19473
+ childPfsGroups: string[];
19474
+ /**
19475
+ * This is the authentication algorithm to be used in Phase 1. The value should be an array with one of the following algorithms: 'sha256', 'sha1', 'md5'
19476
+ */
19477
+ ikeAuthAlgos: string[];
19478
+ /**
19479
+ * This is the cipher algorithm to be used in Phase 1. The value should be an array with one of the following algorithms: 'aes256', 'aes192', 'aes128', 'tripledes', 'des'
19480
+ */
19481
+ ikeCipherAlgos: string[];
19482
+ /**
19483
+ * This is the Diffie-Hellman group to be used in Phase 1. The value should be an array with one of the following algorithms: 'group14', 'group5', 'group2', 'group1'
19484
+ */
19485
+ ikeDiffieHellmanGroups: string[];
19486
+ /**
19487
+ * The lifetime of the Phase 1 SA in seconds.
19488
+ */
19489
+ ikeLifetime?: number;
19490
+ /**
19491
+ * [optional] This is the pseudo-random function to be used in IKE_SA. The value should be an array with one of the following algorithms: 'prfsha256', 'prfsha1', 'prfmd5', 'default'. The 'default' option can be used to default to the Authentication algorithm.
19492
+ */
19493
+ ikePrfAlgos: string[];
19494
+ }
19495
+ interface ApplianceVpnThirdPartyVpnpeersPeersResponse {
19416
19496
  /**
19417
19497
  * [optional] The IKE version to be used for the IPsec VPN peer configuration. Defaults to '1' when omitted.
19418
19498
  */
@@ -19420,7 +19500,7 @@ export declare namespace organizations {
19420
19500
  /**
19421
19501
  * Custom IPSec policies for the VPN peer. If not included and a preset has not been chosen, the default preset for IPSec policies will be used.
19422
19502
  */
19423
- ipsecPolicies: outputs.organizations.ApplianceVpnThirdPartyVpnpeersPeerIpsecPolicies;
19503
+ ipsecPolicies: outputs.organizations.ApplianceVpnThirdPartyVpnpeersPeersResponseIpsecPolicies;
19424
19504
  /**
19425
19505
  * One of the following available presets: 'default', 'aws', 'azure'. If this is provided, the 'ipsecPolicies' parameter is ignored.
19426
19506
  */
@@ -19454,7 +19534,7 @@ export declare namespace organizations {
19454
19534
  */
19455
19535
  secret: string;
19456
19536
  }
19457
- interface ApplianceVpnThirdPartyVpnpeersPeerIpsecPolicies {
19537
+ interface ApplianceVpnThirdPartyVpnpeersPeersResponseIpsecPolicies {
19458
19538
  /**
19459
19539
  * This is the authentication algorithms to be used in Phase 2. The value should be an array with one of the following algorithms: 'sha256', 'sha1', 'md5'
19460
19540
  */