pulumi-oci 1.42.0a1719642398__py3-none-any.whl → 2.0.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 +8 -16
- pulumi_oci/core/_inputs.py +4 -4
- pulumi_oci/core/ipsec_connection_tunnel_management.py +62 -62
- pulumi_oci/core/outputs.py +10 -10
- pulumi_oci/databasemigration/__init__.py +0 -6
- pulumi_oci/databasemigration/_inputs.py +10 -2359
- pulumi_oci/databasemigration/outputs.py +74 -6309
- pulumi_oci/datascience/pipeline.py +26 -26
- pulumi_oci/jms/__init__.py +1 -0
- pulumi_oci/jms/_inputs.py +672 -0
- pulumi_oci/jms/fleet_advanced_feature_configuration.py +704 -0
- pulumi_oci/jms/get_fleet_advanced_feature_configuration.py +0 -3
- pulumi_oci/jms/outputs.py +770 -0
- pulumi_oci/mysql/_inputs.py +125 -8
- pulumi_oci/mysql/get_mysql_backup.py +60 -1
- pulumi_oci/mysql/mysql_backup.py +183 -47
- pulumi_oci/mysql/outputs.py +366 -8
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-1.42.0a1719642398.dist-info → pulumi_oci-2.0.0.dist-info}/METADATA +2 -2
- {pulumi_oci-1.42.0a1719642398.dist-info → pulumi_oci-2.0.0.dist-info}/RECORD +22 -27
- {pulumi_oci-1.42.0a1719642398.dist-info → pulumi_oci-2.0.0.dist-info}/WHEEL +1 -1
- pulumi_oci/databasemigration/connection.py +0 -1199
- pulumi_oci/databasemigration/get_connection.py +0 -399
- pulumi_oci/databasemigration/get_connections.py +0 -176
- pulumi_oci/databasemigration/get_migration.py +0 -480
- pulumi_oci/databasemigration/get_migrations.py +0 -196
- pulumi_oci/databasemigration/migration.py +0 -1630
- {pulumi_oci-1.42.0a1719642398.dist-info → pulumi_oci-2.0.0.dist-info}/top_level.txt +0 -0
pulumi_oci/jms/outputs.py
CHANGED
@@ -11,6 +11,19 @@ from .. import _utilities
|
|
11
11
|
from . import outputs
|
12
12
|
|
13
13
|
__all__ = [
|
14
|
+
'FleetAdvancedFeatureConfigurationAdvancedUsageTracking',
|
15
|
+
'FleetAdvancedFeatureConfigurationCryptoEventAnalysis',
|
16
|
+
'FleetAdvancedFeatureConfigurationCryptoEventAnalysisSummarizedEventsLog',
|
17
|
+
'FleetAdvancedFeatureConfigurationJavaMigrationAnalysis',
|
18
|
+
'FleetAdvancedFeatureConfigurationJfrRecording',
|
19
|
+
'FleetAdvancedFeatureConfigurationLcm',
|
20
|
+
'FleetAdvancedFeatureConfigurationLcmPostInstallationActions',
|
21
|
+
'FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettings',
|
22
|
+
'FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsCertpath',
|
23
|
+
'FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsJar',
|
24
|
+
'FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsTl',
|
25
|
+
'FleetAdvancedFeatureConfigurationLcmPostInstallationActionsProxies',
|
26
|
+
'FleetAdvancedFeatureConfigurationPerformanceTuningAnalysis',
|
14
27
|
'FleetInventoryLog',
|
15
28
|
'FleetOperationLog',
|
16
29
|
'JavaDownloadsJavaDownloadReportCreatedBy',
|
@@ -117,6 +130,763 @@ __all__ = [
|
|
117
130
|
'GetListJreUsageItemOperatingSystemResult',
|
118
131
|
]
|
119
132
|
|
133
|
+
@pulumi.output_type
|
134
|
+
class FleetAdvancedFeatureConfigurationAdvancedUsageTracking(dict):
|
135
|
+
@staticmethod
|
136
|
+
def __key_warning(key: str):
|
137
|
+
suggest = None
|
138
|
+
if key == "isEnabled":
|
139
|
+
suggest = "is_enabled"
|
140
|
+
|
141
|
+
if suggest:
|
142
|
+
pulumi.log.warn(f"Key '{key}' not found in FleetAdvancedFeatureConfigurationAdvancedUsageTracking. Access the value via the '{suggest}' property getter instead.")
|
143
|
+
|
144
|
+
def __getitem__(self, key: str) -> Any:
|
145
|
+
FleetAdvancedFeatureConfigurationAdvancedUsageTracking.__key_warning(key)
|
146
|
+
return super().__getitem__(key)
|
147
|
+
|
148
|
+
def get(self, key: str, default = None) -> Any:
|
149
|
+
FleetAdvancedFeatureConfigurationAdvancedUsageTracking.__key_warning(key)
|
150
|
+
return super().get(key, default)
|
151
|
+
|
152
|
+
def __init__(__self__, *,
|
153
|
+
is_enabled: Optional[bool] = None):
|
154
|
+
"""
|
155
|
+
:param bool is_enabled: (Updatable) AdvancedUsageTracking flag to store enabled or disabled status.
|
156
|
+
"""
|
157
|
+
if is_enabled is not None:
|
158
|
+
pulumi.set(__self__, "is_enabled", is_enabled)
|
159
|
+
|
160
|
+
@property
|
161
|
+
@pulumi.getter(name="isEnabled")
|
162
|
+
def is_enabled(self) -> Optional[bool]:
|
163
|
+
"""
|
164
|
+
(Updatable) AdvancedUsageTracking flag to store enabled or disabled status.
|
165
|
+
"""
|
166
|
+
return pulumi.get(self, "is_enabled")
|
167
|
+
|
168
|
+
|
169
|
+
@pulumi.output_type
|
170
|
+
class FleetAdvancedFeatureConfigurationCryptoEventAnalysis(dict):
|
171
|
+
@staticmethod
|
172
|
+
def __key_warning(key: str):
|
173
|
+
suggest = None
|
174
|
+
if key == "isEnabled":
|
175
|
+
suggest = "is_enabled"
|
176
|
+
elif key == "summarizedEventsLog":
|
177
|
+
suggest = "summarized_events_log"
|
178
|
+
|
179
|
+
if suggest:
|
180
|
+
pulumi.log.warn(f"Key '{key}' not found in FleetAdvancedFeatureConfigurationCryptoEventAnalysis. Access the value via the '{suggest}' property getter instead.")
|
181
|
+
|
182
|
+
def __getitem__(self, key: str) -> Any:
|
183
|
+
FleetAdvancedFeatureConfigurationCryptoEventAnalysis.__key_warning(key)
|
184
|
+
return super().__getitem__(key)
|
185
|
+
|
186
|
+
def get(self, key: str, default = None) -> Any:
|
187
|
+
FleetAdvancedFeatureConfigurationCryptoEventAnalysis.__key_warning(key)
|
188
|
+
return super().get(key, default)
|
189
|
+
|
190
|
+
def __init__(__self__, *,
|
191
|
+
is_enabled: Optional[bool] = None,
|
192
|
+
summarized_events_log: Optional['outputs.FleetAdvancedFeatureConfigurationCryptoEventAnalysisSummarizedEventsLog'] = None):
|
193
|
+
"""
|
194
|
+
:param bool is_enabled: (Updatable) CryptoEventAnalysis flag to store enabled or disabled status.
|
195
|
+
:param 'FleetAdvancedFeatureConfigurationCryptoEventAnalysisSummarizedEventsLogArgs' summarized_events_log: (Updatable) Summarized events log for advanced feature.
|
196
|
+
"""
|
197
|
+
if is_enabled is not None:
|
198
|
+
pulumi.set(__self__, "is_enabled", is_enabled)
|
199
|
+
if summarized_events_log is not None:
|
200
|
+
pulumi.set(__self__, "summarized_events_log", summarized_events_log)
|
201
|
+
|
202
|
+
@property
|
203
|
+
@pulumi.getter(name="isEnabled")
|
204
|
+
def is_enabled(self) -> Optional[bool]:
|
205
|
+
"""
|
206
|
+
(Updatable) CryptoEventAnalysis flag to store enabled or disabled status.
|
207
|
+
"""
|
208
|
+
return pulumi.get(self, "is_enabled")
|
209
|
+
|
210
|
+
@property
|
211
|
+
@pulumi.getter(name="summarizedEventsLog")
|
212
|
+
def summarized_events_log(self) -> Optional['outputs.FleetAdvancedFeatureConfigurationCryptoEventAnalysisSummarizedEventsLog']:
|
213
|
+
"""
|
214
|
+
(Updatable) Summarized events log for advanced feature.
|
215
|
+
"""
|
216
|
+
return pulumi.get(self, "summarized_events_log")
|
217
|
+
|
218
|
+
|
219
|
+
@pulumi.output_type
|
220
|
+
class FleetAdvancedFeatureConfigurationCryptoEventAnalysisSummarizedEventsLog(dict):
|
221
|
+
@staticmethod
|
222
|
+
def __key_warning(key: str):
|
223
|
+
suggest = None
|
224
|
+
if key == "logGroupId":
|
225
|
+
suggest = "log_group_id"
|
226
|
+
elif key == "logId":
|
227
|
+
suggest = "log_id"
|
228
|
+
|
229
|
+
if suggest:
|
230
|
+
pulumi.log.warn(f"Key '{key}' not found in FleetAdvancedFeatureConfigurationCryptoEventAnalysisSummarizedEventsLog. Access the value via the '{suggest}' property getter instead.")
|
231
|
+
|
232
|
+
def __getitem__(self, key: str) -> Any:
|
233
|
+
FleetAdvancedFeatureConfigurationCryptoEventAnalysisSummarizedEventsLog.__key_warning(key)
|
234
|
+
return super().__getitem__(key)
|
235
|
+
|
236
|
+
def get(self, key: str, default = None) -> Any:
|
237
|
+
FleetAdvancedFeatureConfigurationCryptoEventAnalysisSummarizedEventsLog.__key_warning(key)
|
238
|
+
return super().get(key, default)
|
239
|
+
|
240
|
+
def __init__(__self__, *,
|
241
|
+
log_group_id: str,
|
242
|
+
log_id: str):
|
243
|
+
"""
|
244
|
+
:param str log_group_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group.
|
245
|
+
:param str log_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log.
|
246
|
+
"""
|
247
|
+
pulumi.set(__self__, "log_group_id", log_group_id)
|
248
|
+
pulumi.set(__self__, "log_id", log_id)
|
249
|
+
|
250
|
+
@property
|
251
|
+
@pulumi.getter(name="logGroupId")
|
252
|
+
def log_group_id(self) -> str:
|
253
|
+
"""
|
254
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group.
|
255
|
+
"""
|
256
|
+
return pulumi.get(self, "log_group_id")
|
257
|
+
|
258
|
+
@property
|
259
|
+
@pulumi.getter(name="logId")
|
260
|
+
def log_id(self) -> str:
|
261
|
+
"""
|
262
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log.
|
263
|
+
"""
|
264
|
+
return pulumi.get(self, "log_id")
|
265
|
+
|
266
|
+
|
267
|
+
@pulumi.output_type
|
268
|
+
class FleetAdvancedFeatureConfigurationJavaMigrationAnalysis(dict):
|
269
|
+
@staticmethod
|
270
|
+
def __key_warning(key: str):
|
271
|
+
suggest = None
|
272
|
+
if key == "isEnabled":
|
273
|
+
suggest = "is_enabled"
|
274
|
+
|
275
|
+
if suggest:
|
276
|
+
pulumi.log.warn(f"Key '{key}' not found in FleetAdvancedFeatureConfigurationJavaMigrationAnalysis. Access the value via the '{suggest}' property getter instead.")
|
277
|
+
|
278
|
+
def __getitem__(self, key: str) -> Any:
|
279
|
+
FleetAdvancedFeatureConfigurationJavaMigrationAnalysis.__key_warning(key)
|
280
|
+
return super().__getitem__(key)
|
281
|
+
|
282
|
+
def get(self, key: str, default = None) -> Any:
|
283
|
+
FleetAdvancedFeatureConfigurationJavaMigrationAnalysis.__key_warning(key)
|
284
|
+
return super().get(key, default)
|
285
|
+
|
286
|
+
def __init__(__self__, *,
|
287
|
+
is_enabled: Optional[bool] = None):
|
288
|
+
"""
|
289
|
+
:param bool is_enabled: (Updatable) JavaMigrationAnalysis flag to store enabled or disabled status.
|
290
|
+
"""
|
291
|
+
if is_enabled is not None:
|
292
|
+
pulumi.set(__self__, "is_enabled", is_enabled)
|
293
|
+
|
294
|
+
@property
|
295
|
+
@pulumi.getter(name="isEnabled")
|
296
|
+
def is_enabled(self) -> Optional[bool]:
|
297
|
+
"""
|
298
|
+
(Updatable) JavaMigrationAnalysis flag to store enabled or disabled status.
|
299
|
+
"""
|
300
|
+
return pulumi.get(self, "is_enabled")
|
301
|
+
|
302
|
+
|
303
|
+
@pulumi.output_type
|
304
|
+
class FleetAdvancedFeatureConfigurationJfrRecording(dict):
|
305
|
+
@staticmethod
|
306
|
+
def __key_warning(key: str):
|
307
|
+
suggest = None
|
308
|
+
if key == "isEnabled":
|
309
|
+
suggest = "is_enabled"
|
310
|
+
|
311
|
+
if suggest:
|
312
|
+
pulumi.log.warn(f"Key '{key}' not found in FleetAdvancedFeatureConfigurationJfrRecording. Access the value via the '{suggest}' property getter instead.")
|
313
|
+
|
314
|
+
def __getitem__(self, key: str) -> Any:
|
315
|
+
FleetAdvancedFeatureConfigurationJfrRecording.__key_warning(key)
|
316
|
+
return super().__getitem__(key)
|
317
|
+
|
318
|
+
def get(self, key: str, default = None) -> Any:
|
319
|
+
FleetAdvancedFeatureConfigurationJfrRecording.__key_warning(key)
|
320
|
+
return super().get(key, default)
|
321
|
+
|
322
|
+
def __init__(__self__, *,
|
323
|
+
is_enabled: Optional[bool] = None):
|
324
|
+
"""
|
325
|
+
:param bool is_enabled: (Updatable) JfrRecording flag to store enabled or disabled status.
|
326
|
+
"""
|
327
|
+
if is_enabled is not None:
|
328
|
+
pulumi.set(__self__, "is_enabled", is_enabled)
|
329
|
+
|
330
|
+
@property
|
331
|
+
@pulumi.getter(name="isEnabled")
|
332
|
+
def is_enabled(self) -> Optional[bool]:
|
333
|
+
"""
|
334
|
+
(Updatable) JfrRecording flag to store enabled or disabled status.
|
335
|
+
"""
|
336
|
+
return pulumi.get(self, "is_enabled")
|
337
|
+
|
338
|
+
|
339
|
+
@pulumi.output_type
|
340
|
+
class FleetAdvancedFeatureConfigurationLcm(dict):
|
341
|
+
@staticmethod
|
342
|
+
def __key_warning(key: str):
|
343
|
+
suggest = None
|
344
|
+
if key == "isEnabled":
|
345
|
+
suggest = "is_enabled"
|
346
|
+
elif key == "postInstallationActions":
|
347
|
+
suggest = "post_installation_actions"
|
348
|
+
|
349
|
+
if suggest:
|
350
|
+
pulumi.log.warn(f"Key '{key}' not found in FleetAdvancedFeatureConfigurationLcm. Access the value via the '{suggest}' property getter instead.")
|
351
|
+
|
352
|
+
def __getitem__(self, key: str) -> Any:
|
353
|
+
FleetAdvancedFeatureConfigurationLcm.__key_warning(key)
|
354
|
+
return super().__getitem__(key)
|
355
|
+
|
356
|
+
def get(self, key: str, default = None) -> Any:
|
357
|
+
FleetAdvancedFeatureConfigurationLcm.__key_warning(key)
|
358
|
+
return super().get(key, default)
|
359
|
+
|
360
|
+
def __init__(__self__, *,
|
361
|
+
is_enabled: Optional[bool] = None,
|
362
|
+
post_installation_actions: Optional['outputs.FleetAdvancedFeatureConfigurationLcmPostInstallationActions'] = None):
|
363
|
+
"""
|
364
|
+
:param bool is_enabled: (Updatable) Lifecycle management flag to store enabled or disabled status.
|
365
|
+
:param 'FleetAdvancedFeatureConfigurationLcmPostInstallationActionsArgs' post_installation_actions: (Updatable) List of available post actions you can execute after the successful Java installation.
|
366
|
+
"""
|
367
|
+
if is_enabled is not None:
|
368
|
+
pulumi.set(__self__, "is_enabled", is_enabled)
|
369
|
+
if post_installation_actions is not None:
|
370
|
+
pulumi.set(__self__, "post_installation_actions", post_installation_actions)
|
371
|
+
|
372
|
+
@property
|
373
|
+
@pulumi.getter(name="isEnabled")
|
374
|
+
def is_enabled(self) -> Optional[bool]:
|
375
|
+
"""
|
376
|
+
(Updatable) Lifecycle management flag to store enabled or disabled status.
|
377
|
+
"""
|
378
|
+
return pulumi.get(self, "is_enabled")
|
379
|
+
|
380
|
+
@property
|
381
|
+
@pulumi.getter(name="postInstallationActions")
|
382
|
+
def post_installation_actions(self) -> Optional['outputs.FleetAdvancedFeatureConfigurationLcmPostInstallationActions']:
|
383
|
+
"""
|
384
|
+
(Updatable) List of available post actions you can execute after the successful Java installation.
|
385
|
+
"""
|
386
|
+
return pulumi.get(self, "post_installation_actions")
|
387
|
+
|
388
|
+
|
389
|
+
@pulumi.output_type
|
390
|
+
class FleetAdvancedFeatureConfigurationLcmPostInstallationActions(dict):
|
391
|
+
@staticmethod
|
392
|
+
def __key_warning(key: str):
|
393
|
+
suggest = None
|
394
|
+
if key == "addLoggingHandler":
|
395
|
+
suggest = "add_logging_handler"
|
396
|
+
elif key == "disabledTlsVersions":
|
397
|
+
suggest = "disabled_tls_versions"
|
398
|
+
elif key == "globalLoggingLevel":
|
399
|
+
suggest = "global_logging_level"
|
400
|
+
elif key == "minimumKeySizeSettings":
|
401
|
+
suggest = "minimum_key_size_settings"
|
402
|
+
elif key == "shouldReplaceCertificatesOperatingSystem":
|
403
|
+
suggest = "should_replace_certificates_operating_system"
|
404
|
+
|
405
|
+
if suggest:
|
406
|
+
pulumi.log.warn(f"Key '{key}' not found in FleetAdvancedFeatureConfigurationLcmPostInstallationActions. Access the value via the '{suggest}' property getter instead.")
|
407
|
+
|
408
|
+
def __getitem__(self, key: str) -> Any:
|
409
|
+
FleetAdvancedFeatureConfigurationLcmPostInstallationActions.__key_warning(key)
|
410
|
+
return super().__getitem__(key)
|
411
|
+
|
412
|
+
def get(self, key: str, default = None) -> Any:
|
413
|
+
FleetAdvancedFeatureConfigurationLcmPostInstallationActions.__key_warning(key)
|
414
|
+
return super().get(key, default)
|
415
|
+
|
416
|
+
def __init__(__self__, *,
|
417
|
+
add_logging_handler: Optional[bool] = None,
|
418
|
+
disabled_tls_versions: Optional[Sequence[str]] = None,
|
419
|
+
global_logging_level: Optional[str] = None,
|
420
|
+
minimum_key_size_settings: Optional['outputs.FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettings'] = None,
|
421
|
+
proxies: Optional['outputs.FleetAdvancedFeatureConfigurationLcmPostInstallationActionsProxies'] = None,
|
422
|
+
should_replace_certificates_operating_system: Optional[bool] = None):
|
423
|
+
"""
|
424
|
+
:param bool add_logging_handler: (Updatable) Sets FileHandler and ConsoleHandler as handlers in logging.properties file.
|
425
|
+
:param Sequence[str] disabled_tls_versions: (Updatable) The following post JRE installation actions are supported by the field:
|
426
|
+
* Disable TLS 1.0 , TLS 1.1
|
427
|
+
:param str global_logging_level: (Updatable) Sets the logging level in logging.properties file.
|
428
|
+
:param 'FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsArgs' minimum_key_size_settings: (Updatable) test
|
429
|
+
:param 'FleetAdvancedFeatureConfigurationLcmPostInstallationActionsProxiesArgs' proxies: (Updatable) List of proxy properties to be configured in net.properties file.
|
430
|
+
:param bool should_replace_certificates_operating_system: (Updatable) Restores JDK root certificates with the certificates that are available in the operating system. The following action is supported by the field:
|
431
|
+
* Replace JDK root certificates with a list provided by the operating system.
|
432
|
+
"""
|
433
|
+
if add_logging_handler is not None:
|
434
|
+
pulumi.set(__self__, "add_logging_handler", add_logging_handler)
|
435
|
+
if disabled_tls_versions is not None:
|
436
|
+
pulumi.set(__self__, "disabled_tls_versions", disabled_tls_versions)
|
437
|
+
if global_logging_level is not None:
|
438
|
+
pulumi.set(__self__, "global_logging_level", global_logging_level)
|
439
|
+
if minimum_key_size_settings is not None:
|
440
|
+
pulumi.set(__self__, "minimum_key_size_settings", minimum_key_size_settings)
|
441
|
+
if proxies is not None:
|
442
|
+
pulumi.set(__self__, "proxies", proxies)
|
443
|
+
if should_replace_certificates_operating_system is not None:
|
444
|
+
pulumi.set(__self__, "should_replace_certificates_operating_system", should_replace_certificates_operating_system)
|
445
|
+
|
446
|
+
@property
|
447
|
+
@pulumi.getter(name="addLoggingHandler")
|
448
|
+
def add_logging_handler(self) -> Optional[bool]:
|
449
|
+
"""
|
450
|
+
(Updatable) Sets FileHandler and ConsoleHandler as handlers in logging.properties file.
|
451
|
+
"""
|
452
|
+
return pulumi.get(self, "add_logging_handler")
|
453
|
+
|
454
|
+
@property
|
455
|
+
@pulumi.getter(name="disabledTlsVersions")
|
456
|
+
def disabled_tls_versions(self) -> Optional[Sequence[str]]:
|
457
|
+
"""
|
458
|
+
(Updatable) The following post JRE installation actions are supported by the field:
|
459
|
+
* Disable TLS 1.0 , TLS 1.1
|
460
|
+
"""
|
461
|
+
return pulumi.get(self, "disabled_tls_versions")
|
462
|
+
|
463
|
+
@property
|
464
|
+
@pulumi.getter(name="globalLoggingLevel")
|
465
|
+
def global_logging_level(self) -> Optional[str]:
|
466
|
+
"""
|
467
|
+
(Updatable) Sets the logging level in logging.properties file.
|
468
|
+
"""
|
469
|
+
return pulumi.get(self, "global_logging_level")
|
470
|
+
|
471
|
+
@property
|
472
|
+
@pulumi.getter(name="minimumKeySizeSettings")
|
473
|
+
def minimum_key_size_settings(self) -> Optional['outputs.FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettings']:
|
474
|
+
"""
|
475
|
+
(Updatable) test
|
476
|
+
"""
|
477
|
+
return pulumi.get(self, "minimum_key_size_settings")
|
478
|
+
|
479
|
+
@property
|
480
|
+
@pulumi.getter
|
481
|
+
def proxies(self) -> Optional['outputs.FleetAdvancedFeatureConfigurationLcmPostInstallationActionsProxies']:
|
482
|
+
"""
|
483
|
+
(Updatable) List of proxy properties to be configured in net.properties file.
|
484
|
+
"""
|
485
|
+
return pulumi.get(self, "proxies")
|
486
|
+
|
487
|
+
@property
|
488
|
+
@pulumi.getter(name="shouldReplaceCertificatesOperatingSystem")
|
489
|
+
def should_replace_certificates_operating_system(self) -> Optional[bool]:
|
490
|
+
"""
|
491
|
+
(Updatable) Restores JDK root certificates with the certificates that are available in the operating system. The following action is supported by the field:
|
492
|
+
* Replace JDK root certificates with a list provided by the operating system.
|
493
|
+
"""
|
494
|
+
return pulumi.get(self, "should_replace_certificates_operating_system")
|
495
|
+
|
496
|
+
|
497
|
+
@pulumi.output_type
|
498
|
+
class FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettings(dict):
|
499
|
+
def __init__(__self__, *,
|
500
|
+
certpaths: Optional[Sequence['outputs.FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsCertpath']] = None,
|
501
|
+
jars: Optional[Sequence['outputs.FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsJar']] = None,
|
502
|
+
tls: Optional[Sequence['outputs.FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsTl']] = None):
|
503
|
+
"""
|
504
|
+
:param Sequence['FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsCertpathArgs'] certpaths: (Updatable) Updates the minimum key size for the specified encryption algorithm. The JDK property jdk.certpath.disabledAlgorithms will be updated with the following supported actions:
|
505
|
+
* Changing minimum key length for RSA signed jars
|
506
|
+
* Changing minimum key length for EC
|
507
|
+
* Changing minimum key length for DSA
|
508
|
+
:param Sequence['FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsJarArgs'] jars: (Updatable) Updates the minimum key size for the specified encryption algorithm. The JDK property jdk.jar.disabledAlgorithms will be updated with the following supported actions:
|
509
|
+
* Changing minimum key length for RSA signed jars
|
510
|
+
* Changing minimum key length for EC
|
511
|
+
* Changing minimum key length for DSA
|
512
|
+
:param Sequence['FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsTlArgs'] tls: (Updatable) Updates the minimum key size for the specified encryption algorithm. The JDK property jdk.tls.disabledAlgorithms will be updated with the following supported actions:
|
513
|
+
* Changing minimum key length for Diffie-Hellman
|
514
|
+
"""
|
515
|
+
if certpaths is not None:
|
516
|
+
pulumi.set(__self__, "certpaths", certpaths)
|
517
|
+
if jars is not None:
|
518
|
+
pulumi.set(__self__, "jars", jars)
|
519
|
+
if tls is not None:
|
520
|
+
pulumi.set(__self__, "tls", tls)
|
521
|
+
|
522
|
+
@property
|
523
|
+
@pulumi.getter
|
524
|
+
def certpaths(self) -> Optional[Sequence['outputs.FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsCertpath']]:
|
525
|
+
"""
|
526
|
+
(Updatable) Updates the minimum key size for the specified encryption algorithm. The JDK property jdk.certpath.disabledAlgorithms will be updated with the following supported actions:
|
527
|
+
* Changing minimum key length for RSA signed jars
|
528
|
+
* Changing minimum key length for EC
|
529
|
+
* Changing minimum key length for DSA
|
530
|
+
"""
|
531
|
+
return pulumi.get(self, "certpaths")
|
532
|
+
|
533
|
+
@property
|
534
|
+
@pulumi.getter
|
535
|
+
def jars(self) -> Optional[Sequence['outputs.FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsJar']]:
|
536
|
+
"""
|
537
|
+
(Updatable) Updates the minimum key size for the specified encryption algorithm. The JDK property jdk.jar.disabledAlgorithms will be updated with the following supported actions:
|
538
|
+
* Changing minimum key length for RSA signed jars
|
539
|
+
* Changing minimum key length for EC
|
540
|
+
* Changing minimum key length for DSA
|
541
|
+
"""
|
542
|
+
return pulumi.get(self, "jars")
|
543
|
+
|
544
|
+
@property
|
545
|
+
@pulumi.getter
|
546
|
+
def tls(self) -> Optional[Sequence['outputs.FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsTl']]:
|
547
|
+
"""
|
548
|
+
(Updatable) Updates the minimum key size for the specified encryption algorithm. The JDK property jdk.tls.disabledAlgorithms will be updated with the following supported actions:
|
549
|
+
* Changing minimum key length for Diffie-Hellman
|
550
|
+
"""
|
551
|
+
return pulumi.get(self, "tls")
|
552
|
+
|
553
|
+
|
554
|
+
@pulumi.output_type
|
555
|
+
class FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsCertpath(dict):
|
556
|
+
@staticmethod
|
557
|
+
def __key_warning(key: str):
|
558
|
+
suggest = None
|
559
|
+
if key == "keySize":
|
560
|
+
suggest = "key_size"
|
561
|
+
|
562
|
+
if suggest:
|
563
|
+
pulumi.log.warn(f"Key '{key}' not found in FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsCertpath. Access the value via the '{suggest}' property getter instead.")
|
564
|
+
|
565
|
+
def __getitem__(self, key: str) -> Any:
|
566
|
+
FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsCertpath.__key_warning(key)
|
567
|
+
return super().__getitem__(key)
|
568
|
+
|
569
|
+
def get(self, key: str, default = None) -> Any:
|
570
|
+
FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsCertpath.__key_warning(key)
|
571
|
+
return super().get(key, default)
|
572
|
+
|
573
|
+
def __init__(__self__, *,
|
574
|
+
key_size: Optional[int] = None,
|
575
|
+
name: Optional[str] = None):
|
576
|
+
"""
|
577
|
+
:param int key_size: (Updatable) Key size for the encryption algorithm. Allowed values: 256 for EC, 2048 for DH/DSA/RSA
|
578
|
+
:param str name: (Updatable) The algorithm name.
|
579
|
+
"""
|
580
|
+
if key_size is not None:
|
581
|
+
pulumi.set(__self__, "key_size", key_size)
|
582
|
+
if name is not None:
|
583
|
+
pulumi.set(__self__, "name", name)
|
584
|
+
|
585
|
+
@property
|
586
|
+
@pulumi.getter(name="keySize")
|
587
|
+
def key_size(self) -> Optional[int]:
|
588
|
+
"""
|
589
|
+
(Updatable) Key size for the encryption algorithm. Allowed values: 256 for EC, 2048 for DH/DSA/RSA
|
590
|
+
"""
|
591
|
+
return pulumi.get(self, "key_size")
|
592
|
+
|
593
|
+
@property
|
594
|
+
@pulumi.getter
|
595
|
+
def name(self) -> Optional[str]:
|
596
|
+
"""
|
597
|
+
(Updatable) The algorithm name.
|
598
|
+
"""
|
599
|
+
return pulumi.get(self, "name")
|
600
|
+
|
601
|
+
|
602
|
+
@pulumi.output_type
|
603
|
+
class FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsJar(dict):
|
604
|
+
@staticmethod
|
605
|
+
def __key_warning(key: str):
|
606
|
+
suggest = None
|
607
|
+
if key == "keySize":
|
608
|
+
suggest = "key_size"
|
609
|
+
|
610
|
+
if suggest:
|
611
|
+
pulumi.log.warn(f"Key '{key}' not found in FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsJar. Access the value via the '{suggest}' property getter instead.")
|
612
|
+
|
613
|
+
def __getitem__(self, key: str) -> Any:
|
614
|
+
FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsJar.__key_warning(key)
|
615
|
+
return super().__getitem__(key)
|
616
|
+
|
617
|
+
def get(self, key: str, default = None) -> Any:
|
618
|
+
FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsJar.__key_warning(key)
|
619
|
+
return super().get(key, default)
|
620
|
+
|
621
|
+
def __init__(__self__, *,
|
622
|
+
key_size: Optional[int] = None,
|
623
|
+
name: Optional[str] = None):
|
624
|
+
"""
|
625
|
+
:param int key_size: (Updatable) Key size for the encryption algorithm. Allowed values: 256 for EC, 2048 for DH/DSA/RSA
|
626
|
+
:param str name: (Updatable) The algorithm name.
|
627
|
+
"""
|
628
|
+
if key_size is not None:
|
629
|
+
pulumi.set(__self__, "key_size", key_size)
|
630
|
+
if name is not None:
|
631
|
+
pulumi.set(__self__, "name", name)
|
632
|
+
|
633
|
+
@property
|
634
|
+
@pulumi.getter(name="keySize")
|
635
|
+
def key_size(self) -> Optional[int]:
|
636
|
+
"""
|
637
|
+
(Updatable) Key size for the encryption algorithm. Allowed values: 256 for EC, 2048 for DH/DSA/RSA
|
638
|
+
"""
|
639
|
+
return pulumi.get(self, "key_size")
|
640
|
+
|
641
|
+
@property
|
642
|
+
@pulumi.getter
|
643
|
+
def name(self) -> Optional[str]:
|
644
|
+
"""
|
645
|
+
(Updatable) The algorithm name.
|
646
|
+
"""
|
647
|
+
return pulumi.get(self, "name")
|
648
|
+
|
649
|
+
|
650
|
+
@pulumi.output_type
|
651
|
+
class FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsTl(dict):
|
652
|
+
@staticmethod
|
653
|
+
def __key_warning(key: str):
|
654
|
+
suggest = None
|
655
|
+
if key == "keySize":
|
656
|
+
suggest = "key_size"
|
657
|
+
|
658
|
+
if suggest:
|
659
|
+
pulumi.log.warn(f"Key '{key}' not found in FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsTl. Access the value via the '{suggest}' property getter instead.")
|
660
|
+
|
661
|
+
def __getitem__(self, key: str) -> Any:
|
662
|
+
FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsTl.__key_warning(key)
|
663
|
+
return super().__getitem__(key)
|
664
|
+
|
665
|
+
def get(self, key: str, default = None) -> Any:
|
666
|
+
FleetAdvancedFeatureConfigurationLcmPostInstallationActionsMinimumKeySizeSettingsTl.__key_warning(key)
|
667
|
+
return super().get(key, default)
|
668
|
+
|
669
|
+
def __init__(__self__, *,
|
670
|
+
key_size: Optional[int] = None,
|
671
|
+
name: Optional[str] = None):
|
672
|
+
"""
|
673
|
+
:param int key_size: (Updatable) Key size for the encryption algorithm. Allowed values: 256 for EC, 2048 for DH/DSA/RSA
|
674
|
+
:param str name: (Updatable) The algorithm name.
|
675
|
+
"""
|
676
|
+
if key_size is not None:
|
677
|
+
pulumi.set(__self__, "key_size", key_size)
|
678
|
+
if name is not None:
|
679
|
+
pulumi.set(__self__, "name", name)
|
680
|
+
|
681
|
+
@property
|
682
|
+
@pulumi.getter(name="keySize")
|
683
|
+
def key_size(self) -> Optional[int]:
|
684
|
+
"""
|
685
|
+
(Updatable) Key size for the encryption algorithm. Allowed values: 256 for EC, 2048 for DH/DSA/RSA
|
686
|
+
"""
|
687
|
+
return pulumi.get(self, "key_size")
|
688
|
+
|
689
|
+
@property
|
690
|
+
@pulumi.getter
|
691
|
+
def name(self) -> Optional[str]:
|
692
|
+
"""
|
693
|
+
(Updatable) The algorithm name.
|
694
|
+
"""
|
695
|
+
return pulumi.get(self, "name")
|
696
|
+
|
697
|
+
|
698
|
+
@pulumi.output_type
|
699
|
+
class FleetAdvancedFeatureConfigurationLcmPostInstallationActionsProxies(dict):
|
700
|
+
@staticmethod
|
701
|
+
def __key_warning(key: str):
|
702
|
+
suggest = None
|
703
|
+
if key == "ftpProxyHost":
|
704
|
+
suggest = "ftp_proxy_host"
|
705
|
+
elif key == "ftpProxyPort":
|
706
|
+
suggest = "ftp_proxy_port"
|
707
|
+
elif key == "httpProxyHost":
|
708
|
+
suggest = "http_proxy_host"
|
709
|
+
elif key == "httpProxyPort":
|
710
|
+
suggest = "http_proxy_port"
|
711
|
+
elif key == "httpsProxyHost":
|
712
|
+
suggest = "https_proxy_host"
|
713
|
+
elif key == "httpsProxyPort":
|
714
|
+
suggest = "https_proxy_port"
|
715
|
+
elif key == "socksProxyHost":
|
716
|
+
suggest = "socks_proxy_host"
|
717
|
+
elif key == "socksProxyPort":
|
718
|
+
suggest = "socks_proxy_port"
|
719
|
+
elif key == "useSystemProxies":
|
720
|
+
suggest = "use_system_proxies"
|
721
|
+
|
722
|
+
if suggest:
|
723
|
+
pulumi.log.warn(f"Key '{key}' not found in FleetAdvancedFeatureConfigurationLcmPostInstallationActionsProxies. Access the value via the '{suggest}' property getter instead.")
|
724
|
+
|
725
|
+
def __getitem__(self, key: str) -> Any:
|
726
|
+
FleetAdvancedFeatureConfigurationLcmPostInstallationActionsProxies.__key_warning(key)
|
727
|
+
return super().__getitem__(key)
|
728
|
+
|
729
|
+
def get(self, key: str, default = None) -> Any:
|
730
|
+
FleetAdvancedFeatureConfigurationLcmPostInstallationActionsProxies.__key_warning(key)
|
731
|
+
return super().get(key, default)
|
732
|
+
|
733
|
+
def __init__(__self__, *,
|
734
|
+
ftp_proxy_host: Optional[str] = None,
|
735
|
+
ftp_proxy_port: Optional[int] = None,
|
736
|
+
http_proxy_host: Optional[str] = None,
|
737
|
+
http_proxy_port: Optional[int] = None,
|
738
|
+
https_proxy_host: Optional[str] = None,
|
739
|
+
https_proxy_port: Optional[int] = None,
|
740
|
+
socks_proxy_host: Optional[str] = None,
|
741
|
+
socks_proxy_port: Optional[int] = None,
|
742
|
+
use_system_proxies: Optional[bool] = None):
|
743
|
+
"""
|
744
|
+
:param str ftp_proxy_host: (Updatable) Ftp host to be set in net.properties file.
|
745
|
+
:param int ftp_proxy_port: (Updatable) Ftp port number to be set in net.properties file.
|
746
|
+
:param str http_proxy_host: (Updatable) Http host to be set in net.properties file.
|
747
|
+
:param int http_proxy_port: (Updatable) Http port number to be set in net.properties file.
|
748
|
+
:param str https_proxy_host: (Updatable) Https host to be set in net.properties file.
|
749
|
+
:param int https_proxy_port: (Updatable) Https port number to be set in net.properties file.
|
750
|
+
:param str socks_proxy_host: (Updatable) Socks host to be set in net.properties file.
|
751
|
+
:param int socks_proxy_port: (Updatable) Socks port number to be set in net.properties file.
|
752
|
+
:param bool use_system_proxies: (Updatable) Sets "java.net.useSystemProxies=true" in net.properties when they exist.
|
753
|
+
"""
|
754
|
+
if ftp_proxy_host is not None:
|
755
|
+
pulumi.set(__self__, "ftp_proxy_host", ftp_proxy_host)
|
756
|
+
if ftp_proxy_port is not None:
|
757
|
+
pulumi.set(__self__, "ftp_proxy_port", ftp_proxy_port)
|
758
|
+
if http_proxy_host is not None:
|
759
|
+
pulumi.set(__self__, "http_proxy_host", http_proxy_host)
|
760
|
+
if http_proxy_port is not None:
|
761
|
+
pulumi.set(__self__, "http_proxy_port", http_proxy_port)
|
762
|
+
if https_proxy_host is not None:
|
763
|
+
pulumi.set(__self__, "https_proxy_host", https_proxy_host)
|
764
|
+
if https_proxy_port is not None:
|
765
|
+
pulumi.set(__self__, "https_proxy_port", https_proxy_port)
|
766
|
+
if socks_proxy_host is not None:
|
767
|
+
pulumi.set(__self__, "socks_proxy_host", socks_proxy_host)
|
768
|
+
if socks_proxy_port is not None:
|
769
|
+
pulumi.set(__self__, "socks_proxy_port", socks_proxy_port)
|
770
|
+
if use_system_proxies is not None:
|
771
|
+
pulumi.set(__self__, "use_system_proxies", use_system_proxies)
|
772
|
+
|
773
|
+
@property
|
774
|
+
@pulumi.getter(name="ftpProxyHost")
|
775
|
+
def ftp_proxy_host(self) -> Optional[str]:
|
776
|
+
"""
|
777
|
+
(Updatable) Ftp host to be set in net.properties file.
|
778
|
+
"""
|
779
|
+
return pulumi.get(self, "ftp_proxy_host")
|
780
|
+
|
781
|
+
@property
|
782
|
+
@pulumi.getter(name="ftpProxyPort")
|
783
|
+
def ftp_proxy_port(self) -> Optional[int]:
|
784
|
+
"""
|
785
|
+
(Updatable) Ftp port number to be set in net.properties file.
|
786
|
+
"""
|
787
|
+
return pulumi.get(self, "ftp_proxy_port")
|
788
|
+
|
789
|
+
@property
|
790
|
+
@pulumi.getter(name="httpProxyHost")
|
791
|
+
def http_proxy_host(self) -> Optional[str]:
|
792
|
+
"""
|
793
|
+
(Updatable) Http host to be set in net.properties file.
|
794
|
+
"""
|
795
|
+
return pulumi.get(self, "http_proxy_host")
|
796
|
+
|
797
|
+
@property
|
798
|
+
@pulumi.getter(name="httpProxyPort")
|
799
|
+
def http_proxy_port(self) -> Optional[int]:
|
800
|
+
"""
|
801
|
+
(Updatable) Http port number to be set in net.properties file.
|
802
|
+
"""
|
803
|
+
return pulumi.get(self, "http_proxy_port")
|
804
|
+
|
805
|
+
@property
|
806
|
+
@pulumi.getter(name="httpsProxyHost")
|
807
|
+
def https_proxy_host(self) -> Optional[str]:
|
808
|
+
"""
|
809
|
+
(Updatable) Https host to be set in net.properties file.
|
810
|
+
"""
|
811
|
+
return pulumi.get(self, "https_proxy_host")
|
812
|
+
|
813
|
+
@property
|
814
|
+
@pulumi.getter(name="httpsProxyPort")
|
815
|
+
def https_proxy_port(self) -> Optional[int]:
|
816
|
+
"""
|
817
|
+
(Updatable) Https port number to be set in net.properties file.
|
818
|
+
"""
|
819
|
+
return pulumi.get(self, "https_proxy_port")
|
820
|
+
|
821
|
+
@property
|
822
|
+
@pulumi.getter(name="socksProxyHost")
|
823
|
+
def socks_proxy_host(self) -> Optional[str]:
|
824
|
+
"""
|
825
|
+
(Updatable) Socks host to be set in net.properties file.
|
826
|
+
"""
|
827
|
+
return pulumi.get(self, "socks_proxy_host")
|
828
|
+
|
829
|
+
@property
|
830
|
+
@pulumi.getter(name="socksProxyPort")
|
831
|
+
def socks_proxy_port(self) -> Optional[int]:
|
832
|
+
"""
|
833
|
+
(Updatable) Socks port number to be set in net.properties file.
|
834
|
+
"""
|
835
|
+
return pulumi.get(self, "socks_proxy_port")
|
836
|
+
|
837
|
+
@property
|
838
|
+
@pulumi.getter(name="useSystemProxies")
|
839
|
+
def use_system_proxies(self) -> Optional[bool]:
|
840
|
+
"""
|
841
|
+
(Updatable) Sets "java.net.useSystemProxies=true" in net.properties when they exist.
|
842
|
+
"""
|
843
|
+
return pulumi.get(self, "use_system_proxies")
|
844
|
+
|
845
|
+
|
846
|
+
@pulumi.output_type
|
847
|
+
class FleetAdvancedFeatureConfigurationPerformanceTuningAnalysis(dict):
|
848
|
+
@staticmethod
|
849
|
+
def __key_warning(key: str):
|
850
|
+
suggest = None
|
851
|
+
if key == "isEnabled":
|
852
|
+
suggest = "is_enabled"
|
853
|
+
|
854
|
+
if suggest:
|
855
|
+
pulumi.log.warn(f"Key '{key}' not found in FleetAdvancedFeatureConfigurationPerformanceTuningAnalysis. Access the value via the '{suggest}' property getter instead.")
|
856
|
+
|
857
|
+
def __getitem__(self, key: str) -> Any:
|
858
|
+
FleetAdvancedFeatureConfigurationPerformanceTuningAnalysis.__key_warning(key)
|
859
|
+
return super().__getitem__(key)
|
860
|
+
|
861
|
+
def get(self, key: str, default = None) -> Any:
|
862
|
+
FleetAdvancedFeatureConfigurationPerformanceTuningAnalysis.__key_warning(key)
|
863
|
+
return super().get(key, default)
|
864
|
+
|
865
|
+
def __init__(__self__, *,
|
866
|
+
is_enabled: Optional[bool] = None):
|
867
|
+
"""
|
868
|
+
:param bool is_enabled: (Updatable) PerformanceTuningAnalysis flag to store enabled or disabled status
|
869
|
+
|
870
|
+
|
871
|
+
** IMPORTANT **
|
872
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
873
|
+
"""
|
874
|
+
if is_enabled is not None:
|
875
|
+
pulumi.set(__self__, "is_enabled", is_enabled)
|
876
|
+
|
877
|
+
@property
|
878
|
+
@pulumi.getter(name="isEnabled")
|
879
|
+
def is_enabled(self) -> Optional[bool]:
|
880
|
+
"""
|
881
|
+
(Updatable) PerformanceTuningAnalysis flag to store enabled or disabled status
|
882
|
+
|
883
|
+
|
884
|
+
** IMPORTANT **
|
885
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
886
|
+
"""
|
887
|
+
return pulumi.get(self, "is_enabled")
|
888
|
+
|
889
|
+
|
120
890
|
@pulumi.output_type
|
121
891
|
class FleetInventoryLog(dict):
|
122
892
|
@staticmethod
|