pulumi-oci 2.14.0a1730198001__py3-none-any.whl → 2.15.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 (36) hide show
  1. pulumi_oci/containerengine/addon.py +54 -7
  2. pulumi_oci/containerengine/get_addon.py +12 -1
  3. pulumi_oci/containerengine/outputs.py +9 -1
  4. pulumi_oci/core/instance_pool.py +7 -7
  5. pulumi_oci/datasafe/__init__.py +2 -0
  6. pulumi_oci/datasafe/_inputs.py +49 -0
  7. pulumi_oci/datasafe/get_database_security_config.py +307 -0
  8. pulumi_oci/datasafe/get_database_security_configs.py +342 -0
  9. pulumi_oci/datasafe/outputs.py +325 -0
  10. pulumi_oci/datascience/get_model.py +29 -4
  11. pulumi_oci/datascience/get_models.py +25 -5
  12. pulumi_oci/datascience/model.py +205 -4
  13. pulumi_oci/datascience/outputs.py +19 -1
  14. pulumi_oci/identity/domains_auth_token.py +68 -0
  15. pulumi_oci/identity/domains_customer_secret_key.py +56 -0
  16. pulumi_oci/identity/domains_oauth2client_credential.py +64 -0
  17. pulumi_oci/identity/domains_smtp_credential.py +60 -0
  18. pulumi_oci/identity/get_domains_auth_token.py +15 -1
  19. pulumi_oci/identity/get_domains_customer_secret_key.py +15 -1
  20. pulumi_oci/identity/get_domains_oauth2client_credential.py +15 -1
  21. pulumi_oci/identity/get_domains_smtp_credential.py +15 -1
  22. pulumi_oci/identity/outputs.py +44 -0
  23. pulumi_oci/loadbalancer/listener.py +7 -7
  24. pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
  25. pulumi_oci/networkloadbalancer/get_listener.py +15 -1
  26. pulumi_oci/networkloadbalancer/listener.py +49 -0
  27. pulumi_oci/networkloadbalancer/outputs.py +13 -2
  28. pulumi_oci/pulumi-plugin.json +1 -1
  29. pulumi_oci/resourcescheduler/_inputs.py +24 -21
  30. pulumi_oci/resourcescheduler/get_schedules.py +6 -6
  31. pulumi_oci/resourcescheduler/outputs.py +18 -16
  32. pulumi_oci/resourcescheduler/schedule.py +14 -88
  33. {pulumi_oci-2.14.0a1730198001.dist-info → pulumi_oci-2.15.0.dist-info}/METADATA +1 -1
  34. {pulumi_oci-2.14.0a1730198001.dist-info → pulumi_oci-2.15.0.dist-info}/RECORD +36 -34
  35. {pulumi_oci-2.14.0a1730198001.dist-info → pulumi_oci-2.15.0.dist-info}/WHEEL +0 -0
  36. {pulumi_oci-2.14.0a1730198001.dist-info → pulumi_oci-2.15.0.dist-info}/top_level.txt +0 -0
@@ -120,6 +120,11 @@ __all__ = [
120
120
  'GetDataSafeConfigurationGlobalSettingResult',
121
121
  'GetDataSafePrivateEndpointsDataSafePrivateEndpointResult',
122
122
  'GetDataSafePrivateEndpointsFilterResult',
123
+ 'GetDatabaseSecurityConfigSqlFirewallConfigResult',
124
+ 'GetDatabaseSecurityConfigsDatabaseSecurityConfigCollectionResult',
125
+ 'GetDatabaseSecurityConfigsDatabaseSecurityConfigCollectionItemResult',
126
+ 'GetDatabaseSecurityConfigsDatabaseSecurityConfigCollectionItemSqlFirewallConfigResult',
127
+ 'GetDatabaseSecurityConfigsFilterResult',
123
128
  'GetDiscoveryAnalyticItemResult',
124
129
  'GetDiscoveryAnalyticItemDimensionResult',
125
130
  'GetDiscoveryAnalyticsDiscoveryAnalyticsCollectionResult',
@@ -10364,6 +10369,326 @@ class GetDataSafePrivateEndpointsFilterResult(dict):
10364
10369
  return pulumi.get(self, "regex")
10365
10370
 
10366
10371
 
10372
+ @pulumi.output_type
10373
+ class GetDatabaseSecurityConfigSqlFirewallConfigResult(dict):
10374
+ def __init__(__self__, *,
10375
+ exclude_job: str,
10376
+ status: str,
10377
+ time_status_updated: str,
10378
+ violation_log_auto_purge: str):
10379
+ """
10380
+ :param str exclude_job: Specifies whether the firewall should include or exclude the database internal job activities.
10381
+ :param str status: Specifies if the firewall is enabled or disabled on the target database.
10382
+ :param str time_status_updated: The most recent time when the firewall status is updated, in the format defined by RFC3339.
10383
+ :param str violation_log_auto_purge: Specifies whether Data Safe should automatically purge the violation logs from the database after collecting the violation logs and persisting on Data Safe.
10384
+ """
10385
+ pulumi.set(__self__, "exclude_job", exclude_job)
10386
+ pulumi.set(__self__, "status", status)
10387
+ pulumi.set(__self__, "time_status_updated", time_status_updated)
10388
+ pulumi.set(__self__, "violation_log_auto_purge", violation_log_auto_purge)
10389
+
10390
+ @property
10391
+ @pulumi.getter(name="excludeJob")
10392
+ def exclude_job(self) -> str:
10393
+ """
10394
+ Specifies whether the firewall should include or exclude the database internal job activities.
10395
+ """
10396
+ return pulumi.get(self, "exclude_job")
10397
+
10398
+ @property
10399
+ @pulumi.getter
10400
+ def status(self) -> str:
10401
+ """
10402
+ Specifies if the firewall is enabled or disabled on the target database.
10403
+ """
10404
+ return pulumi.get(self, "status")
10405
+
10406
+ @property
10407
+ @pulumi.getter(name="timeStatusUpdated")
10408
+ def time_status_updated(self) -> str:
10409
+ """
10410
+ The most recent time when the firewall status is updated, in the format defined by RFC3339.
10411
+ """
10412
+ return pulumi.get(self, "time_status_updated")
10413
+
10414
+ @property
10415
+ @pulumi.getter(name="violationLogAutoPurge")
10416
+ def violation_log_auto_purge(self) -> str:
10417
+ """
10418
+ Specifies whether Data Safe should automatically purge the violation logs from the database after collecting the violation logs and persisting on Data Safe.
10419
+ """
10420
+ return pulumi.get(self, "violation_log_auto_purge")
10421
+
10422
+
10423
+ @pulumi.output_type
10424
+ class GetDatabaseSecurityConfigsDatabaseSecurityConfigCollectionResult(dict):
10425
+ def __init__(__self__, *,
10426
+ items: Sequence['outputs.GetDatabaseSecurityConfigsDatabaseSecurityConfigCollectionItemResult']):
10427
+ pulumi.set(__self__, "items", items)
10428
+
10429
+ @property
10430
+ @pulumi.getter
10431
+ def items(self) -> Sequence['outputs.GetDatabaseSecurityConfigsDatabaseSecurityConfigCollectionItemResult']:
10432
+ return pulumi.get(self, "items")
10433
+
10434
+
10435
+ @pulumi.output_type
10436
+ class GetDatabaseSecurityConfigsDatabaseSecurityConfigCollectionItemResult(dict):
10437
+ def __init__(__self__, *,
10438
+ compartment_id: str,
10439
+ database_security_config_id: str,
10440
+ defined_tags: Mapping[str, str],
10441
+ description: str,
10442
+ display_name: str,
10443
+ freeform_tags: Mapping[str, str],
10444
+ id: str,
10445
+ lifecycle_details: str,
10446
+ refresh_trigger: int,
10447
+ sql_firewall_configs: Sequence['outputs.GetDatabaseSecurityConfigsDatabaseSecurityConfigCollectionItemSqlFirewallConfigResult'],
10448
+ state: str,
10449
+ system_tags: Mapping[str, str],
10450
+ target_id: str,
10451
+ time_created: str,
10452
+ time_last_refreshed: str,
10453
+ time_updated: str):
10454
+ """
10455
+ :param str compartment_id: A filter to return only resources that match the specified compartment OCID.
10456
+ :param str database_security_config_id: An optional filter to return only resources that match the specified OCID of the database security configuration resource.
10457
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
10458
+ :param str description: The description of the database security config.
10459
+ :param str display_name: A filter to return only resources that match the specified display name.
10460
+ :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
10461
+ :param str id: The OCID of the database security config.
10462
+ :param str lifecycle_details: Details about the current state of the database security config in Data Safe.
10463
+ :param Sequence['GetDatabaseSecurityConfigsDatabaseSecurityConfigCollectionItemSqlFirewallConfigArgs'] sql_firewall_configs: The SQL Firewall related configurations.
10464
+ :param str state: The current state of the database security configuration.
10465
+ :param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
10466
+ :param str target_id: A filter to return only items related to a specific target OCID.
10467
+ :param str time_created: The time that the database security config was created, in the format defined by RFC3339.
10468
+ :param str time_last_refreshed: The last date and time the database security config was refreshed, in the format defined by RFC3339.
10469
+ :param str time_updated: The date and time the database security configuration was last updated, in the format defined by RFC3339.
10470
+ """
10471
+ pulumi.set(__self__, "compartment_id", compartment_id)
10472
+ pulumi.set(__self__, "database_security_config_id", database_security_config_id)
10473
+ pulumi.set(__self__, "defined_tags", defined_tags)
10474
+ pulumi.set(__self__, "description", description)
10475
+ pulumi.set(__self__, "display_name", display_name)
10476
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
10477
+ pulumi.set(__self__, "id", id)
10478
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
10479
+ pulumi.set(__self__, "refresh_trigger", refresh_trigger)
10480
+ pulumi.set(__self__, "sql_firewall_configs", sql_firewall_configs)
10481
+ pulumi.set(__self__, "state", state)
10482
+ pulumi.set(__self__, "system_tags", system_tags)
10483
+ pulumi.set(__self__, "target_id", target_id)
10484
+ pulumi.set(__self__, "time_created", time_created)
10485
+ pulumi.set(__self__, "time_last_refreshed", time_last_refreshed)
10486
+ pulumi.set(__self__, "time_updated", time_updated)
10487
+
10488
+ @property
10489
+ @pulumi.getter(name="compartmentId")
10490
+ def compartment_id(self) -> str:
10491
+ """
10492
+ A filter to return only resources that match the specified compartment OCID.
10493
+ """
10494
+ return pulumi.get(self, "compartment_id")
10495
+
10496
+ @property
10497
+ @pulumi.getter(name="databaseSecurityConfigId")
10498
+ def database_security_config_id(self) -> str:
10499
+ """
10500
+ An optional filter to return only resources that match the specified OCID of the database security configuration resource.
10501
+ """
10502
+ return pulumi.get(self, "database_security_config_id")
10503
+
10504
+ @property
10505
+ @pulumi.getter(name="definedTags")
10506
+ def defined_tags(self) -> Mapping[str, str]:
10507
+ """
10508
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
10509
+ """
10510
+ return pulumi.get(self, "defined_tags")
10511
+
10512
+ @property
10513
+ @pulumi.getter
10514
+ def description(self) -> str:
10515
+ """
10516
+ The description of the database security config.
10517
+ """
10518
+ return pulumi.get(self, "description")
10519
+
10520
+ @property
10521
+ @pulumi.getter(name="displayName")
10522
+ def display_name(self) -> str:
10523
+ """
10524
+ A filter to return only resources that match the specified display name.
10525
+ """
10526
+ return pulumi.get(self, "display_name")
10527
+
10528
+ @property
10529
+ @pulumi.getter(name="freeformTags")
10530
+ def freeform_tags(self) -> Mapping[str, str]:
10531
+ """
10532
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
10533
+ """
10534
+ return pulumi.get(self, "freeform_tags")
10535
+
10536
+ @property
10537
+ @pulumi.getter
10538
+ def id(self) -> str:
10539
+ """
10540
+ The OCID of the database security config.
10541
+ """
10542
+ return pulumi.get(self, "id")
10543
+
10544
+ @property
10545
+ @pulumi.getter(name="lifecycleDetails")
10546
+ def lifecycle_details(self) -> str:
10547
+ """
10548
+ Details about the current state of the database security config in Data Safe.
10549
+ """
10550
+ return pulumi.get(self, "lifecycle_details")
10551
+
10552
+ @property
10553
+ @pulumi.getter(name="refreshTrigger")
10554
+ def refresh_trigger(self) -> int:
10555
+ return pulumi.get(self, "refresh_trigger")
10556
+
10557
+ @property
10558
+ @pulumi.getter(name="sqlFirewallConfigs")
10559
+ def sql_firewall_configs(self) -> Sequence['outputs.GetDatabaseSecurityConfigsDatabaseSecurityConfigCollectionItemSqlFirewallConfigResult']:
10560
+ """
10561
+ The SQL Firewall related configurations.
10562
+ """
10563
+ return pulumi.get(self, "sql_firewall_configs")
10564
+
10565
+ @property
10566
+ @pulumi.getter
10567
+ def state(self) -> str:
10568
+ """
10569
+ The current state of the database security configuration.
10570
+ """
10571
+ return pulumi.get(self, "state")
10572
+
10573
+ @property
10574
+ @pulumi.getter(name="systemTags")
10575
+ def system_tags(self) -> Mapping[str, str]:
10576
+ """
10577
+ System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
10578
+ """
10579
+ return pulumi.get(self, "system_tags")
10580
+
10581
+ @property
10582
+ @pulumi.getter(name="targetId")
10583
+ def target_id(self) -> str:
10584
+ """
10585
+ A filter to return only items related to a specific target OCID.
10586
+ """
10587
+ return pulumi.get(self, "target_id")
10588
+
10589
+ @property
10590
+ @pulumi.getter(name="timeCreated")
10591
+ def time_created(self) -> str:
10592
+ """
10593
+ The time that the database security config was created, in the format defined by RFC3339.
10594
+ """
10595
+ return pulumi.get(self, "time_created")
10596
+
10597
+ @property
10598
+ @pulumi.getter(name="timeLastRefreshed")
10599
+ def time_last_refreshed(self) -> str:
10600
+ """
10601
+ The last date and time the database security config was refreshed, in the format defined by RFC3339.
10602
+ """
10603
+ return pulumi.get(self, "time_last_refreshed")
10604
+
10605
+ @property
10606
+ @pulumi.getter(name="timeUpdated")
10607
+ def time_updated(self) -> str:
10608
+ """
10609
+ The date and time the database security configuration was last updated, in the format defined by RFC3339.
10610
+ """
10611
+ return pulumi.get(self, "time_updated")
10612
+
10613
+
10614
+ @pulumi.output_type
10615
+ class GetDatabaseSecurityConfigsDatabaseSecurityConfigCollectionItemSqlFirewallConfigResult(dict):
10616
+ def __init__(__self__, *,
10617
+ exclude_job: str,
10618
+ status: str,
10619
+ time_status_updated: str,
10620
+ violation_log_auto_purge: str):
10621
+ """
10622
+ :param str exclude_job: Specifies whether the firewall should include or exclude the database internal job activities.
10623
+ :param str status: Specifies if the firewall is enabled or disabled on the target database.
10624
+ :param str time_status_updated: The most recent time when the firewall status is updated, in the format defined by RFC3339.
10625
+ :param str violation_log_auto_purge: Specifies whether Data Safe should automatically purge the violation logs from the database after collecting the violation logs and persisting on Data Safe.
10626
+ """
10627
+ pulumi.set(__self__, "exclude_job", exclude_job)
10628
+ pulumi.set(__self__, "status", status)
10629
+ pulumi.set(__self__, "time_status_updated", time_status_updated)
10630
+ pulumi.set(__self__, "violation_log_auto_purge", violation_log_auto_purge)
10631
+
10632
+ @property
10633
+ @pulumi.getter(name="excludeJob")
10634
+ def exclude_job(self) -> str:
10635
+ """
10636
+ Specifies whether the firewall should include or exclude the database internal job activities.
10637
+ """
10638
+ return pulumi.get(self, "exclude_job")
10639
+
10640
+ @property
10641
+ @pulumi.getter
10642
+ def status(self) -> str:
10643
+ """
10644
+ Specifies if the firewall is enabled or disabled on the target database.
10645
+ """
10646
+ return pulumi.get(self, "status")
10647
+
10648
+ @property
10649
+ @pulumi.getter(name="timeStatusUpdated")
10650
+ def time_status_updated(self) -> str:
10651
+ """
10652
+ The most recent time when the firewall status is updated, in the format defined by RFC3339.
10653
+ """
10654
+ return pulumi.get(self, "time_status_updated")
10655
+
10656
+ @property
10657
+ @pulumi.getter(name="violationLogAutoPurge")
10658
+ def violation_log_auto_purge(self) -> str:
10659
+ """
10660
+ Specifies whether Data Safe should automatically purge the violation logs from the database after collecting the violation logs and persisting on Data Safe.
10661
+ """
10662
+ return pulumi.get(self, "violation_log_auto_purge")
10663
+
10664
+
10665
+ @pulumi.output_type
10666
+ class GetDatabaseSecurityConfigsFilterResult(dict):
10667
+ def __init__(__self__, *,
10668
+ name: str,
10669
+ values: Sequence[str],
10670
+ regex: Optional[bool] = None):
10671
+ pulumi.set(__self__, "name", name)
10672
+ pulumi.set(__self__, "values", values)
10673
+ if regex is not None:
10674
+ pulumi.set(__self__, "regex", regex)
10675
+
10676
+ @property
10677
+ @pulumi.getter
10678
+ def name(self) -> str:
10679
+ return pulumi.get(self, "name")
10680
+
10681
+ @property
10682
+ @pulumi.getter
10683
+ def values(self) -> Sequence[str]:
10684
+ return pulumi.get(self, "values")
10685
+
10686
+ @property
10687
+ @pulumi.getter
10688
+ def regex(self) -> Optional[bool]:
10689
+ return pulumi.get(self, "regex")
10690
+
10691
+
10367
10692
  @pulumi.output_type
10368
10693
  class GetDiscoveryAnalyticItemResult(dict):
10369
10694
  def __init__(__self__, *,
@@ -27,7 +27,7 @@ class GetModelResult:
27
27
  """
28
28
  A collection of values returned by getModel.
29
29
  """
30
- def __init__(__self__, artifact_content_disposition=None, artifact_content_length=None, artifact_content_md5=None, artifact_last_modified=None, backup_operation_details=None, backup_settings=None, compartment_id=None, created_by=None, custom_metadata_lists=None, defined_metadata_lists=None, defined_tags=None, description=None, display_name=None, empty_model=None, freeform_tags=None, id=None, input_schema=None, lifecycle_details=None, model_artifact=None, model_id=None, model_version_set_name=None, output_schema=None, project_id=None, retention_operation_details=None, retention_settings=None, state=None, time_created=None):
30
+ def __init__(__self__, artifact_content_disposition=None, artifact_content_length=None, artifact_content_md5=None, artifact_last_modified=None, backup_operation_details=None, backup_settings=None, compartment_id=None, created_by=None, custom_metadata_lists=None, defined_metadata_lists=None, defined_tags=None, description=None, display_name=None, empty_model=None, freeform_tags=None, id=None, input_schema=None, lifecycle_details=None, model_artifact=None, model_id=None, model_version_set_id=None, model_version_set_name=None, output_schema=None, project_id=None, retention_operation_details=None, retention_settings=None, state=None, time_created=None, version_label=None):
31
31
  if artifact_content_disposition and not isinstance(artifact_content_disposition, str):
32
32
  raise TypeError("Expected argument 'artifact_content_disposition' to be a str")
33
33
  pulumi.set(__self__, "artifact_content_disposition", artifact_content_disposition)
@@ -88,6 +88,9 @@ class GetModelResult:
88
88
  if model_id and not isinstance(model_id, str):
89
89
  raise TypeError("Expected argument 'model_id' to be a str")
90
90
  pulumi.set(__self__, "model_id", model_id)
91
+ if model_version_set_id and not isinstance(model_version_set_id, str):
92
+ raise TypeError("Expected argument 'model_version_set_id' to be a str")
93
+ pulumi.set(__self__, "model_version_set_id", model_version_set_id)
91
94
  if model_version_set_name and not isinstance(model_version_set_name, str):
92
95
  raise TypeError("Expected argument 'model_version_set_name' to be a str")
93
96
  pulumi.set(__self__, "model_version_set_name", model_version_set_name)
@@ -109,6 +112,9 @@ class GetModelResult:
109
112
  if time_created and not isinstance(time_created, str):
110
113
  raise TypeError("Expected argument 'time_created' to be a str")
111
114
  pulumi.set(__self__, "time_created", time_created)
115
+ if version_label and not isinstance(version_label, str):
116
+ raise TypeError("Expected argument 'version_label' to be a str")
117
+ pulumi.set(__self__, "version_label", version_label)
112
118
 
113
119
  @property
114
120
  @pulumi.getter(name="artifactContentDisposition")
@@ -249,6 +255,14 @@ class GetModelResult:
249
255
  def model_id(self) -> str:
250
256
  return pulumi.get(self, "model_id")
251
257
 
258
+ @property
259
+ @pulumi.getter(name="modelVersionSetId")
260
+ def model_version_set_id(self) -> str:
261
+ """
262
+ The OCID of the model version set that the model is associated to.
263
+ """
264
+ return pulumi.get(self, "model_version_set_id")
265
+
252
266
  @property
253
267
  @pulumi.getter(name="modelVersionSetName")
254
268
  def model_version_set_name(self) -> str:
@@ -305,6 +319,11 @@ class GetModelResult:
305
319
  """
306
320
  return pulumi.get(self, "time_created")
307
321
 
322
+ @property
323
+ @pulumi.getter(name="versionLabel")
324
+ def version_label(self) -> str:
325
+ return pulumi.get(self, "version_label")
326
+
308
327
 
309
328
  class AwaitableGetModelResult(GetModelResult):
310
329
  # pylint: disable=using-constant-test
@@ -332,13 +351,15 @@ class AwaitableGetModelResult(GetModelResult):
332
351
  lifecycle_details=self.lifecycle_details,
333
352
  model_artifact=self.model_artifact,
334
353
  model_id=self.model_id,
354
+ model_version_set_id=self.model_version_set_id,
335
355
  model_version_set_name=self.model_version_set_name,
336
356
  output_schema=self.output_schema,
337
357
  project_id=self.project_id,
338
358
  retention_operation_details=self.retention_operation_details,
339
359
  retention_settings=self.retention_settings,
340
360
  state=self.state,
341
- time_created=self.time_created)
361
+ time_created=self.time_created,
362
+ version_label=self.version_label)
342
363
 
343
364
 
344
365
  def get_model(model_id: Optional[str] = None,
@@ -386,13 +407,15 @@ def get_model(model_id: Optional[str] = None,
386
407
  lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
387
408
  model_artifact=pulumi.get(__ret__, 'model_artifact'),
388
409
  model_id=pulumi.get(__ret__, 'model_id'),
410
+ model_version_set_id=pulumi.get(__ret__, 'model_version_set_id'),
389
411
  model_version_set_name=pulumi.get(__ret__, 'model_version_set_name'),
390
412
  output_schema=pulumi.get(__ret__, 'output_schema'),
391
413
  project_id=pulumi.get(__ret__, 'project_id'),
392
414
  retention_operation_details=pulumi.get(__ret__, 'retention_operation_details'),
393
415
  retention_settings=pulumi.get(__ret__, 'retention_settings'),
394
416
  state=pulumi.get(__ret__, 'state'),
395
- time_created=pulumi.get(__ret__, 'time_created'))
417
+ time_created=pulumi.get(__ret__, 'time_created'),
418
+ version_label=pulumi.get(__ret__, 'version_label'))
396
419
  def get_model_output(model_id: Optional[pulumi.Input[str]] = None,
397
420
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetModelResult]:
398
421
  """
@@ -437,10 +460,12 @@ def get_model_output(model_id: Optional[pulumi.Input[str]] = None,
437
460
  lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
438
461
  model_artifact=pulumi.get(__response__, 'model_artifact'),
439
462
  model_id=pulumi.get(__response__, 'model_id'),
463
+ model_version_set_id=pulumi.get(__response__, 'model_version_set_id'),
440
464
  model_version_set_name=pulumi.get(__response__, 'model_version_set_name'),
441
465
  output_schema=pulumi.get(__response__, 'output_schema'),
442
466
  project_id=pulumi.get(__response__, 'project_id'),
443
467
  retention_operation_details=pulumi.get(__response__, 'retention_operation_details'),
444
468
  retention_settings=pulumi.get(__response__, 'retention_settings'),
445
469
  state=pulumi.get(__response__, 'state'),
446
- time_created=pulumi.get(__response__, 'time_created')))
470
+ time_created=pulumi.get(__response__, 'time_created'),
471
+ version_label=pulumi.get(__response__, 'version_label')))
@@ -28,7 +28,7 @@ class GetModelsResult:
28
28
  """
29
29
  A collection of values returned by getModels.
30
30
  """
31
- def __init__(__self__, compartment_id=None, created_by=None, display_name=None, filters=None, id=None, model_version_set_name=None, models=None, project_id=None, state=None, version_label=None):
31
+ def __init__(__self__, compartment_id=None, created_by=None, display_name=None, filters=None, id=None, model_version_set_id=None, model_version_set_name=None, models=None, project_id=None, state=None, version_label=None):
32
32
  if compartment_id and not isinstance(compartment_id, str):
33
33
  raise TypeError("Expected argument 'compartment_id' to be a str")
34
34
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -44,6 +44,9 @@ class GetModelsResult:
44
44
  if id and not isinstance(id, str):
45
45
  raise TypeError("Expected argument 'id' to be a str")
46
46
  pulumi.set(__self__, "id", id)
47
+ if model_version_set_id and not isinstance(model_version_set_id, str):
48
+ raise TypeError("Expected argument 'model_version_set_id' to be a str")
49
+ pulumi.set(__self__, "model_version_set_id", model_version_set_id)
47
50
  if model_version_set_name and not isinstance(model_version_set_name, str):
48
51
  raise TypeError("Expected argument 'model_version_set_name' to be a str")
49
52
  pulumi.set(__self__, "model_version_set_name", model_version_set_name)
@@ -97,9 +100,17 @@ class GetModelsResult:
97
100
  """
98
101
  return pulumi.get(self, "id")
99
102
 
103
+ @property
104
+ @pulumi.getter(name="modelVersionSetId")
105
+ def model_version_set_id(self) -> Optional[str]:
106
+ """
107
+ The OCID of the model version set that the model is associated to.
108
+ """
109
+ return pulumi.get(self, "model_version_set_id")
110
+
100
111
  @property
101
112
  @pulumi.getter(name="modelVersionSetName")
102
- def model_version_set_name(self) -> str:
113
+ def model_version_set_name(self) -> Optional[str]:
103
114
  """
104
115
  The name of the model version set that the model is associated to.
105
116
  """
@@ -131,7 +142,7 @@ class GetModelsResult:
131
142
 
132
143
  @property
133
144
  @pulumi.getter(name="versionLabel")
134
- def version_label(self) -> str:
145
+ def version_label(self) -> Optional[str]:
135
146
  return pulumi.get(self, "version_label")
136
147
 
137
148
 
@@ -146,6 +157,7 @@ class AwaitableGetModelsResult(GetModelsResult):
146
157
  display_name=self.display_name,
147
158
  filters=self.filters,
148
159
  id=self.id,
160
+ model_version_set_id=self.model_version_set_id,
149
161
  model_version_set_name=self.model_version_set_name,
150
162
  models=self.models,
151
163
  project_id=self.project_id,
@@ -158,6 +170,7 @@ def get_models(compartment_id: Optional[str] = None,
158
170
  display_name: Optional[str] = None,
159
171
  filters: Optional[Sequence[Union['GetModelsFilterArgs', 'GetModelsFilterArgsDict']]] = None,
160
172
  id: Optional[str] = None,
173
+ model_version_set_id: Optional[str] = None,
161
174
  model_version_set_name: Optional[str] = None,
162
175
  project_id: Optional[str] = None,
163
176
  state: Optional[str] = None,
@@ -188,6 +201,7 @@ def get_models(compartment_id: Optional[str] = None,
188
201
  :param str created_by: <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the resource.
189
202
  :param str display_name: <b>Filter</b> results by its user-friendly name.
190
203
  :param str id: <b>Filter</b> results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resource type.
204
+ :param str model_version_set_id: The OCID of the model version set that the model is associated to.
191
205
  :param str model_version_set_name: The name of the model version set that the model is associated to.
192
206
  :param str project_id: <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project.
193
207
  :param str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
@@ -198,6 +212,7 @@ def get_models(compartment_id: Optional[str] = None,
198
212
  __args__['displayName'] = display_name
199
213
  __args__['filters'] = filters
200
214
  __args__['id'] = id
215
+ __args__['modelVersionSetId'] = model_version_set_id
201
216
  __args__['modelVersionSetName'] = model_version_set_name
202
217
  __args__['projectId'] = project_id
203
218
  __args__['state'] = state
@@ -211,6 +226,7 @@ def get_models(compartment_id: Optional[str] = None,
211
226
  display_name=pulumi.get(__ret__, 'display_name'),
212
227
  filters=pulumi.get(__ret__, 'filters'),
213
228
  id=pulumi.get(__ret__, 'id'),
229
+ model_version_set_id=pulumi.get(__ret__, 'model_version_set_id'),
214
230
  model_version_set_name=pulumi.get(__ret__, 'model_version_set_name'),
215
231
  models=pulumi.get(__ret__, 'models'),
216
232
  project_id=pulumi.get(__ret__, 'project_id'),
@@ -221,10 +237,11 @@ def get_models_output(compartment_id: Optional[pulumi.Input[str]] = None,
221
237
  display_name: Optional[pulumi.Input[Optional[str]]] = None,
222
238
  filters: Optional[pulumi.Input[Optional[Sequence[Union['GetModelsFilterArgs', 'GetModelsFilterArgsDict']]]]] = None,
223
239
  id: Optional[pulumi.Input[Optional[str]]] = None,
224
- model_version_set_name: Optional[pulumi.Input[str]] = None,
240
+ model_version_set_id: Optional[pulumi.Input[Optional[str]]] = None,
241
+ model_version_set_name: Optional[pulumi.Input[Optional[str]]] = None,
225
242
  project_id: Optional[pulumi.Input[Optional[str]]] = None,
226
243
  state: Optional[pulumi.Input[Optional[str]]] = None,
227
- version_label: Optional[pulumi.Input[str]] = None,
244
+ version_label: Optional[pulumi.Input[Optional[str]]] = None,
228
245
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetModelsResult]:
229
246
  """
230
247
  This data source provides the list of Models in Oracle Cloud Infrastructure Data Science service.
@@ -251,6 +268,7 @@ def get_models_output(compartment_id: Optional[pulumi.Input[str]] = None,
251
268
  :param str created_by: <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the resource.
252
269
  :param str display_name: <b>Filter</b> results by its user-friendly name.
253
270
  :param str id: <b>Filter</b> results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resource type.
271
+ :param str model_version_set_id: The OCID of the model version set that the model is associated to.
254
272
  :param str model_version_set_name: The name of the model version set that the model is associated to.
255
273
  :param str project_id: <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project.
256
274
  :param str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
@@ -261,6 +279,7 @@ def get_models_output(compartment_id: Optional[pulumi.Input[str]] = None,
261
279
  __args__['displayName'] = display_name
262
280
  __args__['filters'] = filters
263
281
  __args__['id'] = id
282
+ __args__['modelVersionSetId'] = model_version_set_id
264
283
  __args__['modelVersionSetName'] = model_version_set_name
265
284
  __args__['projectId'] = project_id
266
285
  __args__['state'] = state
@@ -273,6 +292,7 @@ def get_models_output(compartment_id: Optional[pulumi.Input[str]] = None,
273
292
  display_name=pulumi.get(__response__, 'display_name'),
274
293
  filters=pulumi.get(__response__, 'filters'),
275
294
  id=pulumi.get(__response__, 'id'),
295
+ model_version_set_id=pulumi.get(__response__, 'model_version_set_id'),
276
296
  model_version_set_name=pulumi.get(__response__, 'model_version_set_name'),
277
297
  models=pulumi.get(__response__, 'models'),
278
298
  project_id=pulumi.get(__response__, 'project_id'),