pulumi-oci 1.23.0a1707980719__py3-none-any.whl → 1.24.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 (40) hide show
  1. pulumi_oci/__init__.py +8 -0
  2. pulumi_oci/core/_inputs.py +6 -6
  3. pulumi_oci/core/instance.py +7 -7
  4. pulumi_oci/core/outputs.py +6 -6
  5. pulumi_oci/database/_inputs.py +49 -1
  6. pulumi_oci/database/autonomous_database.py +47 -0
  7. pulumi_oci/database/get_autonomous_database.py +14 -1
  8. pulumi_oci/database/outputs.py +128 -4
  9. pulumi_oci/dataintegration/__init__.py +3 -0
  10. pulumi_oci/dataintegration/_inputs.py +749 -0
  11. pulumi_oci/dataintegration/get_workspace_application_schedule.py +316 -0
  12. pulumi_oci/dataintegration/get_workspace_application_schedules.py +230 -0
  13. pulumi_oci/dataintegration/outputs.py +2826 -912
  14. pulumi_oci/dataintegration/workspace_application_schedule.py +926 -0
  15. pulumi_oci/datascience/_inputs.py +204 -0
  16. pulumi_oci/datascience/get_job.py +14 -1
  17. pulumi_oci/datascience/get_job_run.py +14 -1
  18. pulumi_oci/datascience/get_model_version_set.py +14 -1
  19. pulumi_oci/datascience/get_private_endpoint.py +14 -1
  20. pulumi_oci/datascience/get_project.py +14 -1
  21. pulumi_oci/datascience/job.py +63 -0
  22. pulumi_oci/datascience/job_run.py +63 -0
  23. pulumi_oci/datascience/model_version_set.py +28 -0
  24. pulumi_oci/datascience/outputs.py +549 -0
  25. pulumi_oci/datascience/private_endpoint.py +28 -0
  26. pulumi_oci/datascience/project.py +28 -0
  27. pulumi_oci/loganalytics/_inputs.py +80 -0
  28. pulumi_oci/loganalytics/get_log_analytics_entities.py +18 -1
  29. pulumi_oci/loganalytics/get_log_analytics_entity.py +28 -1
  30. pulumi_oci/loganalytics/get_log_analytics_entity_topology.py +19 -2
  31. pulumi_oci/loganalytics/get_log_analytics_object_collection_rule.py +27 -1
  32. pulumi_oci/loganalytics/get_namespace_rules.py +25 -5
  33. pulumi_oci/loganalytics/get_namespace_scheduled_tasks.py +18 -1
  34. pulumi_oci/loganalytics/log_analytics_entity.py +112 -0
  35. pulumi_oci/loganalytics/log_analytics_object_collection_rule.py +98 -0
  36. pulumi_oci/loganalytics/outputs.py +271 -4
  37. {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/METADATA +1 -1
  38. {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/RECORD +40 -37
  39. {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/WHEEL +0 -0
  40. {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/top_level.txt +0 -0
@@ -26,6 +26,14 @@ __all__ = [
26
26
  'WorkspaceApplicationPatchRegistryMetadataArgs',
27
27
  'WorkspaceApplicationPublishedObjectMetadataArgs',
28
28
  'WorkspaceApplicationRegistryMetadataArgs',
29
+ 'WorkspaceApplicationScheduleFrequencyDetailsArgs',
30
+ 'WorkspaceApplicationScheduleFrequencyDetailsTimeArgs',
31
+ 'WorkspaceApplicationScheduleMetadataArgs',
32
+ 'WorkspaceApplicationScheduleMetadataAggregatorArgs',
33
+ 'WorkspaceApplicationScheduleMetadataCountStatisticArgs',
34
+ 'WorkspaceApplicationScheduleMetadataCountStatisticObjectTypeCountListArgs',
35
+ 'WorkspaceApplicationScheduleParentRefArgs',
36
+ 'WorkspaceApplicationScheduleRegistryMetadataArgs',
29
37
  'WorkspaceApplicationSourceApplicationInfoArgs',
30
38
  'WorkspaceExportRequestExportedItemArgs',
31
39
  'WorkspaceFolderMetadataArgs',
@@ -43,6 +51,7 @@ __all__ = [
43
51
  'WorkspaceProjectParentRefArgs',
44
52
  'WorkspaceProjectRegistryMetadataArgs',
45
53
  'GetWorkspaceApplicationPatchesFilterArgs',
54
+ 'GetWorkspaceApplicationSchedulesFilterArgs',
46
55
  'GetWorkspaceApplicationsFilterArgs',
47
56
  'GetWorkspaceExportRequestsFilterArgs',
48
57
  'GetWorkspaceFoldersFilterArgs',
@@ -1539,6 +1548,701 @@ class WorkspaceApplicationRegistryMetadataArgs:
1539
1548
  pulumi.set(self, "registry_version", value)
1540
1549
 
1541
1550
 
1551
+ @pulumi.input_type
1552
+ class WorkspaceApplicationScheduleFrequencyDetailsArgs:
1553
+ def __init__(__self__, *,
1554
+ model_type: pulumi.Input[str],
1555
+ custom_expression: Optional[pulumi.Input[str]] = None,
1556
+ day_of_week: Optional[pulumi.Input[str]] = None,
1557
+ days: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
1558
+ frequency: Optional[pulumi.Input[str]] = None,
1559
+ interval: Optional[pulumi.Input[int]] = None,
1560
+ time: Optional[pulumi.Input['WorkspaceApplicationScheduleFrequencyDetailsTimeArgs']] = None,
1561
+ week_of_month: Optional[pulumi.Input[str]] = None):
1562
+ """
1563
+ :param pulumi.Input[str] model_type: (Updatable) The type of the model
1564
+ :param pulumi.Input[str] custom_expression: (Updatable) This holds the complete cron expression for this schedule, for example, 10 0/5 * * * ? that fires every 5 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:05:10 am, etc.)
1565
+ :param pulumi.Input[str] day_of_week: (Updatable) This holds the day of the week on which the schedule should be triggered.
1566
+ :param pulumi.Input[Sequence[pulumi.Input[int]]] days: (Updatable) A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
1567
+ :param pulumi.Input[str] frequency: (Updatable) the frequency of the schedule.
1568
+ :param pulumi.Input[int] interval: (Updatable) This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
1569
+ :param pulumi.Input['WorkspaceApplicationScheduleFrequencyDetailsTimeArgs'] time: (Updatable) A model to hold time in hour:minute:second format.
1570
+ :param pulumi.Input[str] week_of_month: (Updatable) This holds the week of the month in which the schedule should be triggered.
1571
+ """
1572
+ pulumi.set(__self__, "model_type", model_type)
1573
+ if custom_expression is not None:
1574
+ pulumi.set(__self__, "custom_expression", custom_expression)
1575
+ if day_of_week is not None:
1576
+ pulumi.set(__self__, "day_of_week", day_of_week)
1577
+ if days is not None:
1578
+ pulumi.set(__self__, "days", days)
1579
+ if frequency is not None:
1580
+ pulumi.set(__self__, "frequency", frequency)
1581
+ if interval is not None:
1582
+ pulumi.set(__self__, "interval", interval)
1583
+ if time is not None:
1584
+ pulumi.set(__self__, "time", time)
1585
+ if week_of_month is not None:
1586
+ pulumi.set(__self__, "week_of_month", week_of_month)
1587
+
1588
+ @property
1589
+ @pulumi.getter(name="modelType")
1590
+ def model_type(self) -> pulumi.Input[str]:
1591
+ """
1592
+ (Updatable) The type of the model
1593
+ """
1594
+ return pulumi.get(self, "model_type")
1595
+
1596
+ @model_type.setter
1597
+ def model_type(self, value: pulumi.Input[str]):
1598
+ pulumi.set(self, "model_type", value)
1599
+
1600
+ @property
1601
+ @pulumi.getter(name="customExpression")
1602
+ def custom_expression(self) -> Optional[pulumi.Input[str]]:
1603
+ """
1604
+ (Updatable) This holds the complete cron expression for this schedule, for example, 10 0/5 * * * ? that fires every 5 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:05:10 am, etc.)
1605
+ """
1606
+ return pulumi.get(self, "custom_expression")
1607
+
1608
+ @custom_expression.setter
1609
+ def custom_expression(self, value: Optional[pulumi.Input[str]]):
1610
+ pulumi.set(self, "custom_expression", value)
1611
+
1612
+ @property
1613
+ @pulumi.getter(name="dayOfWeek")
1614
+ def day_of_week(self) -> Optional[pulumi.Input[str]]:
1615
+ """
1616
+ (Updatable) This holds the day of the week on which the schedule should be triggered.
1617
+ """
1618
+ return pulumi.get(self, "day_of_week")
1619
+
1620
+ @day_of_week.setter
1621
+ def day_of_week(self, value: Optional[pulumi.Input[str]]):
1622
+ pulumi.set(self, "day_of_week", value)
1623
+
1624
+ @property
1625
+ @pulumi.getter
1626
+ def days(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]:
1627
+ """
1628
+ (Updatable) A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
1629
+ """
1630
+ return pulumi.get(self, "days")
1631
+
1632
+ @days.setter
1633
+ def days(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]):
1634
+ pulumi.set(self, "days", value)
1635
+
1636
+ @property
1637
+ @pulumi.getter
1638
+ def frequency(self) -> Optional[pulumi.Input[str]]:
1639
+ """
1640
+ (Updatable) the frequency of the schedule.
1641
+ """
1642
+ return pulumi.get(self, "frequency")
1643
+
1644
+ @frequency.setter
1645
+ def frequency(self, value: Optional[pulumi.Input[str]]):
1646
+ pulumi.set(self, "frequency", value)
1647
+
1648
+ @property
1649
+ @pulumi.getter
1650
+ def interval(self) -> Optional[pulumi.Input[int]]:
1651
+ """
1652
+ (Updatable) This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
1653
+ """
1654
+ return pulumi.get(self, "interval")
1655
+
1656
+ @interval.setter
1657
+ def interval(self, value: Optional[pulumi.Input[int]]):
1658
+ pulumi.set(self, "interval", value)
1659
+
1660
+ @property
1661
+ @pulumi.getter
1662
+ def time(self) -> Optional[pulumi.Input['WorkspaceApplicationScheduleFrequencyDetailsTimeArgs']]:
1663
+ """
1664
+ (Updatable) A model to hold time in hour:minute:second format.
1665
+ """
1666
+ return pulumi.get(self, "time")
1667
+
1668
+ @time.setter
1669
+ def time(self, value: Optional[pulumi.Input['WorkspaceApplicationScheduleFrequencyDetailsTimeArgs']]):
1670
+ pulumi.set(self, "time", value)
1671
+
1672
+ @property
1673
+ @pulumi.getter(name="weekOfMonth")
1674
+ def week_of_month(self) -> Optional[pulumi.Input[str]]:
1675
+ """
1676
+ (Updatable) This holds the week of the month in which the schedule should be triggered.
1677
+ """
1678
+ return pulumi.get(self, "week_of_month")
1679
+
1680
+ @week_of_month.setter
1681
+ def week_of_month(self, value: Optional[pulumi.Input[str]]):
1682
+ pulumi.set(self, "week_of_month", value)
1683
+
1684
+
1685
+ @pulumi.input_type
1686
+ class WorkspaceApplicationScheduleFrequencyDetailsTimeArgs:
1687
+ def __init__(__self__, *,
1688
+ hour: Optional[pulumi.Input[int]] = None,
1689
+ minute: Optional[pulumi.Input[int]] = None,
1690
+ second: Optional[pulumi.Input[int]] = None):
1691
+ """
1692
+ :param pulumi.Input[int] hour: (Updatable) The hour value.
1693
+ :param pulumi.Input[int] minute: (Updatable) The minute value.
1694
+ :param pulumi.Input[int] second: (Updatable) The second value.
1695
+ """
1696
+ if hour is not None:
1697
+ pulumi.set(__self__, "hour", hour)
1698
+ if minute is not None:
1699
+ pulumi.set(__self__, "minute", minute)
1700
+ if second is not None:
1701
+ pulumi.set(__self__, "second", second)
1702
+
1703
+ @property
1704
+ @pulumi.getter
1705
+ def hour(self) -> Optional[pulumi.Input[int]]:
1706
+ """
1707
+ (Updatable) The hour value.
1708
+ """
1709
+ return pulumi.get(self, "hour")
1710
+
1711
+ @hour.setter
1712
+ def hour(self, value: Optional[pulumi.Input[int]]):
1713
+ pulumi.set(self, "hour", value)
1714
+
1715
+ @property
1716
+ @pulumi.getter
1717
+ def minute(self) -> Optional[pulumi.Input[int]]:
1718
+ """
1719
+ (Updatable) The minute value.
1720
+ """
1721
+ return pulumi.get(self, "minute")
1722
+
1723
+ @minute.setter
1724
+ def minute(self, value: Optional[pulumi.Input[int]]):
1725
+ pulumi.set(self, "minute", value)
1726
+
1727
+ @property
1728
+ @pulumi.getter
1729
+ def second(self) -> Optional[pulumi.Input[int]]:
1730
+ """
1731
+ (Updatable) The second value.
1732
+ """
1733
+ return pulumi.get(self, "second")
1734
+
1735
+ @second.setter
1736
+ def second(self, value: Optional[pulumi.Input[int]]):
1737
+ pulumi.set(self, "second", value)
1738
+
1739
+
1740
+ @pulumi.input_type
1741
+ class WorkspaceApplicationScheduleMetadataArgs:
1742
+ def __init__(__self__, *,
1743
+ aggregator_key: Optional[pulumi.Input[str]] = None,
1744
+ aggregators: Optional[pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleMetadataAggregatorArgs']]]] = None,
1745
+ count_statistics: Optional[pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleMetadataCountStatisticArgs']]]] = None,
1746
+ created_by: Optional[pulumi.Input[str]] = None,
1747
+ created_by_name: Optional[pulumi.Input[str]] = None,
1748
+ identifier_path: Optional[pulumi.Input[str]] = None,
1749
+ info_fields: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1750
+ is_favorite: Optional[pulumi.Input[bool]] = None,
1751
+ labels: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1752
+ registry_version: Optional[pulumi.Input[int]] = None,
1753
+ time_created: Optional[pulumi.Input[str]] = None,
1754
+ time_updated: Optional[pulumi.Input[str]] = None,
1755
+ updated_by: Optional[pulumi.Input[str]] = None,
1756
+ updated_by_name: Optional[pulumi.Input[str]] = None):
1757
+ """
1758
+ :param pulumi.Input[str] aggregator_key: (Updatable) The owning object's key for this object.
1759
+ :param pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleMetadataAggregatorArgs']]] aggregators: A summary type containing information about the object's aggregator including its type, key, name and description.
1760
+ :param pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleMetadataCountStatisticArgs']]] count_statistics: A count statistics.
1761
+ :param pulumi.Input[str] created_by: The user that created the object.
1762
+ :param pulumi.Input[str] created_by_name: The user that created the object.
1763
+ :param pulumi.Input[str] identifier_path: The full path to identify this object.
1764
+ :param pulumi.Input[Mapping[str, Any]] info_fields: Information property fields.
1765
+ :param pulumi.Input[bool] is_favorite: (Updatable) Specifies whether this object is a favorite or not.
1766
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] labels: (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
1767
+ :param pulumi.Input[int] registry_version: (Updatable) The registry version.
1768
+ :param pulumi.Input[str] time_created: The date and time that the object was created.
1769
+ :param pulumi.Input[str] time_updated: The date and time that the object was updated.
1770
+ :param pulumi.Input[str] updated_by: The user that updated the object.
1771
+ :param pulumi.Input[str] updated_by_name: The user that updated the object.
1772
+ """
1773
+ if aggregator_key is not None:
1774
+ pulumi.set(__self__, "aggregator_key", aggregator_key)
1775
+ if aggregators is not None:
1776
+ pulumi.set(__self__, "aggregators", aggregators)
1777
+ if count_statistics is not None:
1778
+ pulumi.set(__self__, "count_statistics", count_statistics)
1779
+ if created_by is not None:
1780
+ pulumi.set(__self__, "created_by", created_by)
1781
+ if created_by_name is not None:
1782
+ pulumi.set(__self__, "created_by_name", created_by_name)
1783
+ if identifier_path is not None:
1784
+ pulumi.set(__self__, "identifier_path", identifier_path)
1785
+ if info_fields is not None:
1786
+ pulumi.set(__self__, "info_fields", info_fields)
1787
+ if is_favorite is not None:
1788
+ pulumi.set(__self__, "is_favorite", is_favorite)
1789
+ if labels is not None:
1790
+ pulumi.set(__self__, "labels", labels)
1791
+ if registry_version is not None:
1792
+ pulumi.set(__self__, "registry_version", registry_version)
1793
+ if time_created is not None:
1794
+ pulumi.set(__self__, "time_created", time_created)
1795
+ if time_updated is not None:
1796
+ pulumi.set(__self__, "time_updated", time_updated)
1797
+ if updated_by is not None:
1798
+ pulumi.set(__self__, "updated_by", updated_by)
1799
+ if updated_by_name is not None:
1800
+ pulumi.set(__self__, "updated_by_name", updated_by_name)
1801
+
1802
+ @property
1803
+ @pulumi.getter(name="aggregatorKey")
1804
+ def aggregator_key(self) -> Optional[pulumi.Input[str]]:
1805
+ """
1806
+ (Updatable) The owning object's key for this object.
1807
+ """
1808
+ return pulumi.get(self, "aggregator_key")
1809
+
1810
+ @aggregator_key.setter
1811
+ def aggregator_key(self, value: Optional[pulumi.Input[str]]):
1812
+ pulumi.set(self, "aggregator_key", value)
1813
+
1814
+ @property
1815
+ @pulumi.getter
1816
+ def aggregators(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleMetadataAggregatorArgs']]]]:
1817
+ """
1818
+ A summary type containing information about the object's aggregator including its type, key, name and description.
1819
+ """
1820
+ return pulumi.get(self, "aggregators")
1821
+
1822
+ @aggregators.setter
1823
+ def aggregators(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleMetadataAggregatorArgs']]]]):
1824
+ pulumi.set(self, "aggregators", value)
1825
+
1826
+ @property
1827
+ @pulumi.getter(name="countStatistics")
1828
+ def count_statistics(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleMetadataCountStatisticArgs']]]]:
1829
+ """
1830
+ A count statistics.
1831
+ """
1832
+ return pulumi.get(self, "count_statistics")
1833
+
1834
+ @count_statistics.setter
1835
+ def count_statistics(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleMetadataCountStatisticArgs']]]]):
1836
+ pulumi.set(self, "count_statistics", value)
1837
+
1838
+ @property
1839
+ @pulumi.getter(name="createdBy")
1840
+ def created_by(self) -> Optional[pulumi.Input[str]]:
1841
+ """
1842
+ The user that created the object.
1843
+ """
1844
+ return pulumi.get(self, "created_by")
1845
+
1846
+ @created_by.setter
1847
+ def created_by(self, value: Optional[pulumi.Input[str]]):
1848
+ pulumi.set(self, "created_by", value)
1849
+
1850
+ @property
1851
+ @pulumi.getter(name="createdByName")
1852
+ def created_by_name(self) -> Optional[pulumi.Input[str]]:
1853
+ """
1854
+ The user that created the object.
1855
+ """
1856
+ return pulumi.get(self, "created_by_name")
1857
+
1858
+ @created_by_name.setter
1859
+ def created_by_name(self, value: Optional[pulumi.Input[str]]):
1860
+ pulumi.set(self, "created_by_name", value)
1861
+
1862
+ @property
1863
+ @pulumi.getter(name="identifierPath")
1864
+ def identifier_path(self) -> Optional[pulumi.Input[str]]:
1865
+ """
1866
+ The full path to identify this object.
1867
+ """
1868
+ return pulumi.get(self, "identifier_path")
1869
+
1870
+ @identifier_path.setter
1871
+ def identifier_path(self, value: Optional[pulumi.Input[str]]):
1872
+ pulumi.set(self, "identifier_path", value)
1873
+
1874
+ @property
1875
+ @pulumi.getter(name="infoFields")
1876
+ def info_fields(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
1877
+ """
1878
+ Information property fields.
1879
+ """
1880
+ return pulumi.get(self, "info_fields")
1881
+
1882
+ @info_fields.setter
1883
+ def info_fields(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
1884
+ pulumi.set(self, "info_fields", value)
1885
+
1886
+ @property
1887
+ @pulumi.getter(name="isFavorite")
1888
+ def is_favorite(self) -> Optional[pulumi.Input[bool]]:
1889
+ """
1890
+ (Updatable) Specifies whether this object is a favorite or not.
1891
+ """
1892
+ return pulumi.get(self, "is_favorite")
1893
+
1894
+ @is_favorite.setter
1895
+ def is_favorite(self, value: Optional[pulumi.Input[bool]]):
1896
+ pulumi.set(self, "is_favorite", value)
1897
+
1898
+ @property
1899
+ @pulumi.getter
1900
+ def labels(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1901
+ """
1902
+ (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
1903
+ """
1904
+ return pulumi.get(self, "labels")
1905
+
1906
+ @labels.setter
1907
+ def labels(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1908
+ pulumi.set(self, "labels", value)
1909
+
1910
+ @property
1911
+ @pulumi.getter(name="registryVersion")
1912
+ def registry_version(self) -> Optional[pulumi.Input[int]]:
1913
+ """
1914
+ (Updatable) The registry version.
1915
+ """
1916
+ return pulumi.get(self, "registry_version")
1917
+
1918
+ @registry_version.setter
1919
+ def registry_version(self, value: Optional[pulumi.Input[int]]):
1920
+ pulumi.set(self, "registry_version", value)
1921
+
1922
+ @property
1923
+ @pulumi.getter(name="timeCreated")
1924
+ def time_created(self) -> Optional[pulumi.Input[str]]:
1925
+ """
1926
+ The date and time that the object was created.
1927
+ """
1928
+ return pulumi.get(self, "time_created")
1929
+
1930
+ @time_created.setter
1931
+ def time_created(self, value: Optional[pulumi.Input[str]]):
1932
+ pulumi.set(self, "time_created", value)
1933
+
1934
+ @property
1935
+ @pulumi.getter(name="timeUpdated")
1936
+ def time_updated(self) -> Optional[pulumi.Input[str]]:
1937
+ """
1938
+ The date and time that the object was updated.
1939
+ """
1940
+ return pulumi.get(self, "time_updated")
1941
+
1942
+ @time_updated.setter
1943
+ def time_updated(self, value: Optional[pulumi.Input[str]]):
1944
+ pulumi.set(self, "time_updated", value)
1945
+
1946
+ @property
1947
+ @pulumi.getter(name="updatedBy")
1948
+ def updated_by(self) -> Optional[pulumi.Input[str]]:
1949
+ """
1950
+ The user that updated the object.
1951
+ """
1952
+ return pulumi.get(self, "updated_by")
1953
+
1954
+ @updated_by.setter
1955
+ def updated_by(self, value: Optional[pulumi.Input[str]]):
1956
+ pulumi.set(self, "updated_by", value)
1957
+
1958
+ @property
1959
+ @pulumi.getter(name="updatedByName")
1960
+ def updated_by_name(self) -> Optional[pulumi.Input[str]]:
1961
+ """
1962
+ The user that updated the object.
1963
+ """
1964
+ return pulumi.get(self, "updated_by_name")
1965
+
1966
+ @updated_by_name.setter
1967
+ def updated_by_name(self, value: Optional[pulumi.Input[str]]):
1968
+ pulumi.set(self, "updated_by_name", value)
1969
+
1970
+
1971
+ @pulumi.input_type
1972
+ class WorkspaceApplicationScheduleMetadataAggregatorArgs:
1973
+ def __init__(__self__, *,
1974
+ description: Optional[pulumi.Input[str]] = None,
1975
+ identifier: Optional[pulumi.Input[str]] = None,
1976
+ key: Optional[pulumi.Input[str]] = None,
1977
+ name: Optional[pulumi.Input[str]] = None,
1978
+ type: Optional[pulumi.Input[str]] = None):
1979
+ """
1980
+ :param pulumi.Input[str] description: (Updatable) Detailed description for the object.
1981
+ :param pulumi.Input[str] identifier: (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
1982
+ :param pulumi.Input[str] key: (Updatable) The identifying key for the object.
1983
+ :param pulumi.Input[str] name: (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
1984
+ :param pulumi.Input[str] type: The type of the aggregator.
1985
+ """
1986
+ if description is not None:
1987
+ pulumi.set(__self__, "description", description)
1988
+ if identifier is not None:
1989
+ pulumi.set(__self__, "identifier", identifier)
1990
+ if key is not None:
1991
+ pulumi.set(__self__, "key", key)
1992
+ if name is not None:
1993
+ pulumi.set(__self__, "name", name)
1994
+ if type is not None:
1995
+ pulumi.set(__self__, "type", type)
1996
+
1997
+ @property
1998
+ @pulumi.getter
1999
+ def description(self) -> Optional[pulumi.Input[str]]:
2000
+ """
2001
+ (Updatable) Detailed description for the object.
2002
+ """
2003
+ return pulumi.get(self, "description")
2004
+
2005
+ @description.setter
2006
+ def description(self, value: Optional[pulumi.Input[str]]):
2007
+ pulumi.set(self, "description", value)
2008
+
2009
+ @property
2010
+ @pulumi.getter
2011
+ def identifier(self) -> Optional[pulumi.Input[str]]:
2012
+ """
2013
+ (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
2014
+ """
2015
+ return pulumi.get(self, "identifier")
2016
+
2017
+ @identifier.setter
2018
+ def identifier(self, value: Optional[pulumi.Input[str]]):
2019
+ pulumi.set(self, "identifier", value)
2020
+
2021
+ @property
2022
+ @pulumi.getter
2023
+ def key(self) -> Optional[pulumi.Input[str]]:
2024
+ """
2025
+ (Updatable) The identifying key for the object.
2026
+ """
2027
+ return pulumi.get(self, "key")
2028
+
2029
+ @key.setter
2030
+ def key(self, value: Optional[pulumi.Input[str]]):
2031
+ pulumi.set(self, "key", value)
2032
+
2033
+ @property
2034
+ @pulumi.getter
2035
+ def name(self) -> Optional[pulumi.Input[str]]:
2036
+ """
2037
+ (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
2038
+ """
2039
+ return pulumi.get(self, "name")
2040
+
2041
+ @name.setter
2042
+ def name(self, value: Optional[pulumi.Input[str]]):
2043
+ pulumi.set(self, "name", value)
2044
+
2045
+ @property
2046
+ @pulumi.getter
2047
+ def type(self) -> Optional[pulumi.Input[str]]:
2048
+ """
2049
+ The type of the aggregator.
2050
+ """
2051
+ return pulumi.get(self, "type")
2052
+
2053
+ @type.setter
2054
+ def type(self, value: Optional[pulumi.Input[str]]):
2055
+ pulumi.set(self, "type", value)
2056
+
2057
+
2058
+ @pulumi.input_type
2059
+ class WorkspaceApplicationScheduleMetadataCountStatisticArgs:
2060
+ def __init__(__self__, *,
2061
+ object_type_count_lists: Optional[pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleMetadataCountStatisticObjectTypeCountListArgs']]]] = None):
2062
+ """
2063
+ :param pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleMetadataCountStatisticObjectTypeCountListArgs']]] object_type_count_lists: The array of statistics.
2064
+ """
2065
+ if object_type_count_lists is not None:
2066
+ pulumi.set(__self__, "object_type_count_lists", object_type_count_lists)
2067
+
2068
+ @property
2069
+ @pulumi.getter(name="objectTypeCountLists")
2070
+ def object_type_count_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleMetadataCountStatisticObjectTypeCountListArgs']]]]:
2071
+ """
2072
+ The array of statistics.
2073
+ """
2074
+ return pulumi.get(self, "object_type_count_lists")
2075
+
2076
+ @object_type_count_lists.setter
2077
+ def object_type_count_lists(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['WorkspaceApplicationScheduleMetadataCountStatisticObjectTypeCountListArgs']]]]):
2078
+ pulumi.set(self, "object_type_count_lists", value)
2079
+
2080
+
2081
+ @pulumi.input_type
2082
+ class WorkspaceApplicationScheduleMetadataCountStatisticObjectTypeCountListArgs:
2083
+ def __init__(__self__, *,
2084
+ object_count: Optional[pulumi.Input[str]] = None,
2085
+ object_type: Optional[pulumi.Input[str]] = None):
2086
+ """
2087
+ :param pulumi.Input[str] object_count: The value for the count statistic object.
2088
+ :param pulumi.Input[str] object_type: The type of object for the count statistic object.
2089
+ """
2090
+ if object_count is not None:
2091
+ pulumi.set(__self__, "object_count", object_count)
2092
+ if object_type is not None:
2093
+ pulumi.set(__self__, "object_type", object_type)
2094
+
2095
+ @property
2096
+ @pulumi.getter(name="objectCount")
2097
+ def object_count(self) -> Optional[pulumi.Input[str]]:
2098
+ """
2099
+ The value for the count statistic object.
2100
+ """
2101
+ return pulumi.get(self, "object_count")
2102
+
2103
+ @object_count.setter
2104
+ def object_count(self, value: Optional[pulumi.Input[str]]):
2105
+ pulumi.set(self, "object_count", value)
2106
+
2107
+ @property
2108
+ @pulumi.getter(name="objectType")
2109
+ def object_type(self) -> Optional[pulumi.Input[str]]:
2110
+ """
2111
+ The type of object for the count statistic object.
2112
+ """
2113
+ return pulumi.get(self, "object_type")
2114
+
2115
+ @object_type.setter
2116
+ def object_type(self, value: Optional[pulumi.Input[str]]):
2117
+ pulumi.set(self, "object_type", value)
2118
+
2119
+
2120
+ @pulumi.input_type
2121
+ class WorkspaceApplicationScheduleParentRefArgs:
2122
+ def __init__(__self__, *,
2123
+ parent: Optional[pulumi.Input[str]] = None,
2124
+ root_doc_id: Optional[pulumi.Input[str]] = None):
2125
+ """
2126
+ :param pulumi.Input[str] parent: Key of the parent object.
2127
+ :param pulumi.Input[str] root_doc_id: Key of the root document object.
2128
+ """
2129
+ if parent is not None:
2130
+ pulumi.set(__self__, "parent", parent)
2131
+ if root_doc_id is not None:
2132
+ pulumi.set(__self__, "root_doc_id", root_doc_id)
2133
+
2134
+ @property
2135
+ @pulumi.getter
2136
+ def parent(self) -> Optional[pulumi.Input[str]]:
2137
+ """
2138
+ Key of the parent object.
2139
+ """
2140
+ return pulumi.get(self, "parent")
2141
+
2142
+ @parent.setter
2143
+ def parent(self, value: Optional[pulumi.Input[str]]):
2144
+ pulumi.set(self, "parent", value)
2145
+
2146
+ @property
2147
+ @pulumi.getter(name="rootDocId")
2148
+ def root_doc_id(self) -> Optional[pulumi.Input[str]]:
2149
+ """
2150
+ Key of the root document object.
2151
+ """
2152
+ return pulumi.get(self, "root_doc_id")
2153
+
2154
+ @root_doc_id.setter
2155
+ def root_doc_id(self, value: Optional[pulumi.Input[str]]):
2156
+ pulumi.set(self, "root_doc_id", value)
2157
+
2158
+
2159
+ @pulumi.input_type
2160
+ class WorkspaceApplicationScheduleRegistryMetadataArgs:
2161
+ def __init__(__self__, *,
2162
+ aggregator_key: Optional[pulumi.Input[str]] = None,
2163
+ is_favorite: Optional[pulumi.Input[bool]] = None,
2164
+ key: Optional[pulumi.Input[str]] = None,
2165
+ labels: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2166
+ registry_version: Optional[pulumi.Input[int]] = None):
2167
+ """
2168
+ :param pulumi.Input[str] aggregator_key: (Updatable) The owning object's key for this object.
2169
+ :param pulumi.Input[bool] is_favorite: (Updatable) Specifies whether this object is a favorite or not.
2170
+ :param pulumi.Input[str] key: (Updatable) The identifying key for the object.
2171
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] labels: (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
2172
+ :param pulumi.Input[int] registry_version: (Updatable) The registry version.
2173
+ """
2174
+ if aggregator_key is not None:
2175
+ pulumi.set(__self__, "aggregator_key", aggregator_key)
2176
+ if is_favorite is not None:
2177
+ pulumi.set(__self__, "is_favorite", is_favorite)
2178
+ if key is not None:
2179
+ pulumi.set(__self__, "key", key)
2180
+ if labels is not None:
2181
+ pulumi.set(__self__, "labels", labels)
2182
+ if registry_version is not None:
2183
+ pulumi.set(__self__, "registry_version", registry_version)
2184
+
2185
+ @property
2186
+ @pulumi.getter(name="aggregatorKey")
2187
+ def aggregator_key(self) -> Optional[pulumi.Input[str]]:
2188
+ """
2189
+ (Updatable) The owning object's key for this object.
2190
+ """
2191
+ return pulumi.get(self, "aggregator_key")
2192
+
2193
+ @aggregator_key.setter
2194
+ def aggregator_key(self, value: Optional[pulumi.Input[str]]):
2195
+ pulumi.set(self, "aggregator_key", value)
2196
+
2197
+ @property
2198
+ @pulumi.getter(name="isFavorite")
2199
+ def is_favorite(self) -> Optional[pulumi.Input[bool]]:
2200
+ """
2201
+ (Updatable) Specifies whether this object is a favorite or not.
2202
+ """
2203
+ return pulumi.get(self, "is_favorite")
2204
+
2205
+ @is_favorite.setter
2206
+ def is_favorite(self, value: Optional[pulumi.Input[bool]]):
2207
+ pulumi.set(self, "is_favorite", value)
2208
+
2209
+ @property
2210
+ @pulumi.getter
2211
+ def key(self) -> Optional[pulumi.Input[str]]:
2212
+ """
2213
+ (Updatable) The identifying key for the object.
2214
+ """
2215
+ return pulumi.get(self, "key")
2216
+
2217
+ @key.setter
2218
+ def key(self, value: Optional[pulumi.Input[str]]):
2219
+ pulumi.set(self, "key", value)
2220
+
2221
+ @property
2222
+ @pulumi.getter
2223
+ def labels(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2224
+ """
2225
+ (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
2226
+ """
2227
+ return pulumi.get(self, "labels")
2228
+
2229
+ @labels.setter
2230
+ def labels(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2231
+ pulumi.set(self, "labels", value)
2232
+
2233
+ @property
2234
+ @pulumi.getter(name="registryVersion")
2235
+ def registry_version(self) -> Optional[pulumi.Input[int]]:
2236
+ """
2237
+ (Updatable) The registry version.
2238
+ """
2239
+ return pulumi.get(self, "registry_version")
2240
+
2241
+ @registry_version.setter
2242
+ def registry_version(self, value: Optional[pulumi.Input[int]]):
2243
+ pulumi.set(self, "registry_version", value)
2244
+
2245
+
1542
2246
  @pulumi.input_type
1543
2247
  class WorkspaceApplicationSourceApplicationInfoArgs:
1544
2248
  def __init__(__self__, *,
@@ -3047,6 +3751,51 @@ class GetWorkspaceApplicationPatchesFilterArgs:
3047
3751
  pulumi.set(self, "regex", value)
3048
3752
 
3049
3753
 
3754
+ @pulumi.input_type
3755
+ class GetWorkspaceApplicationSchedulesFilterArgs:
3756
+ def __init__(__self__, *,
3757
+ name: str,
3758
+ values: Sequence[str],
3759
+ regex: Optional[bool] = None):
3760
+ """
3761
+ :param str name: Used to filter by the name of the object.
3762
+ """
3763
+ pulumi.set(__self__, "name", name)
3764
+ pulumi.set(__self__, "values", values)
3765
+ if regex is not None:
3766
+ pulumi.set(__self__, "regex", regex)
3767
+
3768
+ @property
3769
+ @pulumi.getter
3770
+ def name(self) -> str:
3771
+ """
3772
+ Used to filter by the name of the object.
3773
+ """
3774
+ return pulumi.get(self, "name")
3775
+
3776
+ @name.setter
3777
+ def name(self, value: str):
3778
+ pulumi.set(self, "name", value)
3779
+
3780
+ @property
3781
+ @pulumi.getter
3782
+ def values(self) -> Sequence[str]:
3783
+ return pulumi.get(self, "values")
3784
+
3785
+ @values.setter
3786
+ def values(self, value: Sequence[str]):
3787
+ pulumi.set(self, "values", value)
3788
+
3789
+ @property
3790
+ @pulumi.getter
3791
+ def regex(self) -> Optional[bool]:
3792
+ return pulumi.get(self, "regex")
3793
+
3794
+ @regex.setter
3795
+ def regex(self, value: Optional[bool]):
3796
+ pulumi.set(self, "regex", value)
3797
+
3798
+
3050
3799
  @pulumi.input_type
3051
3800
  class GetWorkspaceApplicationsFilterArgs:
3052
3801
  def __init__(__self__, *,