pulumi-oci 2.27.0a1742279484__py3-none-any.whl → 2.28.0a1742538577__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 (84) hide show
  1. pulumi_oci/__init__.py +144 -0
  2. pulumi_oci/containerengine/_inputs.py +9 -9
  3. pulumi_oci/containerengine/outputs.py +18 -22
  4. pulumi_oci/core/__init__.py +7 -0
  5. pulumi_oci/core/_inputs.py +147 -0
  6. pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
  7. pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
  8. pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
  9. pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
  10. pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
  11. pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
  12. pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
  13. pulumi_oci/core/outputs.py +582 -0
  14. pulumi_oci/database/__init__.py +2 -0
  15. pulumi_oci/database/_inputs.py +2211 -24
  16. pulumi_oci/database/autonomous_container_database.py +305 -52
  17. pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
  18. pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
  19. pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
  20. pulumi_oci/database/get_autonomous_container_database.py +103 -2
  21. pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
  22. pulumi_oci/database/get_autonomous_container_databases.py +1 -1
  23. pulumi_oci/database/get_maintenance_run.py +15 -1
  24. pulumi_oci/database/maintenance_run.py +28 -0
  25. pulumi_oci/database/outputs.py +2747 -225
  26. pulumi_oci/goldengate/_inputs.py +128 -0
  27. pulumi_oci/goldengate/deployment.py +103 -0
  28. pulumi_oci/goldengate/deployment_backup.py +28 -0
  29. pulumi_oci/goldengate/get_deployment.py +43 -1
  30. pulumi_oci/goldengate/get_deployment_backup.py +15 -1
  31. pulumi_oci/goldengate/outputs.py +289 -0
  32. pulumi_oci/osmanagementhub/__init__.py +18 -0
  33. pulumi_oci/osmanagementhub/_inputs.py +677 -12
  34. pulumi_oci/osmanagementhub/event.py +8 -0
  35. pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
  36. pulumi_oci/osmanagementhub/get_event.py +2 -0
  37. pulumi_oci/osmanagementhub/get_events.py +2 -0
  38. pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
  39. pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
  40. pulumi_oci/osmanagementhub/get_management_station.py +116 -4
  41. pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
  42. pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
  43. pulumi_oci/osmanagementhub/get_profile.py +32 -4
  44. pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
  45. pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
  46. pulumi_oci/osmanagementhub/get_profiles.py +63 -3
  47. pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
  48. pulumi_oci/osmanagementhub/get_software_package.py +2 -2
  49. pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
  50. pulumi_oci/osmanagementhub/get_software_source.py +89 -5
  51. pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
  52. pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
  53. pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
  54. pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
  55. pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
  56. pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
  57. pulumi_oci/osmanagementhub/managed_instance.py +56 -0
  58. pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
  59. pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
  60. pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
  61. pulumi_oci/osmanagementhub/management_station.py +251 -4
  62. pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
  63. pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
  64. pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
  65. pulumi_oci/osmanagementhub/outputs.py +1349 -50
  66. pulumi_oci/osmanagementhub/profile.py +70 -14
  67. pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
  68. pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
  69. pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
  70. pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
  71. pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
  72. pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
  73. pulumi_oci/osmanagementhub/software_source.py +365 -26
  74. pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
  75. pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
  76. pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
  77. pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
  78. pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
  79. pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
  80. pulumi_oci/pulumi-plugin.json +1 -1
  81. {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/METADATA +2 -2
  82. {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/RECORD +84 -57
  83. {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/WHEEL +1 -1
  84. {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/top_level.txt +0 -0
@@ -39,7 +39,7 @@ class ProfileArgs:
39
39
  """
40
40
  The set of arguments for constructing a Profile resource.
41
41
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the registration profile.
42
- :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
42
+ :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
43
43
  :param pulumi.Input[str] profile_type: The type of profile.
44
44
  :param pulumi.Input[str] arch_type: The architecture type.
45
45
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
@@ -48,7 +48,7 @@ class ProfileArgs:
48
48
  :param pulumi.Input[bool] is_default_profile: (Updatable) Indicates if the profile is set as the default. There is exactly one default profile for a specified architecture, OS family, registration type, and vendor. When registering an instance with the corresonding characteristics, the default profile is used, unless another profile is specified.
49
49
  :param pulumi.Input[str] lifecycle_stage_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the lifecycle stage that the instance will be associated with.
50
50
  :param pulumi.Input[str] managed_instance_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance group that the instance will join after registration.
51
- :param pulumi.Input[str] management_station_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an instance once registered. Associating with a management station applies only to non-OCI instances.
51
+ :param pulumi.Input[str] management_station_id: description: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
52
52
  :param pulumi.Input[str] os_family: The operating system family.
53
53
  :param pulumi.Input[str] registration_type: The type of instance to register.
54
54
  :param pulumi.Input[Sequence[pulumi.Input[str]]] software_source_ids: The list of software source [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) that the registration profile will use.
@@ -102,7 +102,7 @@ class ProfileArgs:
102
102
  @pulumi.getter(name="displayName")
103
103
  def display_name(self) -> pulumi.Input[str]:
104
104
  """
105
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
105
+ (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
106
106
  """
107
107
  return pulumi.get(self, "display_name")
108
108
 
@@ -210,7 +210,7 @@ class ProfileArgs:
210
210
  @pulumi.getter(name="managementStationId")
211
211
  def management_station_id(self) -> Optional[pulumi.Input[str]]:
212
212
  """
213
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an instance once registered. Associating with a management station applies only to non-OCI instances.
213
+ description: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
214
214
  """
215
215
  return pulumi.get(self, "management_station_id")
216
216
 
@@ -290,12 +290,14 @@ class _ProfileState:
290
290
  management_station_id: Optional[pulumi.Input[str]] = None,
291
291
  os_family: Optional[pulumi.Input[str]] = None,
292
292
  profile_type: Optional[pulumi.Input[str]] = None,
293
+ profile_version: Optional[pulumi.Input[str]] = None,
293
294
  registration_type: Optional[pulumi.Input[str]] = None,
294
295
  software_source_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
295
296
  software_sources: Optional[pulumi.Input[Sequence[pulumi.Input['ProfileSoftwareSourceArgs']]]] = None,
296
297
  state: Optional[pulumi.Input[str]] = None,
297
298
  system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
298
299
  time_created: Optional[pulumi.Input[str]] = None,
300
+ time_modified: Optional[pulumi.Input[str]] = None,
299
301
  vendor_name: Optional[pulumi.Input[str]] = None):
300
302
  """
301
303
  Input properties used for looking up and filtering Profile resources.
@@ -303,7 +305,7 @@ class _ProfileState:
303
305
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the registration profile.
304
306
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
305
307
  :param pulumi.Input[str] description: (Updatable) User-specified description of the registration profile.
306
- :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
308
+ :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
307
309
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
308
310
  :param pulumi.Input[bool] is_default_profile: (Updatable) Indicates if the profile is set as the default. There is exactly one default profile for a specified architecture, OS family, registration type, and vendor. When registering an instance with the corresonding characteristics, the default profile is used, unless another profile is specified.
309
311
  :param pulumi.Input[bool] is_service_provided_profile: Indicates if the profile was created by the service. OS Management Hub provides a limited set of standardized profiles that can be used to register Autonomous Linux or Windows instances.
@@ -312,15 +314,17 @@ class _ProfileState:
312
314
  :param pulumi.Input[Sequence[pulumi.Input['ProfileLifecycleStageArgs']]] lifecycle_stages: Provides identifying information for the specified lifecycle stage.
313
315
  :param pulumi.Input[str] managed_instance_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance group that the instance will join after registration.
314
316
  :param pulumi.Input[Sequence[pulumi.Input['ProfileManagedInstanceGroupArgs']]] managed_instance_groups: Provides identifying information for the specified managed instance group.
315
- :param pulumi.Input[str] management_station_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an instance once registered. Associating with a management station applies only to non-OCI instances.
317
+ :param pulumi.Input[str] management_station_id: description: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
316
318
  :param pulumi.Input[str] os_family: The operating system family.
317
319
  :param pulumi.Input[str] profile_type: The type of profile.
320
+ :param pulumi.Input[str] profile_version: The version of the profile. The version is automatically incremented each time the profiled is edited.
318
321
  :param pulumi.Input[str] registration_type: The type of instance to register.
319
322
  :param pulumi.Input[Sequence[pulumi.Input[str]]] software_source_ids: The list of software source [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) that the registration profile will use.
320
323
  :param pulumi.Input[Sequence[pulumi.Input['ProfileSoftwareSourceArgs']]] software_sources: The list of software sources that the registration profile will use.
321
324
  :param pulumi.Input[str] state: The current state of the registration profile.
322
325
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
323
326
  :param pulumi.Input[str] time_created: The time the registration profile was created (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
327
+ :param pulumi.Input[str] time_modified: The time the registration profile was last modified (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
324
328
  :param pulumi.Input[str] vendor_name: The vendor of the operating system for the instance.
325
329
 
326
330
 
@@ -359,6 +363,8 @@ class _ProfileState:
359
363
  pulumi.set(__self__, "os_family", os_family)
360
364
  if profile_type is not None:
361
365
  pulumi.set(__self__, "profile_type", profile_type)
366
+ if profile_version is not None:
367
+ pulumi.set(__self__, "profile_version", profile_version)
362
368
  if registration_type is not None:
363
369
  pulumi.set(__self__, "registration_type", registration_type)
364
370
  if software_source_ids is not None:
@@ -371,6 +377,8 @@ class _ProfileState:
371
377
  pulumi.set(__self__, "system_tags", system_tags)
372
378
  if time_created is not None:
373
379
  pulumi.set(__self__, "time_created", time_created)
380
+ if time_modified is not None:
381
+ pulumi.set(__self__, "time_modified", time_modified)
374
382
  if vendor_name is not None:
375
383
  pulumi.set(__self__, "vendor_name", vendor_name)
376
384
 
@@ -426,7 +434,7 @@ class _ProfileState:
426
434
  @pulumi.getter(name="displayName")
427
435
  def display_name(self) -> Optional[pulumi.Input[str]]:
428
436
  """
429
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
437
+ (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
430
438
  """
431
439
  return pulumi.get(self, "display_name")
432
440
 
@@ -534,7 +542,7 @@ class _ProfileState:
534
542
  @pulumi.getter(name="managementStationId")
535
543
  def management_station_id(self) -> Optional[pulumi.Input[str]]:
536
544
  """
537
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an instance once registered. Associating with a management station applies only to non-OCI instances.
545
+ description: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
538
546
  """
539
547
  return pulumi.get(self, "management_station_id")
540
548
 
@@ -566,6 +574,18 @@ class _ProfileState:
566
574
  def profile_type(self, value: Optional[pulumi.Input[str]]):
567
575
  pulumi.set(self, "profile_type", value)
568
576
 
577
+ @property
578
+ @pulumi.getter(name="profileVersion")
579
+ def profile_version(self) -> Optional[pulumi.Input[str]]:
580
+ """
581
+ The version of the profile. The version is automatically incremented each time the profiled is edited.
582
+ """
583
+ return pulumi.get(self, "profile_version")
584
+
585
+ @profile_version.setter
586
+ def profile_version(self, value: Optional[pulumi.Input[str]]):
587
+ pulumi.set(self, "profile_version", value)
588
+
569
589
  @property
570
590
  @pulumi.getter(name="registrationType")
571
591
  def registration_type(self) -> Optional[pulumi.Input[str]]:
@@ -638,6 +658,18 @@ class _ProfileState:
638
658
  def time_created(self, value: Optional[pulumi.Input[str]]):
639
659
  pulumi.set(self, "time_created", value)
640
660
 
661
+ @property
662
+ @pulumi.getter(name="timeModified")
663
+ def time_modified(self) -> Optional[pulumi.Input[str]]:
664
+ """
665
+ The time the registration profile was last modified (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
666
+ """
667
+ return pulumi.get(self, "time_modified")
668
+
669
+ @time_modified.setter
670
+ def time_modified(self, value: Optional[pulumi.Input[str]]):
671
+ pulumi.set(self, "time_modified", value)
672
+
641
673
  @property
642
674
  @pulumi.getter(name="vendorName")
643
675
  def vendor_name(self) -> Optional[pulumi.Input[str]]:
@@ -723,12 +755,12 @@ class Profile(pulumi.CustomResource):
723
755
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the registration profile.
724
756
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
725
757
  :param pulumi.Input[str] description: (Updatable) User-specified description of the registration profile.
726
- :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
758
+ :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
727
759
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
728
760
  :param pulumi.Input[bool] is_default_profile: (Updatable) Indicates if the profile is set as the default. There is exactly one default profile for a specified architecture, OS family, registration type, and vendor. When registering an instance with the corresonding characteristics, the default profile is used, unless another profile is specified.
729
761
  :param pulumi.Input[str] lifecycle_stage_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the lifecycle stage that the instance will be associated with.
730
762
  :param pulumi.Input[str] managed_instance_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance group that the instance will join after registration.
731
- :param pulumi.Input[str] management_station_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an instance once registered. Associating with a management station applies only to non-OCI instances.
763
+ :param pulumi.Input[str] management_station_id: description: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
732
764
  :param pulumi.Input[str] os_family: The operating system family.
733
765
  :param pulumi.Input[str] profile_type: The type of profile.
734
766
  :param pulumi.Input[str] registration_type: The type of instance to register.
@@ -850,10 +882,12 @@ class Profile(pulumi.CustomResource):
850
882
  __props__.__dict__["lifecycle_environments"] = None
851
883
  __props__.__dict__["lifecycle_stages"] = None
852
884
  __props__.__dict__["managed_instance_groups"] = None
885
+ __props__.__dict__["profile_version"] = None
853
886
  __props__.__dict__["software_sources"] = None
854
887
  __props__.__dict__["state"] = None
855
888
  __props__.__dict__["system_tags"] = None
856
889
  __props__.__dict__["time_created"] = None
890
+ __props__.__dict__["time_modified"] = None
857
891
  super(Profile, __self__).__init__(
858
892
  'oci:OsManagementHub/profile:Profile',
859
893
  resource_name,
@@ -880,12 +914,14 @@ class Profile(pulumi.CustomResource):
880
914
  management_station_id: Optional[pulumi.Input[str]] = None,
881
915
  os_family: Optional[pulumi.Input[str]] = None,
882
916
  profile_type: Optional[pulumi.Input[str]] = None,
917
+ profile_version: Optional[pulumi.Input[str]] = None,
883
918
  registration_type: Optional[pulumi.Input[str]] = None,
884
919
  software_source_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
885
920
  software_sources: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ProfileSoftwareSourceArgs', 'ProfileSoftwareSourceArgsDict']]]]] = None,
886
921
  state: Optional[pulumi.Input[str]] = None,
887
922
  system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
888
923
  time_created: Optional[pulumi.Input[str]] = None,
924
+ time_modified: Optional[pulumi.Input[str]] = None,
889
925
  vendor_name: Optional[pulumi.Input[str]] = None) -> 'Profile':
890
926
  """
891
927
  Get an existing Profile resource's state with the given name, id, and optional extra
@@ -898,7 +934,7 @@ class Profile(pulumi.CustomResource):
898
934
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the registration profile.
899
935
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
900
936
  :param pulumi.Input[str] description: (Updatable) User-specified description of the registration profile.
901
- :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
937
+ :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
902
938
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
903
939
  :param pulumi.Input[bool] is_default_profile: (Updatable) Indicates if the profile is set as the default. There is exactly one default profile for a specified architecture, OS family, registration type, and vendor. When registering an instance with the corresonding characteristics, the default profile is used, unless another profile is specified.
904
940
  :param pulumi.Input[bool] is_service_provided_profile: Indicates if the profile was created by the service. OS Management Hub provides a limited set of standardized profiles that can be used to register Autonomous Linux or Windows instances.
@@ -907,15 +943,17 @@ class Profile(pulumi.CustomResource):
907
943
  :param pulumi.Input[Sequence[pulumi.Input[Union['ProfileLifecycleStageArgs', 'ProfileLifecycleStageArgsDict']]]] lifecycle_stages: Provides identifying information for the specified lifecycle stage.
908
944
  :param pulumi.Input[str] managed_instance_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance group that the instance will join after registration.
909
945
  :param pulumi.Input[Sequence[pulumi.Input[Union['ProfileManagedInstanceGroupArgs', 'ProfileManagedInstanceGroupArgsDict']]]] managed_instance_groups: Provides identifying information for the specified managed instance group.
910
- :param pulumi.Input[str] management_station_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an instance once registered. Associating with a management station applies only to non-OCI instances.
946
+ :param pulumi.Input[str] management_station_id: description: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
911
947
  :param pulumi.Input[str] os_family: The operating system family.
912
948
  :param pulumi.Input[str] profile_type: The type of profile.
949
+ :param pulumi.Input[str] profile_version: The version of the profile. The version is automatically incremented each time the profiled is edited.
913
950
  :param pulumi.Input[str] registration_type: The type of instance to register.
914
951
  :param pulumi.Input[Sequence[pulumi.Input[str]]] software_source_ids: The list of software source [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) that the registration profile will use.
915
952
  :param pulumi.Input[Sequence[pulumi.Input[Union['ProfileSoftwareSourceArgs', 'ProfileSoftwareSourceArgsDict']]]] software_sources: The list of software sources that the registration profile will use.
916
953
  :param pulumi.Input[str] state: The current state of the registration profile.
917
954
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
918
955
  :param pulumi.Input[str] time_created: The time the registration profile was created (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
956
+ :param pulumi.Input[str] time_modified: The time the registration profile was last modified (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
919
957
  :param pulumi.Input[str] vendor_name: The vendor of the operating system for the instance.
920
958
 
921
959
 
@@ -942,12 +980,14 @@ class Profile(pulumi.CustomResource):
942
980
  __props__.__dict__["management_station_id"] = management_station_id
943
981
  __props__.__dict__["os_family"] = os_family
944
982
  __props__.__dict__["profile_type"] = profile_type
983
+ __props__.__dict__["profile_version"] = profile_version
945
984
  __props__.__dict__["registration_type"] = registration_type
946
985
  __props__.__dict__["software_source_ids"] = software_source_ids
947
986
  __props__.__dict__["software_sources"] = software_sources
948
987
  __props__.__dict__["state"] = state
949
988
  __props__.__dict__["system_tags"] = system_tags
950
989
  __props__.__dict__["time_created"] = time_created
990
+ __props__.__dict__["time_modified"] = time_modified
951
991
  __props__.__dict__["vendor_name"] = vendor_name
952
992
  return Profile(resource_name, opts=opts, __props__=__props__)
953
993
 
@@ -987,7 +1027,7 @@ class Profile(pulumi.CustomResource):
987
1027
  @pulumi.getter(name="displayName")
988
1028
  def display_name(self) -> pulumi.Output[str]:
989
1029
  """
990
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
1030
+ (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
991
1031
  """
992
1032
  return pulumi.get(self, "display_name")
993
1033
 
@@ -1059,7 +1099,7 @@ class Profile(pulumi.CustomResource):
1059
1099
  @pulumi.getter(name="managementStationId")
1060
1100
  def management_station_id(self) -> pulumi.Output[str]:
1061
1101
  """
1062
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an instance once registered. Associating with a management station applies only to non-OCI instances.
1102
+ description: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
1063
1103
  """
1064
1104
  return pulumi.get(self, "management_station_id")
1065
1105
 
@@ -1079,6 +1119,14 @@ class Profile(pulumi.CustomResource):
1079
1119
  """
1080
1120
  return pulumi.get(self, "profile_type")
1081
1121
 
1122
+ @property
1123
+ @pulumi.getter(name="profileVersion")
1124
+ def profile_version(self) -> pulumi.Output[str]:
1125
+ """
1126
+ The version of the profile. The version is automatically incremented each time the profiled is edited.
1127
+ """
1128
+ return pulumi.get(self, "profile_version")
1129
+
1082
1130
  @property
1083
1131
  @pulumi.getter(name="registrationType")
1084
1132
  def registration_type(self) -> pulumi.Output[str]:
@@ -1127,6 +1175,14 @@ class Profile(pulumi.CustomResource):
1127
1175
  """
1128
1176
  return pulumi.get(self, "time_created")
1129
1177
 
1178
+ @property
1179
+ @pulumi.getter(name="timeModified")
1180
+ def time_modified(self) -> pulumi.Output[str]:
1181
+ """
1182
+ The time the registration profile was last modified (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
1183
+ """
1184
+ return pulumi.get(self, "time_modified")
1185
+
1130
1186
  @property
1131
1187
  @pulumi.getter(name="vendorName")
1132
1188
  def vendor_name(self) -> pulumi.Output[str]:
@@ -0,0 +1,269 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = ['ProfileAttachLifecycleStageManagementArgs', 'ProfileAttachLifecycleStageManagement']
18
+
19
+ @pulumi.input_type
20
+ class ProfileAttachLifecycleStageManagementArgs:
21
+ def __init__(__self__, *,
22
+ lifecycle_stage_id: pulumi.Input[str],
23
+ profile_id: pulumi.Input[str]):
24
+ """
25
+ The set of arguments for constructing a ProfileAttachLifecycleStageManagement resource.
26
+ :param pulumi.Input[str] lifecycle_stage_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the lifecycle stage that the instance will be associated with.
27
+ :param pulumi.Input[str] profile_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the registration profile.
28
+
29
+
30
+ ** IMPORTANT **
31
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
32
+ """
33
+ pulumi.set(__self__, "lifecycle_stage_id", lifecycle_stage_id)
34
+ pulumi.set(__self__, "profile_id", profile_id)
35
+
36
+ @property
37
+ @pulumi.getter(name="lifecycleStageId")
38
+ def lifecycle_stage_id(self) -> pulumi.Input[str]:
39
+ """
40
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the lifecycle stage that the instance will be associated with.
41
+ """
42
+ return pulumi.get(self, "lifecycle_stage_id")
43
+
44
+ @lifecycle_stage_id.setter
45
+ def lifecycle_stage_id(self, value: pulumi.Input[str]):
46
+ pulumi.set(self, "lifecycle_stage_id", value)
47
+
48
+ @property
49
+ @pulumi.getter(name="profileId")
50
+ def profile_id(self) -> pulumi.Input[str]:
51
+ """
52
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the registration profile.
53
+
54
+
55
+ ** IMPORTANT **
56
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
57
+ """
58
+ return pulumi.get(self, "profile_id")
59
+
60
+ @profile_id.setter
61
+ def profile_id(self, value: pulumi.Input[str]):
62
+ pulumi.set(self, "profile_id", value)
63
+
64
+
65
+ @pulumi.input_type
66
+ class _ProfileAttachLifecycleStageManagementState:
67
+ def __init__(__self__, *,
68
+ lifecycle_stage_id: Optional[pulumi.Input[str]] = None,
69
+ profile_id: Optional[pulumi.Input[str]] = None):
70
+ """
71
+ Input properties used for looking up and filtering ProfileAttachLifecycleStageManagement resources.
72
+ :param pulumi.Input[str] lifecycle_stage_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the lifecycle stage that the instance will be associated with.
73
+ :param pulumi.Input[str] profile_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the registration profile.
74
+
75
+
76
+ ** IMPORTANT **
77
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
78
+ """
79
+ if lifecycle_stage_id is not None:
80
+ pulumi.set(__self__, "lifecycle_stage_id", lifecycle_stage_id)
81
+ if profile_id is not None:
82
+ pulumi.set(__self__, "profile_id", profile_id)
83
+
84
+ @property
85
+ @pulumi.getter(name="lifecycleStageId")
86
+ def lifecycle_stage_id(self) -> Optional[pulumi.Input[str]]:
87
+ """
88
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the lifecycle stage that the instance will be associated with.
89
+ """
90
+ return pulumi.get(self, "lifecycle_stage_id")
91
+
92
+ @lifecycle_stage_id.setter
93
+ def lifecycle_stage_id(self, value: Optional[pulumi.Input[str]]):
94
+ pulumi.set(self, "lifecycle_stage_id", value)
95
+
96
+ @property
97
+ @pulumi.getter(name="profileId")
98
+ def profile_id(self) -> Optional[pulumi.Input[str]]:
99
+ """
100
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the registration profile.
101
+
102
+
103
+ ** IMPORTANT **
104
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
105
+ """
106
+ return pulumi.get(self, "profile_id")
107
+
108
+ @profile_id.setter
109
+ def profile_id(self, value: Optional[pulumi.Input[str]]):
110
+ pulumi.set(self, "profile_id", value)
111
+
112
+
113
+ class ProfileAttachLifecycleStageManagement(pulumi.CustomResource):
114
+ @overload
115
+ def __init__(__self__,
116
+ resource_name: str,
117
+ opts: Optional[pulumi.ResourceOptions] = None,
118
+ lifecycle_stage_id: Optional[pulumi.Input[str]] = None,
119
+ profile_id: Optional[pulumi.Input[str]] = None,
120
+ __props__=None):
121
+ """
122
+ This resource provides the Profile Attach Lifecycle Stage Management resource in Oracle Cloud Infrastructure Os Management Hub service.
123
+
124
+ Attaches the specified lifecycle stage to a profile.
125
+
126
+ ## Example Usage
127
+
128
+ ```python
129
+ import pulumi
130
+ import pulumi_oci as oci
131
+
132
+ test_profile_attach_lifecycle_stage_management = oci.os_management_hub.ProfileAttachLifecycleStageManagement("test_profile_attach_lifecycle_stage_management",
133
+ lifecycle_stage_id=test_lifecycle_stage["id"],
134
+ profile_id=test_profile["id"])
135
+ ```
136
+
137
+ ## Import
138
+
139
+ ProfileAttachLifecycleStageManagement can be imported using the `id`, e.g.
140
+
141
+ ```sh
142
+ $ pulumi import oci:OsManagementHub/profileAttachLifecycleStageManagement:ProfileAttachLifecycleStageManagement test_profile_attach_lifecycle_stage_management "id"
143
+ ```
144
+
145
+ :param str resource_name: The name of the resource.
146
+ :param pulumi.ResourceOptions opts: Options for the resource.
147
+ :param pulumi.Input[str] lifecycle_stage_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the lifecycle stage that the instance will be associated with.
148
+ :param pulumi.Input[str] profile_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the registration profile.
149
+
150
+
151
+ ** IMPORTANT **
152
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
153
+ """
154
+ ...
155
+ @overload
156
+ def __init__(__self__,
157
+ resource_name: str,
158
+ args: ProfileAttachLifecycleStageManagementArgs,
159
+ opts: Optional[pulumi.ResourceOptions] = None):
160
+ """
161
+ This resource provides the Profile Attach Lifecycle Stage Management resource in Oracle Cloud Infrastructure Os Management Hub service.
162
+
163
+ Attaches the specified lifecycle stage to a profile.
164
+
165
+ ## Example Usage
166
+
167
+ ```python
168
+ import pulumi
169
+ import pulumi_oci as oci
170
+
171
+ test_profile_attach_lifecycle_stage_management = oci.os_management_hub.ProfileAttachLifecycleStageManagement("test_profile_attach_lifecycle_stage_management",
172
+ lifecycle_stage_id=test_lifecycle_stage["id"],
173
+ profile_id=test_profile["id"])
174
+ ```
175
+
176
+ ## Import
177
+
178
+ ProfileAttachLifecycleStageManagement can be imported using the `id`, e.g.
179
+
180
+ ```sh
181
+ $ pulumi import oci:OsManagementHub/profileAttachLifecycleStageManagement:ProfileAttachLifecycleStageManagement test_profile_attach_lifecycle_stage_management "id"
182
+ ```
183
+
184
+ :param str resource_name: The name of the resource.
185
+ :param ProfileAttachLifecycleStageManagementArgs args: The arguments to use to populate this resource's properties.
186
+ :param pulumi.ResourceOptions opts: Options for the resource.
187
+ """
188
+ ...
189
+ def __init__(__self__, resource_name: str, *args, **kwargs):
190
+ resource_args, opts = _utilities.get_resource_args_opts(ProfileAttachLifecycleStageManagementArgs, pulumi.ResourceOptions, *args, **kwargs)
191
+ if resource_args is not None:
192
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
193
+ else:
194
+ __self__._internal_init(resource_name, *args, **kwargs)
195
+
196
+ def _internal_init(__self__,
197
+ resource_name: str,
198
+ opts: Optional[pulumi.ResourceOptions] = None,
199
+ lifecycle_stage_id: Optional[pulumi.Input[str]] = None,
200
+ profile_id: Optional[pulumi.Input[str]] = None,
201
+ __props__=None):
202
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
203
+ if not isinstance(opts, pulumi.ResourceOptions):
204
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
205
+ if opts.id is None:
206
+ if __props__ is not None:
207
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
208
+ __props__ = ProfileAttachLifecycleStageManagementArgs.__new__(ProfileAttachLifecycleStageManagementArgs)
209
+
210
+ if lifecycle_stage_id is None and not opts.urn:
211
+ raise TypeError("Missing required property 'lifecycle_stage_id'")
212
+ __props__.__dict__["lifecycle_stage_id"] = lifecycle_stage_id
213
+ if profile_id is None and not opts.urn:
214
+ raise TypeError("Missing required property 'profile_id'")
215
+ __props__.__dict__["profile_id"] = profile_id
216
+ super(ProfileAttachLifecycleStageManagement, __self__).__init__(
217
+ 'oci:OsManagementHub/profileAttachLifecycleStageManagement:ProfileAttachLifecycleStageManagement',
218
+ resource_name,
219
+ __props__,
220
+ opts)
221
+
222
+ @staticmethod
223
+ def get(resource_name: str,
224
+ id: pulumi.Input[str],
225
+ opts: Optional[pulumi.ResourceOptions] = None,
226
+ lifecycle_stage_id: Optional[pulumi.Input[str]] = None,
227
+ profile_id: Optional[pulumi.Input[str]] = None) -> 'ProfileAttachLifecycleStageManagement':
228
+ """
229
+ Get an existing ProfileAttachLifecycleStageManagement resource's state with the given name, id, and optional extra
230
+ properties used to qualify the lookup.
231
+
232
+ :param str resource_name: The unique name of the resulting resource.
233
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
234
+ :param pulumi.ResourceOptions opts: Options for the resource.
235
+ :param pulumi.Input[str] lifecycle_stage_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the lifecycle stage that the instance will be associated with.
236
+ :param pulumi.Input[str] profile_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the registration profile.
237
+
238
+
239
+ ** IMPORTANT **
240
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
241
+ """
242
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
243
+
244
+ __props__ = _ProfileAttachLifecycleStageManagementState.__new__(_ProfileAttachLifecycleStageManagementState)
245
+
246
+ __props__.__dict__["lifecycle_stage_id"] = lifecycle_stage_id
247
+ __props__.__dict__["profile_id"] = profile_id
248
+ return ProfileAttachLifecycleStageManagement(resource_name, opts=opts, __props__=__props__)
249
+
250
+ @property
251
+ @pulumi.getter(name="lifecycleStageId")
252
+ def lifecycle_stage_id(self) -> pulumi.Output[str]:
253
+ """
254
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the lifecycle stage that the instance will be associated with.
255
+ """
256
+ return pulumi.get(self, "lifecycle_stage_id")
257
+
258
+ @property
259
+ @pulumi.getter(name="profileId")
260
+ def profile_id(self) -> pulumi.Output[str]:
261
+ """
262
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the registration profile.
263
+
264
+
265
+ ** IMPORTANT **
266
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
267
+ """
268
+ return pulumi.get(self, "profile_id")
269
+