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
@@ -0,0 +1,851 @@
|
|
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__ = ['FleetResourceArgs', 'FleetResource']
|
18
|
+
|
19
|
+
@pulumi.input_type
|
20
|
+
class FleetResourceArgs:
|
21
|
+
def __init__(__self__, *,
|
22
|
+
compartment_id: pulumi.Input[str],
|
23
|
+
fleet_id: pulumi.Input[str],
|
24
|
+
resource_id: pulumi.Input[str],
|
25
|
+
tenancy_id: pulumi.Input[str],
|
26
|
+
resource_region: Optional[pulumi.Input[str]] = None,
|
27
|
+
resource_type: Optional[pulumi.Input[str]] = None):
|
28
|
+
"""
|
29
|
+
The set of arguments for constructing a FleetResource resource.
|
30
|
+
:param pulumi.Input[str] compartment_id: (Updatable) OCID of the compartment to which the resource belongs to.
|
31
|
+
:param pulumi.Input[str] fleet_id: unique Fleet identifier
|
32
|
+
:param pulumi.Input[str] resource_id: The OCID of the resource.
|
33
|
+
:param pulumi.Input[str] tenancy_id: (Updatable) OCID of the tenancy to which the resource belongs to.
|
34
|
+
|
35
|
+
|
36
|
+
** IMPORTANT **
|
37
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
38
|
+
:param pulumi.Input[str] resource_region: Associated region
|
39
|
+
:param pulumi.Input[str] resource_type: Type of the Resource.
|
40
|
+
"""
|
41
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
42
|
+
pulumi.set(__self__, "fleet_id", fleet_id)
|
43
|
+
pulumi.set(__self__, "resource_id", resource_id)
|
44
|
+
pulumi.set(__self__, "tenancy_id", tenancy_id)
|
45
|
+
if resource_region is not None:
|
46
|
+
pulumi.set(__self__, "resource_region", resource_region)
|
47
|
+
if resource_type is not None:
|
48
|
+
pulumi.set(__self__, "resource_type", resource_type)
|
49
|
+
|
50
|
+
@property
|
51
|
+
@pulumi.getter(name="compartmentId")
|
52
|
+
def compartment_id(self) -> pulumi.Input[str]:
|
53
|
+
"""
|
54
|
+
(Updatable) OCID of the compartment to which the resource belongs to.
|
55
|
+
"""
|
56
|
+
return pulumi.get(self, "compartment_id")
|
57
|
+
|
58
|
+
@compartment_id.setter
|
59
|
+
def compartment_id(self, value: pulumi.Input[str]):
|
60
|
+
pulumi.set(self, "compartment_id", value)
|
61
|
+
|
62
|
+
@property
|
63
|
+
@pulumi.getter(name="fleetId")
|
64
|
+
def fleet_id(self) -> pulumi.Input[str]:
|
65
|
+
"""
|
66
|
+
unique Fleet identifier
|
67
|
+
"""
|
68
|
+
return pulumi.get(self, "fleet_id")
|
69
|
+
|
70
|
+
@fleet_id.setter
|
71
|
+
def fleet_id(self, value: pulumi.Input[str]):
|
72
|
+
pulumi.set(self, "fleet_id", value)
|
73
|
+
|
74
|
+
@property
|
75
|
+
@pulumi.getter(name="resourceId")
|
76
|
+
def resource_id(self) -> pulumi.Input[str]:
|
77
|
+
"""
|
78
|
+
The OCID of the resource.
|
79
|
+
"""
|
80
|
+
return pulumi.get(self, "resource_id")
|
81
|
+
|
82
|
+
@resource_id.setter
|
83
|
+
def resource_id(self, value: pulumi.Input[str]):
|
84
|
+
pulumi.set(self, "resource_id", value)
|
85
|
+
|
86
|
+
@property
|
87
|
+
@pulumi.getter(name="tenancyId")
|
88
|
+
def tenancy_id(self) -> pulumi.Input[str]:
|
89
|
+
"""
|
90
|
+
(Updatable) OCID of the tenancy to which the resource belongs to.
|
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
|
+
"""
|
96
|
+
return pulumi.get(self, "tenancy_id")
|
97
|
+
|
98
|
+
@tenancy_id.setter
|
99
|
+
def tenancy_id(self, value: pulumi.Input[str]):
|
100
|
+
pulumi.set(self, "tenancy_id", value)
|
101
|
+
|
102
|
+
@property
|
103
|
+
@pulumi.getter(name="resourceRegion")
|
104
|
+
def resource_region(self) -> Optional[pulumi.Input[str]]:
|
105
|
+
"""
|
106
|
+
Associated region
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "resource_region")
|
109
|
+
|
110
|
+
@resource_region.setter
|
111
|
+
def resource_region(self, value: Optional[pulumi.Input[str]]):
|
112
|
+
pulumi.set(self, "resource_region", value)
|
113
|
+
|
114
|
+
@property
|
115
|
+
@pulumi.getter(name="resourceType")
|
116
|
+
def resource_type(self) -> Optional[pulumi.Input[str]]:
|
117
|
+
"""
|
118
|
+
Type of the Resource.
|
119
|
+
"""
|
120
|
+
return pulumi.get(self, "resource_type")
|
121
|
+
|
122
|
+
@resource_type.setter
|
123
|
+
def resource_type(self, value: Optional[pulumi.Input[str]]):
|
124
|
+
pulumi.set(self, "resource_type", value)
|
125
|
+
|
126
|
+
|
127
|
+
@pulumi.input_type
|
128
|
+
class _FleetResourceState:
|
129
|
+
def __init__(__self__, *,
|
130
|
+
application_type: Optional[pulumi.Input[str]] = None,
|
131
|
+
compartment: Optional[pulumi.Input[str]] = None,
|
132
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
133
|
+
compliance_state: Optional[pulumi.Input[str]] = None,
|
134
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
135
|
+
environment_type: Optional[pulumi.Input[str]] = None,
|
136
|
+
fleet_id: Optional[pulumi.Input[str]] = None,
|
137
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
138
|
+
product: Optional[pulumi.Input[str]] = None,
|
139
|
+
product_count: Optional[pulumi.Input[int]] = None,
|
140
|
+
resource_id: Optional[pulumi.Input[str]] = None,
|
141
|
+
resource_region: Optional[pulumi.Input[str]] = None,
|
142
|
+
resource_type: Optional[pulumi.Input[str]] = None,
|
143
|
+
state: Optional[pulumi.Input[str]] = None,
|
144
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
145
|
+
target_count: Optional[pulumi.Input[int]] = None,
|
146
|
+
tenancy_id: Optional[pulumi.Input[str]] = None,
|
147
|
+
tenancy_name: Optional[pulumi.Input[str]] = None,
|
148
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
149
|
+
time_updated: Optional[pulumi.Input[str]] = None):
|
150
|
+
"""
|
151
|
+
Input properties used for looking up and filtering FleetResource resources.
|
152
|
+
:param pulumi.Input[str] application_type: Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
|
153
|
+
:param pulumi.Input[str] compartment: Resource Compartment
|
154
|
+
:param pulumi.Input[str] compartment_id: (Updatable) OCID of the compartment to which the resource belongs to.
|
155
|
+
:param pulumi.Input[str] compliance_state: Compliance State of the Resource
|
156
|
+
:param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
157
|
+
:param pulumi.Input[str] environment_type: Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
|
158
|
+
:param pulumi.Input[str] fleet_id: unique Fleet identifier
|
159
|
+
: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.
|
160
|
+
:param pulumi.Input[str] product: Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
|
161
|
+
:param pulumi.Input[int] product_count: Count of products within the resource.
|
162
|
+
:param pulumi.Input[str] resource_id: The OCID of the resource.
|
163
|
+
:param pulumi.Input[str] resource_region: Associated region
|
164
|
+
:param pulumi.Input[str] resource_type: Type of the Resource.
|
165
|
+
:param pulumi.Input[str] state: The current state of the FleetResource.
|
166
|
+
: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"}`
|
167
|
+
:param pulumi.Input[int] target_count: Count of targets within the resource.
|
168
|
+
:param pulumi.Input[str] tenancy_id: (Updatable) OCID of the tenancy to which the resource belongs to.
|
169
|
+
|
170
|
+
|
171
|
+
** IMPORTANT **
|
172
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
173
|
+
:param pulumi.Input[str] tenancy_name: Resource Tenancy Name
|
174
|
+
:param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
|
175
|
+
:param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
|
176
|
+
"""
|
177
|
+
if application_type is not None:
|
178
|
+
pulumi.set(__self__, "application_type", application_type)
|
179
|
+
if compartment is not None:
|
180
|
+
pulumi.set(__self__, "compartment", compartment)
|
181
|
+
if compartment_id is not None:
|
182
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
183
|
+
if compliance_state is not None:
|
184
|
+
pulumi.set(__self__, "compliance_state", compliance_state)
|
185
|
+
if display_name is not None:
|
186
|
+
pulumi.set(__self__, "display_name", display_name)
|
187
|
+
if environment_type is not None:
|
188
|
+
pulumi.set(__self__, "environment_type", environment_type)
|
189
|
+
if fleet_id is not None:
|
190
|
+
pulumi.set(__self__, "fleet_id", fleet_id)
|
191
|
+
if lifecycle_details is not None:
|
192
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
193
|
+
if product is not None:
|
194
|
+
pulumi.set(__self__, "product", product)
|
195
|
+
if product_count is not None:
|
196
|
+
pulumi.set(__self__, "product_count", product_count)
|
197
|
+
if resource_id is not None:
|
198
|
+
pulumi.set(__self__, "resource_id", resource_id)
|
199
|
+
if resource_region is not None:
|
200
|
+
pulumi.set(__self__, "resource_region", resource_region)
|
201
|
+
if resource_type is not None:
|
202
|
+
pulumi.set(__self__, "resource_type", resource_type)
|
203
|
+
if state is not None:
|
204
|
+
pulumi.set(__self__, "state", state)
|
205
|
+
if system_tags is not None:
|
206
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
207
|
+
if target_count is not None:
|
208
|
+
pulumi.set(__self__, "target_count", target_count)
|
209
|
+
if tenancy_id is not None:
|
210
|
+
pulumi.set(__self__, "tenancy_id", tenancy_id)
|
211
|
+
if tenancy_name is not None:
|
212
|
+
pulumi.set(__self__, "tenancy_name", tenancy_name)
|
213
|
+
if time_created is not None:
|
214
|
+
pulumi.set(__self__, "time_created", time_created)
|
215
|
+
if time_updated is not None:
|
216
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
217
|
+
|
218
|
+
@property
|
219
|
+
@pulumi.getter(name="applicationType")
|
220
|
+
def application_type(self) -> Optional[pulumi.Input[str]]:
|
221
|
+
"""
|
222
|
+
Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
|
223
|
+
"""
|
224
|
+
return pulumi.get(self, "application_type")
|
225
|
+
|
226
|
+
@application_type.setter
|
227
|
+
def application_type(self, value: Optional[pulumi.Input[str]]):
|
228
|
+
pulumi.set(self, "application_type", value)
|
229
|
+
|
230
|
+
@property
|
231
|
+
@pulumi.getter
|
232
|
+
def compartment(self) -> Optional[pulumi.Input[str]]:
|
233
|
+
"""
|
234
|
+
Resource Compartment
|
235
|
+
"""
|
236
|
+
return pulumi.get(self, "compartment")
|
237
|
+
|
238
|
+
@compartment.setter
|
239
|
+
def compartment(self, value: Optional[pulumi.Input[str]]):
|
240
|
+
pulumi.set(self, "compartment", value)
|
241
|
+
|
242
|
+
@property
|
243
|
+
@pulumi.getter(name="compartmentId")
|
244
|
+
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
245
|
+
"""
|
246
|
+
(Updatable) OCID of the compartment to which the resource belongs to.
|
247
|
+
"""
|
248
|
+
return pulumi.get(self, "compartment_id")
|
249
|
+
|
250
|
+
@compartment_id.setter
|
251
|
+
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
252
|
+
pulumi.set(self, "compartment_id", value)
|
253
|
+
|
254
|
+
@property
|
255
|
+
@pulumi.getter(name="complianceState")
|
256
|
+
def compliance_state(self) -> Optional[pulumi.Input[str]]:
|
257
|
+
"""
|
258
|
+
Compliance State of the Resource
|
259
|
+
"""
|
260
|
+
return pulumi.get(self, "compliance_state")
|
261
|
+
|
262
|
+
@compliance_state.setter
|
263
|
+
def compliance_state(self, value: Optional[pulumi.Input[str]]):
|
264
|
+
pulumi.set(self, "compliance_state", value)
|
265
|
+
|
266
|
+
@property
|
267
|
+
@pulumi.getter(name="displayName")
|
268
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
269
|
+
"""
|
270
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
271
|
+
"""
|
272
|
+
return pulumi.get(self, "display_name")
|
273
|
+
|
274
|
+
@display_name.setter
|
275
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
276
|
+
pulumi.set(self, "display_name", value)
|
277
|
+
|
278
|
+
@property
|
279
|
+
@pulumi.getter(name="environmentType")
|
280
|
+
def environment_type(self) -> Optional[pulumi.Input[str]]:
|
281
|
+
"""
|
282
|
+
Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
|
283
|
+
"""
|
284
|
+
return pulumi.get(self, "environment_type")
|
285
|
+
|
286
|
+
@environment_type.setter
|
287
|
+
def environment_type(self, value: Optional[pulumi.Input[str]]):
|
288
|
+
pulumi.set(self, "environment_type", value)
|
289
|
+
|
290
|
+
@property
|
291
|
+
@pulumi.getter(name="fleetId")
|
292
|
+
def fleet_id(self) -> Optional[pulumi.Input[str]]:
|
293
|
+
"""
|
294
|
+
unique Fleet identifier
|
295
|
+
"""
|
296
|
+
return pulumi.get(self, "fleet_id")
|
297
|
+
|
298
|
+
@fleet_id.setter
|
299
|
+
def fleet_id(self, value: Optional[pulumi.Input[str]]):
|
300
|
+
pulumi.set(self, "fleet_id", value)
|
301
|
+
|
302
|
+
@property
|
303
|
+
@pulumi.getter(name="lifecycleDetails")
|
304
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
305
|
+
"""
|
306
|
+
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
307
|
+
"""
|
308
|
+
return pulumi.get(self, "lifecycle_details")
|
309
|
+
|
310
|
+
@lifecycle_details.setter
|
311
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
312
|
+
pulumi.set(self, "lifecycle_details", value)
|
313
|
+
|
314
|
+
@property
|
315
|
+
@pulumi.getter
|
316
|
+
def product(self) -> Optional[pulumi.Input[str]]:
|
317
|
+
"""
|
318
|
+
Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
|
319
|
+
"""
|
320
|
+
return pulumi.get(self, "product")
|
321
|
+
|
322
|
+
@product.setter
|
323
|
+
def product(self, value: Optional[pulumi.Input[str]]):
|
324
|
+
pulumi.set(self, "product", value)
|
325
|
+
|
326
|
+
@property
|
327
|
+
@pulumi.getter(name="productCount")
|
328
|
+
def product_count(self) -> Optional[pulumi.Input[int]]:
|
329
|
+
"""
|
330
|
+
Count of products within the resource.
|
331
|
+
"""
|
332
|
+
return pulumi.get(self, "product_count")
|
333
|
+
|
334
|
+
@product_count.setter
|
335
|
+
def product_count(self, value: Optional[pulumi.Input[int]]):
|
336
|
+
pulumi.set(self, "product_count", value)
|
337
|
+
|
338
|
+
@property
|
339
|
+
@pulumi.getter(name="resourceId")
|
340
|
+
def resource_id(self) -> Optional[pulumi.Input[str]]:
|
341
|
+
"""
|
342
|
+
The OCID of the resource.
|
343
|
+
"""
|
344
|
+
return pulumi.get(self, "resource_id")
|
345
|
+
|
346
|
+
@resource_id.setter
|
347
|
+
def resource_id(self, value: Optional[pulumi.Input[str]]):
|
348
|
+
pulumi.set(self, "resource_id", value)
|
349
|
+
|
350
|
+
@property
|
351
|
+
@pulumi.getter(name="resourceRegion")
|
352
|
+
def resource_region(self) -> Optional[pulumi.Input[str]]:
|
353
|
+
"""
|
354
|
+
Associated region
|
355
|
+
"""
|
356
|
+
return pulumi.get(self, "resource_region")
|
357
|
+
|
358
|
+
@resource_region.setter
|
359
|
+
def resource_region(self, value: Optional[pulumi.Input[str]]):
|
360
|
+
pulumi.set(self, "resource_region", value)
|
361
|
+
|
362
|
+
@property
|
363
|
+
@pulumi.getter(name="resourceType")
|
364
|
+
def resource_type(self) -> Optional[pulumi.Input[str]]:
|
365
|
+
"""
|
366
|
+
Type of the Resource.
|
367
|
+
"""
|
368
|
+
return pulumi.get(self, "resource_type")
|
369
|
+
|
370
|
+
@resource_type.setter
|
371
|
+
def resource_type(self, value: Optional[pulumi.Input[str]]):
|
372
|
+
pulumi.set(self, "resource_type", value)
|
373
|
+
|
374
|
+
@property
|
375
|
+
@pulumi.getter
|
376
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
377
|
+
"""
|
378
|
+
The current state of the FleetResource.
|
379
|
+
"""
|
380
|
+
return pulumi.get(self, "state")
|
381
|
+
|
382
|
+
@state.setter
|
383
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
384
|
+
pulumi.set(self, "state", value)
|
385
|
+
|
386
|
+
@property
|
387
|
+
@pulumi.getter(name="systemTags")
|
388
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
389
|
+
"""
|
390
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
391
|
+
"""
|
392
|
+
return pulumi.get(self, "system_tags")
|
393
|
+
|
394
|
+
@system_tags.setter
|
395
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
396
|
+
pulumi.set(self, "system_tags", value)
|
397
|
+
|
398
|
+
@property
|
399
|
+
@pulumi.getter(name="targetCount")
|
400
|
+
def target_count(self) -> Optional[pulumi.Input[int]]:
|
401
|
+
"""
|
402
|
+
Count of targets within the resource.
|
403
|
+
"""
|
404
|
+
return pulumi.get(self, "target_count")
|
405
|
+
|
406
|
+
@target_count.setter
|
407
|
+
def target_count(self, value: Optional[pulumi.Input[int]]):
|
408
|
+
pulumi.set(self, "target_count", value)
|
409
|
+
|
410
|
+
@property
|
411
|
+
@pulumi.getter(name="tenancyId")
|
412
|
+
def tenancy_id(self) -> Optional[pulumi.Input[str]]:
|
413
|
+
"""
|
414
|
+
(Updatable) OCID of the tenancy to which the resource belongs to.
|
415
|
+
|
416
|
+
|
417
|
+
** IMPORTANT **
|
418
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
419
|
+
"""
|
420
|
+
return pulumi.get(self, "tenancy_id")
|
421
|
+
|
422
|
+
@tenancy_id.setter
|
423
|
+
def tenancy_id(self, value: Optional[pulumi.Input[str]]):
|
424
|
+
pulumi.set(self, "tenancy_id", value)
|
425
|
+
|
426
|
+
@property
|
427
|
+
@pulumi.getter(name="tenancyName")
|
428
|
+
def tenancy_name(self) -> Optional[pulumi.Input[str]]:
|
429
|
+
"""
|
430
|
+
Resource Tenancy Name
|
431
|
+
"""
|
432
|
+
return pulumi.get(self, "tenancy_name")
|
433
|
+
|
434
|
+
@tenancy_name.setter
|
435
|
+
def tenancy_name(self, value: Optional[pulumi.Input[str]]):
|
436
|
+
pulumi.set(self, "tenancy_name", value)
|
437
|
+
|
438
|
+
@property
|
439
|
+
@pulumi.getter(name="timeCreated")
|
440
|
+
def time_created(self) -> Optional[pulumi.Input[str]]:
|
441
|
+
"""
|
442
|
+
The time this resource was created. An RFC3339 formatted datetime string.
|
443
|
+
"""
|
444
|
+
return pulumi.get(self, "time_created")
|
445
|
+
|
446
|
+
@time_created.setter
|
447
|
+
def time_created(self, value: Optional[pulumi.Input[str]]):
|
448
|
+
pulumi.set(self, "time_created", value)
|
449
|
+
|
450
|
+
@property
|
451
|
+
@pulumi.getter(name="timeUpdated")
|
452
|
+
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
453
|
+
"""
|
454
|
+
The time this resource was last updated. An RFC3339 formatted datetime string.
|
455
|
+
"""
|
456
|
+
return pulumi.get(self, "time_updated")
|
457
|
+
|
458
|
+
@time_updated.setter
|
459
|
+
def time_updated(self, value: Optional[pulumi.Input[str]]):
|
460
|
+
pulumi.set(self, "time_updated", value)
|
461
|
+
|
462
|
+
|
463
|
+
class FleetResource(pulumi.CustomResource):
|
464
|
+
@overload
|
465
|
+
def __init__(__self__,
|
466
|
+
resource_name: str,
|
467
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
468
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
469
|
+
fleet_id: Optional[pulumi.Input[str]] = None,
|
470
|
+
resource_id: Optional[pulumi.Input[str]] = None,
|
471
|
+
resource_region: Optional[pulumi.Input[str]] = None,
|
472
|
+
resource_type: Optional[pulumi.Input[str]] = None,
|
473
|
+
tenancy_id: Optional[pulumi.Input[str]] = None,
|
474
|
+
__props__=None):
|
475
|
+
"""
|
476
|
+
This resource provides the Fleet Resource resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
477
|
+
|
478
|
+
Creates a new FleetResource.
|
479
|
+
|
480
|
+
## Example Usage
|
481
|
+
|
482
|
+
```python
|
483
|
+
import pulumi
|
484
|
+
import pulumi_oci as oci
|
485
|
+
|
486
|
+
test_fleet_resource = oci.fleet_apps_management.FleetResource("test_fleet_resource",
|
487
|
+
compartment_id=compartment_id,
|
488
|
+
fleet_id=test_fleet["id"],
|
489
|
+
resource_id=test_resource["id"],
|
490
|
+
tenancy_id=test_tenancy["id"],
|
491
|
+
resource_region=fleet_resource_resource_region,
|
492
|
+
resource_type=fleet_resource_resource_type)
|
493
|
+
```
|
494
|
+
|
495
|
+
## Import
|
496
|
+
|
497
|
+
Import is not supported for this resource.
|
498
|
+
|
499
|
+
:param str resource_name: The name of the resource.
|
500
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
501
|
+
:param pulumi.Input[str] compartment_id: (Updatable) OCID of the compartment to which the resource belongs to.
|
502
|
+
:param pulumi.Input[str] fleet_id: unique Fleet identifier
|
503
|
+
:param pulumi.Input[str] resource_id: The OCID of the resource.
|
504
|
+
:param pulumi.Input[str] resource_region: Associated region
|
505
|
+
:param pulumi.Input[str] resource_type: Type of the Resource.
|
506
|
+
:param pulumi.Input[str] tenancy_id: (Updatable) OCID of the tenancy to which the resource belongs to.
|
507
|
+
|
508
|
+
|
509
|
+
** IMPORTANT **
|
510
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
511
|
+
"""
|
512
|
+
...
|
513
|
+
@overload
|
514
|
+
def __init__(__self__,
|
515
|
+
resource_name: str,
|
516
|
+
args: FleetResourceArgs,
|
517
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
518
|
+
"""
|
519
|
+
This resource provides the Fleet Resource resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
520
|
+
|
521
|
+
Creates a new FleetResource.
|
522
|
+
|
523
|
+
## Example Usage
|
524
|
+
|
525
|
+
```python
|
526
|
+
import pulumi
|
527
|
+
import pulumi_oci as oci
|
528
|
+
|
529
|
+
test_fleet_resource = oci.fleet_apps_management.FleetResource("test_fleet_resource",
|
530
|
+
compartment_id=compartment_id,
|
531
|
+
fleet_id=test_fleet["id"],
|
532
|
+
resource_id=test_resource["id"],
|
533
|
+
tenancy_id=test_tenancy["id"],
|
534
|
+
resource_region=fleet_resource_resource_region,
|
535
|
+
resource_type=fleet_resource_resource_type)
|
536
|
+
```
|
537
|
+
|
538
|
+
## Import
|
539
|
+
|
540
|
+
Import is not supported for this resource.
|
541
|
+
|
542
|
+
:param str resource_name: The name of the resource.
|
543
|
+
:param FleetResourceArgs args: The arguments to use to populate this resource's properties.
|
544
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
545
|
+
"""
|
546
|
+
...
|
547
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
548
|
+
resource_args, opts = _utilities.get_resource_args_opts(FleetResourceArgs, pulumi.ResourceOptions, *args, **kwargs)
|
549
|
+
if resource_args is not None:
|
550
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
551
|
+
else:
|
552
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
553
|
+
|
554
|
+
def _internal_init(__self__,
|
555
|
+
resource_name: str,
|
556
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
557
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
558
|
+
fleet_id: Optional[pulumi.Input[str]] = None,
|
559
|
+
resource_id: Optional[pulumi.Input[str]] = None,
|
560
|
+
resource_region: Optional[pulumi.Input[str]] = None,
|
561
|
+
resource_type: Optional[pulumi.Input[str]] = None,
|
562
|
+
tenancy_id: Optional[pulumi.Input[str]] = None,
|
563
|
+
__props__=None):
|
564
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
565
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
566
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
567
|
+
if opts.id is None:
|
568
|
+
if __props__ is not None:
|
569
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
570
|
+
__props__ = FleetResourceArgs.__new__(FleetResourceArgs)
|
571
|
+
|
572
|
+
if compartment_id is None and not opts.urn:
|
573
|
+
raise TypeError("Missing required property 'compartment_id'")
|
574
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
575
|
+
if fleet_id is None and not opts.urn:
|
576
|
+
raise TypeError("Missing required property 'fleet_id'")
|
577
|
+
__props__.__dict__["fleet_id"] = fleet_id
|
578
|
+
if resource_id is None and not opts.urn:
|
579
|
+
raise TypeError("Missing required property 'resource_id'")
|
580
|
+
__props__.__dict__["resource_id"] = resource_id
|
581
|
+
__props__.__dict__["resource_region"] = resource_region
|
582
|
+
__props__.__dict__["resource_type"] = resource_type
|
583
|
+
if tenancy_id is None and not opts.urn:
|
584
|
+
raise TypeError("Missing required property 'tenancy_id'")
|
585
|
+
__props__.__dict__["tenancy_id"] = tenancy_id
|
586
|
+
__props__.__dict__["application_type"] = None
|
587
|
+
__props__.__dict__["compartment"] = None
|
588
|
+
__props__.__dict__["compliance_state"] = None
|
589
|
+
__props__.__dict__["display_name"] = None
|
590
|
+
__props__.__dict__["environment_type"] = None
|
591
|
+
__props__.__dict__["lifecycle_details"] = None
|
592
|
+
__props__.__dict__["product"] = None
|
593
|
+
__props__.__dict__["product_count"] = None
|
594
|
+
__props__.__dict__["state"] = None
|
595
|
+
__props__.__dict__["system_tags"] = None
|
596
|
+
__props__.__dict__["target_count"] = None
|
597
|
+
__props__.__dict__["tenancy_name"] = None
|
598
|
+
__props__.__dict__["time_created"] = None
|
599
|
+
__props__.__dict__["time_updated"] = None
|
600
|
+
super(FleetResource, __self__).__init__(
|
601
|
+
'oci:FleetAppsManagement/fleetResource:FleetResource',
|
602
|
+
resource_name,
|
603
|
+
__props__,
|
604
|
+
opts)
|
605
|
+
|
606
|
+
@staticmethod
|
607
|
+
def get(resource_name: str,
|
608
|
+
id: pulumi.Input[str],
|
609
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
610
|
+
application_type: Optional[pulumi.Input[str]] = None,
|
611
|
+
compartment: Optional[pulumi.Input[str]] = None,
|
612
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
613
|
+
compliance_state: Optional[pulumi.Input[str]] = None,
|
614
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
615
|
+
environment_type: Optional[pulumi.Input[str]] = None,
|
616
|
+
fleet_id: Optional[pulumi.Input[str]] = None,
|
617
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
618
|
+
product: Optional[pulumi.Input[str]] = None,
|
619
|
+
product_count: Optional[pulumi.Input[int]] = None,
|
620
|
+
resource_id: Optional[pulumi.Input[str]] = None,
|
621
|
+
resource_region: Optional[pulumi.Input[str]] = None,
|
622
|
+
resource_type: Optional[pulumi.Input[str]] = None,
|
623
|
+
state: Optional[pulumi.Input[str]] = None,
|
624
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
625
|
+
target_count: Optional[pulumi.Input[int]] = None,
|
626
|
+
tenancy_id: Optional[pulumi.Input[str]] = None,
|
627
|
+
tenancy_name: Optional[pulumi.Input[str]] = None,
|
628
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
629
|
+
time_updated: Optional[pulumi.Input[str]] = None) -> 'FleetResource':
|
630
|
+
"""
|
631
|
+
Get an existing FleetResource resource's state with the given name, id, and optional extra
|
632
|
+
properties used to qualify the lookup.
|
633
|
+
|
634
|
+
:param str resource_name: The unique name of the resulting resource.
|
635
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
636
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
637
|
+
:param pulumi.Input[str] application_type: Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
|
638
|
+
:param pulumi.Input[str] compartment: Resource Compartment
|
639
|
+
:param pulumi.Input[str] compartment_id: (Updatable) OCID of the compartment to which the resource belongs to.
|
640
|
+
:param pulumi.Input[str] compliance_state: Compliance State of the Resource
|
641
|
+
:param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
642
|
+
:param pulumi.Input[str] environment_type: Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
|
643
|
+
:param pulumi.Input[str] fleet_id: unique Fleet identifier
|
644
|
+
: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.
|
645
|
+
:param pulumi.Input[str] product: Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
|
646
|
+
:param pulumi.Input[int] product_count: Count of products within the resource.
|
647
|
+
:param pulumi.Input[str] resource_id: The OCID of the resource.
|
648
|
+
:param pulumi.Input[str] resource_region: Associated region
|
649
|
+
:param pulumi.Input[str] resource_type: Type of the Resource.
|
650
|
+
:param pulumi.Input[str] state: The current state of the FleetResource.
|
651
|
+
: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"}`
|
652
|
+
:param pulumi.Input[int] target_count: Count of targets within the resource.
|
653
|
+
:param pulumi.Input[str] tenancy_id: (Updatable) OCID of the tenancy to which the resource belongs to.
|
654
|
+
|
655
|
+
|
656
|
+
** IMPORTANT **
|
657
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
658
|
+
:param pulumi.Input[str] tenancy_name: Resource Tenancy Name
|
659
|
+
:param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
|
660
|
+
:param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
|
661
|
+
"""
|
662
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
663
|
+
|
664
|
+
__props__ = _FleetResourceState.__new__(_FleetResourceState)
|
665
|
+
|
666
|
+
__props__.__dict__["application_type"] = application_type
|
667
|
+
__props__.__dict__["compartment"] = compartment
|
668
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
669
|
+
__props__.__dict__["compliance_state"] = compliance_state
|
670
|
+
__props__.__dict__["display_name"] = display_name
|
671
|
+
__props__.__dict__["environment_type"] = environment_type
|
672
|
+
__props__.__dict__["fleet_id"] = fleet_id
|
673
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
674
|
+
__props__.__dict__["product"] = product
|
675
|
+
__props__.__dict__["product_count"] = product_count
|
676
|
+
__props__.__dict__["resource_id"] = resource_id
|
677
|
+
__props__.__dict__["resource_region"] = resource_region
|
678
|
+
__props__.__dict__["resource_type"] = resource_type
|
679
|
+
__props__.__dict__["state"] = state
|
680
|
+
__props__.__dict__["system_tags"] = system_tags
|
681
|
+
__props__.__dict__["target_count"] = target_count
|
682
|
+
__props__.__dict__["tenancy_id"] = tenancy_id
|
683
|
+
__props__.__dict__["tenancy_name"] = tenancy_name
|
684
|
+
__props__.__dict__["time_created"] = time_created
|
685
|
+
__props__.__dict__["time_updated"] = time_updated
|
686
|
+
return FleetResource(resource_name, opts=opts, __props__=__props__)
|
687
|
+
|
688
|
+
@property
|
689
|
+
@pulumi.getter(name="applicationType")
|
690
|
+
def application_type(self) -> pulumi.Output[str]:
|
691
|
+
"""
|
692
|
+
Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
|
693
|
+
"""
|
694
|
+
return pulumi.get(self, "application_type")
|
695
|
+
|
696
|
+
@property
|
697
|
+
@pulumi.getter
|
698
|
+
def compartment(self) -> pulumi.Output[str]:
|
699
|
+
"""
|
700
|
+
Resource Compartment
|
701
|
+
"""
|
702
|
+
return pulumi.get(self, "compartment")
|
703
|
+
|
704
|
+
@property
|
705
|
+
@pulumi.getter(name="compartmentId")
|
706
|
+
def compartment_id(self) -> pulumi.Output[str]:
|
707
|
+
"""
|
708
|
+
(Updatable) OCID of the compartment to which the resource belongs to.
|
709
|
+
"""
|
710
|
+
return pulumi.get(self, "compartment_id")
|
711
|
+
|
712
|
+
@property
|
713
|
+
@pulumi.getter(name="complianceState")
|
714
|
+
def compliance_state(self) -> pulumi.Output[str]:
|
715
|
+
"""
|
716
|
+
Compliance State of the Resource
|
717
|
+
"""
|
718
|
+
return pulumi.get(self, "compliance_state")
|
719
|
+
|
720
|
+
@property
|
721
|
+
@pulumi.getter(name="displayName")
|
722
|
+
def display_name(self) -> pulumi.Output[str]:
|
723
|
+
"""
|
724
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
725
|
+
"""
|
726
|
+
return pulumi.get(self, "display_name")
|
727
|
+
|
728
|
+
@property
|
729
|
+
@pulumi.getter(name="environmentType")
|
730
|
+
def environment_type(self) -> pulumi.Output[str]:
|
731
|
+
"""
|
732
|
+
Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
|
733
|
+
"""
|
734
|
+
return pulumi.get(self, "environment_type")
|
735
|
+
|
736
|
+
@property
|
737
|
+
@pulumi.getter(name="fleetId")
|
738
|
+
def fleet_id(self) -> pulumi.Output[str]:
|
739
|
+
"""
|
740
|
+
unique Fleet identifier
|
741
|
+
"""
|
742
|
+
return pulumi.get(self, "fleet_id")
|
743
|
+
|
744
|
+
@property
|
745
|
+
@pulumi.getter(name="lifecycleDetails")
|
746
|
+
def lifecycle_details(self) -> pulumi.Output[str]:
|
747
|
+
"""
|
748
|
+
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
749
|
+
"""
|
750
|
+
return pulumi.get(self, "lifecycle_details")
|
751
|
+
|
752
|
+
@property
|
753
|
+
@pulumi.getter
|
754
|
+
def product(self) -> pulumi.Output[str]:
|
755
|
+
"""
|
756
|
+
Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
|
757
|
+
"""
|
758
|
+
return pulumi.get(self, "product")
|
759
|
+
|
760
|
+
@property
|
761
|
+
@pulumi.getter(name="productCount")
|
762
|
+
def product_count(self) -> pulumi.Output[int]:
|
763
|
+
"""
|
764
|
+
Count of products within the resource.
|
765
|
+
"""
|
766
|
+
return pulumi.get(self, "product_count")
|
767
|
+
|
768
|
+
@property
|
769
|
+
@pulumi.getter(name="resourceId")
|
770
|
+
def resource_id(self) -> pulumi.Output[str]:
|
771
|
+
"""
|
772
|
+
The OCID of the resource.
|
773
|
+
"""
|
774
|
+
return pulumi.get(self, "resource_id")
|
775
|
+
|
776
|
+
@property
|
777
|
+
@pulumi.getter(name="resourceRegion")
|
778
|
+
def resource_region(self) -> pulumi.Output[str]:
|
779
|
+
"""
|
780
|
+
Associated region
|
781
|
+
"""
|
782
|
+
return pulumi.get(self, "resource_region")
|
783
|
+
|
784
|
+
@property
|
785
|
+
@pulumi.getter(name="resourceType")
|
786
|
+
def resource_type(self) -> pulumi.Output[str]:
|
787
|
+
"""
|
788
|
+
Type of the Resource.
|
789
|
+
"""
|
790
|
+
return pulumi.get(self, "resource_type")
|
791
|
+
|
792
|
+
@property
|
793
|
+
@pulumi.getter
|
794
|
+
def state(self) -> pulumi.Output[str]:
|
795
|
+
"""
|
796
|
+
The current state of the FleetResource.
|
797
|
+
"""
|
798
|
+
return pulumi.get(self, "state")
|
799
|
+
|
800
|
+
@property
|
801
|
+
@pulumi.getter(name="systemTags")
|
802
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
803
|
+
"""
|
804
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
805
|
+
"""
|
806
|
+
return pulumi.get(self, "system_tags")
|
807
|
+
|
808
|
+
@property
|
809
|
+
@pulumi.getter(name="targetCount")
|
810
|
+
def target_count(self) -> pulumi.Output[int]:
|
811
|
+
"""
|
812
|
+
Count of targets within the resource.
|
813
|
+
"""
|
814
|
+
return pulumi.get(self, "target_count")
|
815
|
+
|
816
|
+
@property
|
817
|
+
@pulumi.getter(name="tenancyId")
|
818
|
+
def tenancy_id(self) -> pulumi.Output[str]:
|
819
|
+
"""
|
820
|
+
(Updatable) OCID of the tenancy to which the resource belongs to.
|
821
|
+
|
822
|
+
|
823
|
+
** IMPORTANT **
|
824
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
825
|
+
"""
|
826
|
+
return pulumi.get(self, "tenancy_id")
|
827
|
+
|
828
|
+
@property
|
829
|
+
@pulumi.getter(name="tenancyName")
|
830
|
+
def tenancy_name(self) -> pulumi.Output[str]:
|
831
|
+
"""
|
832
|
+
Resource Tenancy Name
|
833
|
+
"""
|
834
|
+
return pulumi.get(self, "tenancy_name")
|
835
|
+
|
836
|
+
@property
|
837
|
+
@pulumi.getter(name="timeCreated")
|
838
|
+
def time_created(self) -> pulumi.Output[str]:
|
839
|
+
"""
|
840
|
+
The time this resource was created. An RFC3339 formatted datetime string.
|
841
|
+
"""
|
842
|
+
return pulumi.get(self, "time_created")
|
843
|
+
|
844
|
+
@property
|
845
|
+
@pulumi.getter(name="timeUpdated")
|
846
|
+
def time_updated(self) -> pulumi.Output[str]:
|
847
|
+
"""
|
848
|
+
The time this resource was last updated. An RFC3339 formatted datetime string.
|
849
|
+
"""
|
850
|
+
return pulumi.get(self, "time_updated")
|
851
|
+
|