@pulumi/sdwan 0.9.0 → 0.9.1

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.
Files changed (88) hide show
  1. package/activateTopologyGroup.d.ts +65 -0
  2. package/activateTopologyGroup.d.ts.map +1 -0
  3. package/activateTopologyGroup.js +81 -0
  4. package/activateTopologyGroup.js.map +1 -0
  5. package/cloudProviderSettings.d.ts +1 -1
  6. package/cloudProviderSettings.js +1 -1
  7. package/customApplication.d.ts +176 -0
  8. package/customApplication.d.ts.map +1 -0
  9. package/customApplication.js +122 -0
  10. package/customApplication.js.map +1 -0
  11. package/getCustomApplication.d.ts +92 -0
  12. package/getCustomApplication.d.ts.map +1 -0
  13. package/getCustomApplication.js +73 -0
  14. package/getCustomApplication.js.map +1 -0
  15. package/getSseCiscoFeature.d.ts +130 -0
  16. package/getSseCiscoFeature.d.ts.map +1 -0
  17. package/getSseCiscoFeature.js +79 -0
  18. package/getSseCiscoFeature.js.map +1 -0
  19. package/getSseFeatureProfile.d.ts +67 -0
  20. package/getSseFeatureProfile.d.ts.map +1 -0
  21. package/getSseFeatureProfile.js +73 -0
  22. package/getSseFeatureProfile.js.map +1 -0
  23. package/getSseZscalerFeature.d.ts +283 -0
  24. package/getSseZscalerFeature.d.ts.map +1 -0
  25. package/getSseZscalerFeature.js +79 -0
  26. package/getSseZscalerFeature.js.map +1 -0
  27. package/getTopologyCustomControlFeature.d.ts +101 -0
  28. package/getTopologyCustomControlFeature.d.ts.map +1 -0
  29. package/getTopologyCustomControlFeature.js +77 -0
  30. package/getTopologyCustomControlFeature.js.map +1 -0
  31. package/getTopologyFeatureProfile.d.ts +67 -0
  32. package/getTopologyFeatureProfile.d.ts.map +1 -0
  33. package/getTopologyFeatureProfile.js +73 -0
  34. package/getTopologyFeatureProfile.js.map +1 -0
  35. package/getTopologyGroup.d.ts +75 -0
  36. package/getTopologyGroup.d.ts.map +1 -0
  37. package/getTopologyGroup.js +73 -0
  38. package/getTopologyGroup.js.map +1 -0
  39. package/getTopologyHubSpokeFeature.d.ts +92 -0
  40. package/getTopologyHubSpokeFeature.d.ts.map +1 -0
  41. package/getTopologyHubSpokeFeature.js +77 -0
  42. package/getTopologyHubSpokeFeature.js.map +1 -0
  43. package/getTopologyMeshFeature.d.ts +87 -0
  44. package/getTopologyMeshFeature.d.ts.map +1 -0
  45. package/getTopologyMeshFeature.js +77 -0
  46. package/getTopologyMeshFeature.js.map +1 -0
  47. package/index.d.ts +57 -0
  48. package/index.d.ts.map +1 -1
  49. package/index.js +93 -15
  50. package/index.js.map +1 -1
  51. package/package.json +2 -2
  52. package/sseCiscoFeature.d.ts +251 -0
  53. package/sseCiscoFeature.d.ts.map +1 -0
  54. package/sseCiscoFeature.js +162 -0
  55. package/sseCiscoFeature.js.map +1 -0
  56. package/sseFeatureProfile.d.ts +85 -0
  57. package/sseFeatureProfile.d.ts.map +1 -0
  58. package/sseFeatureProfile.js +101 -0
  59. package/sseFeatureProfile.js.map +1 -0
  60. package/sseZscalerFeature.d.ts +828 -0
  61. package/sseZscalerFeature.d.ts.map +1 -0
  62. package/sseZscalerFeature.js +256 -0
  63. package/sseZscalerFeature.js.map +1 -0
  64. package/systemOmpFeature.d.ts +6 -6
  65. package/topologyCustomControlFeature.d.ts +237 -0
  66. package/topologyCustomControlFeature.d.ts.map +1 -0
  67. package/topologyCustomControlFeature.js +157 -0
  68. package/topologyCustomControlFeature.js.map +1 -0
  69. package/topologyFeatureProfile.d.ts +85 -0
  70. package/topologyFeatureProfile.d.ts.map +1 -0
  71. package/topologyFeatureProfile.js +101 -0
  72. package/topologyFeatureProfile.js.map +1 -0
  73. package/topologyGroup.d.ts +114 -0
  74. package/topologyGroup.d.ts.map +1 -0
  75. package/topologyGroup.js +110 -0
  76. package/topologyGroup.js.map +1 -0
  77. package/topologyHubSpokeFeature.d.ts +138 -0
  78. package/topologyHubSpokeFeature.d.ts.map +1 -0
  79. package/topologyHubSpokeFeature.js +133 -0
  80. package/topologyHubSpokeFeature.js.map +1 -0
  81. package/topologyMeshFeature.d.ts +116 -0
  82. package/topologyMeshFeature.d.ts.map +1 -0
  83. package/topologyMeshFeature.js +120 -0
  84. package/topologyMeshFeature.js.map +1 -0
  85. package/types/input.d.ts +1132 -128
  86. package/types/input.d.ts.map +1 -1
  87. package/types/output.d.ts +7183 -5300
  88. package/types/output.d.ts.map +1 -1
@@ -0,0 +1,251 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * This resource can manage a SSE Cisco Feature.
6
+ * - Minimum SD-WAN Manager version: `20.15.0`
7
+ *
8
+ * ## Example Usage
9
+ *
10
+ * ```typescript
11
+ * import * as pulumi from "@pulumi/pulumi";
12
+ * import * as sdwan from "@pulumi/sdwan";
13
+ *
14
+ * const example = new sdwan.SseCiscoFeature("example", {
15
+ * name: "Example",
16
+ * description: "My Example",
17
+ * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
18
+ * contextSharingForVpn: false,
19
+ * contextSharingForSgt: false,
20
+ * interfaces: [{
21
+ * interfaceName: "ipsec1",
22
+ * tunnelSourceInterface: "GigabitEthernet8",
23
+ * tunnelDcPreference: "primary-dc",
24
+ * mtu: 1400,
25
+ * ikeVersion: 2,
26
+ * }],
27
+ * interfacePairs: [{
28
+ * activeInterface: "ipsec1",
29
+ * activeInterfaceWeight: 1,
30
+ * backupInterface: "None",
31
+ * backupInterfaceWeight: 1,
32
+ * }],
33
+ * region: "us-east-1",
34
+ * trackerSourceIp: "1.2.3.4",
35
+ * trackers: [{
36
+ * name: "tracker1",
37
+ * endpointApiUrl: "http://cisco.com",
38
+ * threshold: 300,
39
+ * interval: 60,
40
+ * multiplier: 3,
41
+ * }],
42
+ * });
43
+ * ```
44
+ *
45
+ * ## Import
46
+ *
47
+ * The `pulumi import` command can be used, for example:
48
+ *
49
+ * Expected import identifier with the format: "sse_cisco_feature_id,feature_profile_id"
50
+ *
51
+ * ```sh
52
+ * $ pulumi import sdwan:index/sseCiscoFeature:SseCiscoFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
53
+ * ```
54
+ */
55
+ export declare class SseCiscoFeature extends pulumi.CustomResource {
56
+ /**
57
+ * Get an existing SseCiscoFeature resource's state with the given name, ID, and optional extra
58
+ * properties used to qualify the lookup.
59
+ *
60
+ * @param name The _unique_ name of the resulting resource.
61
+ * @param id The _unique_ provider ID of the resource to lookup.
62
+ * @param state Any extra arguments used during the lookup.
63
+ * @param opts Optional settings to control the behavior of the CustomResource.
64
+ */
65
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: SseCiscoFeatureState, opts?: pulumi.CustomResourceOptions): SseCiscoFeature;
66
+ /**
67
+ * Returns true if the given object is an instance of SseCiscoFeature. This is designed to work even
68
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
69
+ */
70
+ static isInstance(obj: any): obj is SseCiscoFeature;
71
+ /**
72
+ * Enable/disable Cisco SSE context sharing for sgt
73
+ * - Default value: `false`
74
+ */
75
+ readonly contextSharingForSgt: pulumi.Output<boolean | undefined>;
76
+ /**
77
+ * Enable/disable Cisco SSE context sharing for vpn
78
+ * - Default value: `false`
79
+ */
80
+ readonly contextSharingForVpn: pulumi.Output<boolean | undefined>;
81
+ /**
82
+ * The description of the Feature
83
+ */
84
+ readonly description: pulumi.Output<string | undefined>;
85
+ /**
86
+ * Feature Profile ID
87
+ */
88
+ readonly featureProfileId: pulumi.Output<string>;
89
+ /**
90
+ * Interface Pair for active and backup
91
+ */
92
+ readonly interfacePairs: pulumi.Output<outputs.SseCiscoFeatureInterfacePair[]>;
93
+ /**
94
+ * Interface name: IPsec when present
95
+ */
96
+ readonly interfaces: pulumi.Output<outputs.SseCiscoFeatureInterface[]>;
97
+ /**
98
+ * The name of the Feature
99
+ */
100
+ readonly name: pulumi.Output<string>;
101
+ /**
102
+ * Region for Primary and Secondary Datacenter
103
+ * - Default value: `auto`
104
+ */
105
+ readonly region: pulumi.Output<string>;
106
+ /**
107
+ * Variable name
108
+ */
109
+ readonly regionVariable: pulumi.Output<string | undefined>;
110
+ /**
111
+ * Source IP address for Tracker
112
+ */
113
+ readonly trackerSourceIp: pulumi.Output<string>;
114
+ /**
115
+ * Variable name
116
+ */
117
+ readonly trackerSourceIpVariable: pulumi.Output<string | undefined>;
118
+ /**
119
+ * Tracker configuration
120
+ */
121
+ readonly trackers: pulumi.Output<outputs.SseCiscoFeatureTracker[] | undefined>;
122
+ /**
123
+ * The version of the Feature
124
+ */
125
+ readonly version: pulumi.Output<number>;
126
+ /**
127
+ * Create a SseCiscoFeature resource with the given unique name, arguments, and options.
128
+ *
129
+ * @param name The _unique_ name of the resource.
130
+ * @param args The arguments to use to populate this resource's properties.
131
+ * @param opts A bag of options that control this resource's behavior.
132
+ */
133
+ constructor(name: string, args: SseCiscoFeatureArgs, opts?: pulumi.CustomResourceOptions);
134
+ }
135
+ /**
136
+ * Input properties used for looking up and filtering SseCiscoFeature resources.
137
+ */
138
+ export interface SseCiscoFeatureState {
139
+ /**
140
+ * Enable/disable Cisco SSE context sharing for sgt
141
+ * - Default value: `false`
142
+ */
143
+ contextSharingForSgt?: pulumi.Input<boolean | undefined>;
144
+ /**
145
+ * Enable/disable Cisco SSE context sharing for vpn
146
+ * - Default value: `false`
147
+ */
148
+ contextSharingForVpn?: pulumi.Input<boolean | undefined>;
149
+ /**
150
+ * The description of the Feature
151
+ */
152
+ description?: pulumi.Input<string | undefined>;
153
+ /**
154
+ * Feature Profile ID
155
+ */
156
+ featureProfileId?: pulumi.Input<string | undefined>;
157
+ /**
158
+ * Interface Pair for active and backup
159
+ */
160
+ interfacePairs?: pulumi.Input<pulumi.Input<inputs.SseCiscoFeatureInterfacePair>[] | undefined>;
161
+ /**
162
+ * Interface name: IPsec when present
163
+ */
164
+ interfaces?: pulumi.Input<pulumi.Input<inputs.SseCiscoFeatureInterface>[] | undefined>;
165
+ /**
166
+ * The name of the Feature
167
+ */
168
+ name?: pulumi.Input<string | undefined>;
169
+ /**
170
+ * Region for Primary and Secondary Datacenter
171
+ * - Default value: `auto`
172
+ */
173
+ region?: pulumi.Input<string | undefined>;
174
+ /**
175
+ * Variable name
176
+ */
177
+ regionVariable?: pulumi.Input<string | undefined>;
178
+ /**
179
+ * Source IP address for Tracker
180
+ */
181
+ trackerSourceIp?: pulumi.Input<string | undefined>;
182
+ /**
183
+ * Variable name
184
+ */
185
+ trackerSourceIpVariable?: pulumi.Input<string | undefined>;
186
+ /**
187
+ * Tracker configuration
188
+ */
189
+ trackers?: pulumi.Input<pulumi.Input<inputs.SseCiscoFeatureTracker>[] | undefined>;
190
+ /**
191
+ * The version of the Feature
192
+ */
193
+ version?: pulumi.Input<number | undefined>;
194
+ }
195
+ /**
196
+ * The set of arguments for constructing a SseCiscoFeature resource.
197
+ */
198
+ export interface SseCiscoFeatureArgs {
199
+ /**
200
+ * Enable/disable Cisco SSE context sharing for sgt
201
+ * - Default value: `false`
202
+ */
203
+ contextSharingForSgt?: pulumi.Input<boolean | undefined>;
204
+ /**
205
+ * Enable/disable Cisco SSE context sharing for vpn
206
+ * - Default value: `false`
207
+ */
208
+ contextSharingForVpn?: pulumi.Input<boolean | undefined>;
209
+ /**
210
+ * The description of the Feature
211
+ */
212
+ description?: pulumi.Input<string | undefined>;
213
+ /**
214
+ * Feature Profile ID
215
+ */
216
+ featureProfileId: pulumi.Input<string>;
217
+ /**
218
+ * Interface Pair for active and backup
219
+ */
220
+ interfacePairs: pulumi.Input<pulumi.Input<inputs.SseCiscoFeatureInterfacePair>[]>;
221
+ /**
222
+ * Interface name: IPsec when present
223
+ */
224
+ interfaces: pulumi.Input<pulumi.Input<inputs.SseCiscoFeatureInterface>[]>;
225
+ /**
226
+ * The name of the Feature
227
+ */
228
+ name?: pulumi.Input<string | undefined>;
229
+ /**
230
+ * Region for Primary and Secondary Datacenter
231
+ * - Default value: `auto`
232
+ */
233
+ region: pulumi.Input<string>;
234
+ /**
235
+ * Variable name
236
+ */
237
+ regionVariable?: pulumi.Input<string | undefined>;
238
+ /**
239
+ * Source IP address for Tracker
240
+ */
241
+ trackerSourceIp: pulumi.Input<string>;
242
+ /**
243
+ * Variable name
244
+ */
245
+ trackerSourceIpVariable?: pulumi.Input<string | undefined>;
246
+ /**
247
+ * Tracker configuration
248
+ */
249
+ trackers?: pulumi.Input<pulumi.Input<inputs.SseCiscoFeatureTracker>[] | undefined>;
250
+ }
251
+ //# sourceMappingURL=sseCiscoFeature.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sseCiscoFeature.d.ts","sourceRoot":"","sources":["../sseCiscoFeature.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkDG;AACH,qBAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,oBAAoB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,eAAe;IAOhJ;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,eAAe;IAO1D;;;OAGG;IACH,SAAwB,oBAAoB,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IACjF;;;OAGG;IACH,SAAwB,oBAAoB,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IACjF;;OAEG;IACH,SAAwB,WAAW,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACvE;;OAEG;IACH,SAAwB,gBAAgB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAChE;;OAEG;IACH,SAAwB,cAAc,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,4BAA4B,EAAE,CAAC,CAAC;IAC9F;;OAEG;IACH,SAAwB,UAAU,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,wBAAwB,EAAE,CAAC,CAAC;IACtF;;OAEG;IACH,SAAwB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACpD;;;OAGG;IACH,SAAwB,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACtD;;OAEG;IACH,SAAwB,cAAc,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC1E;;OAEG;IACH,SAAwB,eAAe,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC/D;;OAEG;IACH,SAAwB,uBAAuB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACnF;;OAEG;IACH,SAAwB,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,sBAAsB,EAAE,GAAG,SAAS,CAAC,CAAC;IAC9F;;OAEG;IACH,SAAgC,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAE/D;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,mBAAmB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CAqD3F;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;OAGG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IACzD;;;OAGG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IACzD;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC/C;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACpD;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,4BAA4B,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;IAC/F;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,wBAAwB,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;IACvF;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxC;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC1C;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAClD;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACnD;;OAEG;IACH,uBAAuB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC3D;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,sBAAsB,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;IACnF;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CAC9C;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAChC;;;OAGG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IACzD;;;OAGG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IACzD;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC/C;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACvC;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,4BAA4B,CAAC,EAAE,CAAC,CAAC;IAClF;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,wBAAwB,CAAC,EAAE,CAAC,CAAC;IAC1E;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxC;;;OAGG;IACH,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAC7B;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAClD;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACtC;;OAEG;IACH,uBAAuB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC3D;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,sBAAsB,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;CACtF"}
@@ -0,0 +1,162 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5
+ if (k2 === undefined) k2 = k;
6
+ var desc = Object.getOwnPropertyDescriptor(m, k);
7
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
8
+ desc = { enumerable: true, get: function() { return m[k]; } };
9
+ }
10
+ Object.defineProperty(o, k2, desc);
11
+ }) : (function(o, m, k, k2) {
12
+ if (k2 === undefined) k2 = k;
13
+ o[k2] = m[k];
14
+ }));
15
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
16
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
17
+ }) : function(o, v) {
18
+ o["default"] = v;
19
+ });
20
+ var __importStar = (this && this.__importStar) || function (mod) {
21
+ if (mod && mod.__esModule) return mod;
22
+ var result = {};
23
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
24
+ __setModuleDefault(result, mod);
25
+ return result;
26
+ };
27
+ Object.defineProperty(exports, "__esModule", { value: true });
28
+ exports.SseCiscoFeature = void 0;
29
+ const pulumi = __importStar(require("@pulumi/pulumi"));
30
+ const utilities = __importStar(require("./utilities"));
31
+ /**
32
+ * This resource can manage a SSE Cisco Feature.
33
+ * - Minimum SD-WAN Manager version: `20.15.0`
34
+ *
35
+ * ## Example Usage
36
+ *
37
+ * ```typescript
38
+ * import * as pulumi from "@pulumi/pulumi";
39
+ * import * as sdwan from "@pulumi/sdwan";
40
+ *
41
+ * const example = new sdwan.SseCiscoFeature("example", {
42
+ * name: "Example",
43
+ * description: "My Example",
44
+ * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
45
+ * contextSharingForVpn: false,
46
+ * contextSharingForSgt: false,
47
+ * interfaces: [{
48
+ * interfaceName: "ipsec1",
49
+ * tunnelSourceInterface: "GigabitEthernet8",
50
+ * tunnelDcPreference: "primary-dc",
51
+ * mtu: 1400,
52
+ * ikeVersion: 2,
53
+ * }],
54
+ * interfacePairs: [{
55
+ * activeInterface: "ipsec1",
56
+ * activeInterfaceWeight: 1,
57
+ * backupInterface: "None",
58
+ * backupInterfaceWeight: 1,
59
+ * }],
60
+ * region: "us-east-1",
61
+ * trackerSourceIp: "1.2.3.4",
62
+ * trackers: [{
63
+ * name: "tracker1",
64
+ * endpointApiUrl: "http://cisco.com",
65
+ * threshold: 300,
66
+ * interval: 60,
67
+ * multiplier: 3,
68
+ * }],
69
+ * });
70
+ * ```
71
+ *
72
+ * ## Import
73
+ *
74
+ * The `pulumi import` command can be used, for example:
75
+ *
76
+ * Expected import identifier with the format: "sse_cisco_feature_id,feature_profile_id"
77
+ *
78
+ * ```sh
79
+ * $ pulumi import sdwan:index/sseCiscoFeature:SseCiscoFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
80
+ * ```
81
+ */
82
+ class SseCiscoFeature extends pulumi.CustomResource {
83
+ /**
84
+ * Get an existing SseCiscoFeature resource's state with the given name, ID, and optional extra
85
+ * properties used to qualify the lookup.
86
+ *
87
+ * @param name The _unique_ name of the resulting resource.
88
+ * @param id The _unique_ provider ID of the resource to lookup.
89
+ * @param state Any extra arguments used during the lookup.
90
+ * @param opts Optional settings to control the behavior of the CustomResource.
91
+ */
92
+ static get(name, id, state, opts) {
93
+ return new SseCiscoFeature(name, state, { ...opts, id: id });
94
+ }
95
+ /** @internal */
96
+ static __pulumiType = 'sdwan:index/sseCiscoFeature:SseCiscoFeature';
97
+ /**
98
+ * Returns true if the given object is an instance of SseCiscoFeature. This is designed to work even
99
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
100
+ */
101
+ static isInstance(obj) {
102
+ if (obj === undefined || obj === null) {
103
+ return false;
104
+ }
105
+ return obj['__pulumiType'] === SseCiscoFeature.__pulumiType;
106
+ }
107
+ constructor(name, argsOrState, opts) {
108
+ let resourceInputs = {};
109
+ opts = opts || {};
110
+ if (opts.id) {
111
+ const state = argsOrState;
112
+ resourceInputs["contextSharingForSgt"] = state?.contextSharingForSgt;
113
+ resourceInputs["contextSharingForVpn"] = state?.contextSharingForVpn;
114
+ resourceInputs["description"] = state?.description;
115
+ resourceInputs["featureProfileId"] = state?.featureProfileId;
116
+ resourceInputs["interfacePairs"] = state?.interfacePairs;
117
+ resourceInputs["interfaces"] = state?.interfaces;
118
+ resourceInputs["name"] = state?.name;
119
+ resourceInputs["region"] = state?.region;
120
+ resourceInputs["regionVariable"] = state?.regionVariable;
121
+ resourceInputs["trackerSourceIp"] = state?.trackerSourceIp;
122
+ resourceInputs["trackerSourceIpVariable"] = state?.trackerSourceIpVariable;
123
+ resourceInputs["trackers"] = state?.trackers;
124
+ resourceInputs["version"] = state?.version;
125
+ }
126
+ else {
127
+ const args = argsOrState;
128
+ if (args?.featureProfileId === undefined && !opts.urn) {
129
+ throw new Error("Missing required property 'featureProfileId'");
130
+ }
131
+ if (args?.interfacePairs === undefined && !opts.urn) {
132
+ throw new Error("Missing required property 'interfacePairs'");
133
+ }
134
+ if (args?.interfaces === undefined && !opts.urn) {
135
+ throw new Error("Missing required property 'interfaces'");
136
+ }
137
+ if (args?.region === undefined && !opts.urn) {
138
+ throw new Error("Missing required property 'region'");
139
+ }
140
+ if (args?.trackerSourceIp === undefined && !opts.urn) {
141
+ throw new Error("Missing required property 'trackerSourceIp'");
142
+ }
143
+ resourceInputs["contextSharingForSgt"] = args?.contextSharingForSgt;
144
+ resourceInputs["contextSharingForVpn"] = args?.contextSharingForVpn;
145
+ resourceInputs["description"] = args?.description;
146
+ resourceInputs["featureProfileId"] = args?.featureProfileId;
147
+ resourceInputs["interfacePairs"] = args?.interfacePairs;
148
+ resourceInputs["interfaces"] = args?.interfaces;
149
+ resourceInputs["name"] = args?.name;
150
+ resourceInputs["region"] = args?.region;
151
+ resourceInputs["regionVariable"] = args?.regionVariable;
152
+ resourceInputs["trackerSourceIp"] = args?.trackerSourceIp;
153
+ resourceInputs["trackerSourceIpVariable"] = args?.trackerSourceIpVariable;
154
+ resourceInputs["trackers"] = args?.trackers;
155
+ resourceInputs["version"] = undefined /*out*/;
156
+ }
157
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
158
+ super(SseCiscoFeature.__pulumiType, name, resourceInputs, opts);
159
+ }
160
+ }
161
+ exports.SseCiscoFeature = SseCiscoFeature;
162
+ //# sourceMappingURL=sseCiscoFeature.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sseCiscoFeature.js","sourceRoot":"","sources":["../sseCiscoFeature.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkDG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACtE,CAAC;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,6CAA6C,CAAC;IAEpF;;;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,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;IAkED,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,EAAE,oBAAoB,CAAC;YACrE,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,EAAE,oBAAoB,CAAC;YACrE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;YAC7D,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,EAAE,uBAAuB,CAAC;YAC3E,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;SAC9C;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,IAAI,IAAI,EAAE,gBAAgB,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,8CAA8C,CAAC,CAAC;aACnE;YACD,IAAI,IAAI,EAAE,cAAc,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,IAAI,IAAI,EAAE,UAAU,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7C,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,IAAI,IAAI,EAAE,MAAM,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzC,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,IAAI,IAAI,EAAE,eAAe,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;aAClE;YACD,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,EAAE,oBAAoB,CAAC;YACpE,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,EAAE,oBAAoB,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,EAAE,gBAAgB,CAAC;YAC5D,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,EAAE,uBAAuB,CAAC;YAC1E,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACjD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpE,CAAC;;AA/IL,0CAgJC"}
@@ -0,0 +1,85 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * This resource can manage a SSE Feature Profile .
4
+ * - Minimum SD-WAN Manager version: `20.15.0`
5
+ *
6
+ * ## Example Usage
7
+ *
8
+ * ```typescript
9
+ * import * as pulumi from "@pulumi/pulumi";
10
+ * import * as sdwan from "@pulumi/sdwan";
11
+ *
12
+ * const example = new sdwan.SseFeatureProfile("example", {
13
+ * name: "SSE_FP_1",
14
+ * description: "My sse feature profile 1",
15
+ * });
16
+ * ```
17
+ *
18
+ * ## Import
19
+ *
20
+ * The `pulumi import` command can be used, for example:
21
+ *
22
+ * ```sh
23
+ * $ pulumi import sdwan:index/sseFeatureProfile:SseFeatureProfile example "f6b2c44c-693c-4763-b010-895aa3d236bd"
24
+ * ```
25
+ */
26
+ export declare class SseFeatureProfile extends pulumi.CustomResource {
27
+ /**
28
+ * Get an existing SseFeatureProfile resource's state with the given name, ID, and optional extra
29
+ * properties used to qualify the lookup.
30
+ *
31
+ * @param name The _unique_ name of the resulting resource.
32
+ * @param id The _unique_ provider ID of the resource to lookup.
33
+ * @param state Any extra arguments used during the lookup.
34
+ * @param opts Optional settings to control the behavior of the CustomResource.
35
+ */
36
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: SseFeatureProfileState, opts?: pulumi.CustomResourceOptions): SseFeatureProfile;
37
+ /**
38
+ * Returns true if the given object is an instance of SseFeatureProfile. This is designed to work even
39
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
40
+ */
41
+ static isInstance(obj: any): obj is SseFeatureProfile;
42
+ /**
43
+ * Description
44
+ */
45
+ readonly description: pulumi.Output<string>;
46
+ /**
47
+ * The name of the sse feature profile
48
+ */
49
+ readonly name: pulumi.Output<string>;
50
+ /**
51
+ * Create a SseFeatureProfile resource with the given unique name, arguments, and options.
52
+ *
53
+ * @param name The _unique_ name of the resource.
54
+ * @param args The arguments to use to populate this resource's properties.
55
+ * @param opts A bag of options that control this resource's behavior.
56
+ */
57
+ constructor(name: string, args: SseFeatureProfileArgs, opts?: pulumi.CustomResourceOptions);
58
+ }
59
+ /**
60
+ * Input properties used for looking up and filtering SseFeatureProfile resources.
61
+ */
62
+ export interface SseFeatureProfileState {
63
+ /**
64
+ * Description
65
+ */
66
+ description?: pulumi.Input<string | undefined>;
67
+ /**
68
+ * The name of the sse feature profile
69
+ */
70
+ name?: pulumi.Input<string | undefined>;
71
+ }
72
+ /**
73
+ * The set of arguments for constructing a SseFeatureProfile resource.
74
+ */
75
+ export interface SseFeatureProfileArgs {
76
+ /**
77
+ * Description
78
+ */
79
+ description: pulumi.Input<string>;
80
+ /**
81
+ * The name of the sse feature profile
82
+ */
83
+ name?: pulumi.Input<string | undefined>;
84
+ }
85
+ //# sourceMappingURL=sseFeatureProfile.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sseFeatureProfile.d.ts","sourceRoot":"","sources":["../sseFeatureProfile.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,qBAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IACxD;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,sBAAsB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,iBAAiB;IAOpJ;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,iBAAiB;IAO5D;;OAEG;IACH,SAAwB,WAAW,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC3D;;OAEG;IACH,SAAwB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAEpD;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,qBAAqB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CAmB7F;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACnC;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC/C;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CAC3C;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IAClC;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAClC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CAC3C"}
@@ -0,0 +1,101 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5
+ if (k2 === undefined) k2 = k;
6
+ var desc = Object.getOwnPropertyDescriptor(m, k);
7
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
8
+ desc = { enumerable: true, get: function() { return m[k]; } };
9
+ }
10
+ Object.defineProperty(o, k2, desc);
11
+ }) : (function(o, m, k, k2) {
12
+ if (k2 === undefined) k2 = k;
13
+ o[k2] = m[k];
14
+ }));
15
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
16
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
17
+ }) : function(o, v) {
18
+ o["default"] = v;
19
+ });
20
+ var __importStar = (this && this.__importStar) || function (mod) {
21
+ if (mod && mod.__esModule) return mod;
22
+ var result = {};
23
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
24
+ __setModuleDefault(result, mod);
25
+ return result;
26
+ };
27
+ Object.defineProperty(exports, "__esModule", { value: true });
28
+ exports.SseFeatureProfile = void 0;
29
+ const pulumi = __importStar(require("@pulumi/pulumi"));
30
+ const utilities = __importStar(require("./utilities"));
31
+ /**
32
+ * This resource can manage a SSE Feature Profile .
33
+ * - Minimum SD-WAN Manager version: `20.15.0`
34
+ *
35
+ * ## Example Usage
36
+ *
37
+ * ```typescript
38
+ * import * as pulumi from "@pulumi/pulumi";
39
+ * import * as sdwan from "@pulumi/sdwan";
40
+ *
41
+ * const example = new sdwan.SseFeatureProfile("example", {
42
+ * name: "SSE_FP_1",
43
+ * description: "My sse feature profile 1",
44
+ * });
45
+ * ```
46
+ *
47
+ * ## Import
48
+ *
49
+ * The `pulumi import` command can be used, for example:
50
+ *
51
+ * ```sh
52
+ * $ pulumi import sdwan:index/sseFeatureProfile:SseFeatureProfile example "f6b2c44c-693c-4763-b010-895aa3d236bd"
53
+ * ```
54
+ */
55
+ class SseFeatureProfile extends pulumi.CustomResource {
56
+ /**
57
+ * Get an existing SseFeatureProfile resource's state with the given name, ID, and optional extra
58
+ * properties used to qualify the lookup.
59
+ *
60
+ * @param name The _unique_ name of the resulting resource.
61
+ * @param id The _unique_ provider ID of the resource to lookup.
62
+ * @param state Any extra arguments used during the lookup.
63
+ * @param opts Optional settings to control the behavior of the CustomResource.
64
+ */
65
+ static get(name, id, state, opts) {
66
+ return new SseFeatureProfile(name, state, { ...opts, id: id });
67
+ }
68
+ /** @internal */
69
+ static __pulumiType = 'sdwan:index/sseFeatureProfile:SseFeatureProfile';
70
+ /**
71
+ * Returns true if the given object is an instance of SseFeatureProfile. This is designed to work even
72
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
73
+ */
74
+ static isInstance(obj) {
75
+ if (obj === undefined || obj === null) {
76
+ return false;
77
+ }
78
+ return obj['__pulumiType'] === SseFeatureProfile.__pulumiType;
79
+ }
80
+ constructor(name, argsOrState, opts) {
81
+ let resourceInputs = {};
82
+ opts = opts || {};
83
+ if (opts.id) {
84
+ const state = argsOrState;
85
+ resourceInputs["description"] = state?.description;
86
+ resourceInputs["name"] = state?.name;
87
+ }
88
+ else {
89
+ const args = argsOrState;
90
+ if (args?.description === undefined && !opts.urn) {
91
+ throw new Error("Missing required property 'description'");
92
+ }
93
+ resourceInputs["description"] = args?.description;
94
+ resourceInputs["name"] = args?.name;
95
+ }
96
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
97
+ super(SseFeatureProfile.__pulumiType, name, resourceInputs, opts);
98
+ }
99
+ }
100
+ exports.SseFeatureProfile = SseFeatureProfile;
101
+ //# sourceMappingURL=sseFeatureProfile.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sseFeatureProfile.js","sourceRoot":"","sources":["../sseFeatureProfile.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AACzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,MAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IACxD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA8B,EAAE,IAAmC;QAC5H,OAAO,IAAI,iBAAiB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACxE,CAAC;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,iDAAiD,CAAC;IAExF;;;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,iBAAiB,CAAC,YAAY,CAAC;IAClE,CAAC;IAmBD,YAAY,IAAY,EAAE,WAA4D,EAAE,IAAmC;QACvH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAiD,CAAC;YAChE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAAgD,CAAC;YAC9D,IAAI,IAAI,EAAE,WAAW,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9C,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;SACvC;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,iBAAiB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACtE,CAAC;;AA9DL,8CA+DC"}