pulumi-oci 2.5.0a1722606028__py3-none-any.whl → 2.6.0__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 +32 -0
- pulumi_oci/bigdataservice/_inputs.py +157 -14
- pulumi_oci/bigdataservice/bds_instance.py +128 -0
- pulumi_oci/bigdataservice/bds_instance_patch_action.py +64 -3
- pulumi_oci/bigdataservice/get_bds_instance.py +31 -1
- pulumi_oci/bigdataservice/outputs.py +257 -30
- pulumi_oci/devops/__init__.py +6 -0
- pulumi_oci/devops/_inputs.py +531 -32
- pulumi_oci/devops/get_build_runs.py +0 -5
- pulumi_oci/devops/get_project_repository_setting.py +129 -0
- pulumi_oci/devops/get_repositories.py +1 -1
- pulumi_oci/devops/get_repository.py +17 -4
- pulumi_oci/devops/get_repository_diffs.py +20 -3
- pulumi_oci/devops/get_repository_protected_branches.py +150 -0
- pulumi_oci/devops/get_repository_ref.py +2 -2
- pulumi_oci/devops/get_repository_setting.py +142 -0
- pulumi_oci/devops/get_triggers.py +0 -5
- pulumi_oci/devops/outputs.py +1216 -180
- pulumi_oci/devops/project_repository_setting.py +338 -0
- pulumi_oci/devops/repository.py +66 -75
- pulumi_oci/devops/repository_protected_branch_management.py +333 -0
- pulumi_oci/devops/repository_ref.py +2 -2
- pulumi_oci/devops/repository_setting.py +391 -0
- pulumi_oci/jms/__init__.py +4 -0
- pulumi_oci/jms/_inputs.py +80 -0
- pulumi_oci/jms/get_agent_installers.py +190 -0
- pulumi_oci/jms/get_fleet_blocklists.py +2 -2
- pulumi_oci/jms/get_fleet_crypto_analysis_result.py +29 -3
- pulumi_oci/jms/get_fleet_crypto_analysis_results.py +97 -3
- pulumi_oci/jms/get_fleet_export_setting.py +3 -3
- pulumi_oci/jms/get_fleet_export_status.py +2 -2
- pulumi_oci/jms/get_fleet_java_migration_analysis_result.py +2 -2
- pulumi_oci/jms/get_fleet_java_migration_analysis_results.py +45 -5
- pulumi_oci/jms/get_fleet_performance_tuning_analysis_result.py +4 -4
- pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +25 -5
- pulumi_oci/jms/get_fleets.py +2 -2
- pulumi_oci/jms/get_installation_site.py +4 -4
- pulumi_oci/jms/get_installation_sites.py +4 -4
- pulumi_oci/jms/get_java_downloads_java_download_tokens.py +2 -2
- pulumi_oci/jms/get_java_downloads_java_license_acceptance_records.py +2 -2
- pulumi_oci/jms/get_java_family.py +14 -1
- pulumi_oci/jms/get_jms_plugin.py +313 -0
- pulumi_oci/jms/get_jms_plugins.py +291 -0
- pulumi_oci/jms/jms_plugin.py +731 -0
- pulumi_oci/jms/outputs.py +488 -32
- pulumi_oci/osmanagementhub/get_software_source.py +19 -1
- pulumi_oci/osmanagementhub/software_source.py +82 -0
- pulumi_oci/psql/_inputs.py +8 -4
- pulumi_oci/psql/backup.py +4 -4
- pulumi_oci/psql/configuration.py +141 -38
- pulumi_oci/psql/db_system.py +53 -55
- pulumi_oci/psql/get_backup.py +1 -1
- pulumi_oci/psql/get_configuration.py +27 -1
- pulumi_oci/psql/get_configurations.py +2 -2
- pulumi_oci/psql/get_default_configuration.py +15 -2
- pulumi_oci/psql/get_default_configurations.py +2 -2
- pulumi_oci/psql/outputs.py +176 -13
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.5.0a1722606028.dist-info → pulumi_oci-2.6.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.5.0a1722606028.dist-info → pulumi_oci-2.6.0.dist-info}/RECORD +62 -52
- {pulumi_oci-2.5.0a1722606028.dist-info → pulumi_oci-2.6.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.5.0a1722606028.dist-info → pulumi_oci-2.6.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,731 @@
|
|
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 pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
|
12
|
+
__all__ = ['JmsPluginArgs', 'JmsPlugin']
|
13
|
+
|
14
|
+
@pulumi.input_type
|
15
|
+
class JmsPluginArgs:
|
16
|
+
def __init__(__self__, *,
|
17
|
+
agent_id: pulumi.Input[str],
|
18
|
+
compartment_id: pulumi.Input[str],
|
19
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
20
|
+
fleet_id: Optional[pulumi.Input[str]] = None,
|
21
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None):
|
22
|
+
"""
|
23
|
+
The set of arguments for constructing a JmsPlugin resource.
|
24
|
+
:param pulumi.Input[str] agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
|
25
|
+
:param pulumi.Input[str] compartment_id: The OMA/OCA agent's compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
26
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`. (See [Understanding Free-form Tags](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
27
|
+
:param pulumi.Input[str] fleet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the fleet.
|
28
|
+
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`. (See [Managing Tags and Tag Namespaces](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).)
|
29
|
+
|
30
|
+
|
31
|
+
** IMPORTANT **
|
32
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
33
|
+
"""
|
34
|
+
pulumi.set(__self__, "agent_id", agent_id)
|
35
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
36
|
+
if defined_tags is not None:
|
37
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
38
|
+
if fleet_id is not None:
|
39
|
+
pulumi.set(__self__, "fleet_id", fleet_id)
|
40
|
+
if freeform_tags is not None:
|
41
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
42
|
+
|
43
|
+
@property
|
44
|
+
@pulumi.getter(name="agentId")
|
45
|
+
def agent_id(self) -> pulumi.Input[str]:
|
46
|
+
"""
|
47
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
|
48
|
+
"""
|
49
|
+
return pulumi.get(self, "agent_id")
|
50
|
+
|
51
|
+
@agent_id.setter
|
52
|
+
def agent_id(self, value: pulumi.Input[str]):
|
53
|
+
pulumi.set(self, "agent_id", value)
|
54
|
+
|
55
|
+
@property
|
56
|
+
@pulumi.getter(name="compartmentId")
|
57
|
+
def compartment_id(self) -> pulumi.Input[str]:
|
58
|
+
"""
|
59
|
+
The OMA/OCA agent's compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
60
|
+
"""
|
61
|
+
return pulumi.get(self, "compartment_id")
|
62
|
+
|
63
|
+
@compartment_id.setter
|
64
|
+
def compartment_id(self, value: pulumi.Input[str]):
|
65
|
+
pulumi.set(self, "compartment_id", value)
|
66
|
+
|
67
|
+
@property
|
68
|
+
@pulumi.getter(name="definedTags")
|
69
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
70
|
+
"""
|
71
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`. (See [Understanding Free-form Tags](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
72
|
+
"""
|
73
|
+
return pulumi.get(self, "defined_tags")
|
74
|
+
|
75
|
+
@defined_tags.setter
|
76
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
77
|
+
pulumi.set(self, "defined_tags", value)
|
78
|
+
|
79
|
+
@property
|
80
|
+
@pulumi.getter(name="fleetId")
|
81
|
+
def fleet_id(self) -> Optional[pulumi.Input[str]]:
|
82
|
+
"""
|
83
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the fleet.
|
84
|
+
"""
|
85
|
+
return pulumi.get(self, "fleet_id")
|
86
|
+
|
87
|
+
@fleet_id.setter
|
88
|
+
def fleet_id(self, value: Optional[pulumi.Input[str]]):
|
89
|
+
pulumi.set(self, "fleet_id", value)
|
90
|
+
|
91
|
+
@property
|
92
|
+
@pulumi.getter(name="freeformTags")
|
93
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
94
|
+
"""
|
95
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`. (See [Managing Tags and Tag Namespaces](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).)
|
96
|
+
|
97
|
+
|
98
|
+
** IMPORTANT **
|
99
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
100
|
+
"""
|
101
|
+
return pulumi.get(self, "freeform_tags")
|
102
|
+
|
103
|
+
@freeform_tags.setter
|
104
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
105
|
+
pulumi.set(self, "freeform_tags", value)
|
106
|
+
|
107
|
+
|
108
|
+
@pulumi.input_type
|
109
|
+
class _JmsPluginState:
|
110
|
+
def __init__(__self__, *,
|
111
|
+
agent_id: Optional[pulumi.Input[str]] = None,
|
112
|
+
agent_type: Optional[pulumi.Input[str]] = None,
|
113
|
+
availability_status: Optional[pulumi.Input[str]] = None,
|
114
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
115
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
116
|
+
fleet_id: Optional[pulumi.Input[str]] = None,
|
117
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
118
|
+
hostname: Optional[pulumi.Input[str]] = None,
|
119
|
+
os_architecture: Optional[pulumi.Input[str]] = None,
|
120
|
+
os_distribution: Optional[pulumi.Input[str]] = None,
|
121
|
+
os_family: Optional[pulumi.Input[str]] = None,
|
122
|
+
plugin_version: Optional[pulumi.Input[str]] = None,
|
123
|
+
state: Optional[pulumi.Input[str]] = None,
|
124
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
125
|
+
time_last_seen: Optional[pulumi.Input[str]] = None,
|
126
|
+
time_registered: Optional[pulumi.Input[str]] = None):
|
127
|
+
"""
|
128
|
+
Input properties used for looking up and filtering JmsPlugin resources.
|
129
|
+
:param pulumi.Input[str] agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
|
130
|
+
:param pulumi.Input[str] agent_type: The agent type.
|
131
|
+
:param pulumi.Input[str] availability_status: The availability status.
|
132
|
+
:param pulumi.Input[str] compartment_id: The OMA/OCA agent's compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
133
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`. (See [Understanding Free-form Tags](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
134
|
+
:param pulumi.Input[str] fleet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the fleet.
|
135
|
+
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`. (See [Managing Tags and Tag Namespaces](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).)
|
136
|
+
|
137
|
+
|
138
|
+
** IMPORTANT **
|
139
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
140
|
+
:param pulumi.Input[str] hostname: The hostname of the agent.
|
141
|
+
:param pulumi.Input[str] os_architecture: The architecture of the operating system of the plugin.
|
142
|
+
:param pulumi.Input[str] os_distribution: The distribution of the operating system of the plugin.
|
143
|
+
:param pulumi.Input[str] os_family: The operating system family for the plugin.
|
144
|
+
:param pulumi.Input[str] plugin_version: The version of the plugin.
|
145
|
+
:param pulumi.Input[str] state: The lifecycle state.
|
146
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
147
|
+
:param pulumi.Input[str] time_last_seen: The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
|
148
|
+
:param pulumi.Input[str] time_registered: The date and time the plugin was registered.
|
149
|
+
"""
|
150
|
+
if agent_id is not None:
|
151
|
+
pulumi.set(__self__, "agent_id", agent_id)
|
152
|
+
if agent_type is not None:
|
153
|
+
pulumi.set(__self__, "agent_type", agent_type)
|
154
|
+
if availability_status is not None:
|
155
|
+
pulumi.set(__self__, "availability_status", availability_status)
|
156
|
+
if compartment_id is not None:
|
157
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
158
|
+
if defined_tags is not None:
|
159
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
160
|
+
if fleet_id is not None:
|
161
|
+
pulumi.set(__self__, "fleet_id", fleet_id)
|
162
|
+
if freeform_tags is not None:
|
163
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
164
|
+
if hostname is not None:
|
165
|
+
pulumi.set(__self__, "hostname", hostname)
|
166
|
+
if os_architecture is not None:
|
167
|
+
pulumi.set(__self__, "os_architecture", os_architecture)
|
168
|
+
if os_distribution is not None:
|
169
|
+
pulumi.set(__self__, "os_distribution", os_distribution)
|
170
|
+
if os_family is not None:
|
171
|
+
pulumi.set(__self__, "os_family", os_family)
|
172
|
+
if plugin_version is not None:
|
173
|
+
pulumi.set(__self__, "plugin_version", plugin_version)
|
174
|
+
if state is not None:
|
175
|
+
pulumi.set(__self__, "state", state)
|
176
|
+
if system_tags is not None:
|
177
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
178
|
+
if time_last_seen is not None:
|
179
|
+
pulumi.set(__self__, "time_last_seen", time_last_seen)
|
180
|
+
if time_registered is not None:
|
181
|
+
pulumi.set(__self__, "time_registered", time_registered)
|
182
|
+
|
183
|
+
@property
|
184
|
+
@pulumi.getter(name="agentId")
|
185
|
+
def agent_id(self) -> Optional[pulumi.Input[str]]:
|
186
|
+
"""
|
187
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
|
188
|
+
"""
|
189
|
+
return pulumi.get(self, "agent_id")
|
190
|
+
|
191
|
+
@agent_id.setter
|
192
|
+
def agent_id(self, value: Optional[pulumi.Input[str]]):
|
193
|
+
pulumi.set(self, "agent_id", value)
|
194
|
+
|
195
|
+
@property
|
196
|
+
@pulumi.getter(name="agentType")
|
197
|
+
def agent_type(self) -> Optional[pulumi.Input[str]]:
|
198
|
+
"""
|
199
|
+
The agent type.
|
200
|
+
"""
|
201
|
+
return pulumi.get(self, "agent_type")
|
202
|
+
|
203
|
+
@agent_type.setter
|
204
|
+
def agent_type(self, value: Optional[pulumi.Input[str]]):
|
205
|
+
pulumi.set(self, "agent_type", value)
|
206
|
+
|
207
|
+
@property
|
208
|
+
@pulumi.getter(name="availabilityStatus")
|
209
|
+
def availability_status(self) -> Optional[pulumi.Input[str]]:
|
210
|
+
"""
|
211
|
+
The availability status.
|
212
|
+
"""
|
213
|
+
return pulumi.get(self, "availability_status")
|
214
|
+
|
215
|
+
@availability_status.setter
|
216
|
+
def availability_status(self, value: Optional[pulumi.Input[str]]):
|
217
|
+
pulumi.set(self, "availability_status", value)
|
218
|
+
|
219
|
+
@property
|
220
|
+
@pulumi.getter(name="compartmentId")
|
221
|
+
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
222
|
+
"""
|
223
|
+
The OMA/OCA agent's compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
224
|
+
"""
|
225
|
+
return pulumi.get(self, "compartment_id")
|
226
|
+
|
227
|
+
@compartment_id.setter
|
228
|
+
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
229
|
+
pulumi.set(self, "compartment_id", value)
|
230
|
+
|
231
|
+
@property
|
232
|
+
@pulumi.getter(name="definedTags")
|
233
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
234
|
+
"""
|
235
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`. (See [Understanding Free-form Tags](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
236
|
+
"""
|
237
|
+
return pulumi.get(self, "defined_tags")
|
238
|
+
|
239
|
+
@defined_tags.setter
|
240
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
241
|
+
pulumi.set(self, "defined_tags", value)
|
242
|
+
|
243
|
+
@property
|
244
|
+
@pulumi.getter(name="fleetId")
|
245
|
+
def fleet_id(self) -> Optional[pulumi.Input[str]]:
|
246
|
+
"""
|
247
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the fleet.
|
248
|
+
"""
|
249
|
+
return pulumi.get(self, "fleet_id")
|
250
|
+
|
251
|
+
@fleet_id.setter
|
252
|
+
def fleet_id(self, value: Optional[pulumi.Input[str]]):
|
253
|
+
pulumi.set(self, "fleet_id", value)
|
254
|
+
|
255
|
+
@property
|
256
|
+
@pulumi.getter(name="freeformTags")
|
257
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
258
|
+
"""
|
259
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`. (See [Managing Tags and Tag Namespaces](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).)
|
260
|
+
|
261
|
+
|
262
|
+
** IMPORTANT **
|
263
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
264
|
+
"""
|
265
|
+
return pulumi.get(self, "freeform_tags")
|
266
|
+
|
267
|
+
@freeform_tags.setter
|
268
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
269
|
+
pulumi.set(self, "freeform_tags", value)
|
270
|
+
|
271
|
+
@property
|
272
|
+
@pulumi.getter
|
273
|
+
def hostname(self) -> Optional[pulumi.Input[str]]:
|
274
|
+
"""
|
275
|
+
The hostname of the agent.
|
276
|
+
"""
|
277
|
+
return pulumi.get(self, "hostname")
|
278
|
+
|
279
|
+
@hostname.setter
|
280
|
+
def hostname(self, value: Optional[pulumi.Input[str]]):
|
281
|
+
pulumi.set(self, "hostname", value)
|
282
|
+
|
283
|
+
@property
|
284
|
+
@pulumi.getter(name="osArchitecture")
|
285
|
+
def os_architecture(self) -> Optional[pulumi.Input[str]]:
|
286
|
+
"""
|
287
|
+
The architecture of the operating system of the plugin.
|
288
|
+
"""
|
289
|
+
return pulumi.get(self, "os_architecture")
|
290
|
+
|
291
|
+
@os_architecture.setter
|
292
|
+
def os_architecture(self, value: Optional[pulumi.Input[str]]):
|
293
|
+
pulumi.set(self, "os_architecture", value)
|
294
|
+
|
295
|
+
@property
|
296
|
+
@pulumi.getter(name="osDistribution")
|
297
|
+
def os_distribution(self) -> Optional[pulumi.Input[str]]:
|
298
|
+
"""
|
299
|
+
The distribution of the operating system of the plugin.
|
300
|
+
"""
|
301
|
+
return pulumi.get(self, "os_distribution")
|
302
|
+
|
303
|
+
@os_distribution.setter
|
304
|
+
def os_distribution(self, value: Optional[pulumi.Input[str]]):
|
305
|
+
pulumi.set(self, "os_distribution", value)
|
306
|
+
|
307
|
+
@property
|
308
|
+
@pulumi.getter(name="osFamily")
|
309
|
+
def os_family(self) -> Optional[pulumi.Input[str]]:
|
310
|
+
"""
|
311
|
+
The operating system family for the plugin.
|
312
|
+
"""
|
313
|
+
return pulumi.get(self, "os_family")
|
314
|
+
|
315
|
+
@os_family.setter
|
316
|
+
def os_family(self, value: Optional[pulumi.Input[str]]):
|
317
|
+
pulumi.set(self, "os_family", value)
|
318
|
+
|
319
|
+
@property
|
320
|
+
@pulumi.getter(name="pluginVersion")
|
321
|
+
def plugin_version(self) -> Optional[pulumi.Input[str]]:
|
322
|
+
"""
|
323
|
+
The version of the plugin.
|
324
|
+
"""
|
325
|
+
return pulumi.get(self, "plugin_version")
|
326
|
+
|
327
|
+
@plugin_version.setter
|
328
|
+
def plugin_version(self, value: Optional[pulumi.Input[str]]):
|
329
|
+
pulumi.set(self, "plugin_version", value)
|
330
|
+
|
331
|
+
@property
|
332
|
+
@pulumi.getter
|
333
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
334
|
+
"""
|
335
|
+
The lifecycle state.
|
336
|
+
"""
|
337
|
+
return pulumi.get(self, "state")
|
338
|
+
|
339
|
+
@state.setter
|
340
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
341
|
+
pulumi.set(self, "state", value)
|
342
|
+
|
343
|
+
@property
|
344
|
+
@pulumi.getter(name="systemTags")
|
345
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
346
|
+
"""
|
347
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
348
|
+
"""
|
349
|
+
return pulumi.get(self, "system_tags")
|
350
|
+
|
351
|
+
@system_tags.setter
|
352
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
353
|
+
pulumi.set(self, "system_tags", value)
|
354
|
+
|
355
|
+
@property
|
356
|
+
@pulumi.getter(name="timeLastSeen")
|
357
|
+
def time_last_seen(self) -> Optional[pulumi.Input[str]]:
|
358
|
+
"""
|
359
|
+
The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
|
360
|
+
"""
|
361
|
+
return pulumi.get(self, "time_last_seen")
|
362
|
+
|
363
|
+
@time_last_seen.setter
|
364
|
+
def time_last_seen(self, value: Optional[pulumi.Input[str]]):
|
365
|
+
pulumi.set(self, "time_last_seen", value)
|
366
|
+
|
367
|
+
@property
|
368
|
+
@pulumi.getter(name="timeRegistered")
|
369
|
+
def time_registered(self) -> Optional[pulumi.Input[str]]:
|
370
|
+
"""
|
371
|
+
The date and time the plugin was registered.
|
372
|
+
"""
|
373
|
+
return pulumi.get(self, "time_registered")
|
374
|
+
|
375
|
+
@time_registered.setter
|
376
|
+
def time_registered(self, value: Optional[pulumi.Input[str]]):
|
377
|
+
pulumi.set(self, "time_registered", value)
|
378
|
+
|
379
|
+
|
380
|
+
class JmsPlugin(pulumi.CustomResource):
|
381
|
+
@overload
|
382
|
+
def __init__(__self__,
|
383
|
+
resource_name: str,
|
384
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
385
|
+
agent_id: Optional[pulumi.Input[str]] = None,
|
386
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
387
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
388
|
+
fleet_id: Optional[pulumi.Input[str]] = None,
|
389
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
390
|
+
__props__=None):
|
391
|
+
"""
|
392
|
+
This resource provides the Jms Plugin resource in Oracle Cloud Infrastructure Jms service.
|
393
|
+
|
394
|
+
Registers an agent's JmsPlugin, optionally attaching to an existing fleet of the tenancy.
|
395
|
+
JmsPlugins registered fleet-less are created with lifecycle state INACTIVE.
|
396
|
+
For the operation to be authorized, the agent must exist, and the authorized user requires JMS_PLUGIN_CREATE permission for the agent's compartment.
|
397
|
+
|
398
|
+
## Example Usage
|
399
|
+
|
400
|
+
```python
|
401
|
+
import pulumi
|
402
|
+
import pulumi_oci as oci
|
403
|
+
|
404
|
+
test_jms_plugin = oci.jms.JmsPlugin("test_jms_plugin",
|
405
|
+
agent_id=jms_plugin_agent_id,
|
406
|
+
compartment_id=compartment_id,
|
407
|
+
defined_tags={
|
408
|
+
"foo-namespace.bar-key": "value",
|
409
|
+
},
|
410
|
+
fleet_id=test_fleet["id"],
|
411
|
+
freeform_tags={
|
412
|
+
"bar-key": "value",
|
413
|
+
})
|
414
|
+
```
|
415
|
+
|
416
|
+
## Import
|
417
|
+
|
418
|
+
JmsPlugins can be imported using the `id`, e.g.
|
419
|
+
|
420
|
+
```sh
|
421
|
+
$ pulumi import oci:Jms/jmsPlugin:JmsPlugin test_jms_plugin "id"
|
422
|
+
```
|
423
|
+
|
424
|
+
:param str resource_name: The name of the resource.
|
425
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
426
|
+
:param pulumi.Input[str] agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
|
427
|
+
:param pulumi.Input[str] compartment_id: The OMA/OCA agent's compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
428
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`. (See [Understanding Free-form Tags](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
429
|
+
:param pulumi.Input[str] fleet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the fleet.
|
430
|
+
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`. (See [Managing Tags and Tag Namespaces](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).)
|
431
|
+
|
432
|
+
|
433
|
+
** IMPORTANT **
|
434
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
435
|
+
"""
|
436
|
+
...
|
437
|
+
@overload
|
438
|
+
def __init__(__self__,
|
439
|
+
resource_name: str,
|
440
|
+
args: JmsPluginArgs,
|
441
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
442
|
+
"""
|
443
|
+
This resource provides the Jms Plugin resource in Oracle Cloud Infrastructure Jms service.
|
444
|
+
|
445
|
+
Registers an agent's JmsPlugin, optionally attaching to an existing fleet of the tenancy.
|
446
|
+
JmsPlugins registered fleet-less are created with lifecycle state INACTIVE.
|
447
|
+
For the operation to be authorized, the agent must exist, and the authorized user requires JMS_PLUGIN_CREATE permission for the agent's compartment.
|
448
|
+
|
449
|
+
## Example Usage
|
450
|
+
|
451
|
+
```python
|
452
|
+
import pulumi
|
453
|
+
import pulumi_oci as oci
|
454
|
+
|
455
|
+
test_jms_plugin = oci.jms.JmsPlugin("test_jms_plugin",
|
456
|
+
agent_id=jms_plugin_agent_id,
|
457
|
+
compartment_id=compartment_id,
|
458
|
+
defined_tags={
|
459
|
+
"foo-namespace.bar-key": "value",
|
460
|
+
},
|
461
|
+
fleet_id=test_fleet["id"],
|
462
|
+
freeform_tags={
|
463
|
+
"bar-key": "value",
|
464
|
+
})
|
465
|
+
```
|
466
|
+
|
467
|
+
## Import
|
468
|
+
|
469
|
+
JmsPlugins can be imported using the `id`, e.g.
|
470
|
+
|
471
|
+
```sh
|
472
|
+
$ pulumi import oci:Jms/jmsPlugin:JmsPlugin test_jms_plugin "id"
|
473
|
+
```
|
474
|
+
|
475
|
+
:param str resource_name: The name of the resource.
|
476
|
+
:param JmsPluginArgs args: The arguments to use to populate this resource's properties.
|
477
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
478
|
+
"""
|
479
|
+
...
|
480
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
481
|
+
resource_args, opts = _utilities.get_resource_args_opts(JmsPluginArgs, pulumi.ResourceOptions, *args, **kwargs)
|
482
|
+
if resource_args is not None:
|
483
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
484
|
+
else:
|
485
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
486
|
+
|
487
|
+
def _internal_init(__self__,
|
488
|
+
resource_name: str,
|
489
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
490
|
+
agent_id: Optional[pulumi.Input[str]] = None,
|
491
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
492
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
493
|
+
fleet_id: Optional[pulumi.Input[str]] = None,
|
494
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
495
|
+
__props__=None):
|
496
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
497
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
498
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
499
|
+
if opts.id is None:
|
500
|
+
if __props__ is not None:
|
501
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
502
|
+
__props__ = JmsPluginArgs.__new__(JmsPluginArgs)
|
503
|
+
|
504
|
+
if agent_id is None and not opts.urn:
|
505
|
+
raise TypeError("Missing required property 'agent_id'")
|
506
|
+
__props__.__dict__["agent_id"] = agent_id
|
507
|
+
if compartment_id is None and not opts.urn:
|
508
|
+
raise TypeError("Missing required property 'compartment_id'")
|
509
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
510
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
511
|
+
__props__.__dict__["fleet_id"] = fleet_id
|
512
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
513
|
+
__props__.__dict__["agent_type"] = None
|
514
|
+
__props__.__dict__["availability_status"] = None
|
515
|
+
__props__.__dict__["hostname"] = None
|
516
|
+
__props__.__dict__["os_architecture"] = None
|
517
|
+
__props__.__dict__["os_distribution"] = None
|
518
|
+
__props__.__dict__["os_family"] = None
|
519
|
+
__props__.__dict__["plugin_version"] = None
|
520
|
+
__props__.__dict__["state"] = None
|
521
|
+
__props__.__dict__["system_tags"] = None
|
522
|
+
__props__.__dict__["time_last_seen"] = None
|
523
|
+
__props__.__dict__["time_registered"] = None
|
524
|
+
super(JmsPlugin, __self__).__init__(
|
525
|
+
'oci:Jms/jmsPlugin:JmsPlugin',
|
526
|
+
resource_name,
|
527
|
+
__props__,
|
528
|
+
opts)
|
529
|
+
|
530
|
+
@staticmethod
|
531
|
+
def get(resource_name: str,
|
532
|
+
id: pulumi.Input[str],
|
533
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
534
|
+
agent_id: Optional[pulumi.Input[str]] = None,
|
535
|
+
agent_type: Optional[pulumi.Input[str]] = None,
|
536
|
+
availability_status: Optional[pulumi.Input[str]] = None,
|
537
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
538
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
539
|
+
fleet_id: Optional[pulumi.Input[str]] = None,
|
540
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
541
|
+
hostname: Optional[pulumi.Input[str]] = None,
|
542
|
+
os_architecture: Optional[pulumi.Input[str]] = None,
|
543
|
+
os_distribution: Optional[pulumi.Input[str]] = None,
|
544
|
+
os_family: Optional[pulumi.Input[str]] = None,
|
545
|
+
plugin_version: Optional[pulumi.Input[str]] = None,
|
546
|
+
state: Optional[pulumi.Input[str]] = None,
|
547
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
548
|
+
time_last_seen: Optional[pulumi.Input[str]] = None,
|
549
|
+
time_registered: Optional[pulumi.Input[str]] = None) -> 'JmsPlugin':
|
550
|
+
"""
|
551
|
+
Get an existing JmsPlugin resource's state with the given name, id, and optional extra
|
552
|
+
properties used to qualify the lookup.
|
553
|
+
|
554
|
+
:param str resource_name: The unique name of the resulting resource.
|
555
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
556
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
557
|
+
:param pulumi.Input[str] agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
|
558
|
+
:param pulumi.Input[str] agent_type: The agent type.
|
559
|
+
:param pulumi.Input[str] availability_status: The availability status.
|
560
|
+
:param pulumi.Input[str] compartment_id: The OMA/OCA agent's compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
561
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`. (See [Understanding Free-form Tags](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
562
|
+
:param pulumi.Input[str] fleet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the fleet.
|
563
|
+
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`. (See [Managing Tags and Tag Namespaces](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).)
|
564
|
+
|
565
|
+
|
566
|
+
** IMPORTANT **
|
567
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
568
|
+
:param pulumi.Input[str] hostname: The hostname of the agent.
|
569
|
+
:param pulumi.Input[str] os_architecture: The architecture of the operating system of the plugin.
|
570
|
+
:param pulumi.Input[str] os_distribution: The distribution of the operating system of the plugin.
|
571
|
+
:param pulumi.Input[str] os_family: The operating system family for the plugin.
|
572
|
+
:param pulumi.Input[str] plugin_version: The version of the plugin.
|
573
|
+
:param pulumi.Input[str] state: The lifecycle state.
|
574
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
575
|
+
:param pulumi.Input[str] time_last_seen: The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
|
576
|
+
:param pulumi.Input[str] time_registered: The date and time the plugin was registered.
|
577
|
+
"""
|
578
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
579
|
+
|
580
|
+
__props__ = _JmsPluginState.__new__(_JmsPluginState)
|
581
|
+
|
582
|
+
__props__.__dict__["agent_id"] = agent_id
|
583
|
+
__props__.__dict__["agent_type"] = agent_type
|
584
|
+
__props__.__dict__["availability_status"] = availability_status
|
585
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
586
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
587
|
+
__props__.__dict__["fleet_id"] = fleet_id
|
588
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
589
|
+
__props__.__dict__["hostname"] = hostname
|
590
|
+
__props__.__dict__["os_architecture"] = os_architecture
|
591
|
+
__props__.__dict__["os_distribution"] = os_distribution
|
592
|
+
__props__.__dict__["os_family"] = os_family
|
593
|
+
__props__.__dict__["plugin_version"] = plugin_version
|
594
|
+
__props__.__dict__["state"] = state
|
595
|
+
__props__.__dict__["system_tags"] = system_tags
|
596
|
+
__props__.__dict__["time_last_seen"] = time_last_seen
|
597
|
+
__props__.__dict__["time_registered"] = time_registered
|
598
|
+
return JmsPlugin(resource_name, opts=opts, __props__=__props__)
|
599
|
+
|
600
|
+
@property
|
601
|
+
@pulumi.getter(name="agentId")
|
602
|
+
def agent_id(self) -> pulumi.Output[str]:
|
603
|
+
"""
|
604
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent (OMA) or the Oracle Cloud Agent (OCA) instance where the JMS plugin is deployed.
|
605
|
+
"""
|
606
|
+
return pulumi.get(self, "agent_id")
|
607
|
+
|
608
|
+
@property
|
609
|
+
@pulumi.getter(name="agentType")
|
610
|
+
def agent_type(self) -> pulumi.Output[str]:
|
611
|
+
"""
|
612
|
+
The agent type.
|
613
|
+
"""
|
614
|
+
return pulumi.get(self, "agent_type")
|
615
|
+
|
616
|
+
@property
|
617
|
+
@pulumi.getter(name="availabilityStatus")
|
618
|
+
def availability_status(self) -> pulumi.Output[str]:
|
619
|
+
"""
|
620
|
+
The availability status.
|
621
|
+
"""
|
622
|
+
return pulumi.get(self, "availability_status")
|
623
|
+
|
624
|
+
@property
|
625
|
+
@pulumi.getter(name="compartmentId")
|
626
|
+
def compartment_id(self) -> pulumi.Output[str]:
|
627
|
+
"""
|
628
|
+
The OMA/OCA agent's compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
629
|
+
"""
|
630
|
+
return pulumi.get(self, "compartment_id")
|
631
|
+
|
632
|
+
@property
|
633
|
+
@pulumi.getter(name="definedTags")
|
634
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
635
|
+
"""
|
636
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`. (See [Understanding Free-form Tags](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
637
|
+
"""
|
638
|
+
return pulumi.get(self, "defined_tags")
|
639
|
+
|
640
|
+
@property
|
641
|
+
@pulumi.getter(name="fleetId")
|
642
|
+
def fleet_id(self) -> pulumi.Output[str]:
|
643
|
+
"""
|
644
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the fleet.
|
645
|
+
"""
|
646
|
+
return pulumi.get(self, "fleet_id")
|
647
|
+
|
648
|
+
@property
|
649
|
+
@pulumi.getter(name="freeformTags")
|
650
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
651
|
+
"""
|
652
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`. (See [Managing Tags and Tag Namespaces](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).)
|
653
|
+
|
654
|
+
|
655
|
+
** IMPORTANT **
|
656
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
657
|
+
"""
|
658
|
+
return pulumi.get(self, "freeform_tags")
|
659
|
+
|
660
|
+
@property
|
661
|
+
@pulumi.getter
|
662
|
+
def hostname(self) -> pulumi.Output[str]:
|
663
|
+
"""
|
664
|
+
The hostname of the agent.
|
665
|
+
"""
|
666
|
+
return pulumi.get(self, "hostname")
|
667
|
+
|
668
|
+
@property
|
669
|
+
@pulumi.getter(name="osArchitecture")
|
670
|
+
def os_architecture(self) -> pulumi.Output[str]:
|
671
|
+
"""
|
672
|
+
The architecture of the operating system of the plugin.
|
673
|
+
"""
|
674
|
+
return pulumi.get(self, "os_architecture")
|
675
|
+
|
676
|
+
@property
|
677
|
+
@pulumi.getter(name="osDistribution")
|
678
|
+
def os_distribution(self) -> pulumi.Output[str]:
|
679
|
+
"""
|
680
|
+
The distribution of the operating system of the plugin.
|
681
|
+
"""
|
682
|
+
return pulumi.get(self, "os_distribution")
|
683
|
+
|
684
|
+
@property
|
685
|
+
@pulumi.getter(name="osFamily")
|
686
|
+
def os_family(self) -> pulumi.Output[str]:
|
687
|
+
"""
|
688
|
+
The operating system family for the plugin.
|
689
|
+
"""
|
690
|
+
return pulumi.get(self, "os_family")
|
691
|
+
|
692
|
+
@property
|
693
|
+
@pulumi.getter(name="pluginVersion")
|
694
|
+
def plugin_version(self) -> pulumi.Output[str]:
|
695
|
+
"""
|
696
|
+
The version of the plugin.
|
697
|
+
"""
|
698
|
+
return pulumi.get(self, "plugin_version")
|
699
|
+
|
700
|
+
@property
|
701
|
+
@pulumi.getter
|
702
|
+
def state(self) -> pulumi.Output[str]:
|
703
|
+
"""
|
704
|
+
The lifecycle state.
|
705
|
+
"""
|
706
|
+
return pulumi.get(self, "state")
|
707
|
+
|
708
|
+
@property
|
709
|
+
@pulumi.getter(name="systemTags")
|
710
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
711
|
+
"""
|
712
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
713
|
+
"""
|
714
|
+
return pulumi.get(self, "system_tags")
|
715
|
+
|
716
|
+
@property
|
717
|
+
@pulumi.getter(name="timeLastSeen")
|
718
|
+
def time_last_seen(self) -> pulumi.Output[str]:
|
719
|
+
"""
|
720
|
+
The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
|
721
|
+
"""
|
722
|
+
return pulumi.get(self, "time_last_seen")
|
723
|
+
|
724
|
+
@property
|
725
|
+
@pulumi.getter(name="timeRegistered")
|
726
|
+
def time_registered(self) -> pulumi.Output[str]:
|
727
|
+
"""
|
728
|
+
The date and time the plugin was registered.
|
729
|
+
"""
|
730
|
+
return pulumi.get(self, "time_registered")
|
731
|
+
|