pulumi-oci 2.2.0a1720767463__py3-none-any.whl → 2.3.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.
Files changed (33) hide show
  1. pulumi_oci/__init__.py +0 -11
  2. pulumi_oci/_utilities.py +3 -4
  3. pulumi_oci/cloudmigrations/_inputs.py +8 -0
  4. pulumi_oci/cloudmigrations/outputs.py +8 -0
  5. pulumi_oci/core/_inputs.py +4 -0
  6. pulumi_oci/core/outputs.py +4 -0
  7. pulumi_oci/database/_inputs.py +26 -0
  8. pulumi_oci/database/outputs.py +26 -0
  9. pulumi_oci/databasemigration/_inputs.py +56 -0
  10. pulumi_oci/databasemigration/get_migration.py +14 -1
  11. pulumi_oci/databasemigration/get_migrations.py +14 -1
  12. pulumi_oci/databasemigration/migration.py +57 -0
  13. pulumi_oci/databasemigration/outputs.py +143 -0
  14. pulumi_oci/dataintegration/_inputs.py +4 -0
  15. pulumi_oci/dataintegration/outputs.py +4 -0
  16. pulumi_oci/managementagent/_inputs.py +44 -0
  17. pulumi_oci/managementagent/outputs.py +44 -0
  18. pulumi_oci/meteringcomputation/_inputs.py +32 -0
  19. pulumi_oci/meteringcomputation/outputs.py +29 -1
  20. pulumi_oci/pulumi-plugin.json +1 -1
  21. {pulumi_oci-2.2.0a1720767463.dist-info → pulumi_oci-2.3.0.dist-info}/METADATA +1 -1
  22. {pulumi_oci-2.2.0a1720767463.dist-info → pulumi_oci-2.3.0.dist-info}/RECORD +24 -33
  23. {pulumi_oci-2.2.0a1720767463.dist-info → pulumi_oci-2.3.0.dist-info}/WHEEL +1 -1
  24. pulumi_oci/emwarehouse/__init__.py +0 -15
  25. pulumi_oci/emwarehouse/_inputs.py +0 -94
  26. pulumi_oci/emwarehouse/em_warehouse.py +0 -721
  27. pulumi_oci/emwarehouse/get_em_warehouse.py +0 -300
  28. pulumi_oci/emwarehouse/get_em_warehouses.py +0 -203
  29. pulumi_oci/emwarehouse/get_etl_run.py +0 -159
  30. pulumi_oci/emwarehouse/get_etl_runs.py +0 -173
  31. pulumi_oci/emwarehouse/get_resource_usage.py +0 -171
  32. pulumi_oci/emwarehouse/outputs.py +0 -616
  33. {pulumi_oci-2.2.0a1720767463.dist-info → pulumi_oci-2.3.0.dist-info}/top_level.txt +0 -0
@@ -21,6 +21,7 @@ class MigrationArgs:
21
21
  source_database_connection_id: pulumi.Input[str],
22
22
  target_database_connection_id: pulumi.Input[str],
23
23
  type: pulumi.Input[str],
24
+ advanced_parameters: Optional[pulumi.Input[Sequence[pulumi.Input['MigrationAdvancedParameterArgs']]]] = None,
24
25
  advisor_settings: Optional[pulumi.Input['MigrationAdvisorSettingsArgs']] = None,
25
26
  bulk_include_exclude_data: Optional[pulumi.Input[str]] = None,
26
27
  data_transfer_medium_details: Optional[pulumi.Input['MigrationDataTransferMediumDetailsArgs']] = None,
@@ -45,6 +46,7 @@ class MigrationArgs:
45
46
 
46
47
  ** IMPORTANT **
47
48
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
49
+ :param pulumi.Input[Sequence[pulumi.Input['MigrationAdvancedParameterArgs']]] advanced_parameters: (Updatable) List of Migration Parameter objects.
48
50
  :param pulumi.Input['MigrationAdvisorSettingsArgs'] advisor_settings: (Updatable) Optional Pre-Migration advisor settings.
49
51
  :param pulumi.Input[str] bulk_include_exclude_data: Specifies the database objects to be excluded from the migration in bulk. The definition accepts input in a CSV format, newline separated for each entry. More details can be found in the documentation.
50
52
  :param pulumi.Input['MigrationDataTransferMediumDetailsArgs'] data_transfer_medium_details: (Updatable) Optional additional properties for data transfer.
@@ -64,6 +66,8 @@ class MigrationArgs:
64
66
  pulumi.set(__self__, "source_database_connection_id", source_database_connection_id)
65
67
  pulumi.set(__self__, "target_database_connection_id", target_database_connection_id)
66
68
  pulumi.set(__self__, "type", type)
69
+ if advanced_parameters is not None:
70
+ pulumi.set(__self__, "advanced_parameters", advanced_parameters)
67
71
  if advisor_settings is not None:
68
72
  pulumi.set(__self__, "advisor_settings", advisor_settings)
69
73
  if bulk_include_exclude_data is not None:
@@ -155,6 +159,18 @@ class MigrationArgs:
155
159
  def type(self, value: pulumi.Input[str]):
156
160
  pulumi.set(self, "type", value)
157
161
 
162
+ @property
163
+ @pulumi.getter(name="advancedParameters")
164
+ def advanced_parameters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MigrationAdvancedParameterArgs']]]]:
165
+ """
166
+ (Updatable) List of Migration Parameter objects.
167
+ """
168
+ return pulumi.get(self, "advanced_parameters")
169
+
170
+ @advanced_parameters.setter
171
+ def advanced_parameters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MigrationAdvancedParameterArgs']]]]):
172
+ pulumi.set(self, "advanced_parameters", value)
173
+
158
174
  @property
159
175
  @pulumi.getter(name="advisorSettings")
160
176
  def advisor_settings(self) -> Optional[pulumi.Input['MigrationAdvisorSettingsArgs']]:
@@ -315,6 +331,7 @@ class MigrationArgs:
315
331
  @pulumi.input_type
316
332
  class _MigrationState:
317
333
  def __init__(__self__, *,
334
+ advanced_parameters: Optional[pulumi.Input[Sequence[pulumi.Input['MigrationAdvancedParameterArgs']]]] = None,
318
335
  advisor_settings: Optional[pulumi.Input['MigrationAdvisorSettingsArgs']] = None,
319
336
  bulk_include_exclude_data: Optional[pulumi.Input[str]] = None,
320
337
  compartment_id: Optional[pulumi.Input[str]] = None,
@@ -343,6 +360,7 @@ class _MigrationState:
343
360
  wait_after: Optional[pulumi.Input[str]] = None):
344
361
  """
345
362
  Input properties used for looking up and filtering Migration resources.
363
+ :param pulumi.Input[Sequence[pulumi.Input['MigrationAdvancedParameterArgs']]] advanced_parameters: (Updatable) List of Migration Parameter objects.
346
364
  :param pulumi.Input['MigrationAdvisorSettingsArgs'] advisor_settings: (Updatable) Optional Pre-Migration advisor settings.
347
365
  :param pulumi.Input[str] bulk_include_exclude_data: Specifies the database objects to be excluded from the migration in bulk. The definition accepts input in a CSV format, newline separated for each entry. More details can be found in the documentation.
348
366
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the resource being referenced.
@@ -374,6 +392,8 @@ class _MigrationState:
374
392
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
375
393
  :param pulumi.Input[str] wait_after: You can optionally pause a migration after a job phase. This property allows you to optionally specify the phase after which you can pause the migration.
376
394
  """
395
+ if advanced_parameters is not None:
396
+ pulumi.set(__self__, "advanced_parameters", advanced_parameters)
377
397
  if advisor_settings is not None:
378
398
  pulumi.set(__self__, "advisor_settings", advisor_settings)
379
399
  if bulk_include_exclude_data is not None:
@@ -427,6 +447,18 @@ class _MigrationState:
427
447
  if wait_after is not None:
428
448
  pulumi.set(__self__, "wait_after", wait_after)
429
449
 
450
+ @property
451
+ @pulumi.getter(name="advancedParameters")
452
+ def advanced_parameters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MigrationAdvancedParameterArgs']]]]:
453
+ """
454
+ (Updatable) List of Migration Parameter objects.
455
+ """
456
+ return pulumi.get(self, "advanced_parameters")
457
+
458
+ @advanced_parameters.setter
459
+ def advanced_parameters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MigrationAdvancedParameterArgs']]]]):
460
+ pulumi.set(self, "advanced_parameters", value)
461
+
430
462
  @property
431
463
  @pulumi.getter(name="advisorSettings")
432
464
  def advisor_settings(self) -> Optional[pulumi.Input['MigrationAdvisorSettingsArgs']]:
@@ -749,6 +781,7 @@ class Migration(pulumi.CustomResource):
749
781
  def __init__(__self__,
750
782
  resource_name: str,
751
783
  opts: Optional[pulumi.ResourceOptions] = None,
784
+ advanced_parameters: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MigrationAdvancedParameterArgs']]]]] = None,
752
785
  advisor_settings: Optional[pulumi.Input[pulumi.InputType['MigrationAdvisorSettingsArgs']]] = None,
753
786
  bulk_include_exclude_data: Optional[pulumi.Input[str]] = None,
754
787
  compartment_id: Optional[pulumi.Input[str]] = None,
@@ -781,6 +814,11 @@ class Migration(pulumi.CustomResource):
781
814
  source_database_connection_id=test_connection["id"],
782
815
  target_database_connection_id=test_connection["id"],
783
816
  type=migration_type,
817
+ advanced_parameters=[oci.database_migration.MigrationAdvancedParameterArgs(
818
+ data_type=migration_advanced_parameters_data_type,
819
+ name=migration_advanced_parameters_name,
820
+ value=migration_advanced_parameters_value,
821
+ )],
784
822
  advisor_settings=oci.database_migration.MigrationAdvisorSettingsArgs(
785
823
  is_ignore_errors=migration_advisor_settings_is_ignore_errors,
786
824
  is_skip_advisor=migration_advisor_settings_is_skip_advisor,
@@ -907,6 +945,7 @@ class Migration(pulumi.CustomResource):
907
945
 
908
946
  :param str resource_name: The name of the resource.
909
947
  :param pulumi.ResourceOptions opts: Options for the resource.
948
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MigrationAdvancedParameterArgs']]]] advanced_parameters: (Updatable) List of Migration Parameter objects.
910
949
  :param pulumi.Input[pulumi.InputType['MigrationAdvisorSettingsArgs']] advisor_settings: (Updatable) Optional Pre-Migration advisor settings.
911
950
  :param pulumi.Input[str] bulk_include_exclude_data: Specifies the database objects to be excluded from the migration in bulk. The definition accepts input in a CSV format, newline separated for each entry. More details can be found in the documentation.
912
951
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the resource being referenced.
@@ -949,6 +988,11 @@ class Migration(pulumi.CustomResource):
949
988
  source_database_connection_id=test_connection["id"],
950
989
  target_database_connection_id=test_connection["id"],
951
990
  type=migration_type,
991
+ advanced_parameters=[oci.database_migration.MigrationAdvancedParameterArgs(
992
+ data_type=migration_advanced_parameters_data_type,
993
+ name=migration_advanced_parameters_name,
994
+ value=migration_advanced_parameters_value,
995
+ )],
952
996
  advisor_settings=oci.database_migration.MigrationAdvisorSettingsArgs(
953
997
  is_ignore_errors=migration_advisor_settings_is_ignore_errors,
954
998
  is_skip_advisor=migration_advisor_settings_is_skip_advisor,
@@ -1088,6 +1132,7 @@ class Migration(pulumi.CustomResource):
1088
1132
  def _internal_init(__self__,
1089
1133
  resource_name: str,
1090
1134
  opts: Optional[pulumi.ResourceOptions] = None,
1135
+ advanced_parameters: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MigrationAdvancedParameterArgs']]]]] = None,
1091
1136
  advisor_settings: Optional[pulumi.Input[pulumi.InputType['MigrationAdvisorSettingsArgs']]] = None,
1092
1137
  bulk_include_exclude_data: Optional[pulumi.Input[str]] = None,
1093
1138
  compartment_id: Optional[pulumi.Input[str]] = None,
@@ -1115,6 +1160,7 @@ class Migration(pulumi.CustomResource):
1115
1160
  raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
1116
1161
  __props__ = MigrationArgs.__new__(MigrationArgs)
1117
1162
 
1163
+ __props__.__dict__["advanced_parameters"] = advanced_parameters
1118
1164
  __props__.__dict__["advisor_settings"] = advisor_settings
1119
1165
  __props__.__dict__["bulk_include_exclude_data"] = bulk_include_exclude_data
1120
1166
  if compartment_id is None and not opts.urn:
@@ -1161,6 +1207,7 @@ class Migration(pulumi.CustomResource):
1161
1207
  def get(resource_name: str,
1162
1208
  id: pulumi.Input[str],
1163
1209
  opts: Optional[pulumi.ResourceOptions] = None,
1210
+ advanced_parameters: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MigrationAdvancedParameterArgs']]]]] = None,
1164
1211
  advisor_settings: Optional[pulumi.Input[pulumi.InputType['MigrationAdvisorSettingsArgs']]] = None,
1165
1212
  bulk_include_exclude_data: Optional[pulumi.Input[str]] = None,
1166
1213
  compartment_id: Optional[pulumi.Input[str]] = None,
@@ -1194,6 +1241,7 @@ class Migration(pulumi.CustomResource):
1194
1241
  :param str resource_name: The unique name of the resulting resource.
1195
1242
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1196
1243
  :param pulumi.ResourceOptions opts: Options for the resource.
1244
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MigrationAdvancedParameterArgs']]]] advanced_parameters: (Updatable) List of Migration Parameter objects.
1197
1245
  :param pulumi.Input[pulumi.InputType['MigrationAdvisorSettingsArgs']] advisor_settings: (Updatable) Optional Pre-Migration advisor settings.
1198
1246
  :param pulumi.Input[str] bulk_include_exclude_data: Specifies the database objects to be excluded from the migration in bulk. The definition accepts input in a CSV format, newline separated for each entry. More details can be found in the documentation.
1199
1247
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the resource being referenced.
@@ -1229,6 +1277,7 @@ class Migration(pulumi.CustomResource):
1229
1277
 
1230
1278
  __props__ = _MigrationState.__new__(_MigrationState)
1231
1279
 
1280
+ __props__.__dict__["advanced_parameters"] = advanced_parameters
1232
1281
  __props__.__dict__["advisor_settings"] = advisor_settings
1233
1282
  __props__.__dict__["bulk_include_exclude_data"] = bulk_include_exclude_data
1234
1283
  __props__.__dict__["compartment_id"] = compartment_id
@@ -1257,6 +1306,14 @@ class Migration(pulumi.CustomResource):
1257
1306
  __props__.__dict__["wait_after"] = wait_after
1258
1307
  return Migration(resource_name, opts=opts, __props__=__props__)
1259
1308
 
1309
+ @property
1310
+ @pulumi.getter(name="advancedParameters")
1311
+ def advanced_parameters(self) -> pulumi.Output[Sequence['outputs.MigrationAdvancedParameter']]:
1312
+ """
1313
+ (Updatable) List of Migration Parameter objects.
1314
+ """
1315
+ return pulumi.get(self, "advanced_parameters")
1316
+
1260
1317
  @property
1261
1318
  @pulumi.getter(name="advisorSettings")
1262
1319
  def advisor_settings(self) -> pulumi.Output['outputs.MigrationAdvisorSettings']:
@@ -18,6 +18,7 @@ __all__ = [
18
18
  'JobProgressPhaseExtract',
19
19
  'JobProgressPhaseLogLocation',
20
20
  'JobUnsupportedObject',
21
+ 'MigrationAdvancedParameter',
21
22
  'MigrationAdvisorSettings',
22
23
  'MigrationDataTransferMediumDetails',
23
24
  'MigrationDataTransferMediumDetailsObjectStorageBucket',
@@ -49,6 +50,7 @@ __all__ = [
49
50
  'GetJobAdvisorReportReportLocationDetailResult',
50
51
  'GetJobAdvisorReportReportLocationDetailObjectStorageDetailResult',
51
52
  'GetJobOutputItemResult',
53
+ 'GetMigrationAdvancedParameterResult',
52
54
  'GetMigrationAdvisorSettingResult',
53
55
  'GetMigrationDataTransferMediumDetailResult',
54
56
  'GetMigrationDataTransferMediumDetailObjectStorageBucketResult',
@@ -73,6 +75,7 @@ __all__ = [
73
75
  'GetMigrationObjectTypesFilterResult',
74
76
  'GetMigrationObjectTypesMigrationObjectTypeSummaryCollectionResult',
75
77
  'GetMigrationObjectTypesMigrationObjectTypeSummaryCollectionItemResult',
78
+ 'GetMigrationsAdvancedParameterResult',
76
79
  'GetMigrationsAdvisorSettingResult',
77
80
  'GetMigrationsDataTransferMediumDetailResult',
78
81
  'GetMigrationsDataTransferMediumDetailObjectStorageBucketResult',
@@ -478,6 +481,66 @@ class JobUnsupportedObject(dict):
478
481
  return pulumi.get(self, "type")
479
482
 
480
483
 
484
+ @pulumi.output_type
485
+ class MigrationAdvancedParameter(dict):
486
+ @staticmethod
487
+ def __key_warning(key: str):
488
+ suggest = None
489
+ if key == "dataType":
490
+ suggest = "data_type"
491
+
492
+ if suggest:
493
+ pulumi.log.warn(f"Key '{key}' not found in MigrationAdvancedParameter. Access the value via the '{suggest}' property getter instead.")
494
+
495
+ def __getitem__(self, key: str) -> Any:
496
+ MigrationAdvancedParameter.__key_warning(key)
497
+ return super().__getitem__(key)
498
+
499
+ def get(self, key: str, default = None) -> Any:
500
+ MigrationAdvancedParameter.__key_warning(key)
501
+ return super().get(key, default)
502
+
503
+ def __init__(__self__, *,
504
+ data_type: Optional[str] = None,
505
+ name: Optional[str] = None,
506
+ value: Optional[str] = None):
507
+ """
508
+ :param str data_type: (Updatable) Parameter data type.
509
+ :param str name: (Updatable) Parameter name.
510
+ :param str value: (Updatable) If a STRING data type then the value should be an array of characters, if a INTEGER data type then the value should be an integer value, if a FLOAT data type then the value should be an float value, if a BOOLEAN data type then the value should be TRUE or FALSE.
511
+ """
512
+ if data_type is not None:
513
+ pulumi.set(__self__, "data_type", data_type)
514
+ if name is not None:
515
+ pulumi.set(__self__, "name", name)
516
+ if value is not None:
517
+ pulumi.set(__self__, "value", value)
518
+
519
+ @property
520
+ @pulumi.getter(name="dataType")
521
+ def data_type(self) -> Optional[str]:
522
+ """
523
+ (Updatable) Parameter data type.
524
+ """
525
+ return pulumi.get(self, "data_type")
526
+
527
+ @property
528
+ @pulumi.getter
529
+ def name(self) -> Optional[str]:
530
+ """
531
+ (Updatable) Parameter name.
532
+ """
533
+ return pulumi.get(self, "name")
534
+
535
+ @property
536
+ @pulumi.getter
537
+ def value(self) -> Optional[str]:
538
+ """
539
+ (Updatable) If a STRING data type then the value should be an array of characters, if a INTEGER data type then the value should be an integer value, if a FLOAT data type then the value should be an float value, if a BOOLEAN data type then the value should be TRUE or FALSE.
540
+ """
541
+ return pulumi.get(self, "value")
542
+
543
+
481
544
  @pulumi.output_type
482
545
  class MigrationAdvisorSettings(dict):
483
546
  @staticmethod
@@ -2628,6 +2691,46 @@ class GetJobOutputItemResult(dict):
2628
2691
  return pulumi.get(self, "message")
2629
2692
 
2630
2693
 
2694
+ @pulumi.output_type
2695
+ class GetMigrationAdvancedParameterResult(dict):
2696
+ def __init__(__self__, *,
2697
+ data_type: str,
2698
+ name: str,
2699
+ value: str):
2700
+ """
2701
+ :param str data_type: Parameter data type.
2702
+ :param str name: Name of directory object in database
2703
+ :param str value: If a STRING data type then the value should be an array of characters, if a INTEGER data type then the value should be an integer value, if a FLOAT data type then the value should be an float value, if a BOOLEAN data type then the value should be TRUE or FALSE.
2704
+ """
2705
+ pulumi.set(__self__, "data_type", data_type)
2706
+ pulumi.set(__self__, "name", name)
2707
+ pulumi.set(__self__, "value", value)
2708
+
2709
+ @property
2710
+ @pulumi.getter(name="dataType")
2711
+ def data_type(self) -> str:
2712
+ """
2713
+ Parameter data type.
2714
+ """
2715
+ return pulumi.get(self, "data_type")
2716
+
2717
+ @property
2718
+ @pulumi.getter
2719
+ def name(self) -> str:
2720
+ """
2721
+ Name of directory object in database
2722
+ """
2723
+ return pulumi.get(self, "name")
2724
+
2725
+ @property
2726
+ @pulumi.getter
2727
+ def value(self) -> str:
2728
+ """
2729
+ If a STRING data type then the value should be an array of characters, if a INTEGER data type then the value should be an integer value, if a FLOAT data type then the value should be an float value, if a BOOLEAN data type then the value should be TRUE or FALSE.
2730
+ """
2731
+ return pulumi.get(self, "value")
2732
+
2733
+
2631
2734
  @pulumi.output_type
2632
2735
  class GetMigrationAdvisorSettingResult(dict):
2633
2736
  def __init__(__self__, *,
@@ -3710,6 +3813,46 @@ class GetMigrationObjectTypesMigrationObjectTypeSummaryCollectionItemResult(dict
3710
3813
  return pulumi.get(self, "name")
3711
3814
 
3712
3815
 
3816
+ @pulumi.output_type
3817
+ class GetMigrationsAdvancedParameterResult(dict):
3818
+ def __init__(__self__, *,
3819
+ data_type: str,
3820
+ name: str,
3821
+ value: str):
3822
+ """
3823
+ :param str data_type: Parameter data type.
3824
+ :param str name: Name of directory object in database
3825
+ :param str value: If a STRING data type then the value should be an array of characters, if a INTEGER data type then the value should be an integer value, if a FLOAT data type then the value should be an float value, if a BOOLEAN data type then the value should be TRUE or FALSE.
3826
+ """
3827
+ pulumi.set(__self__, "data_type", data_type)
3828
+ pulumi.set(__self__, "name", name)
3829
+ pulumi.set(__self__, "value", value)
3830
+
3831
+ @property
3832
+ @pulumi.getter(name="dataType")
3833
+ def data_type(self) -> str:
3834
+ """
3835
+ Parameter data type.
3836
+ """
3837
+ return pulumi.get(self, "data_type")
3838
+
3839
+ @property
3840
+ @pulumi.getter
3841
+ def name(self) -> str:
3842
+ """
3843
+ Name of directory object in database
3844
+ """
3845
+ return pulumi.get(self, "name")
3846
+
3847
+ @property
3848
+ @pulumi.getter
3849
+ def value(self) -> str:
3850
+ """
3851
+ If a STRING data type then the value should be an array of characters, if a INTEGER data type then the value should be an integer value, if a FLOAT data type then the value should be an float value, if a BOOLEAN data type then the value should be TRUE or FALSE.
3852
+ """
3853
+ return pulumi.get(self, "value")
3854
+
3855
+
3713
3856
  @pulumi.output_type
3714
3857
  class GetMigrationsAdvisorSettingResult(dict):
3715
3858
  def __init__(__self__, *,
@@ -5894,6 +5894,7 @@ class WorkspaceTaskConfigProviderDelegateBindingParameterValuesArgs:
5894
5894
  simple_value: Optional[pulumi.Input[str]] = None):
5895
5895
  """
5896
5896
  :param pulumi.Input['WorkspaceTaskConfigProviderDelegateBindingParameterValuesRootObjectValueArgs'] root_object_value: The root object value, used in custom parameters.
5897
+ :param pulumi.Input[str] simple_value: A simple value for the parameter.
5897
5898
  """
5898
5899
  if root_object_value is not None:
5899
5900
  pulumi.set(__self__, "root_object_value", root_object_value)
@@ -5915,6 +5916,9 @@ class WorkspaceTaskConfigProviderDelegateBindingParameterValuesArgs:
5915
5916
  @property
5916
5917
  @pulumi.getter(name="simpleValue")
5917
5918
  def simple_value(self) -> Optional[pulumi.Input[str]]:
5919
+ """
5920
+ A simple value for the parameter.
5921
+ """
5918
5922
  return pulumi.get(self, "simple_value")
5919
5923
 
5920
5924
  @simple_value.setter
@@ -6195,6 +6195,7 @@ class WorkspaceTaskConfigProviderDelegateBindingParameterValues(dict):
6195
6195
  simple_value: Optional[str] = None):
6196
6196
  """
6197
6197
  :param 'WorkspaceTaskConfigProviderDelegateBindingParameterValuesRootObjectValueArgs' root_object_value: The root object value, used in custom parameters.
6198
+ :param str simple_value: A simple value for the parameter.
6198
6199
  """
6199
6200
  if root_object_value is not None:
6200
6201
  pulumi.set(__self__, "root_object_value", root_object_value)
@@ -6212,6 +6213,9 @@ class WorkspaceTaskConfigProviderDelegateBindingParameterValues(dict):
6212
6213
  @property
6213
6214
  @pulumi.getter(name="simpleValue")
6214
6215
  def simple_value(self) -> Optional[str]:
6216
+ """
6217
+ A simple value for the parameter.
6218
+ """
6215
6219
  return pulumi.get(self, "simple_value")
6216
6220
 
6217
6221
 
@@ -46,9 +46,16 @@ class ManagementAgentDataSourceListArgs:
46
46
  type: Optional[pulumi.Input[str]] = None,
47
47
  url: Optional[pulumi.Input[str]] = None):
48
48
  """
49
+ :param pulumi.Input[str] name: Name of the property
50
+ :param pulumi.Input[int] read_data_limit: Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
51
+ :param pulumi.Input[int] read_timeout: Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
52
+ :param pulumi.Input[str] resource_group: Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
53
+ :param pulumi.Input[int] schedule_mins: Number in minutes. The scraping occurs at the specified interval.
49
54
  :param pulumi.Input[str] state: The current state of managementAgent
50
55
  :param pulumi.Input[str] time_created: The time the Management Agent was created. An RFC3339 formatted datetime string
51
56
  :param pulumi.Input[str] time_updated: The time the Management Agent was last updated. An RFC3339 formatted datetime string
57
+ :param pulumi.Input[str] type: The type of the DataSource.
58
+ :param pulumi.Input[str] url: The url through which the Prometheus Exporter publishes its metrics. (http only)
52
59
  """
53
60
  if allow_metrics is not None:
54
61
  pulumi.set(__self__, "allow_metrics", allow_metrics)
@@ -144,6 +151,9 @@ class ManagementAgentDataSourceListArgs:
144
151
  @property
145
152
  @pulumi.getter
146
153
  def name(self) -> Optional[pulumi.Input[str]]:
154
+ """
155
+ Name of the property
156
+ """
147
157
  return pulumi.get(self, "name")
148
158
 
149
159
  @name.setter
@@ -171,6 +181,9 @@ class ManagementAgentDataSourceListArgs:
171
181
  @property
172
182
  @pulumi.getter(name="readDataLimit")
173
183
  def read_data_limit(self) -> Optional[pulumi.Input[int]]:
184
+ """
185
+ Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
186
+ """
174
187
  return pulumi.get(self, "read_data_limit")
175
188
 
176
189
  @read_data_limit.setter
@@ -180,6 +193,9 @@ class ManagementAgentDataSourceListArgs:
180
193
  @property
181
194
  @pulumi.getter(name="readTimeout")
182
195
  def read_timeout(self) -> Optional[pulumi.Input[int]]:
196
+ """
197
+ Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
198
+ """
183
199
  return pulumi.get(self, "read_timeout")
184
200
 
185
201
  @read_timeout.setter
@@ -189,6 +205,9 @@ class ManagementAgentDataSourceListArgs:
189
205
  @property
190
206
  @pulumi.getter(name="resourceGroup")
191
207
  def resource_group(self) -> Optional[pulumi.Input[str]]:
208
+ """
209
+ Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
210
+ """
192
211
  return pulumi.get(self, "resource_group")
193
212
 
194
213
  @resource_group.setter
@@ -198,6 +217,9 @@ class ManagementAgentDataSourceListArgs:
198
217
  @property
199
218
  @pulumi.getter(name="scheduleMins")
200
219
  def schedule_mins(self) -> Optional[pulumi.Input[int]]:
220
+ """
221
+ Number in minutes. The scraping occurs at the specified interval.
222
+ """
201
223
  return pulumi.get(self, "schedule_mins")
202
224
 
203
225
  @schedule_mins.setter
@@ -243,6 +265,9 @@ class ManagementAgentDataSourceListArgs:
243
265
  @property
244
266
  @pulumi.getter
245
267
  def type(self) -> Optional[pulumi.Input[str]]:
268
+ """
269
+ The type of the DataSource.
270
+ """
246
271
  return pulumi.get(self, "type")
247
272
 
248
273
  @type.setter
@@ -252,6 +277,9 @@ class ManagementAgentDataSourceListArgs:
252
277
  @property
253
278
  @pulumi.getter
254
279
  def url(self) -> Optional[pulumi.Input[str]]:
280
+ """
281
+ The url through which the Prometheus Exporter publishes its metrics. (http only)
282
+ """
255
283
  return pulumi.get(self, "url")
256
284
 
257
285
  @url.setter
@@ -264,6 +292,9 @@ class ManagementAgentDataSourceListMetricDimensionArgs:
264
292
  def __init__(__self__, *,
265
293
  name: Optional[pulumi.Input[str]] = None,
266
294
  value: Optional[pulumi.Input[str]] = None):
295
+ """
296
+ :param pulumi.Input[str] name: Name of the property
297
+ """
267
298
  if name is not None:
268
299
  pulumi.set(__self__, "name", name)
269
300
  if value is not None:
@@ -272,6 +303,9 @@ class ManagementAgentDataSourceListMetricDimensionArgs:
272
303
  @property
273
304
  @pulumi.getter
274
305
  def name(self) -> Optional[pulumi.Input[str]]:
306
+ """
307
+ Name of the property
308
+ """
275
309
  return pulumi.get(self, "name")
276
310
 
277
311
  @name.setter
@@ -332,6 +366,10 @@ class ManagementAgentDataSourceSummaryListArgs:
332
366
  key: Optional[pulumi.Input[str]] = None,
333
367
  name: Optional[pulumi.Input[str]] = None,
334
368
  type: Optional[pulumi.Input[str]] = None):
369
+ """
370
+ :param pulumi.Input[str] name: Name of the property
371
+ :param pulumi.Input[str] type: The type of the DataSource.
372
+ """
335
373
  if is_daemon_set is not None:
336
374
  pulumi.set(__self__, "is_daemon_set", is_daemon_set)
337
375
  if key is not None:
@@ -362,6 +400,9 @@ class ManagementAgentDataSourceSummaryListArgs:
362
400
  @property
363
401
  @pulumi.getter
364
402
  def name(self) -> Optional[pulumi.Input[str]]:
403
+ """
404
+ Name of the property
405
+ """
365
406
  return pulumi.get(self, "name")
366
407
 
367
408
  @name.setter
@@ -371,6 +412,9 @@ class ManagementAgentDataSourceSummaryListArgs:
371
412
  @property
372
413
  @pulumi.getter
373
414
  def type(self) -> Optional[pulumi.Input[str]]:
415
+ """
416
+ The type of the DataSource.
417
+ """
374
418
  return pulumi.get(self, "type")
375
419
 
376
420
  @type.setter
@@ -108,9 +108,16 @@ class ManagementAgentDataSourceList(dict):
108
108
  type: Optional[str] = None,
109
109
  url: Optional[str] = None):
110
110
  """
111
+ :param str name: Name of the property
112
+ :param int read_data_limit: Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
113
+ :param int read_timeout: Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
114
+ :param str resource_group: Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
115
+ :param int schedule_mins: Number in minutes. The scraping occurs at the specified interval.
111
116
  :param str state: The current state of managementAgent
112
117
  :param str time_created: The time the Management Agent was created. An RFC3339 formatted datetime string
113
118
  :param str time_updated: The time the Management Agent was last updated. An RFC3339 formatted datetime string
119
+ :param str type: The type of the DataSource.
120
+ :param str url: The url through which the Prometheus Exporter publishes its metrics. (http only)
114
121
  """
115
122
  if allow_metrics is not None:
116
123
  pulumi.set(__self__, "allow_metrics", allow_metrics)
@@ -182,6 +189,9 @@ class ManagementAgentDataSourceList(dict):
182
189
  @property
183
190
  @pulumi.getter
184
191
  def name(self) -> Optional[str]:
192
+ """
193
+ Name of the property
194
+ """
185
195
  return pulumi.get(self, "name")
186
196
 
187
197
  @property
@@ -197,21 +207,33 @@ class ManagementAgentDataSourceList(dict):
197
207
  @property
198
208
  @pulumi.getter(name="readDataLimit")
199
209
  def read_data_limit(self) -> Optional[int]:
210
+ """
211
+ Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
212
+ """
200
213
  return pulumi.get(self, "read_data_limit")
201
214
 
202
215
  @property
203
216
  @pulumi.getter(name="readTimeout")
204
217
  def read_timeout(self) -> Optional[int]:
218
+ """
219
+ Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
220
+ """
205
221
  return pulumi.get(self, "read_timeout")
206
222
 
207
223
  @property
208
224
  @pulumi.getter(name="resourceGroup")
209
225
  def resource_group(self) -> Optional[str]:
226
+ """
227
+ Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
228
+ """
210
229
  return pulumi.get(self, "resource_group")
211
230
 
212
231
  @property
213
232
  @pulumi.getter(name="scheduleMins")
214
233
  def schedule_mins(self) -> Optional[int]:
234
+ """
235
+ Number in minutes. The scraping occurs at the specified interval.
236
+ """
215
237
  return pulumi.get(self, "schedule_mins")
216
238
 
217
239
  @property
@@ -241,11 +263,17 @@ class ManagementAgentDataSourceList(dict):
241
263
  @property
242
264
  @pulumi.getter
243
265
  def type(self) -> Optional[str]:
266
+ """
267
+ The type of the DataSource.
268
+ """
244
269
  return pulumi.get(self, "type")
245
270
 
246
271
  @property
247
272
  @pulumi.getter
248
273
  def url(self) -> Optional[str]:
274
+ """
275
+ The url through which the Prometheus Exporter publishes its metrics. (http only)
276
+ """
249
277
  return pulumi.get(self, "url")
250
278
 
251
279
 
@@ -254,6 +282,9 @@ class ManagementAgentDataSourceListMetricDimension(dict):
254
282
  def __init__(__self__, *,
255
283
  name: Optional[str] = None,
256
284
  value: Optional[str] = None):
285
+ """
286
+ :param str name: Name of the property
287
+ """
257
288
  if name is not None:
258
289
  pulumi.set(__self__, "name", name)
259
290
  if value is not None:
@@ -262,6 +293,9 @@ class ManagementAgentDataSourceListMetricDimension(dict):
262
293
  @property
263
294
  @pulumi.getter
264
295
  def name(self) -> Optional[str]:
296
+ """
297
+ Name of the property
298
+ """
265
299
  return pulumi.get(self, "name")
266
300
 
267
301
  @property
@@ -323,6 +357,10 @@ class ManagementAgentDataSourceSummaryList(dict):
323
357
  key: Optional[str] = None,
324
358
  name: Optional[str] = None,
325
359
  type: Optional[str] = None):
360
+ """
361
+ :param str name: Name of the property
362
+ :param str type: The type of the DataSource.
363
+ """
326
364
  if is_daemon_set is not None:
327
365
  pulumi.set(__self__, "is_daemon_set", is_daemon_set)
328
366
  if key is not None:
@@ -345,11 +383,17 @@ class ManagementAgentDataSourceSummaryList(dict):
345
383
  @property
346
384
  @pulumi.getter
347
385
  def name(self) -> Optional[str]:
386
+ """
387
+ Name of the property
388
+ """
348
389
  return pulumi.get(self, "name")
349
390
 
350
391
  @property
351
392
  @pulumi.getter
352
393
  def type(self) -> Optional[str]:
394
+ """
395
+ The type of the DataSource.
396
+ """
353
397
  return pulumi.get(self, "type")
354
398
 
355
399