pulumi-oci 2.17.0__py3-none-any.whl → 2.17.0a1731653778__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 +0 -40
- pulumi_oci/core/_inputs.py +3 -3
- pulumi_oci/core/compute_capacity_reservation.py +7 -7
- pulumi_oci/core/get_boot_volume.py +1 -1
- pulumi_oci/core/get_volume.py +1 -1
- pulumi_oci/core/instance_pool.py +7 -7
- pulumi_oci/core/outputs.py +46 -46
- pulumi_oci/generativeai/__init__.py +0 -16
- pulumi_oci/generativeai/_inputs.py +0 -1090
- pulumi_oci/generativeai/outputs.py +268 -2840
- pulumi_oci/goldengate/connection.py +78 -1065
- pulumi_oci/goldengate/deployment.py +7 -7
- pulumi_oci/goldengate/deployment_backup.py +0 -49
- pulumi_oci/goldengate/get_connection.py +7 -288
- pulumi_oci/goldengate/get_deployment.py +1 -1
- pulumi_oci/goldengate/get_deployment_backup.py +1 -15
- pulumi_oci/goldengate/outputs.py +3 -240
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.17.0.dist-info → pulumi_oci-2.17.0a1731653778.dist-info}/METADATA +1 -1
- {pulumi_oci-2.17.0.dist-info → pulumi_oci-2.17.0a1731653778.dist-info}/RECORD +22 -38
- pulumi_oci/generativeai/agent_agent.py +0 -665
- pulumi_oci/generativeai/agent_agent_endpoint.py +0 -888
- pulumi_oci/generativeai/agent_data_ingestion_job.py +0 -647
- pulumi_oci/generativeai/agent_data_source.py +0 -697
- pulumi_oci/generativeai/agent_knowledge_base.py +0 -659
- pulumi_oci/generativeai/get_agent_agent.py +0 -285
- pulumi_oci/generativeai/get_agent_agent_endpoint.py +0 -342
- pulumi_oci/generativeai/get_agent_agent_endpoints.py +0 -217
- pulumi_oci/generativeai/get_agent_agents.py +0 -195
- pulumi_oci/generativeai/get_agent_data_ingestion_job.py +0 -286
- pulumi_oci/generativeai/get_agent_data_ingestion_job_log_content.py +0 -117
- pulumi_oci/generativeai/get_agent_data_ingestion_jobs.py +0 -217
- pulumi_oci/generativeai/get_agent_data_source.py +0 -286
- pulumi_oci/generativeai/get_agent_data_sources.py +0 -217
- pulumi_oci/generativeai/get_agent_knowledge_base.py +0 -272
- pulumi_oci/generativeai/get_agent_knowledge_bases.py +0 -195
- {pulumi_oci-2.17.0.dist-info → pulumi_oci-2.17.0a1731653778.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.17.0.dist-info → pulumi_oci-2.17.0a1731653778.dist-info}/top_level.txt +0 -0
@@ -59,7 +59,7 @@ class DeploymentArgs:
|
|
59
59
|
:param pulumi.Input[str] fqdn: (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
|
60
60
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
61
61
|
:param pulumi.Input[bool] is_public: (Updatable) True if this object is publicly available.
|
62
|
-
:param pulumi.Input[str] load_balancer_subnet_id:
|
62
|
+
:param pulumi.Input[str] load_balancer_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
|
63
63
|
:param pulumi.Input[Sequence[pulumi.Input['DeploymentLockArgs']]] locks: Locks associated with this resource.
|
64
64
|
:param pulumi.Input['DeploymentMaintenanceConfigurationArgs'] maintenance_configuration: (Updatable) Defines the maintenance configuration for create operation.
|
65
65
|
:param pulumi.Input['DeploymentMaintenanceWindowArgs'] maintenance_window: (Updatable) Defines the maintenance window for create operation, when automatic actions can be performed.
|
@@ -285,7 +285,7 @@ class DeploymentArgs:
|
|
285
285
|
@pulumi.getter(name="loadBalancerSubnetId")
|
286
286
|
def load_balancer_subnet_id(self) -> Optional[pulumi.Input[str]]:
|
287
287
|
"""
|
288
|
-
|
288
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
|
289
289
|
"""
|
290
290
|
return pulumi.get(self, "load_balancer_subnet_id")
|
291
291
|
|
@@ -434,7 +434,7 @@ class _DeploymentState:
|
|
434
434
|
:param pulumi.Input[str] lifecycle_details: Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
|
435
435
|
:param pulumi.Input[str] lifecycle_sub_state: Possible GGS lifecycle sub-states.
|
436
436
|
:param pulumi.Input[str] load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the loadbalancer in the customer's subnet. The loadbalancer of the public deployment created in the customer subnet.
|
437
|
-
:param pulumi.Input[str] load_balancer_subnet_id:
|
437
|
+
:param pulumi.Input[str] load_balancer_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
|
438
438
|
:param pulumi.Input[Sequence[pulumi.Input['DeploymentLockArgs']]] locks: Locks associated with this resource.
|
439
439
|
:param pulumi.Input['DeploymentMaintenanceConfigurationArgs'] maintenance_configuration: (Updatable) Defines the maintenance configuration for create operation.
|
440
440
|
:param pulumi.Input['DeploymentMaintenanceWindowArgs'] maintenance_window: (Updatable) Defines the maintenance window for create operation, when automatic actions can be performed.
|
@@ -829,7 +829,7 @@ class _DeploymentState:
|
|
829
829
|
@pulumi.getter(name="loadBalancerSubnetId")
|
830
830
|
def load_balancer_subnet_id(self) -> Optional[pulumi.Input[str]]:
|
831
831
|
"""
|
832
|
-
|
832
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
|
833
833
|
"""
|
834
834
|
return pulumi.get(self, "load_balancer_subnet_id")
|
835
835
|
|
@@ -1107,7 +1107,7 @@ class Deployment(pulumi.CustomResource):
|
|
1107
1107
|
:param pulumi.Input[bool] is_auto_scaling_enabled: (Updatable) Indicates if auto scaling is enabled for the Deployment's CPU core count.
|
1108
1108
|
:param pulumi.Input[bool] is_public: (Updatable) True if this object is publicly available.
|
1109
1109
|
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to a Deployment.
|
1110
|
-
:param pulumi.Input[str] load_balancer_subnet_id:
|
1110
|
+
:param pulumi.Input[str] load_balancer_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
|
1111
1111
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DeploymentLockArgs', 'DeploymentLockArgsDict']]]] locks: Locks associated with this resource.
|
1112
1112
|
:param pulumi.Input[Union['DeploymentMaintenanceConfigurationArgs', 'DeploymentMaintenanceConfigurationArgsDict']] maintenance_configuration: (Updatable) Defines the maintenance configuration for create operation.
|
1113
1113
|
:param pulumi.Input[Union['DeploymentMaintenanceWindowArgs', 'DeploymentMaintenanceWindowArgsDict']] maintenance_window: (Updatable) Defines the maintenance window for create operation, when automatic actions can be performed.
|
@@ -1320,7 +1320,7 @@ class Deployment(pulumi.CustomResource):
|
|
1320
1320
|
:param pulumi.Input[str] lifecycle_details: Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
|
1321
1321
|
:param pulumi.Input[str] lifecycle_sub_state: Possible GGS lifecycle sub-states.
|
1322
1322
|
:param pulumi.Input[str] load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the loadbalancer in the customer's subnet. The loadbalancer of the public deployment created in the customer subnet.
|
1323
|
-
:param pulumi.Input[str] load_balancer_subnet_id:
|
1323
|
+
:param pulumi.Input[str] load_balancer_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
|
1324
1324
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DeploymentLockArgs', 'DeploymentLockArgsDict']]]] locks: Locks associated with this resource.
|
1325
1325
|
:param pulumi.Input[Union['DeploymentMaintenanceConfigurationArgs', 'DeploymentMaintenanceConfigurationArgsDict']] maintenance_configuration: (Updatable) Defines the maintenance configuration for create operation.
|
1326
1326
|
:param pulumi.Input[Union['DeploymentMaintenanceWindowArgs', 'DeploymentMaintenanceWindowArgsDict']] maintenance_window: (Updatable) Defines the maintenance window for create operation, when automatic actions can be performed.
|
@@ -1581,7 +1581,7 @@ class Deployment(pulumi.CustomResource):
|
|
1581
1581
|
@pulumi.getter(name="loadBalancerSubnetId")
|
1582
1582
|
def load_balancer_subnet_id(self) -> pulumi.Output[str]:
|
1583
1583
|
"""
|
1584
|
-
|
1584
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
|
1585
1585
|
"""
|
1586
1586
|
return pulumi.get(self, "load_balancer_subnet_id")
|
1587
1587
|
|
@@ -30,7 +30,6 @@ class DeploymentBackupArgs:
|
|
30
30
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
31
31
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
32
32
|
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
33
|
-
is_metadata_only: Optional[pulumi.Input[bool]] = None,
|
34
33
|
locks: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentBackupLockArgs']]]] = None):
|
35
34
|
"""
|
36
35
|
The set of arguments for constructing a DeploymentBackup resource.
|
@@ -46,7 +45,6 @@ class DeploymentBackupArgs:
|
|
46
45
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
47
46
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
48
47
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
49
|
-
:param pulumi.Input[bool] is_metadata_only: Parameter to allow users to create backup without trails
|
50
48
|
:param pulumi.Input[Sequence[pulumi.Input['DeploymentBackupLockArgs']]] locks: Locks associated with this resource.
|
51
49
|
"""
|
52
50
|
pulumi.set(__self__, "bucket", bucket)
|
@@ -61,8 +59,6 @@ class DeploymentBackupArgs:
|
|
61
59
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
62
60
|
if is_lock_override is not None:
|
63
61
|
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
64
|
-
if is_metadata_only is not None:
|
65
|
-
pulumi.set(__self__, "is_metadata_only", is_metadata_only)
|
66
62
|
if locks is not None:
|
67
63
|
pulumi.set(__self__, "locks", locks)
|
68
64
|
|
@@ -175,18 +171,6 @@ class DeploymentBackupArgs:
|
|
175
171
|
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
176
172
|
pulumi.set(self, "is_lock_override", value)
|
177
173
|
|
178
|
-
@property
|
179
|
-
@pulumi.getter(name="isMetadataOnly")
|
180
|
-
def is_metadata_only(self) -> Optional[pulumi.Input[bool]]:
|
181
|
-
"""
|
182
|
-
Parameter to allow users to create backup without trails
|
183
|
-
"""
|
184
|
-
return pulumi.get(self, "is_metadata_only")
|
185
|
-
|
186
|
-
@is_metadata_only.setter
|
187
|
-
def is_metadata_only(self, value: Optional[pulumi.Input[bool]]):
|
188
|
-
pulumi.set(self, "is_metadata_only", value)
|
189
|
-
|
190
174
|
@property
|
191
175
|
@pulumi.getter
|
192
176
|
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentBackupLockArgs']]]]:
|
@@ -213,7 +197,6 @@ class _DeploymentBackupState:
|
|
213
197
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
214
198
|
is_automatic: Optional[pulumi.Input[bool]] = None,
|
215
199
|
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
216
|
-
is_metadata_only: Optional[pulumi.Input[bool]] = None,
|
217
200
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
218
201
|
locks: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentBackupLockArgs']]]] = None,
|
219
202
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -237,7 +220,6 @@ class _DeploymentBackupState:
|
|
237
220
|
:param pulumi.Input[str] display_name: An object's Display Name.
|
238
221
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
239
222
|
:param pulumi.Input[bool] is_automatic: True if this object is automatically created
|
240
|
-
:param pulumi.Input[bool] is_metadata_only: Parameter to allow users to create backup without trails
|
241
223
|
:param pulumi.Input[str] lifecycle_details: Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
|
242
224
|
:param pulumi.Input[Sequence[pulumi.Input['DeploymentBackupLockArgs']]] locks: Locks associated with this resource.
|
243
225
|
:param pulumi.Input[str] namespace: Name of namespace that serves as a container for all of your buckets
|
@@ -275,8 +257,6 @@ class _DeploymentBackupState:
|
|
275
257
|
pulumi.set(__self__, "is_automatic", is_automatic)
|
276
258
|
if is_lock_override is not None:
|
277
259
|
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
278
|
-
if is_metadata_only is not None:
|
279
|
-
pulumi.set(__self__, "is_metadata_only", is_metadata_only)
|
280
260
|
if lifecycle_details is not None:
|
281
261
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
282
262
|
if locks is not None:
|
@@ -419,18 +399,6 @@ class _DeploymentBackupState:
|
|
419
399
|
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
420
400
|
pulumi.set(self, "is_lock_override", value)
|
421
401
|
|
422
|
-
@property
|
423
|
-
@pulumi.getter(name="isMetadataOnly")
|
424
|
-
def is_metadata_only(self) -> Optional[pulumi.Input[bool]]:
|
425
|
-
"""
|
426
|
-
Parameter to allow users to create backup without trails
|
427
|
-
"""
|
428
|
-
return pulumi.get(self, "is_metadata_only")
|
429
|
-
|
430
|
-
@is_metadata_only.setter
|
431
|
-
def is_metadata_only(self, value: Optional[pulumi.Input[bool]]):
|
432
|
-
pulumi.set(self, "is_metadata_only", value)
|
433
|
-
|
434
402
|
@property
|
435
403
|
@pulumi.getter(name="lifecycleDetails")
|
436
404
|
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
@@ -592,7 +560,6 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
592
560
|
display_name: Optional[pulumi.Input[str]] = None,
|
593
561
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
594
562
|
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
595
|
-
is_metadata_only: Optional[pulumi.Input[bool]] = None,
|
596
563
|
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DeploymentBackupLockArgs', 'DeploymentBackupLockArgsDict']]]]] = None,
|
597
564
|
namespace: Optional[pulumi.Input[str]] = None,
|
598
565
|
object: Optional[pulumi.Input[str]] = None,
|
@@ -621,7 +588,6 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
621
588
|
freeform_tags={
|
622
589
|
"bar-key": "value",
|
623
590
|
},
|
624
|
-
is_metadata_only=deployment_backup_is_metadata_only,
|
625
591
|
locks=[{
|
626
592
|
"type": deployment_backup_locks_type,
|
627
593
|
"message": deployment_backup_locks_message,
|
@@ -644,7 +610,6 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
644
610
|
:param pulumi.Input[str] deployment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
645
611
|
:param pulumi.Input[str] display_name: An object's Display Name.
|
646
612
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
647
|
-
:param pulumi.Input[bool] is_metadata_only: Parameter to allow users to create backup without trails
|
648
613
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DeploymentBackupLockArgs', 'DeploymentBackupLockArgsDict']]]] locks: Locks associated with this resource.
|
649
614
|
:param pulumi.Input[str] namespace: Name of namespace that serves as a container for all of your buckets
|
650
615
|
:param pulumi.Input[str] object: Name of the object to be uploaded to object storage
|
@@ -683,7 +648,6 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
683
648
|
freeform_tags={
|
684
649
|
"bar-key": "value",
|
685
650
|
},
|
686
|
-
is_metadata_only=deployment_backup_is_metadata_only,
|
687
651
|
locks=[{
|
688
652
|
"type": deployment_backup_locks_type,
|
689
653
|
"message": deployment_backup_locks_message,
|
@@ -720,7 +684,6 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
720
684
|
display_name: Optional[pulumi.Input[str]] = None,
|
721
685
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
722
686
|
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
723
|
-
is_metadata_only: Optional[pulumi.Input[bool]] = None,
|
724
687
|
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DeploymentBackupLockArgs', 'DeploymentBackupLockArgsDict']]]]] = None,
|
725
688
|
namespace: Optional[pulumi.Input[str]] = None,
|
726
689
|
object: Optional[pulumi.Input[str]] = None,
|
@@ -748,7 +711,6 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
748
711
|
__props__.__dict__["display_name"] = display_name
|
749
712
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
750
713
|
__props__.__dict__["is_lock_override"] = is_lock_override
|
751
|
-
__props__.__dict__["is_metadata_only"] = is_metadata_only
|
752
714
|
__props__.__dict__["locks"] = locks
|
753
715
|
if namespace is None and not opts.urn:
|
754
716
|
raise TypeError("Missing required property 'namespace'")
|
@@ -788,7 +750,6 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
788
750
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
789
751
|
is_automatic: Optional[pulumi.Input[bool]] = None,
|
790
752
|
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
791
|
-
is_metadata_only: Optional[pulumi.Input[bool]] = None,
|
792
753
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
793
754
|
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DeploymentBackupLockArgs', 'DeploymentBackupLockArgsDict']]]]] = None,
|
794
755
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -817,7 +778,6 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
817
778
|
:param pulumi.Input[str] display_name: An object's Display Name.
|
818
779
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
819
780
|
:param pulumi.Input[bool] is_automatic: True if this object is automatically created
|
820
|
-
:param pulumi.Input[bool] is_metadata_only: Parameter to allow users to create backup without trails
|
821
781
|
:param pulumi.Input[str] lifecycle_details: Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
|
822
782
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DeploymentBackupLockArgs', 'DeploymentBackupLockArgsDict']]]] locks: Locks associated with this resource.
|
823
783
|
:param pulumi.Input[str] namespace: Name of namespace that serves as a container for all of your buckets
|
@@ -849,7 +809,6 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
849
809
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
850
810
|
__props__.__dict__["is_automatic"] = is_automatic
|
851
811
|
__props__.__dict__["is_lock_override"] = is_lock_override
|
852
|
-
__props__.__dict__["is_metadata_only"] = is_metadata_only
|
853
812
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
854
813
|
__props__.__dict__["locks"] = locks
|
855
814
|
__props__.__dict__["namespace"] = namespace
|
@@ -941,14 +900,6 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
941
900
|
def is_lock_override(self) -> pulumi.Output[bool]:
|
942
901
|
return pulumi.get(self, "is_lock_override")
|
943
902
|
|
944
|
-
@property
|
945
|
-
@pulumi.getter(name="isMetadataOnly")
|
946
|
-
def is_metadata_only(self) -> pulumi.Output[bool]:
|
947
|
-
"""
|
948
|
-
Parameter to allow users to create backup without trails
|
949
|
-
"""
|
950
|
-
return pulumi.get(self, "is_metadata_only")
|
951
|
-
|
952
903
|
@property
|
953
904
|
@pulumi.getter(name="lifecycleDetails")
|
954
905
|
def lifecycle_details(self) -> pulumi.Output[str]:
|