pulumi-oci 2.14.0__py3-none-any.whl → 2.14.0a1730182164__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.
Files changed (39) hide show
  1. pulumi_oci/core/_inputs.py +0 -74
  2. pulumi_oci/core/get_instance.py +1 -1
  3. pulumi_oci/core/get_virtual_circuit.py +4 -18
  4. pulumi_oci/core/instance.py +7 -7
  5. pulumi_oci/core/outputs.py +7 -165
  6. pulumi_oci/core/virtual_circuit.py +2 -30
  7. pulumi_oci/database/_inputs.py +0 -642
  8. pulumi_oci/database/autonomous_container_database.py +14 -14
  9. pulumi_oci/database/autonomous_database.py +0 -75
  10. pulumi_oci/database/get_autonomous_container_database.py +3 -3
  11. pulumi_oci/database/get_autonomous_database.py +1 -29
  12. pulumi_oci/database/get_autonomous_databases.py +28 -22
  13. pulumi_oci/database/outputs.py +89 -1672
  14. pulumi_oci/datascience/_inputs.py +0 -353
  15. pulumi_oci/datascience/get_model.py +1 -85
  16. pulumi_oci/datascience/get_models.py +0 -5
  17. pulumi_oci/datascience/model.py +66 -206
  18. pulumi_oci/datascience/outputs.py +0 -759
  19. pulumi_oci/filestorage/_inputs.py +0 -651
  20. pulumi_oci/filestorage/export.py +3 -96
  21. pulumi_oci/filestorage/file_system.py +0 -93
  22. pulumi_oci/filestorage/filesystem_snapshot_policy.py +0 -93
  23. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +1 -26
  24. pulumi_oci/filestorage/get_outbound_connector.py +1 -26
  25. pulumi_oci/filestorage/get_replication.py +1 -27
  26. pulumi_oci/filestorage/get_snapshot.py +1 -27
  27. pulumi_oci/filestorage/mount_target.py +0 -108
  28. pulumi_oci/filestorage/outbound_connector.py +0 -93
  29. pulumi_oci/filestorage/outputs.py +9 -1225
  30. pulumi_oci/filestorage/replication.py +0 -95
  31. pulumi_oci/filestorage/snapshot.py +2 -97
  32. pulumi_oci/networkloadbalancer/get_network_load_balancer.py +1 -15
  33. pulumi_oci/networkloadbalancer/network_load_balancer.py +0 -47
  34. pulumi_oci/networkloadbalancer/outputs.py +0 -11
  35. pulumi_oci/pulumi-plugin.json +1 -1
  36. {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/METADATA +1 -1
  37. {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/RECORD +39 -39
  38. {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/WHEEL +1 -1
  39. {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/top_level.txt +0 -0
@@ -17,30 +17,16 @@ from .. import _utilities
17
17
  __all__ = [
18
18
  'ExportExportOptionArgs',
19
19
  'ExportExportOptionArgsDict',
20
- 'ExportLockArgs',
21
- 'ExportLockArgsDict',
22
- 'FileSystemLockArgs',
23
- 'FileSystemLockArgsDict',
24
20
  'FileSystemSourceDetailArgs',
25
21
  'FileSystemSourceDetailArgsDict',
26
- 'FilesystemSnapshotPolicyLockArgs',
27
- 'FilesystemSnapshotPolicyLockArgsDict',
28
22
  'FilesystemSnapshotPolicyScheduleArgs',
29
23
  'FilesystemSnapshotPolicyScheduleArgsDict',
30
24
  'MountTargetKerberosArgs',
31
25
  'MountTargetKerberosArgsDict',
32
26
  'MountTargetLdapIdmapArgs',
33
27
  'MountTargetLdapIdmapArgsDict',
34
- 'MountTargetLockArgs',
35
- 'MountTargetLockArgsDict',
36
28
  'OutboundConnectorEndpointArgs',
37
29
  'OutboundConnectorEndpointArgsDict',
38
- 'OutboundConnectorLockArgs',
39
- 'OutboundConnectorLockArgsDict',
40
- 'ReplicationLockArgs',
41
- 'ReplicationLockArgsDict',
42
- 'SnapshotLockArgs',
43
- 'SnapshotLockArgsDict',
44
30
  'GetExportSetsFilterArgs',
45
31
  'GetExportSetsFilterArgsDict',
46
32
  'GetExportsFilterArgs',
@@ -240,188 +226,6 @@ class ExportExportOptionArgs:
240
226
  pulumi.set(self, "require_privileged_source_port", value)
241
227
 
242
228
 
243
- if not MYPY:
244
- class ExportLockArgsDict(TypedDict):
245
- type: pulumi.Input[str]
246
- """
247
- Type of the lock.
248
- """
249
- message: NotRequired[pulumi.Input[str]]
250
- """
251
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
252
- """
253
- related_resource_id: NotRequired[pulumi.Input[str]]
254
- """
255
- The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
256
- """
257
- time_created: NotRequired[pulumi.Input[str]]
258
- """
259
- When the lock was created.
260
- """
261
- elif False:
262
- ExportLockArgsDict: TypeAlias = Mapping[str, Any]
263
-
264
- @pulumi.input_type
265
- class ExportLockArgs:
266
- def __init__(__self__, *,
267
- type: pulumi.Input[str],
268
- message: Optional[pulumi.Input[str]] = None,
269
- related_resource_id: Optional[pulumi.Input[str]] = None,
270
- time_created: Optional[pulumi.Input[str]] = None):
271
- """
272
- :param pulumi.Input[str] type: Type of the lock.
273
- :param pulumi.Input[str] message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
274
- :param pulumi.Input[str] related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
275
- :param pulumi.Input[str] time_created: When the lock was created.
276
- """
277
- pulumi.set(__self__, "type", type)
278
- if message is not None:
279
- pulumi.set(__self__, "message", message)
280
- if related_resource_id is not None:
281
- pulumi.set(__self__, "related_resource_id", related_resource_id)
282
- if time_created is not None:
283
- pulumi.set(__self__, "time_created", time_created)
284
-
285
- @property
286
- @pulumi.getter
287
- def type(self) -> pulumi.Input[str]:
288
- """
289
- Type of the lock.
290
- """
291
- return pulumi.get(self, "type")
292
-
293
- @type.setter
294
- def type(self, value: pulumi.Input[str]):
295
- pulumi.set(self, "type", value)
296
-
297
- @property
298
- @pulumi.getter
299
- def message(self) -> Optional[pulumi.Input[str]]:
300
- """
301
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
302
- """
303
- return pulumi.get(self, "message")
304
-
305
- @message.setter
306
- def message(self, value: Optional[pulumi.Input[str]]):
307
- pulumi.set(self, "message", value)
308
-
309
- @property
310
- @pulumi.getter(name="relatedResourceId")
311
- def related_resource_id(self) -> Optional[pulumi.Input[str]]:
312
- """
313
- The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
314
- """
315
- return pulumi.get(self, "related_resource_id")
316
-
317
- @related_resource_id.setter
318
- def related_resource_id(self, value: Optional[pulumi.Input[str]]):
319
- pulumi.set(self, "related_resource_id", value)
320
-
321
- @property
322
- @pulumi.getter(name="timeCreated")
323
- def time_created(self) -> Optional[pulumi.Input[str]]:
324
- """
325
- When the lock was created.
326
- """
327
- return pulumi.get(self, "time_created")
328
-
329
- @time_created.setter
330
- def time_created(self, value: Optional[pulumi.Input[str]]):
331
- pulumi.set(self, "time_created", value)
332
-
333
-
334
- if not MYPY:
335
- class FileSystemLockArgsDict(TypedDict):
336
- type: pulumi.Input[str]
337
- """
338
- Type of the lock.
339
- """
340
- message: NotRequired[pulumi.Input[str]]
341
- """
342
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
343
- """
344
- related_resource_id: NotRequired[pulumi.Input[str]]
345
- """
346
- The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
347
- """
348
- time_created: NotRequired[pulumi.Input[str]]
349
- """
350
- When the lock was created.
351
- """
352
- elif False:
353
- FileSystemLockArgsDict: TypeAlias = Mapping[str, Any]
354
-
355
- @pulumi.input_type
356
- class FileSystemLockArgs:
357
- def __init__(__self__, *,
358
- type: pulumi.Input[str],
359
- message: Optional[pulumi.Input[str]] = None,
360
- related_resource_id: Optional[pulumi.Input[str]] = None,
361
- time_created: Optional[pulumi.Input[str]] = None):
362
- """
363
- :param pulumi.Input[str] type: Type of the lock.
364
- :param pulumi.Input[str] message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
365
- :param pulumi.Input[str] related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
366
- :param pulumi.Input[str] time_created: When the lock was created.
367
- """
368
- pulumi.set(__self__, "type", type)
369
- if message is not None:
370
- pulumi.set(__self__, "message", message)
371
- if related_resource_id is not None:
372
- pulumi.set(__self__, "related_resource_id", related_resource_id)
373
- if time_created is not None:
374
- pulumi.set(__self__, "time_created", time_created)
375
-
376
- @property
377
- @pulumi.getter
378
- def type(self) -> pulumi.Input[str]:
379
- """
380
- Type of the lock.
381
- """
382
- return pulumi.get(self, "type")
383
-
384
- @type.setter
385
- def type(self, value: pulumi.Input[str]):
386
- pulumi.set(self, "type", value)
387
-
388
- @property
389
- @pulumi.getter
390
- def message(self) -> Optional[pulumi.Input[str]]:
391
- """
392
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
393
- """
394
- return pulumi.get(self, "message")
395
-
396
- @message.setter
397
- def message(self, value: Optional[pulumi.Input[str]]):
398
- pulumi.set(self, "message", value)
399
-
400
- @property
401
- @pulumi.getter(name="relatedResourceId")
402
- def related_resource_id(self) -> Optional[pulumi.Input[str]]:
403
- """
404
- The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
405
- """
406
- return pulumi.get(self, "related_resource_id")
407
-
408
- @related_resource_id.setter
409
- def related_resource_id(self, value: Optional[pulumi.Input[str]]):
410
- pulumi.set(self, "related_resource_id", value)
411
-
412
- @property
413
- @pulumi.getter(name="timeCreated")
414
- def time_created(self) -> Optional[pulumi.Input[str]]:
415
- """
416
- When the lock was created.
417
- """
418
- return pulumi.get(self, "time_created")
419
-
420
- @time_created.setter
421
- def time_created(self, value: Optional[pulumi.Input[str]]):
422
- pulumi.set(self, "time_created", value)
423
-
424
-
425
229
  if not MYPY:
426
230
  class FileSystemSourceDetailArgsDict(TypedDict):
427
231
  parent_file_system_id: NotRequired[pulumi.Input[str]]
@@ -474,97 +278,6 @@ class FileSystemSourceDetailArgs:
474
278
  pulumi.set(self, "source_snapshot_id", value)
475
279
 
476
280
 
477
- if not MYPY:
478
- class FilesystemSnapshotPolicyLockArgsDict(TypedDict):
479
- type: pulumi.Input[str]
480
- """
481
- Type of the lock.
482
- """
483
- message: NotRequired[pulumi.Input[str]]
484
- """
485
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
486
- """
487
- related_resource_id: NotRequired[pulumi.Input[str]]
488
- """
489
- The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
490
- """
491
- time_created: NotRequired[pulumi.Input[str]]
492
- """
493
- When the lock was created.
494
- """
495
- elif False:
496
- FilesystemSnapshotPolicyLockArgsDict: TypeAlias = Mapping[str, Any]
497
-
498
- @pulumi.input_type
499
- class FilesystemSnapshotPolicyLockArgs:
500
- def __init__(__self__, *,
501
- type: pulumi.Input[str],
502
- message: Optional[pulumi.Input[str]] = None,
503
- related_resource_id: Optional[pulumi.Input[str]] = None,
504
- time_created: Optional[pulumi.Input[str]] = None):
505
- """
506
- :param pulumi.Input[str] type: Type of the lock.
507
- :param pulumi.Input[str] message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
508
- :param pulumi.Input[str] related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
509
- :param pulumi.Input[str] time_created: When the lock was created.
510
- """
511
- pulumi.set(__self__, "type", type)
512
- if message is not None:
513
- pulumi.set(__self__, "message", message)
514
- if related_resource_id is not None:
515
- pulumi.set(__self__, "related_resource_id", related_resource_id)
516
- if time_created is not None:
517
- pulumi.set(__self__, "time_created", time_created)
518
-
519
- @property
520
- @pulumi.getter
521
- def type(self) -> pulumi.Input[str]:
522
- """
523
- Type of the lock.
524
- """
525
- return pulumi.get(self, "type")
526
-
527
- @type.setter
528
- def type(self, value: pulumi.Input[str]):
529
- pulumi.set(self, "type", value)
530
-
531
- @property
532
- @pulumi.getter
533
- def message(self) -> Optional[pulumi.Input[str]]:
534
- """
535
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
536
- """
537
- return pulumi.get(self, "message")
538
-
539
- @message.setter
540
- def message(self, value: Optional[pulumi.Input[str]]):
541
- pulumi.set(self, "message", value)
542
-
543
- @property
544
- @pulumi.getter(name="relatedResourceId")
545
- def related_resource_id(self) -> Optional[pulumi.Input[str]]:
546
- """
547
- The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
548
- """
549
- return pulumi.get(self, "related_resource_id")
550
-
551
- @related_resource_id.setter
552
- def related_resource_id(self, value: Optional[pulumi.Input[str]]):
553
- pulumi.set(self, "related_resource_id", value)
554
-
555
- @property
556
- @pulumi.getter(name="timeCreated")
557
- def time_created(self) -> Optional[pulumi.Input[str]]:
558
- """
559
- When the lock was created.
560
- """
561
- return pulumi.get(self, "time_created")
562
-
563
- @time_created.setter
564
- def time_created(self, value: Optional[pulumi.Input[str]]):
565
- pulumi.set(self, "time_created", value)
566
-
567
-
568
281
  if not MYPY:
569
282
  class FilesystemSnapshotPolicyScheduleArgsDict(TypedDict):
570
283
  period: pulumi.Input[str]
@@ -1038,97 +751,6 @@ class MountTargetLdapIdmapArgs:
1038
751
  pulumi.set(self, "user_search_base", value)
1039
752
 
1040
753
 
1041
- if not MYPY:
1042
- class MountTargetLockArgsDict(TypedDict):
1043
- type: pulumi.Input[str]
1044
- """
1045
- Type of the lock.
1046
- """
1047
- message: NotRequired[pulumi.Input[str]]
1048
- """
1049
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1050
- """
1051
- related_resource_id: NotRequired[pulumi.Input[str]]
1052
- """
1053
- The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1054
- """
1055
- time_created: NotRequired[pulumi.Input[str]]
1056
- """
1057
- When the lock was created.
1058
- """
1059
- elif False:
1060
- MountTargetLockArgsDict: TypeAlias = Mapping[str, Any]
1061
-
1062
- @pulumi.input_type
1063
- class MountTargetLockArgs:
1064
- def __init__(__self__, *,
1065
- type: pulumi.Input[str],
1066
- message: Optional[pulumi.Input[str]] = None,
1067
- related_resource_id: Optional[pulumi.Input[str]] = None,
1068
- time_created: Optional[pulumi.Input[str]] = None):
1069
- """
1070
- :param pulumi.Input[str] type: Type of the lock.
1071
- :param pulumi.Input[str] message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1072
- :param pulumi.Input[str] related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1073
- :param pulumi.Input[str] time_created: When the lock was created.
1074
- """
1075
- pulumi.set(__self__, "type", type)
1076
- if message is not None:
1077
- pulumi.set(__self__, "message", message)
1078
- if related_resource_id is not None:
1079
- pulumi.set(__self__, "related_resource_id", related_resource_id)
1080
- if time_created is not None:
1081
- pulumi.set(__self__, "time_created", time_created)
1082
-
1083
- @property
1084
- @pulumi.getter
1085
- def type(self) -> pulumi.Input[str]:
1086
- """
1087
- Type of the lock.
1088
- """
1089
- return pulumi.get(self, "type")
1090
-
1091
- @type.setter
1092
- def type(self, value: pulumi.Input[str]):
1093
- pulumi.set(self, "type", value)
1094
-
1095
- @property
1096
- @pulumi.getter
1097
- def message(self) -> Optional[pulumi.Input[str]]:
1098
- """
1099
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1100
- """
1101
- return pulumi.get(self, "message")
1102
-
1103
- @message.setter
1104
- def message(self, value: Optional[pulumi.Input[str]]):
1105
- pulumi.set(self, "message", value)
1106
-
1107
- @property
1108
- @pulumi.getter(name="relatedResourceId")
1109
- def related_resource_id(self) -> Optional[pulumi.Input[str]]:
1110
- """
1111
- The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1112
- """
1113
- return pulumi.get(self, "related_resource_id")
1114
-
1115
- @related_resource_id.setter
1116
- def related_resource_id(self, value: Optional[pulumi.Input[str]]):
1117
- pulumi.set(self, "related_resource_id", value)
1118
-
1119
- @property
1120
- @pulumi.getter(name="timeCreated")
1121
- def time_created(self) -> Optional[pulumi.Input[str]]:
1122
- """
1123
- When the lock was created.
1124
- """
1125
- return pulumi.get(self, "time_created")
1126
-
1127
- @time_created.setter
1128
- def time_created(self, value: Optional[pulumi.Input[str]]):
1129
- pulumi.set(self, "time_created", value)
1130
-
1131
-
1132
754
  if not MYPY:
1133
755
  class OutboundConnectorEndpointArgsDict(TypedDict):
1134
756
  hostname: pulumi.Input[str]
@@ -1179,279 +801,6 @@ class OutboundConnectorEndpointArgs:
1179
801
  pulumi.set(self, "port", value)
1180
802
 
1181
803
 
1182
- if not MYPY:
1183
- class OutboundConnectorLockArgsDict(TypedDict):
1184
- type: pulumi.Input[str]
1185
- """
1186
- Type of the lock.
1187
- """
1188
- message: NotRequired[pulumi.Input[str]]
1189
- """
1190
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1191
- """
1192
- related_resource_id: NotRequired[pulumi.Input[str]]
1193
- """
1194
- The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1195
- """
1196
- time_created: NotRequired[pulumi.Input[str]]
1197
- """
1198
- When the lock was created.
1199
- """
1200
- elif False:
1201
- OutboundConnectorLockArgsDict: TypeAlias = Mapping[str, Any]
1202
-
1203
- @pulumi.input_type
1204
- class OutboundConnectorLockArgs:
1205
- def __init__(__self__, *,
1206
- type: pulumi.Input[str],
1207
- message: Optional[pulumi.Input[str]] = None,
1208
- related_resource_id: Optional[pulumi.Input[str]] = None,
1209
- time_created: Optional[pulumi.Input[str]] = None):
1210
- """
1211
- :param pulumi.Input[str] type: Type of the lock.
1212
- :param pulumi.Input[str] message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1213
- :param pulumi.Input[str] related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1214
- :param pulumi.Input[str] time_created: When the lock was created.
1215
- """
1216
- pulumi.set(__self__, "type", type)
1217
- if message is not None:
1218
- pulumi.set(__self__, "message", message)
1219
- if related_resource_id is not None:
1220
- pulumi.set(__self__, "related_resource_id", related_resource_id)
1221
- if time_created is not None:
1222
- pulumi.set(__self__, "time_created", time_created)
1223
-
1224
- @property
1225
- @pulumi.getter
1226
- def type(self) -> pulumi.Input[str]:
1227
- """
1228
- Type of the lock.
1229
- """
1230
- return pulumi.get(self, "type")
1231
-
1232
- @type.setter
1233
- def type(self, value: pulumi.Input[str]):
1234
- pulumi.set(self, "type", value)
1235
-
1236
- @property
1237
- @pulumi.getter
1238
- def message(self) -> Optional[pulumi.Input[str]]:
1239
- """
1240
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1241
- """
1242
- return pulumi.get(self, "message")
1243
-
1244
- @message.setter
1245
- def message(self, value: Optional[pulumi.Input[str]]):
1246
- pulumi.set(self, "message", value)
1247
-
1248
- @property
1249
- @pulumi.getter(name="relatedResourceId")
1250
- def related_resource_id(self) -> Optional[pulumi.Input[str]]:
1251
- """
1252
- The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1253
- """
1254
- return pulumi.get(self, "related_resource_id")
1255
-
1256
- @related_resource_id.setter
1257
- def related_resource_id(self, value: Optional[pulumi.Input[str]]):
1258
- pulumi.set(self, "related_resource_id", value)
1259
-
1260
- @property
1261
- @pulumi.getter(name="timeCreated")
1262
- def time_created(self) -> Optional[pulumi.Input[str]]:
1263
- """
1264
- When the lock was created.
1265
- """
1266
- return pulumi.get(self, "time_created")
1267
-
1268
- @time_created.setter
1269
- def time_created(self, value: Optional[pulumi.Input[str]]):
1270
- pulumi.set(self, "time_created", value)
1271
-
1272
-
1273
- if not MYPY:
1274
- class ReplicationLockArgsDict(TypedDict):
1275
- type: pulumi.Input[str]
1276
- """
1277
- Type of the lock.
1278
- """
1279
- message: NotRequired[pulumi.Input[str]]
1280
- """
1281
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1282
- """
1283
- related_resource_id: NotRequired[pulumi.Input[str]]
1284
- """
1285
- The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1286
- """
1287
- time_created: NotRequired[pulumi.Input[str]]
1288
- """
1289
- When the lock was created.
1290
- """
1291
- elif False:
1292
- ReplicationLockArgsDict: TypeAlias = Mapping[str, Any]
1293
-
1294
- @pulumi.input_type
1295
- class ReplicationLockArgs:
1296
- def __init__(__self__, *,
1297
- type: pulumi.Input[str],
1298
- message: Optional[pulumi.Input[str]] = None,
1299
- related_resource_id: Optional[pulumi.Input[str]] = None,
1300
- time_created: Optional[pulumi.Input[str]] = None):
1301
- """
1302
- :param pulumi.Input[str] type: Type of the lock.
1303
- :param pulumi.Input[str] message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1304
- :param pulumi.Input[str] related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1305
- :param pulumi.Input[str] time_created: When the lock was created.
1306
- """
1307
- pulumi.set(__self__, "type", type)
1308
- if message is not None:
1309
- pulumi.set(__self__, "message", message)
1310
- if related_resource_id is not None:
1311
- pulumi.set(__self__, "related_resource_id", related_resource_id)
1312
- if time_created is not None:
1313
- pulumi.set(__self__, "time_created", time_created)
1314
-
1315
- @property
1316
- @pulumi.getter
1317
- def type(self) -> pulumi.Input[str]:
1318
- """
1319
- Type of the lock.
1320
- """
1321
- return pulumi.get(self, "type")
1322
-
1323
- @type.setter
1324
- def type(self, value: pulumi.Input[str]):
1325
- pulumi.set(self, "type", value)
1326
-
1327
- @property
1328
- @pulumi.getter
1329
- def message(self) -> Optional[pulumi.Input[str]]:
1330
- """
1331
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1332
- """
1333
- return pulumi.get(self, "message")
1334
-
1335
- @message.setter
1336
- def message(self, value: Optional[pulumi.Input[str]]):
1337
- pulumi.set(self, "message", value)
1338
-
1339
- @property
1340
- @pulumi.getter(name="relatedResourceId")
1341
- def related_resource_id(self) -> Optional[pulumi.Input[str]]:
1342
- """
1343
- The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1344
- """
1345
- return pulumi.get(self, "related_resource_id")
1346
-
1347
- @related_resource_id.setter
1348
- def related_resource_id(self, value: Optional[pulumi.Input[str]]):
1349
- pulumi.set(self, "related_resource_id", value)
1350
-
1351
- @property
1352
- @pulumi.getter(name="timeCreated")
1353
- def time_created(self) -> Optional[pulumi.Input[str]]:
1354
- """
1355
- When the lock was created.
1356
- """
1357
- return pulumi.get(self, "time_created")
1358
-
1359
- @time_created.setter
1360
- def time_created(self, value: Optional[pulumi.Input[str]]):
1361
- pulumi.set(self, "time_created", value)
1362
-
1363
-
1364
- if not MYPY:
1365
- class SnapshotLockArgsDict(TypedDict):
1366
- type: pulumi.Input[str]
1367
- """
1368
- Type of the lock.
1369
- """
1370
- message: NotRequired[pulumi.Input[str]]
1371
- """
1372
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1373
- """
1374
- related_resource_id: NotRequired[pulumi.Input[str]]
1375
- """
1376
- The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1377
- """
1378
- time_created: NotRequired[pulumi.Input[str]]
1379
- """
1380
- When the lock was created.
1381
- """
1382
- elif False:
1383
- SnapshotLockArgsDict: TypeAlias = Mapping[str, Any]
1384
-
1385
- @pulumi.input_type
1386
- class SnapshotLockArgs:
1387
- def __init__(__self__, *,
1388
- type: pulumi.Input[str],
1389
- message: Optional[pulumi.Input[str]] = None,
1390
- related_resource_id: Optional[pulumi.Input[str]] = None,
1391
- time_created: Optional[pulumi.Input[str]] = None):
1392
- """
1393
- :param pulumi.Input[str] type: Type of the lock.
1394
- :param pulumi.Input[str] message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1395
- :param pulumi.Input[str] related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1396
- :param pulumi.Input[str] time_created: When the lock was created.
1397
- """
1398
- pulumi.set(__self__, "type", type)
1399
- if message is not None:
1400
- pulumi.set(__self__, "message", message)
1401
- if related_resource_id is not None:
1402
- pulumi.set(__self__, "related_resource_id", related_resource_id)
1403
- if time_created is not None:
1404
- pulumi.set(__self__, "time_created", time_created)
1405
-
1406
- @property
1407
- @pulumi.getter
1408
- def type(self) -> pulumi.Input[str]:
1409
- """
1410
- Type of the lock.
1411
- """
1412
- return pulumi.get(self, "type")
1413
-
1414
- @type.setter
1415
- def type(self, value: pulumi.Input[str]):
1416
- pulumi.set(self, "type", value)
1417
-
1418
- @property
1419
- @pulumi.getter
1420
- def message(self) -> Optional[pulumi.Input[str]]:
1421
- """
1422
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1423
- """
1424
- return pulumi.get(self, "message")
1425
-
1426
- @message.setter
1427
- def message(self, value: Optional[pulumi.Input[str]]):
1428
- pulumi.set(self, "message", value)
1429
-
1430
- @property
1431
- @pulumi.getter(name="relatedResourceId")
1432
- def related_resource_id(self) -> Optional[pulumi.Input[str]]:
1433
- """
1434
- The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1435
- """
1436
- return pulumi.get(self, "related_resource_id")
1437
-
1438
- @related_resource_id.setter
1439
- def related_resource_id(self, value: Optional[pulumi.Input[str]]):
1440
- pulumi.set(self, "related_resource_id", value)
1441
-
1442
- @property
1443
- @pulumi.getter(name="timeCreated")
1444
- def time_created(self) -> Optional[pulumi.Input[str]]:
1445
- """
1446
- When the lock was created.
1447
- """
1448
- return pulumi.get(self, "time_created")
1449
-
1450
- @time_created.setter
1451
- def time_created(self, value: Optional[pulumi.Input[str]]):
1452
- pulumi.set(self, "time_created", value)
1453
-
1454
-
1455
804
  if not MYPY:
1456
805
  class GetExportSetsFilterArgsDict(TypedDict):
1457
806
  name: str