pulumi-oci 2.2.0a1720523861__py3-none-any.whl → 2.2.0a1720785723__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.
@@ -17,6 +17,7 @@ __all__ = [
17
17
  'JobProgressPhaseExtractArgs',
18
18
  'JobProgressPhaseLogLocationArgs',
19
19
  'JobUnsupportedObjectArgs',
20
+ 'MigrationAdvancedParameterArgs',
20
21
  'MigrationAdvisorSettingsArgs',
21
22
  'MigrationDataTransferMediumDetailsArgs',
22
23
  'MigrationDataTransferMediumDetailsObjectStorageBucketArgs',
@@ -459,6 +460,61 @@ class JobUnsupportedObjectArgs:
459
460
  pulumi.set(self, "type", value)
460
461
 
461
462
 
463
+ @pulumi.input_type
464
+ class MigrationAdvancedParameterArgs:
465
+ def __init__(__self__, *,
466
+ data_type: Optional[pulumi.Input[str]] = None,
467
+ name: Optional[pulumi.Input[str]] = None,
468
+ value: Optional[pulumi.Input[str]] = None):
469
+ """
470
+ :param pulumi.Input[str] data_type: (Updatable) Parameter data type.
471
+ :param pulumi.Input[str] name: (Updatable) Parameter name.
472
+ :param pulumi.Input[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.
473
+ """
474
+ if data_type is not None:
475
+ pulumi.set(__self__, "data_type", data_type)
476
+ if name is not None:
477
+ pulumi.set(__self__, "name", name)
478
+ if value is not None:
479
+ pulumi.set(__self__, "value", value)
480
+
481
+ @property
482
+ @pulumi.getter(name="dataType")
483
+ def data_type(self) -> Optional[pulumi.Input[str]]:
484
+ """
485
+ (Updatable) Parameter data type.
486
+ """
487
+ return pulumi.get(self, "data_type")
488
+
489
+ @data_type.setter
490
+ def data_type(self, value: Optional[pulumi.Input[str]]):
491
+ pulumi.set(self, "data_type", value)
492
+
493
+ @property
494
+ @pulumi.getter
495
+ def name(self) -> Optional[pulumi.Input[str]]:
496
+ """
497
+ (Updatable) Parameter name.
498
+ """
499
+ return pulumi.get(self, "name")
500
+
501
+ @name.setter
502
+ def name(self, value: Optional[pulumi.Input[str]]):
503
+ pulumi.set(self, "name", value)
504
+
505
+ @property
506
+ @pulumi.getter
507
+ def value(self) -> Optional[pulumi.Input[str]]:
508
+ """
509
+ (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.
510
+ """
511
+ return pulumi.get(self, "value")
512
+
513
+ @value.setter
514
+ def value(self, value: Optional[pulumi.Input[str]]):
515
+ pulumi.set(self, "value", value)
516
+
517
+
462
518
  @pulumi.input_type
463
519
  class MigrationAdvisorSettingsArgs:
464
520
  def __init__(__self__, *,
@@ -22,7 +22,10 @@ class GetMigrationResult:
22
22
  """
23
23
  A collection of values returned by getMigration.
24
24
  """
25
- def __init__(__self__, advisor_settings=None, bulk_include_exclude_data=None, compartment_id=None, data_transfer_medium_details=None, database_combination=None, defined_tags=None, description=None, display_name=None, exclude_objects=None, executing_job_id=None, freeform_tags=None, ggs_details=None, hub_details=None, id=None, include_objects=None, initial_load_settings=None, lifecycle_details=None, migration_id=None, source_container_database_connection_id=None, source_database_connection_id=None, state=None, system_tags=None, target_database_connection_id=None, time_created=None, time_last_migration=None, time_updated=None, type=None, wait_after=None):
25
+ def __init__(__self__, advanced_parameters=None, advisor_settings=None, bulk_include_exclude_data=None, compartment_id=None, data_transfer_medium_details=None, database_combination=None, defined_tags=None, description=None, display_name=None, exclude_objects=None, executing_job_id=None, freeform_tags=None, ggs_details=None, hub_details=None, id=None, include_objects=None, initial_load_settings=None, lifecycle_details=None, migration_id=None, source_container_database_connection_id=None, source_database_connection_id=None, state=None, system_tags=None, target_database_connection_id=None, time_created=None, time_last_migration=None, time_updated=None, type=None, wait_after=None):
26
+ if advanced_parameters and not isinstance(advanced_parameters, list):
27
+ raise TypeError("Expected argument 'advanced_parameters' to be a list")
28
+ pulumi.set(__self__, "advanced_parameters", advanced_parameters)
26
29
  if advisor_settings and not isinstance(advisor_settings, list):
27
30
  raise TypeError("Expected argument 'advisor_settings' to be a list")
28
31
  pulumi.set(__self__, "advisor_settings", advisor_settings)
@@ -108,6 +111,14 @@ class GetMigrationResult:
108
111
  raise TypeError("Expected argument 'wait_after' to be a str")
109
112
  pulumi.set(__self__, "wait_after", wait_after)
110
113
 
114
+ @property
115
+ @pulumi.getter(name="advancedParameters")
116
+ def advanced_parameters(self) -> Sequence['outputs.GetMigrationAdvancedParameterResult']:
117
+ """
118
+ List of Migration Parameter objects.
119
+ """
120
+ return pulumi.get(self, "advanced_parameters")
121
+
111
122
  @property
112
123
  @pulumi.getter(name="advisorSettings")
113
124
  def advisor_settings(self) -> Sequence['outputs.GetMigrationAdvisorSettingResult']:
@@ -327,6 +338,7 @@ class AwaitableGetMigrationResult(GetMigrationResult):
327
338
  if False:
328
339
  yield self
329
340
  return GetMigrationResult(
341
+ advanced_parameters=self.advanced_parameters,
330
342
  advisor_settings=self.advisor_settings,
331
343
  bulk_include_exclude_data=self.bulk_include_exclude_data,
332
344
  compartment_id=self.compartment_id,
@@ -378,6 +390,7 @@ def get_migration(migration_id: Optional[str] = None,
378
390
  __ret__ = pulumi.runtime.invoke('oci:DatabaseMigration/getMigration:getMigration', __args__, opts=opts, typ=GetMigrationResult).value
379
391
 
380
392
  return AwaitableGetMigrationResult(
393
+ advanced_parameters=pulumi.get(__ret__, 'advanced_parameters'),
381
394
  advisor_settings=pulumi.get(__ret__, 'advisor_settings'),
382
395
  bulk_include_exclude_data=pulumi.get(__ret__, 'bulk_include_exclude_data'),
383
396
  compartment_id=pulumi.get(__ret__, 'compartment_id'),
@@ -22,7 +22,10 @@ class GetMigrationsResult:
22
22
  """
23
23
  A collection of values returned by getMigrations.
24
24
  """
25
- def __init__(__self__, advisor_settings=None, bulk_include_exclude_data=None, compartment_id=None, data_transfer_medium_details=None, database_combination=None, defined_tags=None, description=None, display_name=None, exclude_objects=None, executing_job_id=None, freeform_tags=None, ggs_details=None, hub_details=None, id=None, include_objects=None, initial_load_settings=None, lifecycle_details=None, migration_id=None, source_container_database_connection_id=None, source_database_connection_id=None, state=None, system_tags=None, target_database_connection_id=None, time_created=None, time_last_migration=None, time_updated=None, type=None, wait_after=None):
25
+ def __init__(__self__, advanced_parameters=None, advisor_settings=None, bulk_include_exclude_data=None, compartment_id=None, data_transfer_medium_details=None, database_combination=None, defined_tags=None, description=None, display_name=None, exclude_objects=None, executing_job_id=None, freeform_tags=None, ggs_details=None, hub_details=None, id=None, include_objects=None, initial_load_settings=None, lifecycle_details=None, migration_id=None, source_container_database_connection_id=None, source_database_connection_id=None, state=None, system_tags=None, target_database_connection_id=None, time_created=None, time_last_migration=None, time_updated=None, type=None, wait_after=None):
26
+ if advanced_parameters and not isinstance(advanced_parameters, list):
27
+ raise TypeError("Expected argument 'advanced_parameters' to be a list")
28
+ pulumi.set(__self__, "advanced_parameters", advanced_parameters)
26
29
  if advisor_settings and not isinstance(advisor_settings, list):
27
30
  raise TypeError("Expected argument 'advisor_settings' to be a list")
28
31
  pulumi.set(__self__, "advisor_settings", advisor_settings)
@@ -108,6 +111,14 @@ class GetMigrationsResult:
108
111
  raise TypeError("Expected argument 'wait_after' to be a str")
109
112
  pulumi.set(__self__, "wait_after", wait_after)
110
113
 
114
+ @property
115
+ @pulumi.getter(name="advancedParameters")
116
+ def advanced_parameters(self) -> Sequence['outputs.GetMigrationsAdvancedParameterResult']:
117
+ """
118
+ List of Migration Parameter objects.
119
+ """
120
+ return pulumi.get(self, "advanced_parameters")
121
+
111
122
  @property
112
123
  @pulumi.getter(name="advisorSettings")
113
124
  def advisor_settings(self) -> Sequence['outputs.GetMigrationsAdvisorSettingResult']:
@@ -327,6 +338,7 @@ class AwaitableGetMigrationsResult(GetMigrationsResult):
327
338
  if False:
328
339
  yield self
329
340
  return GetMigrationsResult(
341
+ advanced_parameters=self.advanced_parameters,
330
342
  advisor_settings=self.advisor_settings,
331
343
  bulk_include_exclude_data=self.bulk_include_exclude_data,
332
344
  compartment_id=self.compartment_id,
@@ -368,6 +380,7 @@ def get_migrations(migration_id: Optional[str] = None,
368
380
  __ret__ = pulumi.runtime.invoke('oci:DatabaseMigration/getMigrations:getMigrations', __args__, opts=opts, typ=GetMigrationsResult).value
369
381
 
370
382
  return AwaitableGetMigrationsResult(
383
+ advanced_parameters=pulumi.get(__ret__, 'advanced_parameters'),
371
384
  advisor_settings=pulumi.get(__ret__, 'advisor_settings'),
372
385
  bulk_include_exclude_data=pulumi.get(__ret__, 'bulk_include_exclude_data'),
373
386
  compartment_id=pulumi.get(__ret__, 'compartment_id'),
@@ -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__, *,
@@ -1792,6 +1792,8 @@ class UsageGroupByTagArgs:
1792
1792
  class UsageItemArgs:
1793
1793
  def __init__(__self__, *,
1794
1794
  ad: Optional[pulumi.Input[str]] = None,
1795
+ attributed_cost: Optional[pulumi.Input[str]] = None,
1796
+ attributed_usage: Optional[pulumi.Input[str]] = None,
1795
1797
  compartment_id: Optional[pulumi.Input[str]] = None,
1796
1798
  compartment_name: Optional[pulumi.Input[str]] = None,
1797
1799
  compartment_path: Optional[pulumi.Input[str]] = None,
@@ -1822,6 +1824,8 @@ class UsageItemArgs:
1822
1824
  weight: Optional[pulumi.Input[float]] = None):
1823
1825
  """
1824
1826
  :param pulumi.Input[str] ad: The availability domain of the usage.
1827
+ :param pulumi.Input[str] attributed_cost: The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
1828
+ :param pulumi.Input[str] attributed_usage: The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
1825
1829
  :param pulumi.Input[str] compartment_id: The compartment OCID.
1826
1830
  :param pulumi.Input[str] compartment_name: The compartment name.
1827
1831
  :param pulumi.Input[str] compartment_path: The compartment path, starting from root.
@@ -1857,6 +1861,10 @@ class UsageItemArgs:
1857
1861
  """
1858
1862
  if ad is not None:
1859
1863
  pulumi.set(__self__, "ad", ad)
1864
+ if attributed_cost is not None:
1865
+ pulumi.set(__self__, "attributed_cost", attributed_cost)
1866
+ if attributed_usage is not None:
1867
+ pulumi.set(__self__, "attributed_usage", attributed_usage)
1860
1868
  if compartment_id is not None:
1861
1869
  pulumi.set(__self__, "compartment_id", compartment_id)
1862
1870
  if compartment_name is not None:
@@ -1926,6 +1934,30 @@ class UsageItemArgs:
1926
1934
  def ad(self, value: Optional[pulumi.Input[str]]):
1927
1935
  pulumi.set(self, "ad", value)
1928
1936
 
1937
+ @property
1938
+ @pulumi.getter(name="attributedCost")
1939
+ def attributed_cost(self) -> Optional[pulumi.Input[str]]:
1940
+ """
1941
+ The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
1942
+ """
1943
+ return pulumi.get(self, "attributed_cost")
1944
+
1945
+ @attributed_cost.setter
1946
+ def attributed_cost(self, value: Optional[pulumi.Input[str]]):
1947
+ pulumi.set(self, "attributed_cost", value)
1948
+
1949
+ @property
1950
+ @pulumi.getter(name="attributedUsage")
1951
+ def attributed_usage(self) -> Optional[pulumi.Input[str]]:
1952
+ """
1953
+ The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
1954
+ """
1955
+ return pulumi.get(self, "attributed_usage")
1956
+
1957
+ @attributed_usage.setter
1958
+ def attributed_usage(self, value: Optional[pulumi.Input[str]]):
1959
+ pulumi.set(self, "attributed_usage", value)
1960
+
1929
1961
  @property
1930
1962
  @pulumi.getter(name="compartmentId")
1931
1963
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
@@ -1755,7 +1755,11 @@ class UsageItem(dict):
1755
1755
  @staticmethod
1756
1756
  def __key_warning(key: str):
1757
1757
  suggest = None
1758
- if key == "compartmentId":
1758
+ if key == "attributedCost":
1759
+ suggest = "attributed_cost"
1760
+ elif key == "attributedUsage":
1761
+ suggest = "attributed_usage"
1762
+ elif key == "compartmentId":
1759
1763
  suggest = "compartment_id"
1760
1764
  elif key == "compartmentName":
1761
1765
  suggest = "compartment_name"
@@ -1805,6 +1809,8 @@ class UsageItem(dict):
1805
1809
 
1806
1810
  def __init__(__self__, *,
1807
1811
  ad: Optional[str] = None,
1812
+ attributed_cost: Optional[str] = None,
1813
+ attributed_usage: Optional[str] = None,
1808
1814
  compartment_id: Optional[str] = None,
1809
1815
  compartment_name: Optional[str] = None,
1810
1816
  compartment_path: Optional[str] = None,
@@ -1835,6 +1841,8 @@ class UsageItem(dict):
1835
1841
  weight: Optional[float] = None):
1836
1842
  """
1837
1843
  :param str ad: The availability domain of the usage.
1844
+ :param str attributed_cost: The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
1845
+ :param str attributed_usage: The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
1838
1846
  :param str compartment_id: The compartment OCID.
1839
1847
  :param str compartment_name: The compartment name.
1840
1848
  :param str compartment_path: The compartment path, starting from root.
@@ -1870,6 +1878,10 @@ class UsageItem(dict):
1870
1878
  """
1871
1879
  if ad is not None:
1872
1880
  pulumi.set(__self__, "ad", ad)
1881
+ if attributed_cost is not None:
1882
+ pulumi.set(__self__, "attributed_cost", attributed_cost)
1883
+ if attributed_usage is not None:
1884
+ pulumi.set(__self__, "attributed_usage", attributed_usage)
1873
1885
  if compartment_id is not None:
1874
1886
  pulumi.set(__self__, "compartment_id", compartment_id)
1875
1887
  if compartment_name is not None:
@@ -1935,6 +1947,22 @@ class UsageItem(dict):
1935
1947
  """
1936
1948
  return pulumi.get(self, "ad")
1937
1949
 
1950
+ @property
1951
+ @pulumi.getter(name="attributedCost")
1952
+ def attributed_cost(self) -> Optional[str]:
1953
+ """
1954
+ The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
1955
+ """
1956
+ return pulumi.get(self, "attributed_cost")
1957
+
1958
+ @property
1959
+ @pulumi.getter(name="attributedUsage")
1960
+ def attributed_usage(self) -> Optional[str]:
1961
+ """
1962
+ The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
1963
+ """
1964
+ return pulumi.get(self, "attributed_usage")
1965
+
1938
1966
  @property
1939
1967
  @pulumi.getter(name="compartmentId")
1940
1968
  def compartment_id(self) -> Optional[str]:
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "oci",
4
- "version": "2.2.0-alpha.1720523861"
4
+ "version": "2.2.0-alpha.1720785723"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_oci
3
- Version: 2.2.0a1720523861
3
+ Version: 2.2.0a1720785723
4
4
  Summary: A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.pulumi.com
@@ -1,7 +1,7 @@
1
1
  pulumi_oci/__init__.py,sha256=oAqbCE91YRvgOikY3JwWxLsfZUf2CToyI6p0x0H8j2s,160193
2
2
  pulumi_oci/_utilities.py,sha256=zozFZPZGnJJ7MjOYHQPdH-l-EHcRcX5lh5TVi22oTCw,10446
3
3
  pulumi_oci/provider.py,sha256=9MXW-Zeh5jJ_T7w9PgSlFcu0s4_tylBZIVYdFLmo_fU,23922
4
- pulumi_oci/pulumi-plugin.json,sha256=MFwNCiFxMMMUTvRsvWmHDvj3FTMHc7I8WuWFc9CA2Fg,79
4
+ pulumi_oci/pulumi-plugin.json,sha256=IykW52zZMly5FfCmAkl_O7h17ACJuvPOoc_LJ7HqCiI,79
5
5
  pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  pulumi_oci/adm/__init__.py,sha256=pxPlS_-eNzVJqBq2i1MCMmmLGhFhW-ATfiH6YEb71xI,1049
7
7
  pulumi_oci/adm/_inputs.py,sha256=nMRnDJd64H5GAJ9ybIPjR9fsDdJFyCdHYBir_ADSrT4,53283
@@ -985,18 +985,18 @@ pulumi_oci/databasemanagement/named_credential.py,sha256=gwcKUxJKii9k9FXBEjYYFij
985
985
  pulumi_oci/databasemanagement/outputs.py,sha256=RV57VBzIpOOIqy6JWsAn7KVkqwCESvA_ue2Uct7NFY4,1233256
986
986
  pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py,sha256=IhQRhNbKNM4U9s4Z1PiJUKQ8qvJCa_87UxbUfMEWu44,16232
987
987
  pulumi_oci/databasemigration/__init__.py,sha256=wq-hZhb2rxiz9X5A9L-7N8RfkwhB3NXCbKKHsqsNolI,614
988
- pulumi_oci/databasemigration/_inputs.py,sha256=dwqhey_GqgyyMR-xUP95c5kcaE4Bru6phJKiZijO6lk,83318
988
+ pulumi_oci/databasemigration/_inputs.py,sha256=kgH7_XKWaFye0wGcSBP0Jyba5gJ2Zc4JZoYbYuGnVbs,85556
989
989
  pulumi_oci/databasemigration/connection.py,sha256=z_qzQo_Agw0SITrKWruojfazhGsm9AIDcC5p17Nk0V4,96527
990
990
  pulumi_oci/databasemigration/get_connection.py,sha256=3Dab9CK1itygEcQNw_lNcnWyRh0_68cvTGV29fxbnr4,25076
991
991
  pulumi_oci/databasemigration/get_connections.py,sha256=WKkR2lATNrJNUQCLb046UcacKWHLbsCcjt0RPMzCj_M,9789
992
992
  pulumi_oci/databasemigration/get_job_advisor_report.py,sha256=_VDOC8ADJZtRQFincioA_Qw-vRIdoZ3EKv5WfJI4ViY,6805
993
993
  pulumi_oci/databasemigration/get_job_output.py,sha256=TMABuPbwUJXWgNGhRdA_J-jnD_bh0tlzQ05Btrcuufc,3556
994
- pulumi_oci/databasemigration/get_migration.py,sha256=PQs7bZCeuyRediYwDfxAIF4go6foXidCowlyEGLZJMc,19514
994
+ pulumi_oci/databasemigration/get_migration.py,sha256=mxKrgJU9ftSiG5AhBpqQAoWaNsRHjwn20pYRaBlgogU,20184
995
995
  pulumi_oci/databasemigration/get_migration_object_types.py,sha256=rVI702t2HggOvedZA2d99whjW1yNLSB4DGJoT5Ohp4M,5116
996
- pulumi_oci/databasemigration/get_migrations.py,sha256=uQoVaRyMPArV7o2ve8tsM6ak9-EMjthoYomG_OIzVN0,18895
996
+ pulumi_oci/databasemigration/get_migrations.py,sha256=rsORFiv7eRt1P_giOFATPeXZctLWQBTwTCbNE1wqwgI,19566
997
997
  pulumi_oci/databasemigration/job.py,sha256=bQsNorR7wHa99o4hj_5mEuTVnOuaqfJBZcxun4Ojp0U,26577
998
- pulumi_oci/databasemigration/migration.py,sha256=j60GXNHynZM87TbwqQhlhDwFPchOIXsWOZLLVWq8WUA,84478
999
- pulumi_oci/databasemigration/outputs.py,sha256=IzQ-3kUx2ujc_K3ogENB0fU33gNoL7-ocxiSyxkcGeY,187595
998
+ pulumi_oci/databasemigration/migration.py,sha256=GyW7WWe6xcrRO2MCTy3gTqVw-h1hnI2qEZU_DEMeytE,88139
999
+ pulumi_oci/databasemigration/outputs.py,sha256=paNa9oye4wxOeajMrSbkqNSdkXt3s_qHtF4m5xB22Dk,193048
1000
1000
  pulumi_oci/databasetools/__init__.py,sha256=E0X8vTRKspPI8060q1z3elp-zq_y06OAs_0Td99nZrU,699
1001
1001
  pulumi_oci/databasetools/_inputs.py,sha256=ZchmnhSk0wvOdkNdFQ995zdnOSwwaOIv8P_OjU6GB2A,25587
1002
1002
  pulumi_oci/databasetools/database_tools_connection.py,sha256=loLbmJWw94XpYD7u28CPe73c3FY4ajfrZkxR0nML8hM,53940
@@ -2047,7 +2047,7 @@ pulumi_oci/mediaservices/stream_cdn_config.py,sha256=t62-fjr1xOqL5xCxgRNirrvLeaB
2047
2047
  pulumi_oci/mediaservices/stream_distribution_channel.py,sha256=bLz3SR6XIYW8WGSI4icAWxj4V1BaSrVCdizr8bB45Kg,27392
2048
2048
  pulumi_oci/mediaservices/stream_packaging_config.py,sha256=Q_1UayrOgBNV_D0KDA5NgOjqePC1ccTdlXTK222wf1k,37393
2049
2049
  pulumi_oci/meteringcomputation/__init__.py,sha256=5NXcizl3_GVPujB3HrJ6JuJMgUev8xZ6w7N2bTyUSLw,1162
2050
- pulumi_oci/meteringcomputation/_inputs.py,sha256=rk7WYNZNuEqRipF2m5a5-6XOtw5NnV91--zw2RLEec4,101520
2050
+ pulumi_oci/meteringcomputation/_inputs.py,sha256=4CX9JA9BFBaNVdO7g9AtYbMC6Z85Usjs5lwHvazE8BM,103049
2051
2051
  pulumi_oci/meteringcomputation/custom_table.py,sha256=eFovNKI8ZTJ-ZGG-7dDRZ6t0x73huxsJWd6Lmp0h01E,14977
2052
2052
  pulumi_oci/meteringcomputation/get_average_carbon_emission.py,sha256=pYvgpT7BTKZ-Omyw8Nj3Z2nn9eyzsKVUi17jUa2UVpo,4452
2053
2053
  pulumi_oci/meteringcomputation/get_clean_energy_usage.py,sha256=rdlMtqsOt9JZ_p7hNT-l48fiejSnKuDuJRFT4zo4tzk,3779
@@ -2065,7 +2065,7 @@ pulumi_oci/meteringcomputation/get_usage_carbon_emissions_queries.py,sha256=Nkkv
2065
2065
  pulumi_oci/meteringcomputation/get_usage_carbon_emissions_query.py,sha256=D9i76eIBfFTPDWXXjc6cwfCYu8Ogvjn4IuZqYyz2Glo,5444
2066
2066
  pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_group.py,sha256=eDYnNPTP-Zj-vUzvf8xp0BApP4SX8MrxWUQSBdfXEuM,7399
2067
2067
  pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_groups.py,sha256=JAv260EmNO7S_b3OM9XpldVb9C_RdL2fY_ARCibwW44,6896
2068
- pulumi_oci/meteringcomputation/outputs.py,sha256=xMpzzb_Weq6TP4bu2d7eg_qqkDghJ6ry21MmSd4fhd0,188623
2068
+ pulumi_oci/meteringcomputation/outputs.py,sha256=OuHsL6f5LH7OiQWbsINAR3hu3XbONFgv9pQy2YLQiz8,189929
2069
2069
  pulumi_oci/meteringcomputation/query.py,sha256=DDg_F_ojrOU71-HeqQHMZgaoSTV8qznO3wnHDEuwTy0,13733
2070
2070
  pulumi_oci/meteringcomputation/schedule.py,sha256=0GvL7tu85WO9RW7Ph3olbDa50aO_4z3kEaqdsX5d_6w,44736
2071
2071
  pulumi_oci/meteringcomputation/usage.py,sha256=WEOadAzDcNVuHnirdYAV2cLlMe3h7Y8sXrvOVOgm21g,36833
@@ -2761,7 +2761,7 @@ pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=2EXX-nZiSRnou_ywPuVnvH9CT
2761
2761
  pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=iXFu2wfolxLPGoRpC9PvrbsMvIURoaPHkg6WVLdoEd8,14234
2762
2762
  pulumi_oci/waf/network_address_list.py,sha256=Burm-luOi53fUUOZVqwfKueKEDWQw8789Ir0mUblOiE,33054
2763
2763
  pulumi_oci/waf/outputs.py,sha256=IibDb-778q6fJDgC9y7kgFTv6CEz8lMNaSd1c3Su9uc,227138
2764
- pulumi_oci-2.2.0a1720523861.dist-info/METADATA,sha256=Anivk1n7BB3rHAfEQqQVz5uIVoutghSD5Tn45dXYyfI,3901
2765
- pulumi_oci-2.2.0a1720523861.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
2766
- pulumi_oci-2.2.0a1720523861.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
2767
- pulumi_oci-2.2.0a1720523861.dist-info/RECORD,,
2764
+ pulumi_oci-2.2.0a1720785723.dist-info/METADATA,sha256=LTj-MW-UvKNHtJGe_-g63x2Yr4zTILi7GSXLcsm58uQ,3901
2765
+ pulumi_oci-2.2.0a1720785723.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
2766
+ pulumi_oci-2.2.0a1720785723.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
2767
+ pulumi_oci-2.2.0a1720785723.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (70.2.0)
2
+ Generator: setuptools (70.3.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5