pulumi-oci 2.14.0a1730182164__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.
- pulumi_oci/containerengine/addon.py +54 -7
- pulumi_oci/containerengine/get_addon.py +12 -1
- pulumi_oci/containerengine/outputs.py +9 -1
- pulumi_oci/core/_inputs.py +74 -0
- pulumi_oci/core/get_instance.py +1 -1
- pulumi_oci/core/get_virtual_circuit.py +18 -4
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/instance_pool.py +7 -7
- pulumi_oci/core/outputs.py +165 -7
- pulumi_oci/core/virtual_circuit.py +30 -2
- pulumi_oci/database/_inputs.py +642 -0
- pulumi_oci/database/autonomous_container_database.py +14 -14
- pulumi_oci/database/autonomous_database.py +75 -0
- pulumi_oci/database/get_autonomous_container_database.py +3 -3
- pulumi_oci/database/get_autonomous_database.py +29 -1
- pulumi_oci/database/get_autonomous_databases.py +22 -28
- pulumi_oci/database/outputs.py +1669 -86
- pulumi_oci/datasafe/__init__.py +2 -0
- pulumi_oci/datasafe/_inputs.py +49 -0
- pulumi_oci/datasafe/get_database_security_config.py +307 -0
- pulumi_oci/datasafe/get_database_security_configs.py +342 -0
- pulumi_oci/datasafe/outputs.py +325 -0
- pulumi_oci/datascience/_inputs.py +353 -0
- pulumi_oci/datascience/get_model.py +113 -4
- pulumi_oci/datascience/get_models.py +30 -5
- pulumi_oci/datascience/model.py +346 -5
- pulumi_oci/datascience/outputs.py +778 -1
- pulumi_oci/filestorage/_inputs.py +651 -0
- pulumi_oci/filestorage/export.py +96 -3
- pulumi_oci/filestorage/file_system.py +93 -0
- pulumi_oci/filestorage/filesystem_snapshot_policy.py +93 -0
- pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +26 -1
- pulumi_oci/filestorage/get_outbound_connector.py +26 -1
- pulumi_oci/filestorage/get_replication.py +27 -1
- pulumi_oci/filestorage/get_snapshot.py +27 -1
- pulumi_oci/filestorage/mount_target.py +108 -0
- pulumi_oci/filestorage/outbound_connector.py +93 -0
- pulumi_oci/filestorage/outputs.py +1218 -2
- pulumi_oci/filestorage/replication.py +95 -0
- pulumi_oci/filestorage/snapshot.py +97 -2
- pulumi_oci/identity/domains_auth_token.py +68 -0
- pulumi_oci/identity/domains_customer_secret_key.py +56 -0
- pulumi_oci/identity/domains_oauth2client_credential.py +64 -0
- pulumi_oci/identity/domains_smtp_credential.py +60 -0
- pulumi_oci/identity/get_domains_auth_token.py +15 -1
- pulumi_oci/identity/get_domains_customer_secret_key.py +15 -1
- pulumi_oci/identity/get_domains_oauth2client_credential.py +15 -1
- pulumi_oci/identity/get_domains_smtp_credential.py +15 -1
- pulumi_oci/identity/outputs.py +44 -0
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
- pulumi_oci/networkloadbalancer/get_listener.py +15 -1
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +15 -1
- pulumi_oci/networkloadbalancer/listener.py +49 -0
- pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
- pulumi_oci/networkloadbalancer/outputs.py +24 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/resourcescheduler/_inputs.py +24 -21
- pulumi_oci/resourcescheduler/get_schedules.py +6 -6
- pulumi_oci/resourcescheduler/outputs.py +18 -16
- pulumi_oci/resourcescheduler/schedule.py +14 -88
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/RECORD +65 -63
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/top_level.txt +0 -0
pulumi_oci/datasafe/outputs.py
CHANGED
@@ -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__, *,
|