pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.12.0a1728642710__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.
- pulumi_oci/__init__.py +145 -0
- pulumi_oci/analytics/analytics_instance.py +54 -5
- pulumi_oci/analytics/get_analytics_instance.py +18 -4
- pulumi_oci/analytics/outputs.py +12 -1
- pulumi_oci/core/_inputs.py +648 -159
- pulumi_oci/core/cluster_network.py +7 -7
- pulumi_oci/core/get_instance.py +29 -1
- pulumi_oci/core/get_vcn.py +15 -1
- pulumi_oci/core/get_vnic.py +15 -1
- pulumi_oci/core/instance.py +87 -0
- pulumi_oci/core/instance_configuration.py +12 -0
- pulumi_oci/core/ipsec.py +183 -23
- pulumi_oci/core/network_security_group_security_rule.py +2 -2
- pulumi_oci/core/outputs.py +709 -107
- pulumi_oci/core/service_gateway.py +13 -7
- pulumi_oci/core/vcn.py +65 -23
- pulumi_oci/core/virtual_network.py +35 -1
- pulumi_oci/core/vnic_attachment.py +2 -0
- pulumi_oci/database/_inputs.py +905 -27
- pulumi_oci/database/autonomous_database.py +48 -28
- pulumi_oci/database/autonomous_database_backup.py +12 -12
- pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
- pulumi_oci/database/autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/backup.py +12 -12
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
- pulumi_oci/database/cloud_vm_cluster.py +71 -0
- pulumi_oci/database/database.py +15 -15
- pulumi_oci/database/database_upgrade.py +12 -12
- pulumi_oci/database/db_system.py +9 -9
- pulumi_oci/database/exadata_infrastructure.py +2 -0
- pulumi_oci/database/get_autonomous_container_database.py +1 -1
- pulumi_oci/database/get_autonomous_database.py +18 -4
- pulumi_oci/database/get_autonomous_database_backup.py +3 -3
- pulumi_oci/database/get_autonomous_databases.py +88 -5
- pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
- pulumi_oci/database/get_database.py +3 -3
- pulumi_oci/database/get_pluggable_database.py +12 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/outputs.py +1431 -74
- pulumi_oci/database/pluggable_database.py +34 -0
- pulumi_oci/database/vm_cluster.py +71 -0
- pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
- pulumi_oci/datasafe/__init__.py +12 -0
- pulumi_oci/datasafe/_inputs.py +441 -0
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_sql_collection.py +392 -0
- pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
- pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
- pulumi_oci/datasafe/get_sql_collections.py +364 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
- pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
- pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
- pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
- pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
- pulumi_oci/datasafe/outputs.py +1808 -2
- pulumi_oci/desktops/_inputs.py +223 -7
- pulumi_oci/desktops/desktop_pool.py +186 -21
- pulumi_oci/desktops/get_desktop_pool.py +47 -5
- pulumi_oci/desktops/outputs.py +480 -19
- pulumi_oci/fleetappsmanagement/__init__.py +43 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
- pulumi_oci/fleetappsmanagement/fleet.py +955 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
- pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
- pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
- pulumi_oci/fleetappsmanagement/get_property.py +323 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
- pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
- pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
- pulumi_oci/fleetappsmanagement/property.py +697 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
- pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
- pulumi_oci/functions/outputs.py +11 -0
- pulumi_oci/fusionapps/_inputs.py +21 -20
- pulumi_oci/fusionapps/fusion_environment.py +2 -2
- pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
- pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
- pulumi_oci/fusionapps/outputs.py +11 -10
- pulumi_oci/integration/__init__.py +1 -0
- pulumi_oci/integration/_inputs.py +289 -2
- pulumi_oci/integration/get_integration_instance.py +65 -1
- pulumi_oci/integration/integration_instance.py +172 -0
- pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
- pulumi_oci/integration/outputs.py +587 -19
- pulumi_oci/loadbalancer/_inputs.py +20 -0
- pulumi_oci/loadbalancer/listener.py +4 -2
- pulumi_oci/loadbalancer/outputs.py +16 -2
- pulumi_oci/monitoring/_inputs.py +137 -16
- pulumi_oci/monitoring/alarm_suppression.py +164 -35
- pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
- pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
- pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
- pulumi_oci/monitoring/outputs.py +291 -18
- pulumi_oci/mysql/mysql_db_system.py +7 -7
- pulumi_oci/objectstorage/__init__.py +3 -0
- pulumi_oci/objectstorage/_inputs.py +97 -0
- pulumi_oci/objectstorage/get_object_versions.py +6 -6
- pulumi_oci/objectstorage/get_objects.py +6 -6
- pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
- pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
- pulumi_oci/objectstorage/outputs.py +258 -0
- pulumi_oci/objectstorage/private_endpoint.py +630 -0
- pulumi_oci/objectstorage/storage_object.py +7 -7
- pulumi_oci/opsi/_inputs.py +268 -114
- pulumi_oci/opsi/database_insight.py +162 -21
- pulumi_oci/opsi/exadata_insight.py +44 -0
- pulumi_oci/opsi/get_database_insight.py +40 -1
- pulumi_oci/opsi/get_host_insights.py +2 -2
- pulumi_oci/opsi/host_insight.py +0 -48
- pulumi_oci/opsi/outputs.py +405 -109
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/securityattribute/__init__.py +15 -0
- pulumi_oci/securityattribute/_inputs.py +209 -0
- pulumi_oci/securityattribute/get_security_attribute.py +262 -0
- pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
- pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
- pulumi_oci/securityattribute/get_security_attributes.py +169 -0
- pulumi_oci/securityattribute/outputs.py +466 -0
- pulumi_oci/securityattribute/security_attribute.py +588 -0
- pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
- pulumi_oci/stackmonitoring/__init__.py +5 -0
- pulumi_oci/stackmonitoring/_inputs.py +330 -0
- pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
- pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
- pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
- pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
- pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
- pulumi_oci/stackmonitoring/outputs.py +603 -0
- pulumi_oci/zpr/__init__.py +14 -0
- pulumi_oci/zpr/_inputs.py +79 -0
- pulumi_oci/zpr/configuration.py +516 -0
- pulumi_oci/zpr/get_configuration.py +230 -0
- pulumi_oci/zpr/get_zpr_policies.py +191 -0
- pulumi_oci/zpr/get_zpr_policy.py +264 -0
- pulumi_oci/zpr/outputs.py +203 -0
- pulumi_oci/zpr/zpr_policy.py +614 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,7 @@ class GetFusionEnvironmentRefreshActivityResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getFusionEnvironmentRefreshActivity.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, display_name=None, fusion_environment_id=None, id=None, lifecycle_details=None, refresh_activity_id=None, refresh_issue_details_lists=None, service_availability=None, source_fusion_environment_id=None, state=None, time_accepted=None, time_expected_finish=None, time_finished=None, time_of_restoration_point=None, time_updated=None):
|
30
|
+
def __init__(__self__, display_name=None, fusion_environment_id=None, id=None, is_data_masking_opted=None, lifecycle_details=None, refresh_activity_id=None, refresh_issue_details_lists=None, service_availability=None, source_fusion_environment_id=None, state=None, time_accepted=None, time_expected_finish=None, time_finished=None, time_of_restoration_point=None, time_updated=None):
|
31
31
|
if display_name and not isinstance(display_name, str):
|
32
32
|
raise TypeError("Expected argument 'display_name' to be a str")
|
33
33
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -37,6 +37,9 @@ class GetFusionEnvironmentRefreshActivityResult:
|
|
37
37
|
if id and not isinstance(id, str):
|
38
38
|
raise TypeError("Expected argument 'id' to be a str")
|
39
39
|
pulumi.set(__self__, "id", id)
|
40
|
+
if is_data_masking_opted and not isinstance(is_data_masking_opted, bool):
|
41
|
+
raise TypeError("Expected argument 'is_data_masking_opted' to be a bool")
|
42
|
+
pulumi.set(__self__, "is_data_masking_opted", is_data_masking_opted)
|
40
43
|
if lifecycle_details and not isinstance(lifecycle_details, str):
|
41
44
|
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
42
45
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
@@ -92,6 +95,14 @@ class GetFusionEnvironmentRefreshActivityResult:
|
|
92
95
|
"""
|
93
96
|
return pulumi.get(self, "id")
|
94
97
|
|
98
|
+
@property
|
99
|
+
@pulumi.getter(name="isDataMaskingOpted")
|
100
|
+
def is_data_masking_opted(self) -> bool:
|
101
|
+
"""
|
102
|
+
Represents if the customer opted for Data Masking or not during refreshActivity.
|
103
|
+
"""
|
104
|
+
return pulumi.get(self, "is_data_masking_opted")
|
105
|
+
|
95
106
|
@property
|
96
107
|
@pulumi.getter(name="lifecycleDetails")
|
97
108
|
def lifecycle_details(self) -> str:
|
@@ -187,6 +198,7 @@ class AwaitableGetFusionEnvironmentRefreshActivityResult(GetFusionEnvironmentRef
|
|
187
198
|
display_name=self.display_name,
|
188
199
|
fusion_environment_id=self.fusion_environment_id,
|
189
200
|
id=self.id,
|
201
|
+
is_data_masking_opted=self.is_data_masking_opted,
|
190
202
|
lifecycle_details=self.lifecycle_details,
|
191
203
|
refresh_activity_id=self.refresh_activity_id,
|
192
204
|
refresh_issue_details_lists=self.refresh_issue_details_lists,
|
@@ -232,6 +244,7 @@ def get_fusion_environment_refresh_activity(fusion_environment_id: Optional[str]
|
|
232
244
|
display_name=pulumi.get(__ret__, 'display_name'),
|
233
245
|
fusion_environment_id=pulumi.get(__ret__, 'fusion_environment_id'),
|
234
246
|
id=pulumi.get(__ret__, 'id'),
|
247
|
+
is_data_masking_opted=pulumi.get(__ret__, 'is_data_masking_opted'),
|
235
248
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
236
249
|
refresh_activity_id=pulumi.get(__ret__, 'refresh_activity_id'),
|
237
250
|
refresh_issue_details_lists=pulumi.get(__ret__, 'refresh_issue_details_lists'),
|
@@ -274,6 +287,7 @@ def get_fusion_environment_refresh_activity_output(fusion_environment_id: Option
|
|
274
287
|
display_name=pulumi.get(__response__, 'display_name'),
|
275
288
|
fusion_environment_id=pulumi.get(__response__, 'fusion_environment_id'),
|
276
289
|
id=pulumi.get(__response__, 'id'),
|
290
|
+
is_data_masking_opted=pulumi.get(__response__, 'is_data_masking_opted'),
|
277
291
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
278
292
|
refresh_activity_id=pulumi.get(__response__, 'refresh_activity_id'),
|
279
293
|
refresh_issue_details_lists=pulumi.get(__response__, 'refresh_issue_details_lists'),
|
pulumi_oci/functions/outputs.py
CHANGED
@@ -2166,6 +2166,7 @@ class GetFusionEnvironmentRefreshActivitiesRefreshActivityCollectionItemResult(d
|
|
2166
2166
|
display_name: str,
|
2167
2167
|
fusion_environment_id: str,
|
2168
2168
|
id: str,
|
2169
|
+
is_data_masking_opted: bool,
|
2169
2170
|
lifecycle_details: str,
|
2170
2171
|
refresh_activity_id: str,
|
2171
2172
|
refresh_issue_details_lists: Sequence['outputs.GetFusionEnvironmentRefreshActivitiesRefreshActivityCollectionItemRefreshIssueDetailsListResult'],
|
@@ -2181,6 +2182,7 @@ class GetFusionEnvironmentRefreshActivitiesRefreshActivityCollectionItemResult(d
|
|
2181
2182
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
2182
2183
|
:param str fusion_environment_id: unique FusionEnvironment identifier
|
2183
2184
|
:param str id: The unique identifier (OCID) of the refresh activity. Can't be changed after creation.
|
2185
|
+
:param bool is_data_masking_opted: Represents if the customer opted for Data Masking or not during refreshActivity.
|
2184
2186
|
:param str lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
2185
2187
|
:param Sequence['GetFusionEnvironmentRefreshActivitiesRefreshActivityCollectionItemRefreshIssueDetailsListArgs'] refresh_issue_details_lists: Details of refresh investigation information, each item represents a different issue.
|
2186
2188
|
:param str service_availability: Service availability / impact during refresh activity execution up down
|
@@ -2195,6 +2197,7 @@ class GetFusionEnvironmentRefreshActivitiesRefreshActivityCollectionItemResult(d
|
|
2195
2197
|
pulumi.set(__self__, "display_name", display_name)
|
2196
2198
|
pulumi.set(__self__, "fusion_environment_id", fusion_environment_id)
|
2197
2199
|
pulumi.set(__self__, "id", id)
|
2200
|
+
pulumi.set(__self__, "is_data_masking_opted", is_data_masking_opted)
|
2198
2201
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
2199
2202
|
pulumi.set(__self__, "refresh_activity_id", refresh_activity_id)
|
2200
2203
|
pulumi.set(__self__, "refresh_issue_details_lists", refresh_issue_details_lists)
|
@@ -2231,6 +2234,14 @@ class GetFusionEnvironmentRefreshActivitiesRefreshActivityCollectionItemResult(d
|
|
2231
2234
|
"""
|
2232
2235
|
return pulumi.get(self, "id")
|
2233
2236
|
|
2237
|
+
@property
|
2238
|
+
@pulumi.getter(name="isDataMaskingOpted")
|
2239
|
+
def is_data_masking_opted(self) -> bool:
|
2240
|
+
"""
|
2241
|
+
Represents if the customer opted for Data Masking or not during refreshActivity.
|
2242
|
+
"""
|
2243
|
+
return pulumi.get(self, "is_data_masking_opted")
|
2244
|
+
|
2234
2245
|
@property
|
2235
2246
|
@pulumi.getter(name="lifecycleDetails")
|
2236
2247
|
def lifecycle_details(self) -> str:
|
pulumi_oci/fusionapps/_inputs.py
CHANGED
@@ -157,14 +157,14 @@ if not MYPY:
|
|
157
157
|
"""
|
158
158
|
The administrator's last name.
|
159
159
|
"""
|
160
|
-
password: pulumi.Input[str]
|
161
|
-
"""
|
162
|
-
The password for the administrator.
|
163
|
-
"""
|
164
160
|
username: pulumi.Input[str]
|
165
161
|
"""
|
166
162
|
The username for the administrator.
|
167
163
|
"""
|
164
|
+
password: NotRequired[pulumi.Input[str]]
|
165
|
+
"""
|
166
|
+
The password for the administrator.
|
167
|
+
"""
|
168
168
|
elif False:
|
169
169
|
FusionEnvironmentCreateFusionEnvironmentAdminUserDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
170
170
|
|
@@ -174,20 +174,21 @@ class FusionEnvironmentCreateFusionEnvironmentAdminUserDetailsArgs:
|
|
174
174
|
email_address: pulumi.Input[str],
|
175
175
|
first_name: pulumi.Input[str],
|
176
176
|
last_name: pulumi.Input[str],
|
177
|
-
|
178
|
-
|
177
|
+
username: pulumi.Input[str],
|
178
|
+
password: Optional[pulumi.Input[str]] = None):
|
179
179
|
"""
|
180
180
|
:param pulumi.Input[str] email_address: The email address for the administrator.
|
181
181
|
:param pulumi.Input[str] first_name: The administrator's first name.
|
182
182
|
:param pulumi.Input[str] last_name: The administrator's last name.
|
183
|
-
:param pulumi.Input[str] password: The password for the administrator.
|
184
183
|
:param pulumi.Input[str] username: The username for the administrator.
|
184
|
+
:param pulumi.Input[str] password: The password for the administrator.
|
185
185
|
"""
|
186
186
|
pulumi.set(__self__, "email_address", email_address)
|
187
187
|
pulumi.set(__self__, "first_name", first_name)
|
188
188
|
pulumi.set(__self__, "last_name", last_name)
|
189
|
-
pulumi.set(__self__, "password", password)
|
190
189
|
pulumi.set(__self__, "username", username)
|
190
|
+
if password is not None:
|
191
|
+
pulumi.set(__self__, "password", password)
|
191
192
|
|
192
193
|
@property
|
193
194
|
@pulumi.getter(name="emailAddress")
|
@@ -225,18 +226,6 @@ class FusionEnvironmentCreateFusionEnvironmentAdminUserDetailsArgs:
|
|
225
226
|
def last_name(self, value: pulumi.Input[str]):
|
226
227
|
pulumi.set(self, "last_name", value)
|
227
228
|
|
228
|
-
@property
|
229
|
-
@pulumi.getter
|
230
|
-
def password(self) -> pulumi.Input[str]:
|
231
|
-
"""
|
232
|
-
The password for the administrator.
|
233
|
-
"""
|
234
|
-
return pulumi.get(self, "password")
|
235
|
-
|
236
|
-
@password.setter
|
237
|
-
def password(self, value: pulumi.Input[str]):
|
238
|
-
pulumi.set(self, "password", value)
|
239
|
-
|
240
229
|
@property
|
241
230
|
@pulumi.getter
|
242
231
|
def username(self) -> pulumi.Input[str]:
|
@@ -249,6 +238,18 @@ class FusionEnvironmentCreateFusionEnvironmentAdminUserDetailsArgs:
|
|
249
238
|
def username(self, value: pulumi.Input[str]):
|
250
239
|
pulumi.set(self, "username", value)
|
251
240
|
|
241
|
+
@property
|
242
|
+
@pulumi.getter
|
243
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
244
|
+
"""
|
245
|
+
The password for the administrator.
|
246
|
+
"""
|
247
|
+
return pulumi.get(self, "password")
|
248
|
+
|
249
|
+
@password.setter
|
250
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
251
|
+
pulumi.set(self, "password", value)
|
252
|
+
|
252
253
|
|
253
254
|
if not MYPY:
|
254
255
|
class FusionEnvironmentFamilyFamilyMaintenancePolicyArgsDict(TypedDict):
|
@@ -704,8 +704,8 @@ class FusionEnvironment(pulumi.CustomResource):
|
|
704
704
|
"email_address": fusion_environment_create_fusion_environment_admin_user_details_email_address,
|
705
705
|
"first_name": fusion_environment_create_fusion_environment_admin_user_details_first_name,
|
706
706
|
"last_name": fusion_environment_create_fusion_environment_admin_user_details_last_name,
|
707
|
-
"password": fusion_environment_create_fusion_environment_admin_user_details_password,
|
708
707
|
"username": fusion_environment_create_fusion_environment_admin_user_details_username,
|
708
|
+
"password": fusion_environment_create_fusion_environment_admin_user_details_password,
|
709
709
|
},
|
710
710
|
display_name=fusion_environment_display_name,
|
711
711
|
fusion_environment_family_id=test_fusion_environment_family["id"],
|
@@ -779,8 +779,8 @@ class FusionEnvironment(pulumi.CustomResource):
|
|
779
779
|
"email_address": fusion_environment_create_fusion_environment_admin_user_details_email_address,
|
780
780
|
"first_name": fusion_environment_create_fusion_environment_admin_user_details_first_name,
|
781
781
|
"last_name": fusion_environment_create_fusion_environment_admin_user_details_last_name,
|
782
|
-
"password": fusion_environment_create_fusion_environment_admin_user_details_password,
|
783
782
|
"username": fusion_environment_create_fusion_environment_admin_user_details_username,
|
783
|
+
"password": fusion_environment_create_fusion_environment_admin_user_details_password,
|
784
784
|
},
|
785
785
|
display_name=fusion_environment_display_name,
|
786
786
|
fusion_environment_family_id=test_fusion_environment_family["id"],
|
@@ -25,27 +25,28 @@ class FusionEnvironmentAdminUserArgs:
|
|
25
25
|
first_name: pulumi.Input[str],
|
26
26
|
fusion_environment_id: pulumi.Input[str],
|
27
27
|
last_name: pulumi.Input[str],
|
28
|
-
|
29
|
-
|
28
|
+
username: pulumi.Input[str],
|
29
|
+
password: Optional[pulumi.Input[str]] = None):
|
30
30
|
"""
|
31
31
|
The set of arguments for constructing a FusionEnvironmentAdminUser resource.
|
32
32
|
:param pulumi.Input[str] email_address: The email address for the administrator.
|
33
33
|
:param pulumi.Input[str] first_name: The administrator's first name.
|
34
34
|
:param pulumi.Input[str] fusion_environment_id: unique FusionEnvironment identifier
|
35
35
|
:param pulumi.Input[str] last_name: The administrator's last name.
|
36
|
-
:param pulumi.Input[str] password: The password for the administrator.
|
37
36
|
:param pulumi.Input[str] username: The username for the administrator.
|
38
37
|
|
39
38
|
|
40
39
|
** IMPORTANT **
|
41
40
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
41
|
+
:param pulumi.Input[str] password: The password for the administrator.
|
42
42
|
"""
|
43
43
|
pulumi.set(__self__, "email_address", email_address)
|
44
44
|
pulumi.set(__self__, "first_name", first_name)
|
45
45
|
pulumi.set(__self__, "fusion_environment_id", fusion_environment_id)
|
46
46
|
pulumi.set(__self__, "last_name", last_name)
|
47
|
-
pulumi.set(__self__, "password", password)
|
48
47
|
pulumi.set(__self__, "username", username)
|
48
|
+
if password is not None:
|
49
|
+
pulumi.set(__self__, "password", password)
|
49
50
|
|
50
51
|
@property
|
51
52
|
@pulumi.getter(name="emailAddress")
|
@@ -95,18 +96,6 @@ class FusionEnvironmentAdminUserArgs:
|
|
95
96
|
def last_name(self, value: pulumi.Input[str]):
|
96
97
|
pulumi.set(self, "last_name", value)
|
97
98
|
|
98
|
-
@property
|
99
|
-
@pulumi.getter
|
100
|
-
def password(self) -> pulumi.Input[str]:
|
101
|
-
"""
|
102
|
-
The password for the administrator.
|
103
|
-
"""
|
104
|
-
return pulumi.get(self, "password")
|
105
|
-
|
106
|
-
@password.setter
|
107
|
-
def password(self, value: pulumi.Input[str]):
|
108
|
-
pulumi.set(self, "password", value)
|
109
|
-
|
110
99
|
@property
|
111
100
|
@pulumi.getter
|
112
101
|
def username(self) -> pulumi.Input[str]:
|
@@ -123,6 +112,18 @@ class FusionEnvironmentAdminUserArgs:
|
|
123
112
|
def username(self, value: pulumi.Input[str]):
|
124
113
|
pulumi.set(self, "username", value)
|
125
114
|
|
115
|
+
@property
|
116
|
+
@pulumi.getter
|
117
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
118
|
+
"""
|
119
|
+
The password for the administrator.
|
120
|
+
"""
|
121
|
+
return pulumi.get(self, "password")
|
122
|
+
|
123
|
+
@password.setter
|
124
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
125
|
+
pulumi.set(self, "password", value)
|
126
|
+
|
126
127
|
|
127
128
|
@pulumi.input_type
|
128
129
|
class _FusionEnvironmentAdminUserState:
|
@@ -280,8 +281,8 @@ class FusionEnvironmentAdminUser(pulumi.CustomResource):
|
|
280
281
|
first_name=fusion_environment_admin_user_first_name,
|
281
282
|
fusion_environment_id=test_fusion_environment["id"],
|
282
283
|
last_name=fusion_environment_admin_user_last_name,
|
283
|
-
|
284
|
-
|
284
|
+
username=fusion_environment_admin_user_username,
|
285
|
+
password=fusion_environment_admin_user_password)
|
285
286
|
```
|
286
287
|
|
287
288
|
## Import
|
@@ -327,8 +328,8 @@ class FusionEnvironmentAdminUser(pulumi.CustomResource):
|
|
327
328
|
first_name=fusion_environment_admin_user_first_name,
|
328
329
|
fusion_environment_id=test_fusion_environment["id"],
|
329
330
|
last_name=fusion_environment_admin_user_last_name,
|
330
|
-
|
331
|
-
|
331
|
+
username=fusion_environment_admin_user_username,
|
332
|
+
password=fusion_environment_admin_user_password)
|
332
333
|
```
|
333
334
|
|
334
335
|
## Import
|
@@ -381,8 +382,6 @@ class FusionEnvironmentAdminUser(pulumi.CustomResource):
|
|
381
382
|
if last_name is None and not opts.urn:
|
382
383
|
raise TypeError("Missing required property 'last_name'")
|
383
384
|
__props__.__dict__["last_name"] = last_name
|
384
|
-
if password is None and not opts.urn:
|
385
|
-
raise TypeError("Missing required property 'password'")
|
386
385
|
__props__.__dict__["password"] = None if password is None else pulumi.Output.secret(password)
|
387
386
|
if username is None and not opts.urn:
|
388
387
|
raise TypeError("Missing required property 'username'")
|
@@ -22,18 +22,18 @@ __all__ = ['FusionEnvironmentRefreshActivityArgs', 'FusionEnvironmentRefreshActi
|
|
22
22
|
class FusionEnvironmentRefreshActivityArgs:
|
23
23
|
def __init__(__self__, *,
|
24
24
|
fusion_environment_id: pulumi.Input[str],
|
25
|
-
source_fusion_environment_id: pulumi.Input[str]
|
25
|
+
source_fusion_environment_id: pulumi.Input[str],
|
26
|
+
is_data_masking_opted: Optional[pulumi.Input[bool]] = None):
|
26
27
|
"""
|
27
28
|
The set of arguments for constructing a FusionEnvironmentRefreshActivity resource.
|
28
29
|
:param pulumi.Input[str] fusion_environment_id: unique FusionEnvironment identifier
|
29
30
|
:param pulumi.Input[str] source_fusion_environment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source environment
|
30
|
-
|
31
|
-
|
32
|
-
** IMPORTANT **
|
33
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
31
|
+
:param pulumi.Input[bool] is_data_masking_opted: Represents if the customer opted for Data Masking or not during refreshActivity.
|
34
32
|
"""
|
35
33
|
pulumi.set(__self__, "fusion_environment_id", fusion_environment_id)
|
36
34
|
pulumi.set(__self__, "source_fusion_environment_id", source_fusion_environment_id)
|
35
|
+
if is_data_masking_opted is not None:
|
36
|
+
pulumi.set(__self__, "is_data_masking_opted", is_data_masking_opted)
|
37
37
|
|
38
38
|
@property
|
39
39
|
@pulumi.getter(name="fusionEnvironmentId")
|
@@ -52,10 +52,6 @@ class FusionEnvironmentRefreshActivityArgs:
|
|
52
52
|
def source_fusion_environment_id(self) -> pulumi.Input[str]:
|
53
53
|
"""
|
54
54
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source environment
|
55
|
-
|
56
|
-
|
57
|
-
** IMPORTANT **
|
58
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
59
55
|
"""
|
60
56
|
return pulumi.get(self, "source_fusion_environment_id")
|
61
57
|
|
@@ -63,12 +59,25 @@ class FusionEnvironmentRefreshActivityArgs:
|
|
63
59
|
def source_fusion_environment_id(self, value: pulumi.Input[str]):
|
64
60
|
pulumi.set(self, "source_fusion_environment_id", value)
|
65
61
|
|
62
|
+
@property
|
63
|
+
@pulumi.getter(name="isDataMaskingOpted")
|
64
|
+
def is_data_masking_opted(self) -> Optional[pulumi.Input[bool]]:
|
65
|
+
"""
|
66
|
+
Represents if the customer opted for Data Masking or not during refreshActivity.
|
67
|
+
"""
|
68
|
+
return pulumi.get(self, "is_data_masking_opted")
|
69
|
+
|
70
|
+
@is_data_masking_opted.setter
|
71
|
+
def is_data_masking_opted(self, value: Optional[pulumi.Input[bool]]):
|
72
|
+
pulumi.set(self, "is_data_masking_opted", value)
|
73
|
+
|
66
74
|
|
67
75
|
@pulumi.input_type
|
68
76
|
class _FusionEnvironmentRefreshActivityState:
|
69
77
|
def __init__(__self__, *,
|
70
78
|
display_name: Optional[pulumi.Input[str]] = None,
|
71
79
|
fusion_environment_id: Optional[pulumi.Input[str]] = None,
|
80
|
+
is_data_masking_opted: Optional[pulumi.Input[bool]] = None,
|
72
81
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
73
82
|
refresh_activity_id: Optional[pulumi.Input[str]] = None,
|
74
83
|
refresh_issue_details_lists: Optional[pulumi.Input[Sequence[pulumi.Input['FusionEnvironmentRefreshActivityRefreshIssueDetailsListArgs']]]] = None,
|
@@ -84,14 +93,11 @@ class _FusionEnvironmentRefreshActivityState:
|
|
84
93
|
Input properties used for looking up and filtering FusionEnvironmentRefreshActivity resources.
|
85
94
|
:param pulumi.Input[str] display_name: A friendly name for the refresh activity. Can be changed later.
|
86
95
|
:param pulumi.Input[str] fusion_environment_id: unique FusionEnvironment identifier
|
96
|
+
:param pulumi.Input[bool] is_data_masking_opted: Represents if the customer opted for Data Masking or not during refreshActivity.
|
87
97
|
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
88
98
|
:param pulumi.Input[Sequence[pulumi.Input['FusionEnvironmentRefreshActivityRefreshIssueDetailsListArgs']]] refresh_issue_details_lists: Details of refresh investigation information, each item represents a different issue.
|
89
99
|
:param pulumi.Input[str] service_availability: Service availability / impact during refresh activity execution up down
|
90
100
|
:param pulumi.Input[str] source_fusion_environment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source environment
|
91
|
-
|
92
|
-
|
93
|
-
** IMPORTANT **
|
94
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
95
101
|
:param pulumi.Input[str] state: The current state of the refreshActivity.
|
96
102
|
:param pulumi.Input[str] time_accepted: The time the refresh activity record was created. An RFC3339 formatted datetime string.
|
97
103
|
:param pulumi.Input[str] time_expected_finish: The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string.
|
@@ -103,6 +109,8 @@ class _FusionEnvironmentRefreshActivityState:
|
|
103
109
|
pulumi.set(__self__, "display_name", display_name)
|
104
110
|
if fusion_environment_id is not None:
|
105
111
|
pulumi.set(__self__, "fusion_environment_id", fusion_environment_id)
|
112
|
+
if is_data_masking_opted is not None:
|
113
|
+
pulumi.set(__self__, "is_data_masking_opted", is_data_masking_opted)
|
106
114
|
if lifecycle_details is not None:
|
107
115
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
108
116
|
if refresh_activity_id is not None:
|
@@ -150,6 +158,18 @@ class _FusionEnvironmentRefreshActivityState:
|
|
150
158
|
def fusion_environment_id(self, value: Optional[pulumi.Input[str]]):
|
151
159
|
pulumi.set(self, "fusion_environment_id", value)
|
152
160
|
|
161
|
+
@property
|
162
|
+
@pulumi.getter(name="isDataMaskingOpted")
|
163
|
+
def is_data_masking_opted(self) -> Optional[pulumi.Input[bool]]:
|
164
|
+
"""
|
165
|
+
Represents if the customer opted for Data Masking or not during refreshActivity.
|
166
|
+
"""
|
167
|
+
return pulumi.get(self, "is_data_masking_opted")
|
168
|
+
|
169
|
+
@is_data_masking_opted.setter
|
170
|
+
def is_data_masking_opted(self, value: Optional[pulumi.Input[bool]]):
|
171
|
+
pulumi.set(self, "is_data_masking_opted", value)
|
172
|
+
|
153
173
|
@property
|
154
174
|
@pulumi.getter(name="lifecycleDetails")
|
155
175
|
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
@@ -200,10 +220,6 @@ class _FusionEnvironmentRefreshActivityState:
|
|
200
220
|
def source_fusion_environment_id(self) -> Optional[pulumi.Input[str]]:
|
201
221
|
"""
|
202
222
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source environment
|
203
|
-
|
204
|
-
|
205
|
-
** IMPORTANT **
|
206
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
207
223
|
"""
|
208
224
|
return pulumi.get(self, "source_fusion_environment_id")
|
209
225
|
|
@@ -290,6 +306,7 @@ class FusionEnvironmentRefreshActivity(pulumi.CustomResource):
|
|
290
306
|
resource_name: str,
|
291
307
|
opts: Optional[pulumi.ResourceOptions] = None,
|
292
308
|
fusion_environment_id: Optional[pulumi.Input[str]] = None,
|
309
|
+
is_data_masking_opted: Optional[pulumi.Input[bool]] = None,
|
293
310
|
source_fusion_environment_id: Optional[pulumi.Input[str]] = None,
|
294
311
|
__props__=None):
|
295
312
|
"""
|
@@ -297,17 +314,6 @@ class FusionEnvironmentRefreshActivity(pulumi.CustomResource):
|
|
297
314
|
|
298
315
|
Creates a new RefreshActivity.
|
299
316
|
|
300
|
-
## Example Usage
|
301
|
-
|
302
|
-
```python
|
303
|
-
import pulumi
|
304
|
-
import pulumi_oci as oci
|
305
|
-
|
306
|
-
test_fusion_environment_refresh_activity = oci.fusion_apps.FusionEnvironmentRefreshActivity("test_fusion_environment_refresh_activity",
|
307
|
-
fusion_environment_id=test_fusion_environment["id"],
|
308
|
-
source_fusion_environment_id=test_fusion_environment["id"])
|
309
|
-
```
|
310
|
-
|
311
317
|
## Import
|
312
318
|
|
313
319
|
FusionEnvironmentRefreshActivities can be imported using the `id`, e.g.
|
@@ -319,11 +325,8 @@ class FusionEnvironmentRefreshActivity(pulumi.CustomResource):
|
|
319
325
|
:param str resource_name: The name of the resource.
|
320
326
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
321
327
|
:param pulumi.Input[str] fusion_environment_id: unique FusionEnvironment identifier
|
328
|
+
:param pulumi.Input[bool] is_data_masking_opted: Represents if the customer opted for Data Masking or not during refreshActivity.
|
322
329
|
:param pulumi.Input[str] source_fusion_environment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source environment
|
323
|
-
|
324
|
-
|
325
|
-
** IMPORTANT **
|
326
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
327
330
|
"""
|
328
331
|
...
|
329
332
|
@overload
|
@@ -336,17 +339,6 @@ class FusionEnvironmentRefreshActivity(pulumi.CustomResource):
|
|
336
339
|
|
337
340
|
Creates a new RefreshActivity.
|
338
341
|
|
339
|
-
## Example Usage
|
340
|
-
|
341
|
-
```python
|
342
|
-
import pulumi
|
343
|
-
import pulumi_oci as oci
|
344
|
-
|
345
|
-
test_fusion_environment_refresh_activity = oci.fusion_apps.FusionEnvironmentRefreshActivity("test_fusion_environment_refresh_activity",
|
346
|
-
fusion_environment_id=test_fusion_environment["id"],
|
347
|
-
source_fusion_environment_id=test_fusion_environment["id"])
|
348
|
-
```
|
349
|
-
|
350
342
|
## Import
|
351
343
|
|
352
344
|
FusionEnvironmentRefreshActivities can be imported using the `id`, e.g.
|
@@ -371,6 +363,7 @@ class FusionEnvironmentRefreshActivity(pulumi.CustomResource):
|
|
371
363
|
resource_name: str,
|
372
364
|
opts: Optional[pulumi.ResourceOptions] = None,
|
373
365
|
fusion_environment_id: Optional[pulumi.Input[str]] = None,
|
366
|
+
is_data_masking_opted: Optional[pulumi.Input[bool]] = None,
|
374
367
|
source_fusion_environment_id: Optional[pulumi.Input[str]] = None,
|
375
368
|
__props__=None):
|
376
369
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -384,6 +377,7 @@ class FusionEnvironmentRefreshActivity(pulumi.CustomResource):
|
|
384
377
|
if fusion_environment_id is None and not opts.urn:
|
385
378
|
raise TypeError("Missing required property 'fusion_environment_id'")
|
386
379
|
__props__.__dict__["fusion_environment_id"] = fusion_environment_id
|
380
|
+
__props__.__dict__["is_data_masking_opted"] = is_data_masking_opted
|
387
381
|
if source_fusion_environment_id is None and not opts.urn:
|
388
382
|
raise TypeError("Missing required property 'source_fusion_environment_id'")
|
389
383
|
__props__.__dict__["source_fusion_environment_id"] = source_fusion_environment_id
|
@@ -410,6 +404,7 @@ class FusionEnvironmentRefreshActivity(pulumi.CustomResource):
|
|
410
404
|
opts: Optional[pulumi.ResourceOptions] = None,
|
411
405
|
display_name: Optional[pulumi.Input[str]] = None,
|
412
406
|
fusion_environment_id: Optional[pulumi.Input[str]] = None,
|
407
|
+
is_data_masking_opted: Optional[pulumi.Input[bool]] = None,
|
413
408
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
414
409
|
refresh_activity_id: Optional[pulumi.Input[str]] = None,
|
415
410
|
refresh_issue_details_lists: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FusionEnvironmentRefreshActivityRefreshIssueDetailsListArgs', 'FusionEnvironmentRefreshActivityRefreshIssueDetailsListArgsDict']]]]] = None,
|
@@ -430,14 +425,11 @@ class FusionEnvironmentRefreshActivity(pulumi.CustomResource):
|
|
430
425
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
431
426
|
:param pulumi.Input[str] display_name: A friendly name for the refresh activity. Can be changed later.
|
432
427
|
:param pulumi.Input[str] fusion_environment_id: unique FusionEnvironment identifier
|
428
|
+
:param pulumi.Input[bool] is_data_masking_opted: Represents if the customer opted for Data Masking or not during refreshActivity.
|
433
429
|
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
434
430
|
:param pulumi.Input[Sequence[pulumi.Input[Union['FusionEnvironmentRefreshActivityRefreshIssueDetailsListArgs', 'FusionEnvironmentRefreshActivityRefreshIssueDetailsListArgsDict']]]] refresh_issue_details_lists: Details of refresh investigation information, each item represents a different issue.
|
435
431
|
:param pulumi.Input[str] service_availability: Service availability / impact during refresh activity execution up down
|
436
432
|
:param pulumi.Input[str] source_fusion_environment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source environment
|
437
|
-
|
438
|
-
|
439
|
-
** IMPORTANT **
|
440
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
441
433
|
:param pulumi.Input[str] state: The current state of the refreshActivity.
|
442
434
|
:param pulumi.Input[str] time_accepted: The time the refresh activity record was created. An RFC3339 formatted datetime string.
|
443
435
|
:param pulumi.Input[str] time_expected_finish: The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string.
|
@@ -451,6 +443,7 @@ class FusionEnvironmentRefreshActivity(pulumi.CustomResource):
|
|
451
443
|
|
452
444
|
__props__.__dict__["display_name"] = display_name
|
453
445
|
__props__.__dict__["fusion_environment_id"] = fusion_environment_id
|
446
|
+
__props__.__dict__["is_data_masking_opted"] = is_data_masking_opted
|
454
447
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
455
448
|
__props__.__dict__["refresh_activity_id"] = refresh_activity_id
|
456
449
|
__props__.__dict__["refresh_issue_details_lists"] = refresh_issue_details_lists
|
@@ -480,6 +473,14 @@ class FusionEnvironmentRefreshActivity(pulumi.CustomResource):
|
|
480
473
|
"""
|
481
474
|
return pulumi.get(self, "fusion_environment_id")
|
482
475
|
|
476
|
+
@property
|
477
|
+
@pulumi.getter(name="isDataMaskingOpted")
|
478
|
+
def is_data_masking_opted(self) -> pulumi.Output[bool]:
|
479
|
+
"""
|
480
|
+
Represents if the customer opted for Data Masking or not during refreshActivity.
|
481
|
+
"""
|
482
|
+
return pulumi.get(self, "is_data_masking_opted")
|
483
|
+
|
483
484
|
@property
|
484
485
|
@pulumi.getter(name="lifecycleDetails")
|
485
486
|
def lifecycle_details(self) -> pulumi.Output[str]:
|
@@ -514,10 +515,6 @@ class FusionEnvironmentRefreshActivity(pulumi.CustomResource):
|
|
514
515
|
def source_fusion_environment_id(self) -> pulumi.Output[str]:
|
515
516
|
"""
|
516
517
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source environment
|
517
|
-
|
518
|
-
|
519
|
-
** IMPORTANT **
|
520
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
521
518
|
"""
|
522
519
|
return pulumi.get(self, "source_fusion_environment_id")
|
523
520
|
|
pulumi_oci/fusionapps/outputs.py
CHANGED
@@ -139,20 +139,21 @@ class FusionEnvironmentCreateFusionEnvironmentAdminUserDetails(dict):
|
|
139
139
|
email_address: str,
|
140
140
|
first_name: str,
|
141
141
|
last_name: str,
|
142
|
-
|
143
|
-
|
142
|
+
username: str,
|
143
|
+
password: Optional[str] = None):
|
144
144
|
"""
|
145
145
|
:param str email_address: The email address for the administrator.
|
146
146
|
:param str first_name: The administrator's first name.
|
147
147
|
:param str last_name: The administrator's last name.
|
148
|
-
:param str password: The password for the administrator.
|
149
148
|
:param str username: The username for the administrator.
|
149
|
+
:param str password: The password for the administrator.
|
150
150
|
"""
|
151
151
|
pulumi.set(__self__, "email_address", email_address)
|
152
152
|
pulumi.set(__self__, "first_name", first_name)
|
153
153
|
pulumi.set(__self__, "last_name", last_name)
|
154
|
-
pulumi.set(__self__, "password", password)
|
155
154
|
pulumi.set(__self__, "username", username)
|
155
|
+
if password is not None:
|
156
|
+
pulumi.set(__self__, "password", password)
|
156
157
|
|
157
158
|
@property
|
158
159
|
@pulumi.getter(name="emailAddress")
|
@@ -180,19 +181,19 @@ class FusionEnvironmentCreateFusionEnvironmentAdminUserDetails(dict):
|
|
180
181
|
|
181
182
|
@property
|
182
183
|
@pulumi.getter
|
183
|
-
def
|
184
|
+
def username(self) -> str:
|
184
185
|
"""
|
185
|
-
The
|
186
|
+
The username for the administrator.
|
186
187
|
"""
|
187
|
-
return pulumi.get(self, "
|
188
|
+
return pulumi.get(self, "username")
|
188
189
|
|
189
190
|
@property
|
190
191
|
@pulumi.getter
|
191
|
-
def
|
192
|
+
def password(self) -> Optional[str]:
|
192
193
|
"""
|
193
|
-
The
|
194
|
+
The password for the administrator.
|
194
195
|
"""
|
195
|
-
return pulumi.get(self, "
|
196
|
+
return pulumi.get(self, "password")
|
196
197
|
|
197
198
|
|
198
199
|
@pulumi.output_type
|
@@ -8,6 +8,7 @@ import typing
|
|
8
8
|
from .get_integration_instance import *
|
9
9
|
from .get_integration_instances import *
|
10
10
|
from .integration_instance import *
|
11
|
+
from .oracle_managed_custom_endpoint import *
|
11
12
|
from .private_endpoint_outbound_connection import *
|
12
13
|
from ._inputs import *
|
13
14
|
from . import outputs
|