pulumi-oci 2.32.0a1745044247__py3-none-any.whl → 2.32.0a1745468539__py3-none-any.whl

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.
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "oci",
4
- "version": "2.32.0-alpha.1745044247"
4
+ "version": "2.32.0-alpha.1745468539"
5
5
  }
@@ -22,6 +22,8 @@ __all__ = [
22
22
  'VbInstanceCustomEndpointArgsDict',
23
23
  'VbInstanceNetworkEndpointDetailsArgs',
24
24
  'VbInstanceNetworkEndpointDetailsArgsDict',
25
+ 'VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs',
26
+ 'VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgsDict',
25
27
  'GetVbInstancesFilterArgs',
26
28
  'GetVbInstancesFilterArgsDict',
27
29
  ]
@@ -175,10 +177,16 @@ if not MYPY:
175
177
  network_endpoint_type: pulumi.Input[builtins.str]
176
178
  """
177
179
  (Updatable) The type of network endpoint.
180
+
181
+ For private endpoint access
178
182
  """
179
- subnet_id: pulumi.Input[builtins.str]
183
+ allowlisted_http_ips: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
180
184
  """
181
- (Updatable) The subnet OCID for the private endpoint.
185
+ (Updatable) Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
186
+ """
187
+ allowlisted_http_vcns: NotRequired[pulumi.Input[Sequence[pulumi.Input['VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgsDict']]]]
188
+ """
189
+ (Updatable) Virtual Cloud Networks allowed to access this network endpoint.
182
190
  """
183
191
  network_security_group_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
184
192
  """
@@ -188,6 +196,12 @@ if not MYPY:
188
196
  """
189
197
  The IP address to be assigned to Private Endpoint
190
198
  """
199
+ subnet_id: NotRequired[pulumi.Input[builtins.str]]
200
+ """
201
+ (Updatable) The subnet OCID for the private endpoint.
202
+
203
+ For public network access control
204
+ """
191
205
  elif False:
192
206
  VbInstanceNetworkEndpointDetailsArgsDict: TypeAlias = Mapping[str, Any]
193
207
 
@@ -195,27 +209,42 @@ elif False:
195
209
  class VbInstanceNetworkEndpointDetailsArgs:
196
210
  def __init__(__self__, *,
197
211
  network_endpoint_type: pulumi.Input[builtins.str],
198
- subnet_id: pulumi.Input[builtins.str],
212
+ allowlisted_http_ips: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
213
+ allowlisted_http_vcns: Optional[pulumi.Input[Sequence[pulumi.Input['VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs']]]] = None,
199
214
  network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
200
- private_endpoint_ip: Optional[pulumi.Input[builtins.str]] = None):
215
+ private_endpoint_ip: Optional[pulumi.Input[builtins.str]] = None,
216
+ subnet_id: Optional[pulumi.Input[builtins.str]] = None):
201
217
  """
202
218
  :param pulumi.Input[builtins.str] network_endpoint_type: (Updatable) The type of network endpoint.
203
- :param pulumi.Input[builtins.str] subnet_id: (Updatable) The subnet OCID for the private endpoint.
219
+
220
+ For private endpoint access
221
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] allowlisted_http_ips: (Updatable) Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
222
+ :param pulumi.Input[Sequence[pulumi.Input['VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs']]] allowlisted_http_vcns: (Updatable) Virtual Cloud Networks allowed to access this network endpoint.
204
223
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] network_security_group_ids: (Updatable) Network Security Group OCIDs for the Private Endpoint.
205
224
  :param pulumi.Input[builtins.str] private_endpoint_ip: The IP address to be assigned to Private Endpoint
225
+ :param pulumi.Input[builtins.str] subnet_id: (Updatable) The subnet OCID for the private endpoint.
226
+
227
+ For public network access control
206
228
  """
207
229
  pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
208
- pulumi.set(__self__, "subnet_id", subnet_id)
230
+ if allowlisted_http_ips is not None:
231
+ pulumi.set(__self__, "allowlisted_http_ips", allowlisted_http_ips)
232
+ if allowlisted_http_vcns is not None:
233
+ pulumi.set(__self__, "allowlisted_http_vcns", allowlisted_http_vcns)
209
234
  if network_security_group_ids is not None:
210
235
  pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
211
236
  if private_endpoint_ip is not None:
212
237
  pulumi.set(__self__, "private_endpoint_ip", private_endpoint_ip)
238
+ if subnet_id is not None:
239
+ pulumi.set(__self__, "subnet_id", subnet_id)
213
240
 
214
241
  @property
215
242
  @pulumi.getter(name="networkEndpointType")
216
243
  def network_endpoint_type(self) -> pulumi.Input[builtins.str]:
217
244
  """
218
245
  (Updatable) The type of network endpoint.
246
+
247
+ For private endpoint access
219
248
  """
220
249
  return pulumi.get(self, "network_endpoint_type")
221
250
 
@@ -224,16 +253,28 @@ class VbInstanceNetworkEndpointDetailsArgs:
224
253
  pulumi.set(self, "network_endpoint_type", value)
225
254
 
226
255
  @property
227
- @pulumi.getter(name="subnetId")
228
- def subnet_id(self) -> pulumi.Input[builtins.str]:
256
+ @pulumi.getter(name="allowlistedHttpIps")
257
+ def allowlisted_http_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
229
258
  """
230
- (Updatable) The subnet OCID for the private endpoint.
259
+ (Updatable) Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
231
260
  """
232
- return pulumi.get(self, "subnet_id")
261
+ return pulumi.get(self, "allowlisted_http_ips")
233
262
 
234
- @subnet_id.setter
235
- def subnet_id(self, value: pulumi.Input[builtins.str]):
236
- pulumi.set(self, "subnet_id", value)
263
+ @allowlisted_http_ips.setter
264
+ def allowlisted_http_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
265
+ pulumi.set(self, "allowlisted_http_ips", value)
266
+
267
+ @property
268
+ @pulumi.getter(name="allowlistedHttpVcns")
269
+ def allowlisted_http_vcns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs']]]]:
270
+ """
271
+ (Updatable) Virtual Cloud Networks allowed to access this network endpoint.
272
+ """
273
+ return pulumi.get(self, "allowlisted_http_vcns")
274
+
275
+ @allowlisted_http_vcns.setter
276
+ def allowlisted_http_vcns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs']]]]):
277
+ pulumi.set(self, "allowlisted_http_vcns", value)
237
278
 
238
279
  @property
239
280
  @pulumi.getter(name="networkSecurityGroupIds")
@@ -259,6 +300,71 @@ class VbInstanceNetworkEndpointDetailsArgs:
259
300
  def private_endpoint_ip(self, value: Optional[pulumi.Input[builtins.str]]):
260
301
  pulumi.set(self, "private_endpoint_ip", value)
261
302
 
303
+ @property
304
+ @pulumi.getter(name="subnetId")
305
+ def subnet_id(self) -> Optional[pulumi.Input[builtins.str]]:
306
+ """
307
+ (Updatable) The subnet OCID for the private endpoint.
308
+
309
+ For public network access control
310
+ """
311
+ return pulumi.get(self, "subnet_id")
312
+
313
+ @subnet_id.setter
314
+ def subnet_id(self, value: Optional[pulumi.Input[builtins.str]]):
315
+ pulumi.set(self, "subnet_id", value)
316
+
317
+
318
+ if not MYPY:
319
+ class VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgsDict(TypedDict):
320
+ id: pulumi.Input[builtins.str]
321
+ """
322
+ (Updatable) The Virtual Cloud Network OCID.
323
+ """
324
+ allowlisted_ip_cidrs: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
325
+ """
326
+ (Updatable) Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
327
+ """
328
+ elif False:
329
+ VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgsDict: TypeAlias = Mapping[str, Any]
330
+
331
+ @pulumi.input_type
332
+ class VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs:
333
+ def __init__(__self__, *,
334
+ id: pulumi.Input[builtins.str],
335
+ allowlisted_ip_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None):
336
+ """
337
+ :param pulumi.Input[builtins.str] id: (Updatable) The Virtual Cloud Network OCID.
338
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] allowlisted_ip_cidrs: (Updatable) Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
339
+ """
340
+ pulumi.set(__self__, "id", id)
341
+ if allowlisted_ip_cidrs is not None:
342
+ pulumi.set(__self__, "allowlisted_ip_cidrs", allowlisted_ip_cidrs)
343
+
344
+ @property
345
+ @pulumi.getter
346
+ def id(self) -> pulumi.Input[builtins.str]:
347
+ """
348
+ (Updatable) The Virtual Cloud Network OCID.
349
+ """
350
+ return pulumi.get(self, "id")
351
+
352
+ @id.setter
353
+ def id(self, value: pulumi.Input[builtins.str]):
354
+ pulumi.set(self, "id", value)
355
+
356
+ @property
357
+ @pulumi.getter(name="allowlistedIpCidrs")
358
+ def allowlisted_ip_cidrs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
359
+ """
360
+ (Updatable) Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
361
+ """
362
+ return pulumi.get(self, "allowlisted_ip_cidrs")
363
+
364
+ @allowlisted_ip_cidrs.setter
365
+ def allowlisted_ip_cidrs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
366
+ pulumi.set(self, "allowlisted_ip_cidrs", value)
367
+
262
368
 
263
369
  if not MYPY:
264
370
  class GetVbInstancesFilterArgsDict(TypedDict):
@@ -159,7 +159,7 @@ class GetVbInstanceResult:
159
159
  @pulumi.getter
160
160
  def id(self) -> builtins.str:
161
161
  """
162
- Unique identifier that is immutable on creation.
162
+ The Virtual Cloud Network OCID.
163
163
  """
164
164
  return pulumi.get(self, "id")
165
165
 
@@ -20,17 +20,20 @@ __all__ = [
20
20
  'VbInstanceAlternateCustomEndpoint',
21
21
  'VbInstanceCustomEndpoint',
22
22
  'VbInstanceNetworkEndpointDetails',
23
+ 'VbInstanceNetworkEndpointDetailsAllowlistedHttpVcn',
23
24
  'GetVbInstanceAlternateCustomEndpointResult',
24
25
  'GetVbInstanceApplicationsApplicationSummaryCollectionResult',
25
26
  'GetVbInstanceApplicationsApplicationSummaryCollectionItemResult',
26
27
  'GetVbInstanceCustomEndpointResult',
27
28
  'GetVbInstanceNetworkEndpointDetailResult',
29
+ 'GetVbInstanceNetworkEndpointDetailAllowlistedHttpVcnResult',
28
30
  'GetVbInstancesFilterResult',
29
31
  'GetVbInstancesVbInstanceSummaryCollectionResult',
30
32
  'GetVbInstancesVbInstanceSummaryCollectionItemResult',
31
33
  'GetVbInstancesVbInstanceSummaryCollectionItemAlternateCustomEndpointResult',
32
34
  'GetVbInstancesVbInstanceSummaryCollectionItemCustomEndpointResult',
33
35
  'GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailResult',
36
+ 'GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailAllowlistedHttpVcnResult',
34
37
  ]
35
38
 
36
39
  @pulumi.output_type
@@ -162,12 +165,16 @@ class VbInstanceNetworkEndpointDetails(dict):
162
165
  suggest = None
163
166
  if key == "networkEndpointType":
164
167
  suggest = "network_endpoint_type"
165
- elif key == "subnetId":
166
- suggest = "subnet_id"
168
+ elif key == "allowlistedHttpIps":
169
+ suggest = "allowlisted_http_ips"
170
+ elif key == "allowlistedHttpVcns":
171
+ suggest = "allowlisted_http_vcns"
167
172
  elif key == "networkSecurityGroupIds":
168
173
  suggest = "network_security_group_ids"
169
174
  elif key == "privateEndpointIp":
170
175
  suggest = "private_endpoint_ip"
176
+ elif key == "subnetId":
177
+ suggest = "subnet_id"
171
178
 
172
179
  if suggest:
173
180
  pulumi.log.warn(f"Key '{key}' not found in VbInstanceNetworkEndpointDetails. Access the value via the '{suggest}' property getter instead.")
@@ -182,37 +189,60 @@ class VbInstanceNetworkEndpointDetails(dict):
182
189
 
183
190
  def __init__(__self__, *,
184
191
  network_endpoint_type: builtins.str,
185
- subnet_id: builtins.str,
192
+ allowlisted_http_ips: Optional[Sequence[builtins.str]] = None,
193
+ allowlisted_http_vcns: Optional[Sequence['outputs.VbInstanceNetworkEndpointDetailsAllowlistedHttpVcn']] = None,
186
194
  network_security_group_ids: Optional[Sequence[builtins.str]] = None,
187
- private_endpoint_ip: Optional[builtins.str] = None):
195
+ private_endpoint_ip: Optional[builtins.str] = None,
196
+ subnet_id: Optional[builtins.str] = None):
188
197
  """
189
198
  :param builtins.str network_endpoint_type: (Updatable) The type of network endpoint.
190
- :param builtins.str subnet_id: (Updatable) The subnet OCID for the private endpoint.
199
+
200
+ For private endpoint access
201
+ :param Sequence[builtins.str] allowlisted_http_ips: (Updatable) Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
202
+ :param Sequence['VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs'] allowlisted_http_vcns: (Updatable) Virtual Cloud Networks allowed to access this network endpoint.
191
203
  :param Sequence[builtins.str] network_security_group_ids: (Updatable) Network Security Group OCIDs for the Private Endpoint.
192
204
  :param builtins.str private_endpoint_ip: The IP address to be assigned to Private Endpoint
205
+ :param builtins.str subnet_id: (Updatable) The subnet OCID for the private endpoint.
206
+
207
+ For public network access control
193
208
  """
194
209
  pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
195
- pulumi.set(__self__, "subnet_id", subnet_id)
210
+ if allowlisted_http_ips is not None:
211
+ pulumi.set(__self__, "allowlisted_http_ips", allowlisted_http_ips)
212
+ if allowlisted_http_vcns is not None:
213
+ pulumi.set(__self__, "allowlisted_http_vcns", allowlisted_http_vcns)
196
214
  if network_security_group_ids is not None:
197
215
  pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
198
216
  if private_endpoint_ip is not None:
199
217
  pulumi.set(__self__, "private_endpoint_ip", private_endpoint_ip)
218
+ if subnet_id is not None:
219
+ pulumi.set(__self__, "subnet_id", subnet_id)
200
220
 
201
221
  @property
202
222
  @pulumi.getter(name="networkEndpointType")
203
223
  def network_endpoint_type(self) -> builtins.str:
204
224
  """
205
225
  (Updatable) The type of network endpoint.
226
+
227
+ For private endpoint access
206
228
  """
207
229
  return pulumi.get(self, "network_endpoint_type")
208
230
 
209
231
  @property
210
- @pulumi.getter(name="subnetId")
211
- def subnet_id(self) -> builtins.str:
232
+ @pulumi.getter(name="allowlistedHttpIps")
233
+ def allowlisted_http_ips(self) -> Optional[Sequence[builtins.str]]:
212
234
  """
213
- (Updatable) The subnet OCID for the private endpoint.
235
+ (Updatable) Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
214
236
  """
215
- return pulumi.get(self, "subnet_id")
237
+ return pulumi.get(self, "allowlisted_http_ips")
238
+
239
+ @property
240
+ @pulumi.getter(name="allowlistedHttpVcns")
241
+ def allowlisted_http_vcns(self) -> Optional[Sequence['outputs.VbInstanceNetworkEndpointDetailsAllowlistedHttpVcn']]:
242
+ """
243
+ (Updatable) Virtual Cloud Networks allowed to access this network endpoint.
244
+ """
245
+ return pulumi.get(self, "allowlisted_http_vcns")
216
246
 
217
247
  @property
218
248
  @pulumi.getter(name="networkSecurityGroupIds")
@@ -230,6 +260,63 @@ class VbInstanceNetworkEndpointDetails(dict):
230
260
  """
231
261
  return pulumi.get(self, "private_endpoint_ip")
232
262
 
263
+ @property
264
+ @pulumi.getter(name="subnetId")
265
+ def subnet_id(self) -> Optional[builtins.str]:
266
+ """
267
+ (Updatable) The subnet OCID for the private endpoint.
268
+
269
+ For public network access control
270
+ """
271
+ return pulumi.get(self, "subnet_id")
272
+
273
+
274
+ @pulumi.output_type
275
+ class VbInstanceNetworkEndpointDetailsAllowlistedHttpVcn(dict):
276
+ @staticmethod
277
+ def __key_warning(key: str):
278
+ suggest = None
279
+ if key == "allowlistedIpCidrs":
280
+ suggest = "allowlisted_ip_cidrs"
281
+
282
+ if suggest:
283
+ pulumi.log.warn(f"Key '{key}' not found in VbInstanceNetworkEndpointDetailsAllowlistedHttpVcn. Access the value via the '{suggest}' property getter instead.")
284
+
285
+ def __getitem__(self, key: str) -> Any:
286
+ VbInstanceNetworkEndpointDetailsAllowlistedHttpVcn.__key_warning(key)
287
+ return super().__getitem__(key)
288
+
289
+ def get(self, key: str, default = None) -> Any:
290
+ VbInstanceNetworkEndpointDetailsAllowlistedHttpVcn.__key_warning(key)
291
+ return super().get(key, default)
292
+
293
+ def __init__(__self__, *,
294
+ id: builtins.str,
295
+ allowlisted_ip_cidrs: Optional[Sequence[builtins.str]] = None):
296
+ """
297
+ :param builtins.str id: (Updatable) The Virtual Cloud Network OCID.
298
+ :param Sequence[builtins.str] allowlisted_ip_cidrs: (Updatable) Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
299
+ """
300
+ pulumi.set(__self__, "id", id)
301
+ if allowlisted_ip_cidrs is not None:
302
+ pulumi.set(__self__, "allowlisted_ip_cidrs", allowlisted_ip_cidrs)
303
+
304
+ @property
305
+ @pulumi.getter
306
+ def id(self) -> builtins.str:
307
+ """
308
+ (Updatable) The Virtual Cloud Network OCID.
309
+ """
310
+ return pulumi.get(self, "id")
311
+
312
+ @property
313
+ @pulumi.getter(name="allowlistedIpCidrs")
314
+ def allowlisted_ip_cidrs(self) -> Optional[Sequence[builtins.str]]:
315
+ """
316
+ (Updatable) Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
317
+ """
318
+ return pulumi.get(self, "allowlisted_ip_cidrs")
319
+
233
320
 
234
321
  @pulumi.output_type
235
322
  class GetVbInstanceAlternateCustomEndpointResult(dict):
@@ -377,21 +464,43 @@ class GetVbInstanceCustomEndpointResult(dict):
377
464
  @pulumi.output_type
378
465
  class GetVbInstanceNetworkEndpointDetailResult(dict):
379
466
  def __init__(__self__, *,
467
+ allowlisted_http_ips: Sequence[builtins.str],
468
+ allowlisted_http_vcns: Sequence['outputs.GetVbInstanceNetworkEndpointDetailAllowlistedHttpVcnResult'],
380
469
  network_endpoint_type: builtins.str,
381
470
  network_security_group_ids: Sequence[builtins.str],
382
471
  private_endpoint_ip: builtins.str,
383
472
  subnet_id: builtins.str):
384
473
  """
474
+ :param Sequence[builtins.str] allowlisted_http_ips: Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
475
+ :param Sequence['GetVbInstanceNetworkEndpointDetailAllowlistedHttpVcnArgs'] allowlisted_http_vcns: Virtual Cloud Networks allowed to access this network endpoint.
385
476
  :param builtins.str network_endpoint_type: The type of network endpoint.
386
477
  :param Sequence[builtins.str] network_security_group_ids: Network Security Group OCIDs for the Private Endpoint.
387
478
  :param builtins.str private_endpoint_ip: The IP address to be assigned to Private Endpoint
388
479
  :param builtins.str subnet_id: The subnet OCID for the private endpoint.
389
480
  """
481
+ pulumi.set(__self__, "allowlisted_http_ips", allowlisted_http_ips)
482
+ pulumi.set(__self__, "allowlisted_http_vcns", allowlisted_http_vcns)
390
483
  pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
391
484
  pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
392
485
  pulumi.set(__self__, "private_endpoint_ip", private_endpoint_ip)
393
486
  pulumi.set(__self__, "subnet_id", subnet_id)
394
487
 
488
+ @property
489
+ @pulumi.getter(name="allowlistedHttpIps")
490
+ def allowlisted_http_ips(self) -> Sequence[builtins.str]:
491
+ """
492
+ Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
493
+ """
494
+ return pulumi.get(self, "allowlisted_http_ips")
495
+
496
+ @property
497
+ @pulumi.getter(name="allowlistedHttpVcns")
498
+ def allowlisted_http_vcns(self) -> Sequence['outputs.GetVbInstanceNetworkEndpointDetailAllowlistedHttpVcnResult']:
499
+ """
500
+ Virtual Cloud Networks allowed to access this network endpoint.
501
+ """
502
+ return pulumi.get(self, "allowlisted_http_vcns")
503
+
395
504
  @property
396
505
  @pulumi.getter(name="networkEndpointType")
397
506
  def network_endpoint_type(self) -> builtins.str:
@@ -425,6 +534,35 @@ class GetVbInstanceNetworkEndpointDetailResult(dict):
425
534
  return pulumi.get(self, "subnet_id")
426
535
 
427
536
 
537
+ @pulumi.output_type
538
+ class GetVbInstanceNetworkEndpointDetailAllowlistedHttpVcnResult(dict):
539
+ def __init__(__self__, *,
540
+ allowlisted_ip_cidrs: Sequence[builtins.str],
541
+ id: builtins.str):
542
+ """
543
+ :param Sequence[builtins.str] allowlisted_ip_cidrs: Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
544
+ :param builtins.str id: The Virtual Cloud Network OCID.
545
+ """
546
+ pulumi.set(__self__, "allowlisted_ip_cidrs", allowlisted_ip_cidrs)
547
+ pulumi.set(__self__, "id", id)
548
+
549
+ @property
550
+ @pulumi.getter(name="allowlistedIpCidrs")
551
+ def allowlisted_ip_cidrs(self) -> Sequence[builtins.str]:
552
+ """
553
+ Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
554
+ """
555
+ return pulumi.get(self, "allowlisted_ip_cidrs")
556
+
557
+ @property
558
+ @pulumi.getter
559
+ def id(self) -> builtins.str:
560
+ """
561
+ The Virtual Cloud Network OCID.
562
+ """
563
+ return pulumi.get(self, "id")
564
+
565
+
428
566
  @pulumi.output_type
429
567
  class GetVbInstancesFilterResult(dict):
430
568
  def __init__(__self__, *,
@@ -497,7 +635,7 @@ class GetVbInstancesVbInstanceSummaryCollectionItemResult(dict):
497
635
  :param Mapping[str, builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
498
636
  :param builtins.str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Example: `My new resource`
499
637
  :param Mapping[str, builtins.str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
500
- :param builtins.str id: Unique identifier that is immutable on creation.
638
+ :param builtins.str id: The Virtual Cloud Network OCID.
501
639
  :param builtins.str instance_url: The Vb Instance URL.
502
640
  :param builtins.bool is_visual_builder_enabled: Visual Builder is enabled or not.
503
641
  :param builtins.str management_nat_gateway_ip: The NAT gateway IP address for the VB management VCN
@@ -595,7 +733,7 @@ class GetVbInstancesVbInstanceSummaryCollectionItemResult(dict):
595
733
  @pulumi.getter
596
734
  def id(self) -> builtins.str:
597
735
  """
598
- Unique identifier that is immutable on creation.
736
+ The Virtual Cloud Network OCID.
599
737
  """
600
738
  return pulumi.get(self, "id")
601
739
 
@@ -792,21 +930,43 @@ class GetVbInstancesVbInstanceSummaryCollectionItemCustomEndpointResult(dict):
792
930
  @pulumi.output_type
793
931
  class GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailResult(dict):
794
932
  def __init__(__self__, *,
933
+ allowlisted_http_ips: Sequence[builtins.str],
934
+ allowlisted_http_vcns: Sequence['outputs.GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailAllowlistedHttpVcnResult'],
795
935
  network_endpoint_type: builtins.str,
796
936
  network_security_group_ids: Sequence[builtins.str],
797
937
  private_endpoint_ip: builtins.str,
798
938
  subnet_id: builtins.str):
799
939
  """
940
+ :param Sequence[builtins.str] allowlisted_http_ips: Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
941
+ :param Sequence['GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailAllowlistedHttpVcnArgs'] allowlisted_http_vcns: Virtual Cloud Networks allowed to access this network endpoint.
800
942
  :param builtins.str network_endpoint_type: The type of network endpoint.
801
943
  :param Sequence[builtins.str] network_security_group_ids: Network Security Group OCIDs for the Private Endpoint.
802
944
  :param builtins.str private_endpoint_ip: The IP address to be assigned to Private Endpoint
803
945
  :param builtins.str subnet_id: The subnet OCID for the private endpoint.
804
946
  """
947
+ pulumi.set(__self__, "allowlisted_http_ips", allowlisted_http_ips)
948
+ pulumi.set(__self__, "allowlisted_http_vcns", allowlisted_http_vcns)
805
949
  pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
806
950
  pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
807
951
  pulumi.set(__self__, "private_endpoint_ip", private_endpoint_ip)
808
952
  pulumi.set(__self__, "subnet_id", subnet_id)
809
953
 
954
+ @property
955
+ @pulumi.getter(name="allowlistedHttpIps")
956
+ def allowlisted_http_ips(self) -> Sequence[builtins.str]:
957
+ """
958
+ Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
959
+ """
960
+ return pulumi.get(self, "allowlisted_http_ips")
961
+
962
+ @property
963
+ @pulumi.getter(name="allowlistedHttpVcns")
964
+ def allowlisted_http_vcns(self) -> Sequence['outputs.GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailAllowlistedHttpVcnResult']:
965
+ """
966
+ Virtual Cloud Networks allowed to access this network endpoint.
967
+ """
968
+ return pulumi.get(self, "allowlisted_http_vcns")
969
+
810
970
  @property
811
971
  @pulumi.getter(name="networkEndpointType")
812
972
  def network_endpoint_type(self) -> builtins.str:
@@ -840,3 +1000,32 @@ class GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailResult(d
840
1000
  return pulumi.get(self, "subnet_id")
841
1001
 
842
1002
 
1003
+ @pulumi.output_type
1004
+ class GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailAllowlistedHttpVcnResult(dict):
1005
+ def __init__(__self__, *,
1006
+ allowlisted_ip_cidrs: Sequence[builtins.str],
1007
+ id: builtins.str):
1008
+ """
1009
+ :param Sequence[builtins.str] allowlisted_ip_cidrs: Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
1010
+ :param builtins.str id: The Virtual Cloud Network OCID.
1011
+ """
1012
+ pulumi.set(__self__, "allowlisted_ip_cidrs", allowlisted_ip_cidrs)
1013
+ pulumi.set(__self__, "id", id)
1014
+
1015
+ @property
1016
+ @pulumi.getter(name="allowlistedIpCidrs")
1017
+ def allowlisted_ip_cidrs(self) -> Sequence[builtins.str]:
1018
+ """
1019
+ Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
1020
+ """
1021
+ return pulumi.get(self, "allowlisted_ip_cidrs")
1022
+
1023
+ @property
1024
+ @pulumi.getter
1025
+ def id(self) -> builtins.str:
1026
+ """
1027
+ The Virtual Cloud Network OCID.
1028
+ """
1029
+ return pulumi.get(self, "id")
1030
+
1031
+
@@ -582,41 +582,6 @@ class VbInstance(pulumi.CustomResource):
582
582
 
583
583
  Creates a new Vb Instance.
584
584
 
585
- ## Example Usage
586
-
587
- ```python
588
- import pulumi
589
- import pulumi_oci as oci
590
-
591
- test_vb_instance = oci.visual_builder.VbInstance("test_vb_instance",
592
- compartment_id=compartment_id,
593
- display_name=vb_instance_display_name,
594
- node_count=vb_instance_node_count,
595
- alternate_custom_endpoints=[{
596
- "hostname": vb_instance_alternate_custom_endpoints_hostname,
597
- "certificate_secret_id": test_secret["id"],
598
- }],
599
- consumption_model=vb_instance_consumption_model,
600
- custom_endpoint={
601
- "hostname": vb_instance_custom_endpoint_hostname,
602
- "certificate_secret_id": test_secret["id"],
603
- },
604
- defined_tags={
605
- "foo-namespace.bar-key": "value",
606
- },
607
- freeform_tags={
608
- "bar-key": "value",
609
- },
610
- idcs_open_id=test_idcs_open["id"],
611
- is_visual_builder_enabled=vb_instance_is_visual_builder_enabled,
612
- network_endpoint_details={
613
- "network_endpoint_type": vb_instance_network_endpoint_details_network_endpoint_type,
614
- "subnet_id": test_subnet["id"],
615
- "network_security_group_ids": vb_instance_network_endpoint_details_network_security_group_ids,
616
- "private_endpoint_ip": vb_instance_network_endpoint_details_private_endpoint_ip,
617
- })
618
- ```
619
-
620
585
  ## Import
621
586
 
622
587
  VbInstances can be imported using the `id`, e.g.
@@ -654,41 +619,6 @@ class VbInstance(pulumi.CustomResource):
654
619
 
655
620
  Creates a new Vb Instance.
656
621
 
657
- ## Example Usage
658
-
659
- ```python
660
- import pulumi
661
- import pulumi_oci as oci
662
-
663
- test_vb_instance = oci.visual_builder.VbInstance("test_vb_instance",
664
- compartment_id=compartment_id,
665
- display_name=vb_instance_display_name,
666
- node_count=vb_instance_node_count,
667
- alternate_custom_endpoints=[{
668
- "hostname": vb_instance_alternate_custom_endpoints_hostname,
669
- "certificate_secret_id": test_secret["id"],
670
- }],
671
- consumption_model=vb_instance_consumption_model,
672
- custom_endpoint={
673
- "hostname": vb_instance_custom_endpoint_hostname,
674
- "certificate_secret_id": test_secret["id"],
675
- },
676
- defined_tags={
677
- "foo-namespace.bar-key": "value",
678
- },
679
- freeform_tags={
680
- "bar-key": "value",
681
- },
682
- idcs_open_id=test_idcs_open["id"],
683
- is_visual_builder_enabled=vb_instance_is_visual_builder_enabled,
684
- network_endpoint_details={
685
- "network_endpoint_type": vb_instance_network_endpoint_details_network_endpoint_type,
686
- "subnet_id": test_subnet["id"],
687
- "network_security_group_ids": vb_instance_network_endpoint_details_network_security_group_ids,
688
- "private_endpoint_ip": vb_instance_network_endpoint_details_private_endpoint_ip,
689
- })
690
- ```
691
-
692
622
  ## Import
693
623
 
694
624
  VbInstances can be imported using the `id`, e.g.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_oci
3
- Version: 2.32.0a1745044247
3
+ Version: 2.32.0a1745468539
4
4
  Summary: A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.pulumi.com