pulumi-oci 2.25.0a1740032973__py3-none-any.whl → 2.26.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 (218) hide show
  1. pulumi_oci/__init__.py +102 -0
  2. pulumi_oci/config/__init__.pyi +2 -0
  3. pulumi_oci/config/vars.py +4 -0
  4. pulumi_oci/containerengine/_inputs.py +74 -35
  5. pulumi_oci/containerengine/cluster.py +4 -0
  6. pulumi_oci/containerengine/container_instance.py +2 -4
  7. pulumi_oci/containerengine/outputs.py +180 -21
  8. pulumi_oci/containerinstances/outputs.py +0 -14
  9. pulumi_oci/core/_inputs.py +21 -33
  10. pulumi_oci/core/outputs.py +13 -21
  11. pulumi_oci/database/__init__.py +1 -0
  12. pulumi_oci/database/_inputs.py +1246 -57
  13. pulumi_oci/database/application_vip.py +59 -10
  14. pulumi_oci/database/autonomous_container_database.py +92 -0
  15. pulumi_oci/database/autonomous_database.py +90 -22
  16. pulumi_oci/database/backup.py +153 -5
  17. pulumi_oci/database/backup_destination.py +84 -0
  18. pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
  19. pulumi_oci/database/cloud_vm_cluster.py +163 -30
  20. pulumi_oci/database/data_guard_association.py +49 -0
  21. pulumi_oci/database/db_node.py +64 -8
  22. pulumi_oci/database/db_system.py +111 -8
  23. pulumi_oci/database/exadata_infrastructure.py +157 -3
  24. pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
  25. pulumi_oci/database/exadb_vm_cluster.py +84 -7
  26. pulumi_oci/database/exascale_db_storage_vault.py +147 -0
  27. pulumi_oci/database/external_container_database.py +4 -4
  28. pulumi_oci/database/external_non_container_database.py +4 -4
  29. pulumi_oci/database/external_pluggable_database.py +4 -4
  30. pulumi_oci/database/get_application_vip.py +16 -2
  31. pulumi_oci/database/get_autonomous_container_database.py +43 -1
  32. pulumi_oci/database/get_autonomous_database.py +29 -1
  33. pulumi_oci/database/get_autonomous_databases.py +0 -26
  34. pulumi_oci/database/get_backup_destination.py +43 -1
  35. pulumi_oci/database/get_backups.py +136 -10
  36. pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
  37. pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
  38. pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
  39. pulumi_oci/database/get_data_guard_association.py +12 -1
  40. pulumi_oci/database/get_database_software_images.py +20 -1
  41. pulumi_oci/database/get_db_node.py +31 -4
  42. pulumi_oci/database/get_db_server.py +15 -1
  43. pulumi_oci/database/get_exadata_infrastructure.py +57 -1
  44. pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
  45. pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
  46. pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
  47. pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
  48. pulumi_oci/database/get_external_container_database.py +1 -1
  49. pulumi_oci/database/get_external_non_container_database.py +1 -1
  50. pulumi_oci/database/get_external_pluggable_database.py +1 -1
  51. pulumi_oci/database/get_flex_components.py +28 -6
  52. pulumi_oci/database/get_maintenance_runs.py +20 -1
  53. pulumi_oci/database/get_vm_cluster.py +60 -4
  54. pulumi_oci/database/get_vm_clusters.py +25 -3
  55. pulumi_oci/database/outputs.py +2260 -87
  56. pulumi_oci/database/pluggable_database.py +13 -13
  57. pulumi_oci/database/vm_cluster.py +172 -18
  58. pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
  59. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
  60. pulumi_oci/datasafe/__init__.py +7 -0
  61. pulumi_oci/datasafe/_inputs.py +301 -0
  62. pulumi_oci/datasafe/discovery_mod.py +49 -0
  63. pulumi_oci/datasafe/get_discovery_job.py +15 -1
  64. pulumi_oci/datasafe/get_masking_report.py +46 -4
  65. pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
  66. pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
  67. pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
  68. pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
  69. pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
  70. pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
  71. pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
  72. pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
  73. pulumi_oci/datasafe/outputs.py +676 -3
  74. pulumi_oci/datasafe/sensitive_data_model.py +49 -0
  75. pulumi_oci/datasafe/sensitive_type_group.py +563 -0
  76. pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
  77. pulumi_oci/datascience/__init__.py +4 -0
  78. pulumi_oci/datascience/_inputs.py +1160 -41
  79. pulumi_oci/datascience/get_model.py +29 -1
  80. pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
  81. pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
  82. pulumi_oci/datascience/get_model_version_set.py +15 -1
  83. pulumi_oci/datascience/get_model_version_sets.py +25 -3
  84. pulumi_oci/datascience/get_models.py +25 -3
  85. pulumi_oci/datascience/get_pipeline.py +15 -1
  86. pulumi_oci/datascience/model.py +64 -0
  87. pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
  88. pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
  89. pulumi_oci/datascience/model_version_set.py +28 -0
  90. pulumi_oci/datascience/outputs.py +4343 -2164
  91. pulumi_oci/datascience/pipeline.py +48 -141
  92. pulumi_oci/datascience/pipeline_run.py +32 -0
  93. pulumi_oci/dblm/__init__.py +17 -0
  94. pulumi_oci/dblm/_inputs.py +275 -0
  95. pulumi_oci/dblm/get_vulnerability.py +242 -0
  96. pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
  97. pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
  98. pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
  99. pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
  100. pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
  101. pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
  102. pulumi_oci/dblm/outputs.py +1294 -0
  103. pulumi_oci/dblm/vulnerability_scan.py +521 -0
  104. pulumi_oci/email/dkim.py +120 -20
  105. pulumi_oci/email/get_dkim.py +40 -1
  106. pulumi_oci/email/outputs.py +29 -0
  107. pulumi_oci/filestorage/__init__.py +3 -0
  108. pulumi_oci/filestorage/_inputs.py +49 -0
  109. pulumi_oci/filestorage/file_system.py +133 -0
  110. pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
  111. pulumi_oci/filestorage/filesystem_snapshot_policy.py +28 -0
  112. pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
  113. pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
  114. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +15 -1
  115. pulumi_oci/filestorage/get_outbound_connector.py +15 -1
  116. pulumi_oci/filestorage/get_replication.py +15 -1
  117. pulumi_oci/filestorage/get_replication_target.py +15 -1
  118. pulumi_oci/filestorage/get_snapshot.py +15 -1
  119. pulumi_oci/filestorage/mount_target.py +28 -0
  120. pulumi_oci/filestorage/outbound_connector.py +28 -0
  121. pulumi_oci/filestorage/outputs.py +263 -0
  122. pulumi_oci/filestorage/replication.py +28 -0
  123. pulumi_oci/filestorage/snapshot.py +28 -0
  124. pulumi_oci/goldengate/connection.py +561 -162
  125. pulumi_oci/goldengate/database_registration.py +14 -14
  126. pulumi_oci/goldengate/get_connection.py +117 -6
  127. pulumi_oci/goldengate/outputs.py +96 -10
  128. pulumi_oci/jms/__init__.py +4 -0
  129. pulumi_oci/jms/_inputs.py +196 -0
  130. pulumi_oci/jms/get_fleet_error_analytics.py +163 -0
  131. pulumi_oci/jms/get_fleet_errors.py +264 -0
  132. pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +23 -1
  133. pulumi_oci/jms/get_jms_plugins.py +23 -1
  134. pulumi_oci/jms/get_plugin_error_analytics.py +163 -0
  135. pulumi_oci/jms/get_plugin_errors.py +264 -0
  136. pulumi_oci/jms/outputs.py +566 -6
  137. pulumi_oci/mysql/_inputs.py +1239 -10
  138. pulumi_oci/mysql/channel.py +28 -0
  139. pulumi_oci/mysql/get_channel.py +15 -1
  140. pulumi_oci/mysql/get_mysql_backup.py +15 -1
  141. pulumi_oci/mysql/get_mysql_configuration.py +15 -1
  142. pulumi_oci/mysql/get_mysql_db_system.py +15 -1
  143. pulumi_oci/mysql/mysql_backup.py +28 -0
  144. pulumi_oci/mysql/mysql_configuration.py +106 -0
  145. pulumi_oci/mysql/mysql_db_system.py +36 -0
  146. pulumi_oci/mysql/outputs.py +2008 -35
  147. pulumi_oci/opensearch/__init__.py +3 -0
  148. pulumi_oci/opensearch/_inputs.py +101 -0
  149. pulumi_oci/opensearch/cluster.py +76 -29
  150. pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
  151. pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
  152. pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
  153. pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
  154. pulumi_oci/opensearch/outputs.py +425 -0
  155. pulumi_oci/provider.py +20 -0
  156. pulumi_oci/psql/_inputs.py +258 -0
  157. pulumi_oci/psql/backup.py +129 -28
  158. pulumi_oci/psql/db_system.py +10 -0
  159. pulumi_oci/psql/get_backup.py +47 -2
  160. pulumi_oci/psql/get_backups.py +3 -0
  161. pulumi_oci/psql/get_configurations.py +23 -1
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_db_systems.py +1 -1
  164. pulumi_oci/psql/outputs.py +541 -5
  165. pulumi_oci/pulumi-plugin.json +1 -1
  166. pulumi_oci/redis/redis_cluster.py +7 -7
  167. pulumi_oci/stackmonitoring/__init__.py +8 -0
  168. pulumi_oci/stackmonitoring/_inputs.py +372 -1
  169. pulumi_oci/stackmonitoring/get_defined_monitoring_templates.py +185 -0
  170. pulumi_oci/stackmonitoring/get_metric_extension.py +1 -1
  171. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +15 -1
  172. pulumi_oci/stackmonitoring/get_monitoring_template.py +380 -0
  173. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_condition.py +318 -0
  174. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_conditions.py +262 -0
  175. pulumi_oci/stackmonitoring/get_monitoring_templates.py +289 -0
  176. pulumi_oci/stackmonitoring/metric_extension.py +4 -4
  177. pulumi_oci/stackmonitoring/monitored_resource_type.py +30 -0
  178. pulumi_oci/stackmonitoring/monitoring_template.py +954 -0
  179. pulumi_oci/stackmonitoring/monitoring_template_alarm_condition.py +780 -0
  180. pulumi_oci/stackmonitoring/monitoring_template_monitoring_template_on_given_resources_management.py +253 -0
  181. pulumi_oci/stackmonitoring/outputs.py +1305 -118
  182. pulumi_oci/tenantmanagercontrolplane/__init__.py +33 -0
  183. pulumi_oci/tenantmanagercontrolplane/_inputs.py +685 -0
  184. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription.py +478 -0
  185. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription_line_items.py +144 -0
  186. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscriptions.py +188 -0
  187. pulumi_oci/tenantmanagercontrolplane/get_domain.py +253 -0
  188. pulumi_oci/tenantmanagercontrolplane/get_domain_governance.py +281 -0
  189. pulumi_oci/tenantmanagercontrolplane/get_domain_governances.py +226 -0
  190. pulumi_oci/tenantmanagercontrolplane/get_domains.py +226 -0
  191. pulumi_oci/tenantmanagercontrolplane/get_link.py +197 -0
  192. pulumi_oci/tenantmanagercontrolplane/get_links.py +191 -0
  193. pulumi_oci/tenantmanagercontrolplane/get_organization.py +211 -0
  194. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancies.py +144 -0
  195. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancy.py +233 -0
  196. pulumi_oci/tenantmanagercontrolplane/get_organizations.py +147 -0
  197. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitation.py +295 -0
  198. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitations.py +213 -0
  199. pulumi_oci/tenantmanagercontrolplane/get_sender_invitation.py +295 -0
  200. pulumi_oci/tenantmanagercontrolplane/get_sender_invitations.py +235 -0
  201. pulumi_oci/tenantmanagercontrolplane/get_subscription.py +464 -0
  202. pulumi_oci/tenantmanagercontrolplane/get_subscription_available_regions.py +144 -0
  203. pulumi_oci/tenantmanagercontrolplane/get_subscription_line_items.py +144 -0
  204. pulumi_oci/tenantmanagercontrolplane/get_subscription_mapping.py +211 -0
  205. pulumi_oci/tenantmanagercontrolplane/get_subscription_mappings.py +210 -0
  206. pulumi_oci/tenantmanagercontrolplane/get_subscriptions.py +188 -0
  207. pulumi_oci/tenantmanagercontrolplane/outputs.py +3257 -0
  208. pulumi_oci/tenantmanagercontrolplane/subscription_mapping.py +409 -0
  209. pulumi_oci/vault/__init__.py +1 -1
  210. pulumi_oci/vault/_inputs.py +92 -0
  211. pulumi_oci/vault/get_secret.py +40 -1
  212. pulumi_oci/vault/{get_secret_version.py → get_secret_version_sdk_v2.py} +32 -77
  213. pulumi_oci/vault/outputs.py +210 -0
  214. pulumi_oci/vault/secret.py +122 -0
  215. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/METADATA +1 -1
  216. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/RECORD +218 -150
  217. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/WHEEL +1 -1
  218. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,3257 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'GetAssignedSubscriptionLineItemsAssignedSubscriptionLineItemCollectionResult',
20
+ 'GetAssignedSubscriptionLineItemsAssignedSubscriptionLineItemCollectionItemResult',
21
+ 'GetAssignedSubscriptionLineItemsFilterResult',
22
+ 'GetAssignedSubscriptionPromotionResult',
23
+ 'GetAssignedSubscriptionSkusResult',
24
+ 'GetAssignedSubscriptionsAssignedSubscriptionCollectionResult',
25
+ 'GetAssignedSubscriptionsAssignedSubscriptionCollectionItemResult',
26
+ 'GetAssignedSubscriptionsAssignedSubscriptionCollectionItemPromotionResult',
27
+ 'GetAssignedSubscriptionsAssignedSubscriptionCollectionItemSkusResult',
28
+ 'GetAssignedSubscriptionsFilterResult',
29
+ 'GetDomainGovernancesDomainGovernanceCollectionResult',
30
+ 'GetDomainGovernancesDomainGovernanceCollectionItemResult',
31
+ 'GetDomainGovernancesFilterResult',
32
+ 'GetDomainsDomainCollectionResult',
33
+ 'GetDomainsDomainCollectionItemResult',
34
+ 'GetDomainsFilterResult',
35
+ 'GetLinksFilterResult',
36
+ 'GetLinksLinkCollectionResult',
37
+ 'GetLinksLinkCollectionItemResult',
38
+ 'GetOrganizationTenanciesFilterResult',
39
+ 'GetOrganizationTenanciesOrganizationTenancyCollectionResult',
40
+ 'GetOrganizationTenanciesOrganizationTenancyCollectionItemResult',
41
+ 'GetOrganizationsFilterResult',
42
+ 'GetOrganizationsOrganizationCollectionResult',
43
+ 'GetOrganizationsOrganizationCollectionItemResult',
44
+ 'GetRecipientInvitationsFilterResult',
45
+ 'GetRecipientInvitationsRecipientInvitationCollectionResult',
46
+ 'GetRecipientInvitationsRecipientInvitationCollectionItemResult',
47
+ 'GetSenderInvitationsFilterResult',
48
+ 'GetSenderInvitationsSenderInvitationCollectionResult',
49
+ 'GetSenderInvitationsSenderInvitationCollectionItemResult',
50
+ 'GetSubscriptionAvailableRegionsAvailableRegionCollectionResult',
51
+ 'GetSubscriptionAvailableRegionsAvailableRegionCollectionItemResult',
52
+ 'GetSubscriptionAvailableRegionsFilterResult',
53
+ 'GetSubscriptionLineItemsFilterResult',
54
+ 'GetSubscriptionLineItemsSubscriptionLineItemCollectionResult',
55
+ 'GetSubscriptionLineItemsSubscriptionLineItemCollectionItemResult',
56
+ 'GetSubscriptionMappingsFilterResult',
57
+ 'GetSubscriptionMappingsSubscriptionMappingCollectionResult',
58
+ 'GetSubscriptionMappingsSubscriptionMappingCollectionItemResult',
59
+ 'GetSubscriptionPromotionResult',
60
+ 'GetSubscriptionSkusResult',
61
+ 'GetSubscriptionsFilterResult',
62
+ 'GetSubscriptionsSubscriptionCollectionResult',
63
+ 'GetSubscriptionsSubscriptionCollectionItemResult',
64
+ 'GetSubscriptionsSubscriptionCollectionItemPromotionResult',
65
+ 'GetSubscriptionsSubscriptionCollectionItemSkusResult',
66
+ ]
67
+
68
+ @pulumi.output_type
69
+ class GetAssignedSubscriptionLineItemsAssignedSubscriptionLineItemCollectionResult(dict):
70
+ def __init__(__self__, *,
71
+ items: Sequence['outputs.GetAssignedSubscriptionLineItemsAssignedSubscriptionLineItemCollectionItemResult']):
72
+ """
73
+ :param Sequence['GetAssignedSubscriptionLineItemsAssignedSubscriptionLineItemCollectionItemArgs'] items: Array containing line item summaries in an assigned subscription.
74
+ """
75
+ pulumi.set(__self__, "items", items)
76
+
77
+ @property
78
+ @pulumi.getter
79
+ def items(self) -> Sequence['outputs.GetAssignedSubscriptionLineItemsAssignedSubscriptionLineItemCollectionItemResult']:
80
+ """
81
+ Array containing line item summaries in an assigned subscription.
82
+ """
83
+ return pulumi.get(self, "items")
84
+
85
+
86
+ @pulumi.output_type
87
+ class GetAssignedSubscriptionLineItemsAssignedSubscriptionLineItemCollectionItemResult(dict):
88
+ def __init__(__self__, *,
89
+ billing_model: str,
90
+ id: str,
91
+ product_code: str,
92
+ quantity: float,
93
+ system_tags: Mapping[str, str],
94
+ time_ended: str,
95
+ time_started: str):
96
+ """
97
+ :param str billing_model: Billing model supported by the associated line item.
98
+ :param str id: Subscription line item identifier.
99
+ :param str product_code: Product code.
100
+ :param float quantity: Product number.
101
+ :param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
102
+ :param str time_ended: The time the subscription item and associated products should end. An RFC 3339 formatted date and time string.
103
+ :param str time_started: The time the subscription item and associated products should start. An RFC 3339 formatted date and time string.
104
+ """
105
+ pulumi.set(__self__, "billing_model", billing_model)
106
+ pulumi.set(__self__, "id", id)
107
+ pulumi.set(__self__, "product_code", product_code)
108
+ pulumi.set(__self__, "quantity", quantity)
109
+ pulumi.set(__self__, "system_tags", system_tags)
110
+ pulumi.set(__self__, "time_ended", time_ended)
111
+ pulumi.set(__self__, "time_started", time_started)
112
+
113
+ @property
114
+ @pulumi.getter(name="billingModel")
115
+ def billing_model(self) -> str:
116
+ """
117
+ Billing model supported by the associated line item.
118
+ """
119
+ return pulumi.get(self, "billing_model")
120
+
121
+ @property
122
+ @pulumi.getter
123
+ def id(self) -> str:
124
+ """
125
+ Subscription line item identifier.
126
+ """
127
+ return pulumi.get(self, "id")
128
+
129
+ @property
130
+ @pulumi.getter(name="productCode")
131
+ def product_code(self) -> str:
132
+ """
133
+ Product code.
134
+ """
135
+ return pulumi.get(self, "product_code")
136
+
137
+ @property
138
+ @pulumi.getter
139
+ def quantity(self) -> float:
140
+ """
141
+ Product number.
142
+ """
143
+ return pulumi.get(self, "quantity")
144
+
145
+ @property
146
+ @pulumi.getter(name="systemTags")
147
+ def system_tags(self) -> Mapping[str, str]:
148
+ """
149
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
150
+ """
151
+ return pulumi.get(self, "system_tags")
152
+
153
+ @property
154
+ @pulumi.getter(name="timeEnded")
155
+ def time_ended(self) -> str:
156
+ """
157
+ The time the subscription item and associated products should end. An RFC 3339 formatted date and time string.
158
+ """
159
+ return pulumi.get(self, "time_ended")
160
+
161
+ @property
162
+ @pulumi.getter(name="timeStarted")
163
+ def time_started(self) -> str:
164
+ """
165
+ The time the subscription item and associated products should start. An RFC 3339 formatted date and time string.
166
+ """
167
+ return pulumi.get(self, "time_started")
168
+
169
+
170
+ @pulumi.output_type
171
+ class GetAssignedSubscriptionLineItemsFilterResult(dict):
172
+ def __init__(__self__, *,
173
+ name: str,
174
+ values: Sequence[str],
175
+ regex: Optional[bool] = None):
176
+ pulumi.set(__self__, "name", name)
177
+ pulumi.set(__self__, "values", values)
178
+ if regex is not None:
179
+ pulumi.set(__self__, "regex", regex)
180
+
181
+ @property
182
+ @pulumi.getter
183
+ def name(self) -> str:
184
+ return pulumi.get(self, "name")
185
+
186
+ @property
187
+ @pulumi.getter
188
+ def values(self) -> Sequence[str]:
189
+ return pulumi.get(self, "values")
190
+
191
+ @property
192
+ @pulumi.getter
193
+ def regex(self) -> Optional[bool]:
194
+ return pulumi.get(self, "regex")
195
+
196
+
197
+ @pulumi.output_type
198
+ class GetAssignedSubscriptionPromotionResult(dict):
199
+ def __init__(__self__, *,
200
+ amount: float,
201
+ currency_unit: str,
202
+ duration: int,
203
+ duration_unit: str,
204
+ is_intent_to_pay: bool,
205
+ status: str,
206
+ time_expired: str,
207
+ time_started: str):
208
+ """
209
+ :param float amount: If a subscription is present, indicates the total amount of promotional subscription credits.
210
+ :param str currency_unit: Currency unit associated with the promotion.
211
+ :param int duration: Specifies how long the promotion related to the subscription, if any, is valid in duration units.
212
+ :param str duration_unit: Unit for the duration.
213
+ :param bool is_intent_to_pay: Speficies whether or not the customer intends to pay after the promotion has expired.
214
+ :param str status: If a subscription is present, indicates the current status of the subscription promotion.
215
+ :param str time_expired: Date and time when the promotion ends.
216
+ :param str time_started: Date and time when the promotion starts.
217
+ """
218
+ pulumi.set(__self__, "amount", amount)
219
+ pulumi.set(__self__, "currency_unit", currency_unit)
220
+ pulumi.set(__self__, "duration", duration)
221
+ pulumi.set(__self__, "duration_unit", duration_unit)
222
+ pulumi.set(__self__, "is_intent_to_pay", is_intent_to_pay)
223
+ pulumi.set(__self__, "status", status)
224
+ pulumi.set(__self__, "time_expired", time_expired)
225
+ pulumi.set(__self__, "time_started", time_started)
226
+
227
+ @property
228
+ @pulumi.getter
229
+ def amount(self) -> float:
230
+ """
231
+ If a subscription is present, indicates the total amount of promotional subscription credits.
232
+ """
233
+ return pulumi.get(self, "amount")
234
+
235
+ @property
236
+ @pulumi.getter(name="currencyUnit")
237
+ def currency_unit(self) -> str:
238
+ """
239
+ Currency unit associated with the promotion.
240
+ """
241
+ return pulumi.get(self, "currency_unit")
242
+
243
+ @property
244
+ @pulumi.getter
245
+ def duration(self) -> int:
246
+ """
247
+ Specifies how long the promotion related to the subscription, if any, is valid in duration units.
248
+ """
249
+ return pulumi.get(self, "duration")
250
+
251
+ @property
252
+ @pulumi.getter(name="durationUnit")
253
+ def duration_unit(self) -> str:
254
+ """
255
+ Unit for the duration.
256
+ """
257
+ return pulumi.get(self, "duration_unit")
258
+
259
+ @property
260
+ @pulumi.getter(name="isIntentToPay")
261
+ def is_intent_to_pay(self) -> bool:
262
+ """
263
+ Speficies whether or not the customer intends to pay after the promotion has expired.
264
+ """
265
+ return pulumi.get(self, "is_intent_to_pay")
266
+
267
+ @property
268
+ @pulumi.getter
269
+ def status(self) -> str:
270
+ """
271
+ If a subscription is present, indicates the current status of the subscription promotion.
272
+ """
273
+ return pulumi.get(self, "status")
274
+
275
+ @property
276
+ @pulumi.getter(name="timeExpired")
277
+ def time_expired(self) -> str:
278
+ """
279
+ Date and time when the promotion ends.
280
+ """
281
+ return pulumi.get(self, "time_expired")
282
+
283
+ @property
284
+ @pulumi.getter(name="timeStarted")
285
+ def time_started(self) -> str:
286
+ """
287
+ Date and time when the promotion starts.
288
+ """
289
+ return pulumi.get(self, "time_started")
290
+
291
+
292
+ @pulumi.output_type
293
+ class GetAssignedSubscriptionSkusResult(dict):
294
+ def __init__(__self__, *,
295
+ description: str,
296
+ end_date: str,
297
+ gsi_order_line_id: str,
298
+ is_additional_instance: bool,
299
+ is_base_service_component: bool,
300
+ license_part_description: str,
301
+ metric_name: str,
302
+ quantity: int,
303
+ sku: str,
304
+ start_date: str):
305
+ """
306
+ :param str description: Description of the stock units.
307
+ :param str end_date: Date and time when the SKU ended.
308
+ :param str gsi_order_line_id: Sales order line identifier.
309
+ :param bool is_additional_instance: Specifies if an additional test instance can be provisioned by the SaaS application.
310
+ :param bool is_base_service_component: Specifies if the SKU is considered as a parent or child.
311
+ :param str license_part_description: Description of the covered product belonging to this SKU.
312
+ :param str metric_name: Base metric for billing the service.
313
+ :param int quantity: Quantity of the stock units.
314
+ :param str sku: Stock Keeping Unit (SKU) ID.
315
+ :param str start_date: Subscription start time.
316
+ """
317
+ pulumi.set(__self__, "description", description)
318
+ pulumi.set(__self__, "end_date", end_date)
319
+ pulumi.set(__self__, "gsi_order_line_id", gsi_order_line_id)
320
+ pulumi.set(__self__, "is_additional_instance", is_additional_instance)
321
+ pulumi.set(__self__, "is_base_service_component", is_base_service_component)
322
+ pulumi.set(__self__, "license_part_description", license_part_description)
323
+ pulumi.set(__self__, "metric_name", metric_name)
324
+ pulumi.set(__self__, "quantity", quantity)
325
+ pulumi.set(__self__, "sku", sku)
326
+ pulumi.set(__self__, "start_date", start_date)
327
+
328
+ @property
329
+ @pulumi.getter
330
+ def description(self) -> str:
331
+ """
332
+ Description of the stock units.
333
+ """
334
+ return pulumi.get(self, "description")
335
+
336
+ @property
337
+ @pulumi.getter(name="endDate")
338
+ def end_date(self) -> str:
339
+ """
340
+ Date and time when the SKU ended.
341
+ """
342
+ return pulumi.get(self, "end_date")
343
+
344
+ @property
345
+ @pulumi.getter(name="gsiOrderLineId")
346
+ def gsi_order_line_id(self) -> str:
347
+ """
348
+ Sales order line identifier.
349
+ """
350
+ return pulumi.get(self, "gsi_order_line_id")
351
+
352
+ @property
353
+ @pulumi.getter(name="isAdditionalInstance")
354
+ def is_additional_instance(self) -> bool:
355
+ """
356
+ Specifies if an additional test instance can be provisioned by the SaaS application.
357
+ """
358
+ return pulumi.get(self, "is_additional_instance")
359
+
360
+ @property
361
+ @pulumi.getter(name="isBaseServiceComponent")
362
+ def is_base_service_component(self) -> bool:
363
+ """
364
+ Specifies if the SKU is considered as a parent or child.
365
+ """
366
+ return pulumi.get(self, "is_base_service_component")
367
+
368
+ @property
369
+ @pulumi.getter(name="licensePartDescription")
370
+ def license_part_description(self) -> str:
371
+ """
372
+ Description of the covered product belonging to this SKU.
373
+ """
374
+ return pulumi.get(self, "license_part_description")
375
+
376
+ @property
377
+ @pulumi.getter(name="metricName")
378
+ def metric_name(self) -> str:
379
+ """
380
+ Base metric for billing the service.
381
+ """
382
+ return pulumi.get(self, "metric_name")
383
+
384
+ @property
385
+ @pulumi.getter
386
+ def quantity(self) -> int:
387
+ """
388
+ Quantity of the stock units.
389
+ """
390
+ return pulumi.get(self, "quantity")
391
+
392
+ @property
393
+ @pulumi.getter
394
+ def sku(self) -> str:
395
+ """
396
+ Stock Keeping Unit (SKU) ID.
397
+ """
398
+ return pulumi.get(self, "sku")
399
+
400
+ @property
401
+ @pulumi.getter(name="startDate")
402
+ def start_date(self) -> str:
403
+ """
404
+ Subscription start time.
405
+ """
406
+ return pulumi.get(self, "start_date")
407
+
408
+
409
+ @pulumi.output_type
410
+ class GetAssignedSubscriptionsAssignedSubscriptionCollectionResult(dict):
411
+ def __init__(__self__, *,
412
+ items: Sequence['outputs.GetAssignedSubscriptionsAssignedSubscriptionCollectionItemResult']):
413
+ pulumi.set(__self__, "items", items)
414
+
415
+ @property
416
+ @pulumi.getter
417
+ def items(self) -> Sequence['outputs.GetAssignedSubscriptionsAssignedSubscriptionCollectionItemResult']:
418
+ return pulumi.get(self, "items")
419
+
420
+
421
+ @pulumi.output_type
422
+ class GetAssignedSubscriptionsAssignedSubscriptionCollectionItemResult(dict):
423
+ def __init__(__self__, *,
424
+ classic_subscription_id: str,
425
+ cloud_amount_currency: str,
426
+ compartment_id: str,
427
+ csi_number: str,
428
+ currency_code: str,
429
+ customer_country_code: str,
430
+ defined_tags: Mapping[str, str],
431
+ end_date: str,
432
+ entity_version: str,
433
+ freeform_tags: Mapping[str, str],
434
+ id: str,
435
+ is_classic_subscription: bool,
436
+ is_government_subscription: bool,
437
+ managed_by: str,
438
+ order_ids: Sequence[str],
439
+ program_type: str,
440
+ promotions: Sequence['outputs.GetAssignedSubscriptionsAssignedSubscriptionCollectionItemPromotionResult'],
441
+ purchase_entitlement_id: str,
442
+ region_assignment: str,
443
+ service_name: str,
444
+ skuses: Sequence['outputs.GetAssignedSubscriptionsAssignedSubscriptionCollectionItemSkusResult'],
445
+ start_date: str,
446
+ state: str,
447
+ subscription_number: str,
448
+ subscription_tier: str,
449
+ time_created: str,
450
+ time_updated: str):
451
+ """
452
+ :param str classic_subscription_id: Subscription ID.
453
+ :param str cloud_amount_currency: The currency code for the customer associated with the subscription.
454
+ :param str compartment_id: The ID of the compartment in which to list resources.
455
+ :param str csi_number: Customer service identifier for the customer associated with the subscription.
456
+ :param str currency_code: Currency code. For example USD, MXN.
457
+ :param str customer_country_code: The country code for the customer associated with the subscription.
458
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
459
+ :param str end_date: Date and time when the SKU ended.
460
+ :param str entity_version: The version of the subscription entity.
461
+ :param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
462
+ :param str id: The Oracle ID ([OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)) of the subscription.
463
+ :param bool is_classic_subscription: Specifies whether or not the subscription is legacy.
464
+ :param bool is_government_subscription: Specifies whether or not the subscription is a government subscription.
465
+ :param str managed_by: Service or component which is used to provision and manage the subscription.
466
+ :param Sequence[str] order_ids: List of subscription order OCIDs that contributed to this subscription.
467
+ :param str program_type: Specifies any program that is associated with the subscription.
468
+ :param Sequence['GetAssignedSubscriptionsAssignedSubscriptionCollectionItemPromotionArgs'] promotions: List of promotions related to the subscription.
469
+ :param str purchase_entitlement_id: Purchase entitlement ID associated with the subscription.
470
+ :param str region_assignment: Region for the subscription.
471
+ :param str service_name: The type of subscription, such as 'UCM', 'SAAS', 'ERP', 'CRM'.
472
+ :param Sequence['GetAssignedSubscriptionsAssignedSubscriptionCollectionItemSkusArgs'] skuses: List of SKUs linked to the subscription.
473
+ :param str start_date: Subscription start time.
474
+ :param str state: Lifecycle state of the subscription.
475
+ :param str subscription_number: Unique Oracle Cloud Subscriptions identifier that is immutable on creation.
476
+ :param str subscription_tier: Tier for the subscription, whether a free promotion subscription or a paid subscription.
477
+ :param str time_created: The date and time of creation, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
478
+ :param str time_updated: The date and time of update, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
479
+ """
480
+ pulumi.set(__self__, "classic_subscription_id", classic_subscription_id)
481
+ pulumi.set(__self__, "cloud_amount_currency", cloud_amount_currency)
482
+ pulumi.set(__self__, "compartment_id", compartment_id)
483
+ pulumi.set(__self__, "csi_number", csi_number)
484
+ pulumi.set(__self__, "currency_code", currency_code)
485
+ pulumi.set(__self__, "customer_country_code", customer_country_code)
486
+ pulumi.set(__self__, "defined_tags", defined_tags)
487
+ pulumi.set(__self__, "end_date", end_date)
488
+ pulumi.set(__self__, "entity_version", entity_version)
489
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
490
+ pulumi.set(__self__, "id", id)
491
+ pulumi.set(__self__, "is_classic_subscription", is_classic_subscription)
492
+ pulumi.set(__self__, "is_government_subscription", is_government_subscription)
493
+ pulumi.set(__self__, "managed_by", managed_by)
494
+ pulumi.set(__self__, "order_ids", order_ids)
495
+ pulumi.set(__self__, "program_type", program_type)
496
+ pulumi.set(__self__, "promotions", promotions)
497
+ pulumi.set(__self__, "purchase_entitlement_id", purchase_entitlement_id)
498
+ pulumi.set(__self__, "region_assignment", region_assignment)
499
+ pulumi.set(__self__, "service_name", service_name)
500
+ pulumi.set(__self__, "skuses", skuses)
501
+ pulumi.set(__self__, "start_date", start_date)
502
+ pulumi.set(__self__, "state", state)
503
+ pulumi.set(__self__, "subscription_number", subscription_number)
504
+ pulumi.set(__self__, "subscription_tier", subscription_tier)
505
+ pulumi.set(__self__, "time_created", time_created)
506
+ pulumi.set(__self__, "time_updated", time_updated)
507
+
508
+ @property
509
+ @pulumi.getter(name="classicSubscriptionId")
510
+ def classic_subscription_id(self) -> str:
511
+ """
512
+ Subscription ID.
513
+ """
514
+ return pulumi.get(self, "classic_subscription_id")
515
+
516
+ @property
517
+ @pulumi.getter(name="cloudAmountCurrency")
518
+ def cloud_amount_currency(self) -> str:
519
+ """
520
+ The currency code for the customer associated with the subscription.
521
+ """
522
+ return pulumi.get(self, "cloud_amount_currency")
523
+
524
+ @property
525
+ @pulumi.getter(name="compartmentId")
526
+ def compartment_id(self) -> str:
527
+ """
528
+ The ID of the compartment in which to list resources.
529
+ """
530
+ return pulumi.get(self, "compartment_id")
531
+
532
+ @property
533
+ @pulumi.getter(name="csiNumber")
534
+ def csi_number(self) -> str:
535
+ """
536
+ Customer service identifier for the customer associated with the subscription.
537
+ """
538
+ return pulumi.get(self, "csi_number")
539
+
540
+ @property
541
+ @pulumi.getter(name="currencyCode")
542
+ def currency_code(self) -> str:
543
+ """
544
+ Currency code. For example USD, MXN.
545
+ """
546
+ return pulumi.get(self, "currency_code")
547
+
548
+ @property
549
+ @pulumi.getter(name="customerCountryCode")
550
+ def customer_country_code(self) -> str:
551
+ """
552
+ The country code for the customer associated with the subscription.
553
+ """
554
+ return pulumi.get(self, "customer_country_code")
555
+
556
+ @property
557
+ @pulumi.getter(name="definedTags")
558
+ def defined_tags(self) -> Mapping[str, str]:
559
+ """
560
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
561
+ """
562
+ return pulumi.get(self, "defined_tags")
563
+
564
+ @property
565
+ @pulumi.getter(name="endDate")
566
+ def end_date(self) -> str:
567
+ """
568
+ Date and time when the SKU ended.
569
+ """
570
+ return pulumi.get(self, "end_date")
571
+
572
+ @property
573
+ @pulumi.getter(name="entityVersion")
574
+ def entity_version(self) -> str:
575
+ """
576
+ The version of the subscription entity.
577
+ """
578
+ return pulumi.get(self, "entity_version")
579
+
580
+ @property
581
+ @pulumi.getter(name="freeformTags")
582
+ def freeform_tags(self) -> Mapping[str, str]:
583
+ """
584
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
585
+ """
586
+ return pulumi.get(self, "freeform_tags")
587
+
588
+ @property
589
+ @pulumi.getter
590
+ def id(self) -> str:
591
+ """
592
+ The Oracle ID ([OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)) of the subscription.
593
+ """
594
+ return pulumi.get(self, "id")
595
+
596
+ @property
597
+ @pulumi.getter(name="isClassicSubscription")
598
+ def is_classic_subscription(self) -> bool:
599
+ """
600
+ Specifies whether or not the subscription is legacy.
601
+ """
602
+ return pulumi.get(self, "is_classic_subscription")
603
+
604
+ @property
605
+ @pulumi.getter(name="isGovernmentSubscription")
606
+ def is_government_subscription(self) -> bool:
607
+ """
608
+ Specifies whether or not the subscription is a government subscription.
609
+ """
610
+ return pulumi.get(self, "is_government_subscription")
611
+
612
+ @property
613
+ @pulumi.getter(name="managedBy")
614
+ def managed_by(self) -> str:
615
+ """
616
+ Service or component which is used to provision and manage the subscription.
617
+ """
618
+ return pulumi.get(self, "managed_by")
619
+
620
+ @property
621
+ @pulumi.getter(name="orderIds")
622
+ def order_ids(self) -> Sequence[str]:
623
+ """
624
+ List of subscription order OCIDs that contributed to this subscription.
625
+ """
626
+ return pulumi.get(self, "order_ids")
627
+
628
+ @property
629
+ @pulumi.getter(name="programType")
630
+ def program_type(self) -> str:
631
+ """
632
+ Specifies any program that is associated with the subscription.
633
+ """
634
+ return pulumi.get(self, "program_type")
635
+
636
+ @property
637
+ @pulumi.getter
638
+ def promotions(self) -> Sequence['outputs.GetAssignedSubscriptionsAssignedSubscriptionCollectionItemPromotionResult']:
639
+ """
640
+ List of promotions related to the subscription.
641
+ """
642
+ return pulumi.get(self, "promotions")
643
+
644
+ @property
645
+ @pulumi.getter(name="purchaseEntitlementId")
646
+ def purchase_entitlement_id(self) -> str:
647
+ """
648
+ Purchase entitlement ID associated with the subscription.
649
+ """
650
+ return pulumi.get(self, "purchase_entitlement_id")
651
+
652
+ @property
653
+ @pulumi.getter(name="regionAssignment")
654
+ def region_assignment(self) -> str:
655
+ """
656
+ Region for the subscription.
657
+ """
658
+ return pulumi.get(self, "region_assignment")
659
+
660
+ @property
661
+ @pulumi.getter(name="serviceName")
662
+ def service_name(self) -> str:
663
+ """
664
+ The type of subscription, such as 'UCM', 'SAAS', 'ERP', 'CRM'.
665
+ """
666
+ return pulumi.get(self, "service_name")
667
+
668
+ @property
669
+ @pulumi.getter
670
+ def skuses(self) -> Sequence['outputs.GetAssignedSubscriptionsAssignedSubscriptionCollectionItemSkusResult']:
671
+ """
672
+ List of SKUs linked to the subscription.
673
+ """
674
+ return pulumi.get(self, "skuses")
675
+
676
+ @property
677
+ @pulumi.getter(name="startDate")
678
+ def start_date(self) -> str:
679
+ """
680
+ Subscription start time.
681
+ """
682
+ return pulumi.get(self, "start_date")
683
+
684
+ @property
685
+ @pulumi.getter
686
+ def state(self) -> str:
687
+ """
688
+ Lifecycle state of the subscription.
689
+ """
690
+ return pulumi.get(self, "state")
691
+
692
+ @property
693
+ @pulumi.getter(name="subscriptionNumber")
694
+ def subscription_number(self) -> str:
695
+ """
696
+ Unique Oracle Cloud Subscriptions identifier that is immutable on creation.
697
+ """
698
+ return pulumi.get(self, "subscription_number")
699
+
700
+ @property
701
+ @pulumi.getter(name="subscriptionTier")
702
+ def subscription_tier(self) -> str:
703
+ """
704
+ Tier for the subscription, whether a free promotion subscription or a paid subscription.
705
+ """
706
+ return pulumi.get(self, "subscription_tier")
707
+
708
+ @property
709
+ @pulumi.getter(name="timeCreated")
710
+ def time_created(self) -> str:
711
+ """
712
+ The date and time of creation, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
713
+ """
714
+ return pulumi.get(self, "time_created")
715
+
716
+ @property
717
+ @pulumi.getter(name="timeUpdated")
718
+ def time_updated(self) -> str:
719
+ """
720
+ The date and time of update, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
721
+ """
722
+ return pulumi.get(self, "time_updated")
723
+
724
+
725
+ @pulumi.output_type
726
+ class GetAssignedSubscriptionsAssignedSubscriptionCollectionItemPromotionResult(dict):
727
+ def __init__(__self__, *,
728
+ amount: float,
729
+ currency_unit: str,
730
+ duration: int,
731
+ duration_unit: str,
732
+ is_intent_to_pay: bool,
733
+ status: str,
734
+ time_expired: str,
735
+ time_started: str):
736
+ """
737
+ :param float amount: If a subscription is present, indicates the total amount of promotional subscription credits.
738
+ :param str currency_unit: Currency unit associated with the promotion.
739
+ :param int duration: Specifies how long the promotion related to the subscription, if any, is valid in duration units.
740
+ :param str duration_unit: Unit for the duration.
741
+ :param bool is_intent_to_pay: Speficies whether or not the customer intends to pay after the promotion has expired.
742
+ :param str status: If a subscription is present, indicates the current status of the subscription promotion.
743
+ :param str time_expired: Date and time when the promotion ends.
744
+ :param str time_started: Date and time when the promotion starts.
745
+ """
746
+ pulumi.set(__self__, "amount", amount)
747
+ pulumi.set(__self__, "currency_unit", currency_unit)
748
+ pulumi.set(__self__, "duration", duration)
749
+ pulumi.set(__self__, "duration_unit", duration_unit)
750
+ pulumi.set(__self__, "is_intent_to_pay", is_intent_to_pay)
751
+ pulumi.set(__self__, "status", status)
752
+ pulumi.set(__self__, "time_expired", time_expired)
753
+ pulumi.set(__self__, "time_started", time_started)
754
+
755
+ @property
756
+ @pulumi.getter
757
+ def amount(self) -> float:
758
+ """
759
+ If a subscription is present, indicates the total amount of promotional subscription credits.
760
+ """
761
+ return pulumi.get(self, "amount")
762
+
763
+ @property
764
+ @pulumi.getter(name="currencyUnit")
765
+ def currency_unit(self) -> str:
766
+ """
767
+ Currency unit associated with the promotion.
768
+ """
769
+ return pulumi.get(self, "currency_unit")
770
+
771
+ @property
772
+ @pulumi.getter
773
+ def duration(self) -> int:
774
+ """
775
+ Specifies how long the promotion related to the subscription, if any, is valid in duration units.
776
+ """
777
+ return pulumi.get(self, "duration")
778
+
779
+ @property
780
+ @pulumi.getter(name="durationUnit")
781
+ def duration_unit(self) -> str:
782
+ """
783
+ Unit for the duration.
784
+ """
785
+ return pulumi.get(self, "duration_unit")
786
+
787
+ @property
788
+ @pulumi.getter(name="isIntentToPay")
789
+ def is_intent_to_pay(self) -> bool:
790
+ """
791
+ Speficies whether or not the customer intends to pay after the promotion has expired.
792
+ """
793
+ return pulumi.get(self, "is_intent_to_pay")
794
+
795
+ @property
796
+ @pulumi.getter
797
+ def status(self) -> str:
798
+ """
799
+ If a subscription is present, indicates the current status of the subscription promotion.
800
+ """
801
+ return pulumi.get(self, "status")
802
+
803
+ @property
804
+ @pulumi.getter(name="timeExpired")
805
+ def time_expired(self) -> str:
806
+ """
807
+ Date and time when the promotion ends.
808
+ """
809
+ return pulumi.get(self, "time_expired")
810
+
811
+ @property
812
+ @pulumi.getter(name="timeStarted")
813
+ def time_started(self) -> str:
814
+ """
815
+ Date and time when the promotion starts.
816
+ """
817
+ return pulumi.get(self, "time_started")
818
+
819
+
820
+ @pulumi.output_type
821
+ class GetAssignedSubscriptionsAssignedSubscriptionCollectionItemSkusResult(dict):
822
+ def __init__(__self__, *,
823
+ description: str,
824
+ end_date: str,
825
+ gsi_order_line_id: str,
826
+ is_additional_instance: bool,
827
+ is_base_service_component: bool,
828
+ license_part_description: str,
829
+ metric_name: str,
830
+ quantity: int,
831
+ sku: str,
832
+ start_date: str):
833
+ """
834
+ :param str description: Description of the stock units.
835
+ :param str end_date: Date and time when the SKU ended.
836
+ :param str gsi_order_line_id: Sales order line identifier.
837
+ :param bool is_additional_instance: Specifies if an additional test instance can be provisioned by the SaaS application.
838
+ :param bool is_base_service_component: Specifies if the SKU is considered as a parent or child.
839
+ :param str license_part_description: Description of the covered product belonging to this SKU.
840
+ :param str metric_name: Base metric for billing the service.
841
+ :param int quantity: Quantity of the stock units.
842
+ :param str sku: Stock Keeping Unit (SKU) ID.
843
+ :param str start_date: Subscription start time.
844
+ """
845
+ pulumi.set(__self__, "description", description)
846
+ pulumi.set(__self__, "end_date", end_date)
847
+ pulumi.set(__self__, "gsi_order_line_id", gsi_order_line_id)
848
+ pulumi.set(__self__, "is_additional_instance", is_additional_instance)
849
+ pulumi.set(__self__, "is_base_service_component", is_base_service_component)
850
+ pulumi.set(__self__, "license_part_description", license_part_description)
851
+ pulumi.set(__self__, "metric_name", metric_name)
852
+ pulumi.set(__self__, "quantity", quantity)
853
+ pulumi.set(__self__, "sku", sku)
854
+ pulumi.set(__self__, "start_date", start_date)
855
+
856
+ @property
857
+ @pulumi.getter
858
+ def description(self) -> str:
859
+ """
860
+ Description of the stock units.
861
+ """
862
+ return pulumi.get(self, "description")
863
+
864
+ @property
865
+ @pulumi.getter(name="endDate")
866
+ def end_date(self) -> str:
867
+ """
868
+ Date and time when the SKU ended.
869
+ """
870
+ return pulumi.get(self, "end_date")
871
+
872
+ @property
873
+ @pulumi.getter(name="gsiOrderLineId")
874
+ def gsi_order_line_id(self) -> str:
875
+ """
876
+ Sales order line identifier.
877
+ """
878
+ return pulumi.get(self, "gsi_order_line_id")
879
+
880
+ @property
881
+ @pulumi.getter(name="isAdditionalInstance")
882
+ def is_additional_instance(self) -> bool:
883
+ """
884
+ Specifies if an additional test instance can be provisioned by the SaaS application.
885
+ """
886
+ return pulumi.get(self, "is_additional_instance")
887
+
888
+ @property
889
+ @pulumi.getter(name="isBaseServiceComponent")
890
+ def is_base_service_component(self) -> bool:
891
+ """
892
+ Specifies if the SKU is considered as a parent or child.
893
+ """
894
+ return pulumi.get(self, "is_base_service_component")
895
+
896
+ @property
897
+ @pulumi.getter(name="licensePartDescription")
898
+ def license_part_description(self) -> str:
899
+ """
900
+ Description of the covered product belonging to this SKU.
901
+ """
902
+ return pulumi.get(self, "license_part_description")
903
+
904
+ @property
905
+ @pulumi.getter(name="metricName")
906
+ def metric_name(self) -> str:
907
+ """
908
+ Base metric for billing the service.
909
+ """
910
+ return pulumi.get(self, "metric_name")
911
+
912
+ @property
913
+ @pulumi.getter
914
+ def quantity(self) -> int:
915
+ """
916
+ Quantity of the stock units.
917
+ """
918
+ return pulumi.get(self, "quantity")
919
+
920
+ @property
921
+ @pulumi.getter
922
+ def sku(self) -> str:
923
+ """
924
+ Stock Keeping Unit (SKU) ID.
925
+ """
926
+ return pulumi.get(self, "sku")
927
+
928
+ @property
929
+ @pulumi.getter(name="startDate")
930
+ def start_date(self) -> str:
931
+ """
932
+ Subscription start time.
933
+ """
934
+ return pulumi.get(self, "start_date")
935
+
936
+
937
+ @pulumi.output_type
938
+ class GetAssignedSubscriptionsFilterResult(dict):
939
+ def __init__(__self__, *,
940
+ name: str,
941
+ values: Sequence[str],
942
+ regex: Optional[bool] = None):
943
+ pulumi.set(__self__, "name", name)
944
+ pulumi.set(__self__, "values", values)
945
+ if regex is not None:
946
+ pulumi.set(__self__, "regex", regex)
947
+
948
+ @property
949
+ @pulumi.getter
950
+ def name(self) -> str:
951
+ return pulumi.get(self, "name")
952
+
953
+ @property
954
+ @pulumi.getter
955
+ def values(self) -> Sequence[str]:
956
+ return pulumi.get(self, "values")
957
+
958
+ @property
959
+ @pulumi.getter
960
+ def regex(self) -> Optional[bool]:
961
+ return pulumi.get(self, "regex")
962
+
963
+
964
+ @pulumi.output_type
965
+ class GetDomainGovernancesDomainGovernanceCollectionResult(dict):
966
+ def __init__(__self__, *,
967
+ items: Sequence['outputs.GetDomainGovernancesDomainGovernanceCollectionItemResult']):
968
+ pulumi.set(__self__, "items", items)
969
+
970
+ @property
971
+ @pulumi.getter
972
+ def items(self) -> Sequence['outputs.GetDomainGovernancesDomainGovernanceCollectionItemResult']:
973
+ return pulumi.get(self, "items")
974
+
975
+
976
+ @pulumi.output_type
977
+ class GetDomainGovernancesDomainGovernanceCollectionItemResult(dict):
978
+ def __init__(__self__, *,
979
+ compartment_id: str,
980
+ defined_tags: Mapping[str, str],
981
+ domain_id: str,
982
+ freeform_tags: Mapping[str, str],
983
+ id: str,
984
+ is_governance_enabled: bool,
985
+ ons_subscription_id: str,
986
+ ons_topic_id: str,
987
+ owner_id: str,
988
+ state: str,
989
+ subscription_email: str,
990
+ system_tags: Mapping[str, str],
991
+ time_created: str,
992
+ time_updated: str):
993
+ """
994
+ :param str compartment_id: The ID of the compartment in which to list resources.
995
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
996
+ :param str domain_id: The domain OCID.
997
+ :param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
998
+ :param str id: The OCID of the domain governance entity.
999
+ :param bool is_governance_enabled: Indicates whether governance is enabled for this domain.
1000
+ :param str ons_subscription_id: The ONS subscription associated with this domain governance entity.
1001
+ :param str ons_topic_id: The ONS topic associated with this domain governance entity.
1002
+ :param str owner_id: The OCID of the tenancy that owns this domain governance entity.
1003
+ :param str state: The lifecycle state of the resource.
1004
+ :param str subscription_email: Email address to be used to notify the user, and that the ONS subscription will be created with.
1005
+ :param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1006
+ :param str time_created: Date-time when this domain governance was created. An RFC 3339-formatted date and time string.
1007
+ :param str time_updated: Date-time when this domain governance was last updated. An RFC 3339-formatted date and time string.
1008
+ """
1009
+ pulumi.set(__self__, "compartment_id", compartment_id)
1010
+ pulumi.set(__self__, "defined_tags", defined_tags)
1011
+ pulumi.set(__self__, "domain_id", domain_id)
1012
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
1013
+ pulumi.set(__self__, "id", id)
1014
+ pulumi.set(__self__, "is_governance_enabled", is_governance_enabled)
1015
+ pulumi.set(__self__, "ons_subscription_id", ons_subscription_id)
1016
+ pulumi.set(__self__, "ons_topic_id", ons_topic_id)
1017
+ pulumi.set(__self__, "owner_id", owner_id)
1018
+ pulumi.set(__self__, "state", state)
1019
+ pulumi.set(__self__, "subscription_email", subscription_email)
1020
+ pulumi.set(__self__, "system_tags", system_tags)
1021
+ pulumi.set(__self__, "time_created", time_created)
1022
+ pulumi.set(__self__, "time_updated", time_updated)
1023
+
1024
+ @property
1025
+ @pulumi.getter(name="compartmentId")
1026
+ def compartment_id(self) -> str:
1027
+ """
1028
+ The ID of the compartment in which to list resources.
1029
+ """
1030
+ return pulumi.get(self, "compartment_id")
1031
+
1032
+ @property
1033
+ @pulumi.getter(name="definedTags")
1034
+ def defined_tags(self) -> Mapping[str, str]:
1035
+ """
1036
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
1037
+ """
1038
+ return pulumi.get(self, "defined_tags")
1039
+
1040
+ @property
1041
+ @pulumi.getter(name="domainId")
1042
+ def domain_id(self) -> str:
1043
+ """
1044
+ The domain OCID.
1045
+ """
1046
+ return pulumi.get(self, "domain_id")
1047
+
1048
+ @property
1049
+ @pulumi.getter(name="freeformTags")
1050
+ def freeform_tags(self) -> Mapping[str, str]:
1051
+ """
1052
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1053
+ """
1054
+ return pulumi.get(self, "freeform_tags")
1055
+
1056
+ @property
1057
+ @pulumi.getter
1058
+ def id(self) -> str:
1059
+ """
1060
+ The OCID of the domain governance entity.
1061
+ """
1062
+ return pulumi.get(self, "id")
1063
+
1064
+ @property
1065
+ @pulumi.getter(name="isGovernanceEnabled")
1066
+ def is_governance_enabled(self) -> bool:
1067
+ """
1068
+ Indicates whether governance is enabled for this domain.
1069
+ """
1070
+ return pulumi.get(self, "is_governance_enabled")
1071
+
1072
+ @property
1073
+ @pulumi.getter(name="onsSubscriptionId")
1074
+ def ons_subscription_id(self) -> str:
1075
+ """
1076
+ The ONS subscription associated with this domain governance entity.
1077
+ """
1078
+ return pulumi.get(self, "ons_subscription_id")
1079
+
1080
+ @property
1081
+ @pulumi.getter(name="onsTopicId")
1082
+ def ons_topic_id(self) -> str:
1083
+ """
1084
+ The ONS topic associated with this domain governance entity.
1085
+ """
1086
+ return pulumi.get(self, "ons_topic_id")
1087
+
1088
+ @property
1089
+ @pulumi.getter(name="ownerId")
1090
+ def owner_id(self) -> str:
1091
+ """
1092
+ The OCID of the tenancy that owns this domain governance entity.
1093
+ """
1094
+ return pulumi.get(self, "owner_id")
1095
+
1096
+ @property
1097
+ @pulumi.getter
1098
+ def state(self) -> str:
1099
+ """
1100
+ The lifecycle state of the resource.
1101
+ """
1102
+ return pulumi.get(self, "state")
1103
+
1104
+ @property
1105
+ @pulumi.getter(name="subscriptionEmail")
1106
+ def subscription_email(self) -> str:
1107
+ """
1108
+ Email address to be used to notify the user, and that the ONS subscription will be created with.
1109
+ """
1110
+ return pulumi.get(self, "subscription_email")
1111
+
1112
+ @property
1113
+ @pulumi.getter(name="systemTags")
1114
+ def system_tags(self) -> Mapping[str, str]:
1115
+ """
1116
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1117
+ """
1118
+ return pulumi.get(self, "system_tags")
1119
+
1120
+ @property
1121
+ @pulumi.getter(name="timeCreated")
1122
+ def time_created(self) -> str:
1123
+ """
1124
+ Date-time when this domain governance was created. An RFC 3339-formatted date and time string.
1125
+ """
1126
+ return pulumi.get(self, "time_created")
1127
+
1128
+ @property
1129
+ @pulumi.getter(name="timeUpdated")
1130
+ def time_updated(self) -> str:
1131
+ """
1132
+ Date-time when this domain governance was last updated. An RFC 3339-formatted date and time string.
1133
+ """
1134
+ return pulumi.get(self, "time_updated")
1135
+
1136
+
1137
+ @pulumi.output_type
1138
+ class GetDomainGovernancesFilterResult(dict):
1139
+ def __init__(__self__, *,
1140
+ name: str,
1141
+ values: Sequence[str],
1142
+ regex: Optional[bool] = None):
1143
+ """
1144
+ :param str name: A filter to return only resources that exactly match the name given.
1145
+ """
1146
+ pulumi.set(__self__, "name", name)
1147
+ pulumi.set(__self__, "values", values)
1148
+ if regex is not None:
1149
+ pulumi.set(__self__, "regex", regex)
1150
+
1151
+ @property
1152
+ @pulumi.getter
1153
+ def name(self) -> str:
1154
+ """
1155
+ A filter to return only resources that exactly match the name given.
1156
+ """
1157
+ return pulumi.get(self, "name")
1158
+
1159
+ @property
1160
+ @pulumi.getter
1161
+ def values(self) -> Sequence[str]:
1162
+ return pulumi.get(self, "values")
1163
+
1164
+ @property
1165
+ @pulumi.getter
1166
+ def regex(self) -> Optional[bool]:
1167
+ return pulumi.get(self, "regex")
1168
+
1169
+
1170
+ @pulumi.output_type
1171
+ class GetDomainsDomainCollectionResult(dict):
1172
+ def __init__(__self__, *,
1173
+ items: Sequence['outputs.GetDomainsDomainCollectionItemResult']):
1174
+ pulumi.set(__self__, "items", items)
1175
+
1176
+ @property
1177
+ @pulumi.getter
1178
+ def items(self) -> Sequence['outputs.GetDomainsDomainCollectionItemResult']:
1179
+ return pulumi.get(self, "items")
1180
+
1181
+
1182
+ @pulumi.output_type
1183
+ class GetDomainsDomainCollectionItemResult(dict):
1184
+ def __init__(__self__, *,
1185
+ compartment_id: str,
1186
+ defined_tags: Mapping[str, str],
1187
+ domain_name: str,
1188
+ freeform_tags: Mapping[str, str],
1189
+ id: str,
1190
+ is_governance_enabled: bool,
1191
+ owner_id: str,
1192
+ state: str,
1193
+ status: str,
1194
+ subscription_email: str,
1195
+ system_tags: Mapping[str, str],
1196
+ time_created: str,
1197
+ time_updated: str,
1198
+ txt_record: str):
1199
+ """
1200
+ :param str compartment_id: The ID of the compartment in which to list resources.
1201
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
1202
+ :param str domain_name: The domain name.
1203
+ :param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1204
+ :param str id: The OCID of the domain.
1205
+ :param str owner_id: The OCID of the tenancy that has started the registration process for this domain.
1206
+ :param str state: The lifecycle state of the resource.
1207
+ :param str status: The status of the domain.
1208
+ :param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1209
+ :param str time_created: Date-time when this domain was created. An RFC 3339-formatted date and time string.
1210
+ :param str time_updated: Date-time when this domain was last updated. An RFC 3339-formatted date and time string.
1211
+ :param str txt_record: The code that the owner of the domain will need to add as a TXT record to their domain.
1212
+ """
1213
+ pulumi.set(__self__, "compartment_id", compartment_id)
1214
+ pulumi.set(__self__, "defined_tags", defined_tags)
1215
+ pulumi.set(__self__, "domain_name", domain_name)
1216
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
1217
+ pulumi.set(__self__, "id", id)
1218
+ pulumi.set(__self__, "is_governance_enabled", is_governance_enabled)
1219
+ pulumi.set(__self__, "owner_id", owner_id)
1220
+ pulumi.set(__self__, "state", state)
1221
+ pulumi.set(__self__, "status", status)
1222
+ pulumi.set(__self__, "subscription_email", subscription_email)
1223
+ pulumi.set(__self__, "system_tags", system_tags)
1224
+ pulumi.set(__self__, "time_created", time_created)
1225
+ pulumi.set(__self__, "time_updated", time_updated)
1226
+ pulumi.set(__self__, "txt_record", txt_record)
1227
+
1228
+ @property
1229
+ @pulumi.getter(name="compartmentId")
1230
+ def compartment_id(self) -> str:
1231
+ """
1232
+ The ID of the compartment in which to list resources.
1233
+ """
1234
+ return pulumi.get(self, "compartment_id")
1235
+
1236
+ @property
1237
+ @pulumi.getter(name="definedTags")
1238
+ def defined_tags(self) -> Mapping[str, str]:
1239
+ """
1240
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
1241
+ """
1242
+ return pulumi.get(self, "defined_tags")
1243
+
1244
+ @property
1245
+ @pulumi.getter(name="domainName")
1246
+ def domain_name(self) -> str:
1247
+ """
1248
+ The domain name.
1249
+ """
1250
+ return pulumi.get(self, "domain_name")
1251
+
1252
+ @property
1253
+ @pulumi.getter(name="freeformTags")
1254
+ def freeform_tags(self) -> Mapping[str, str]:
1255
+ """
1256
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1257
+ """
1258
+ return pulumi.get(self, "freeform_tags")
1259
+
1260
+ @property
1261
+ @pulumi.getter
1262
+ def id(self) -> str:
1263
+ """
1264
+ The OCID of the domain.
1265
+ """
1266
+ return pulumi.get(self, "id")
1267
+
1268
+ @property
1269
+ @pulumi.getter(name="isGovernanceEnabled")
1270
+ def is_governance_enabled(self) -> bool:
1271
+ return pulumi.get(self, "is_governance_enabled")
1272
+
1273
+ @property
1274
+ @pulumi.getter(name="ownerId")
1275
+ def owner_id(self) -> str:
1276
+ """
1277
+ The OCID of the tenancy that has started the registration process for this domain.
1278
+ """
1279
+ return pulumi.get(self, "owner_id")
1280
+
1281
+ @property
1282
+ @pulumi.getter
1283
+ def state(self) -> str:
1284
+ """
1285
+ The lifecycle state of the resource.
1286
+ """
1287
+ return pulumi.get(self, "state")
1288
+
1289
+ @property
1290
+ @pulumi.getter
1291
+ def status(self) -> str:
1292
+ """
1293
+ The status of the domain.
1294
+ """
1295
+ return pulumi.get(self, "status")
1296
+
1297
+ @property
1298
+ @pulumi.getter(name="subscriptionEmail")
1299
+ def subscription_email(self) -> str:
1300
+ return pulumi.get(self, "subscription_email")
1301
+
1302
+ @property
1303
+ @pulumi.getter(name="systemTags")
1304
+ def system_tags(self) -> Mapping[str, str]:
1305
+ """
1306
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1307
+ """
1308
+ return pulumi.get(self, "system_tags")
1309
+
1310
+ @property
1311
+ @pulumi.getter(name="timeCreated")
1312
+ def time_created(self) -> str:
1313
+ """
1314
+ Date-time when this domain was created. An RFC 3339-formatted date and time string.
1315
+ """
1316
+ return pulumi.get(self, "time_created")
1317
+
1318
+ @property
1319
+ @pulumi.getter(name="timeUpdated")
1320
+ def time_updated(self) -> str:
1321
+ """
1322
+ Date-time when this domain was last updated. An RFC 3339-formatted date and time string.
1323
+ """
1324
+ return pulumi.get(self, "time_updated")
1325
+
1326
+ @property
1327
+ @pulumi.getter(name="txtRecord")
1328
+ def txt_record(self) -> str:
1329
+ """
1330
+ The code that the owner of the domain will need to add as a TXT record to their domain.
1331
+ """
1332
+ return pulumi.get(self, "txt_record")
1333
+
1334
+
1335
+ @pulumi.output_type
1336
+ class GetDomainsFilterResult(dict):
1337
+ def __init__(__self__, *,
1338
+ name: str,
1339
+ values: Sequence[str],
1340
+ regex: Optional[bool] = None):
1341
+ """
1342
+ :param str name: A filter to return only resources that exactly match the name given.
1343
+ """
1344
+ pulumi.set(__self__, "name", name)
1345
+ pulumi.set(__self__, "values", values)
1346
+ if regex is not None:
1347
+ pulumi.set(__self__, "regex", regex)
1348
+
1349
+ @property
1350
+ @pulumi.getter
1351
+ def name(self) -> str:
1352
+ """
1353
+ A filter to return only resources that exactly match the name given.
1354
+ """
1355
+ return pulumi.get(self, "name")
1356
+
1357
+ @property
1358
+ @pulumi.getter
1359
+ def values(self) -> Sequence[str]:
1360
+ return pulumi.get(self, "values")
1361
+
1362
+ @property
1363
+ @pulumi.getter
1364
+ def regex(self) -> Optional[bool]:
1365
+ return pulumi.get(self, "regex")
1366
+
1367
+
1368
+ @pulumi.output_type
1369
+ class GetLinksFilterResult(dict):
1370
+ def __init__(__self__, *,
1371
+ name: str,
1372
+ values: Sequence[str],
1373
+ regex: Optional[bool] = None):
1374
+ pulumi.set(__self__, "name", name)
1375
+ pulumi.set(__self__, "values", values)
1376
+ if regex is not None:
1377
+ pulumi.set(__self__, "regex", regex)
1378
+
1379
+ @property
1380
+ @pulumi.getter
1381
+ def name(self) -> str:
1382
+ return pulumi.get(self, "name")
1383
+
1384
+ @property
1385
+ @pulumi.getter
1386
+ def values(self) -> Sequence[str]:
1387
+ return pulumi.get(self, "values")
1388
+
1389
+ @property
1390
+ @pulumi.getter
1391
+ def regex(self) -> Optional[bool]:
1392
+ return pulumi.get(self, "regex")
1393
+
1394
+
1395
+ @pulumi.output_type
1396
+ class GetLinksLinkCollectionResult(dict):
1397
+ def __init__(__self__, *,
1398
+ items: Sequence['outputs.GetLinksLinkCollectionItemResult']):
1399
+ pulumi.set(__self__, "items", items)
1400
+
1401
+ @property
1402
+ @pulumi.getter
1403
+ def items(self) -> Sequence['outputs.GetLinksLinkCollectionItemResult']:
1404
+ return pulumi.get(self, "items")
1405
+
1406
+
1407
+ @pulumi.output_type
1408
+ class GetLinksLinkCollectionItemResult(dict):
1409
+ def __init__(__self__, *,
1410
+ child_tenancy_id: str,
1411
+ id: str,
1412
+ parent_tenancy_id: str,
1413
+ state: str,
1414
+ time_created: str,
1415
+ time_terminated: str,
1416
+ time_updated: str):
1417
+ """
1418
+ :param str child_tenancy_id: The ID of the child tenancy this link is associated with.
1419
+ :param str id: OCID of the link.
1420
+ :param str parent_tenancy_id: The ID of the parent tenancy this link is associated with.
1421
+ :param str state: The lifecycle state of the resource.
1422
+ :param str time_created: Date-time when this link was created.
1423
+ :param str time_terminated: Date-time when this link was terminated.
1424
+ :param str time_updated: Date-time when this link was last updated.
1425
+ """
1426
+ pulumi.set(__self__, "child_tenancy_id", child_tenancy_id)
1427
+ pulumi.set(__self__, "id", id)
1428
+ pulumi.set(__self__, "parent_tenancy_id", parent_tenancy_id)
1429
+ pulumi.set(__self__, "state", state)
1430
+ pulumi.set(__self__, "time_created", time_created)
1431
+ pulumi.set(__self__, "time_terminated", time_terminated)
1432
+ pulumi.set(__self__, "time_updated", time_updated)
1433
+
1434
+ @property
1435
+ @pulumi.getter(name="childTenancyId")
1436
+ def child_tenancy_id(self) -> str:
1437
+ """
1438
+ The ID of the child tenancy this link is associated with.
1439
+ """
1440
+ return pulumi.get(self, "child_tenancy_id")
1441
+
1442
+ @property
1443
+ @pulumi.getter
1444
+ def id(self) -> str:
1445
+ """
1446
+ OCID of the link.
1447
+ """
1448
+ return pulumi.get(self, "id")
1449
+
1450
+ @property
1451
+ @pulumi.getter(name="parentTenancyId")
1452
+ def parent_tenancy_id(self) -> str:
1453
+ """
1454
+ The ID of the parent tenancy this link is associated with.
1455
+ """
1456
+ return pulumi.get(self, "parent_tenancy_id")
1457
+
1458
+ @property
1459
+ @pulumi.getter
1460
+ def state(self) -> str:
1461
+ """
1462
+ The lifecycle state of the resource.
1463
+ """
1464
+ return pulumi.get(self, "state")
1465
+
1466
+ @property
1467
+ @pulumi.getter(name="timeCreated")
1468
+ def time_created(self) -> str:
1469
+ """
1470
+ Date-time when this link was created.
1471
+ """
1472
+ return pulumi.get(self, "time_created")
1473
+
1474
+ @property
1475
+ @pulumi.getter(name="timeTerminated")
1476
+ def time_terminated(self) -> str:
1477
+ """
1478
+ Date-time when this link was terminated.
1479
+ """
1480
+ return pulumi.get(self, "time_terminated")
1481
+
1482
+ @property
1483
+ @pulumi.getter(name="timeUpdated")
1484
+ def time_updated(self) -> str:
1485
+ """
1486
+ Date-time when this link was last updated.
1487
+ """
1488
+ return pulumi.get(self, "time_updated")
1489
+
1490
+
1491
+ @pulumi.output_type
1492
+ class GetOrganizationTenanciesFilterResult(dict):
1493
+ def __init__(__self__, *,
1494
+ name: str,
1495
+ values: Sequence[str],
1496
+ regex: Optional[bool] = None):
1497
+ """
1498
+ :param str name: Name of the tenancy.
1499
+ """
1500
+ pulumi.set(__self__, "name", name)
1501
+ pulumi.set(__self__, "values", values)
1502
+ if regex is not None:
1503
+ pulumi.set(__self__, "regex", regex)
1504
+
1505
+ @property
1506
+ @pulumi.getter
1507
+ def name(self) -> str:
1508
+ """
1509
+ Name of the tenancy.
1510
+ """
1511
+ return pulumi.get(self, "name")
1512
+
1513
+ @property
1514
+ @pulumi.getter
1515
+ def values(self) -> Sequence[str]:
1516
+ return pulumi.get(self, "values")
1517
+
1518
+ @property
1519
+ @pulumi.getter
1520
+ def regex(self) -> Optional[bool]:
1521
+ return pulumi.get(self, "regex")
1522
+
1523
+
1524
+ @pulumi.output_type
1525
+ class GetOrganizationTenanciesOrganizationTenancyCollectionResult(dict):
1526
+ def __init__(__self__, *,
1527
+ items: Sequence['outputs.GetOrganizationTenanciesOrganizationTenancyCollectionItemResult']):
1528
+ pulumi.set(__self__, "items", items)
1529
+
1530
+ @property
1531
+ @pulumi.getter
1532
+ def items(self) -> Sequence['outputs.GetOrganizationTenanciesOrganizationTenancyCollectionItemResult']:
1533
+ return pulumi.get(self, "items")
1534
+
1535
+
1536
+ @pulumi.output_type
1537
+ class GetOrganizationTenanciesOrganizationTenancyCollectionItemResult(dict):
1538
+ def __init__(__self__, *,
1539
+ governance_status: str,
1540
+ is_approved_for_transfer: bool,
1541
+ name: str,
1542
+ role: str,
1543
+ state: str,
1544
+ tenancy_id: str,
1545
+ time_joined: str,
1546
+ time_left: str):
1547
+ """
1548
+ :param str governance_status: The governance status of the tenancy.
1549
+ :param bool is_approved_for_transfer: Parameter to indicate the tenancy is approved for transfer to another organization.
1550
+ :param str name: Name of the tenancy.
1551
+ :param str role: Role of the organization tenancy.
1552
+ :param str state: Lifecycle state of the organization tenancy.
1553
+ :param str tenancy_id: OCID of the tenancy.
1554
+ :param str time_joined: Date and time when the tenancy joined the organization.
1555
+ :param str time_left: Date and time when the tenancy left the organization.
1556
+ """
1557
+ pulumi.set(__self__, "governance_status", governance_status)
1558
+ pulumi.set(__self__, "is_approved_for_transfer", is_approved_for_transfer)
1559
+ pulumi.set(__self__, "name", name)
1560
+ pulumi.set(__self__, "role", role)
1561
+ pulumi.set(__self__, "state", state)
1562
+ pulumi.set(__self__, "tenancy_id", tenancy_id)
1563
+ pulumi.set(__self__, "time_joined", time_joined)
1564
+ pulumi.set(__self__, "time_left", time_left)
1565
+
1566
+ @property
1567
+ @pulumi.getter(name="governanceStatus")
1568
+ def governance_status(self) -> str:
1569
+ """
1570
+ The governance status of the tenancy.
1571
+ """
1572
+ return pulumi.get(self, "governance_status")
1573
+
1574
+ @property
1575
+ @pulumi.getter(name="isApprovedForTransfer")
1576
+ def is_approved_for_transfer(self) -> bool:
1577
+ """
1578
+ Parameter to indicate the tenancy is approved for transfer to another organization.
1579
+ """
1580
+ return pulumi.get(self, "is_approved_for_transfer")
1581
+
1582
+ @property
1583
+ @pulumi.getter
1584
+ def name(self) -> str:
1585
+ """
1586
+ Name of the tenancy.
1587
+ """
1588
+ return pulumi.get(self, "name")
1589
+
1590
+ @property
1591
+ @pulumi.getter
1592
+ def role(self) -> str:
1593
+ """
1594
+ Role of the organization tenancy.
1595
+ """
1596
+ return pulumi.get(self, "role")
1597
+
1598
+ @property
1599
+ @pulumi.getter
1600
+ def state(self) -> str:
1601
+ """
1602
+ Lifecycle state of the organization tenancy.
1603
+ """
1604
+ return pulumi.get(self, "state")
1605
+
1606
+ @property
1607
+ @pulumi.getter(name="tenancyId")
1608
+ def tenancy_id(self) -> str:
1609
+ """
1610
+ OCID of the tenancy.
1611
+ """
1612
+ return pulumi.get(self, "tenancy_id")
1613
+
1614
+ @property
1615
+ @pulumi.getter(name="timeJoined")
1616
+ def time_joined(self) -> str:
1617
+ """
1618
+ Date and time when the tenancy joined the organization.
1619
+ """
1620
+ return pulumi.get(self, "time_joined")
1621
+
1622
+ @property
1623
+ @pulumi.getter(name="timeLeft")
1624
+ def time_left(self) -> str:
1625
+ """
1626
+ Date and time when the tenancy left the organization.
1627
+ """
1628
+ return pulumi.get(self, "time_left")
1629
+
1630
+
1631
+ @pulumi.output_type
1632
+ class GetOrganizationsFilterResult(dict):
1633
+ def __init__(__self__, *,
1634
+ name: str,
1635
+ values: Sequence[str],
1636
+ regex: Optional[bool] = None):
1637
+ pulumi.set(__self__, "name", name)
1638
+ pulumi.set(__self__, "values", values)
1639
+ if regex is not None:
1640
+ pulumi.set(__self__, "regex", regex)
1641
+
1642
+ @property
1643
+ @pulumi.getter
1644
+ def name(self) -> str:
1645
+ return pulumi.get(self, "name")
1646
+
1647
+ @property
1648
+ @pulumi.getter
1649
+ def values(self) -> Sequence[str]:
1650
+ return pulumi.get(self, "values")
1651
+
1652
+ @property
1653
+ @pulumi.getter
1654
+ def regex(self) -> Optional[bool]:
1655
+ return pulumi.get(self, "regex")
1656
+
1657
+
1658
+ @pulumi.output_type
1659
+ class GetOrganizationsOrganizationCollectionResult(dict):
1660
+ def __init__(__self__, *,
1661
+ items: Sequence['outputs.GetOrganizationsOrganizationCollectionItemResult']):
1662
+ pulumi.set(__self__, "items", items)
1663
+
1664
+ @property
1665
+ @pulumi.getter
1666
+ def items(self) -> Sequence['outputs.GetOrganizationsOrganizationCollectionItemResult']:
1667
+ return pulumi.get(self, "items")
1668
+
1669
+
1670
+ @pulumi.output_type
1671
+ class GetOrganizationsOrganizationCollectionItemResult(dict):
1672
+ def __init__(__self__, *,
1673
+ compartment_id: str,
1674
+ default_ucm_subscription_id: str,
1675
+ display_name: str,
1676
+ id: str,
1677
+ parent_name: str,
1678
+ state: str,
1679
+ time_created: str,
1680
+ time_updated: str):
1681
+ """
1682
+ :param str compartment_id: The ID of the compartment in which to list resources.
1683
+ :param str default_ucm_subscription_id: OCID of the default Universal Credits Model subscription. Any tenancy joining the organization will automatically get assigned this subscription, if a subscription is not explictly assigned.
1684
+ :param str display_name: A display name for the organization. Avoid entering confidential information.
1685
+ :param str id: OCID of the organization.
1686
+ :param str parent_name: The name of the tenancy that is the organization parent.
1687
+ :param str state: Lifecycle state of the organization.
1688
+ :param str time_created: Date and time when the organization was created.
1689
+ :param str time_updated: Date and time when the organization was last updated.
1690
+ """
1691
+ pulumi.set(__self__, "compartment_id", compartment_id)
1692
+ pulumi.set(__self__, "default_ucm_subscription_id", default_ucm_subscription_id)
1693
+ pulumi.set(__self__, "display_name", display_name)
1694
+ pulumi.set(__self__, "id", id)
1695
+ pulumi.set(__self__, "parent_name", parent_name)
1696
+ pulumi.set(__self__, "state", state)
1697
+ pulumi.set(__self__, "time_created", time_created)
1698
+ pulumi.set(__self__, "time_updated", time_updated)
1699
+
1700
+ @property
1701
+ @pulumi.getter(name="compartmentId")
1702
+ def compartment_id(self) -> str:
1703
+ """
1704
+ The ID of the compartment in which to list resources.
1705
+ """
1706
+ return pulumi.get(self, "compartment_id")
1707
+
1708
+ @property
1709
+ @pulumi.getter(name="defaultUcmSubscriptionId")
1710
+ def default_ucm_subscription_id(self) -> str:
1711
+ """
1712
+ OCID of the default Universal Credits Model subscription. Any tenancy joining the organization will automatically get assigned this subscription, if a subscription is not explictly assigned.
1713
+ """
1714
+ return pulumi.get(self, "default_ucm_subscription_id")
1715
+
1716
+ @property
1717
+ @pulumi.getter(name="displayName")
1718
+ def display_name(self) -> str:
1719
+ """
1720
+ A display name for the organization. Avoid entering confidential information.
1721
+ """
1722
+ return pulumi.get(self, "display_name")
1723
+
1724
+ @property
1725
+ @pulumi.getter
1726
+ def id(self) -> str:
1727
+ """
1728
+ OCID of the organization.
1729
+ """
1730
+ return pulumi.get(self, "id")
1731
+
1732
+ @property
1733
+ @pulumi.getter(name="parentName")
1734
+ def parent_name(self) -> str:
1735
+ """
1736
+ The name of the tenancy that is the organization parent.
1737
+ """
1738
+ return pulumi.get(self, "parent_name")
1739
+
1740
+ @property
1741
+ @pulumi.getter
1742
+ def state(self) -> str:
1743
+ """
1744
+ Lifecycle state of the organization.
1745
+ """
1746
+ return pulumi.get(self, "state")
1747
+
1748
+ @property
1749
+ @pulumi.getter(name="timeCreated")
1750
+ def time_created(self) -> str:
1751
+ """
1752
+ Date and time when the organization was created.
1753
+ """
1754
+ return pulumi.get(self, "time_created")
1755
+
1756
+ @property
1757
+ @pulumi.getter(name="timeUpdated")
1758
+ def time_updated(self) -> str:
1759
+ """
1760
+ Date and time when the organization was last updated.
1761
+ """
1762
+ return pulumi.get(self, "time_updated")
1763
+
1764
+
1765
+ @pulumi.output_type
1766
+ class GetRecipientInvitationsFilterResult(dict):
1767
+ def __init__(__self__, *,
1768
+ name: str,
1769
+ values: Sequence[str],
1770
+ regex: Optional[bool] = None):
1771
+ pulumi.set(__self__, "name", name)
1772
+ pulumi.set(__self__, "values", values)
1773
+ if regex is not None:
1774
+ pulumi.set(__self__, "regex", regex)
1775
+
1776
+ @property
1777
+ @pulumi.getter
1778
+ def name(self) -> str:
1779
+ return pulumi.get(self, "name")
1780
+
1781
+ @property
1782
+ @pulumi.getter
1783
+ def values(self) -> Sequence[str]:
1784
+ return pulumi.get(self, "values")
1785
+
1786
+ @property
1787
+ @pulumi.getter
1788
+ def regex(self) -> Optional[bool]:
1789
+ return pulumi.get(self, "regex")
1790
+
1791
+
1792
+ @pulumi.output_type
1793
+ class GetRecipientInvitationsRecipientInvitationCollectionResult(dict):
1794
+ def __init__(__self__, *,
1795
+ items: Sequence['outputs.GetRecipientInvitationsRecipientInvitationCollectionItemResult']):
1796
+ pulumi.set(__self__, "items", items)
1797
+
1798
+ @property
1799
+ @pulumi.getter
1800
+ def items(self) -> Sequence['outputs.GetRecipientInvitationsRecipientInvitationCollectionItemResult']:
1801
+ return pulumi.get(self, "items")
1802
+
1803
+
1804
+ @pulumi.output_type
1805
+ class GetRecipientInvitationsRecipientInvitationCollectionItemResult(dict):
1806
+ def __init__(__self__, *,
1807
+ compartment_id: str,
1808
+ defined_tags: Mapping[str, str],
1809
+ display_name: str,
1810
+ freeform_tags: Mapping[str, str],
1811
+ id: str,
1812
+ recipient_email_address: str,
1813
+ sender_invitation_id: str,
1814
+ sender_tenancy_id: str,
1815
+ state: str,
1816
+ status: str,
1817
+ subjects: Sequence[str],
1818
+ system_tags: Mapping[str, str],
1819
+ time_created: str,
1820
+ time_updated: str):
1821
+ """
1822
+ :param str compartment_id: The ID of the compartment in which to list resources.
1823
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
1824
+ :param str display_name: A user-created name to describe the invitation. Avoid entering confidential information.
1825
+ :param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1826
+ :param str id: OCID of the recipient invitation.
1827
+ :param str recipient_email_address: Email address of the recipient.
1828
+ :param str sender_invitation_id: OCID of the corresponding sender invitation.
1829
+ :param str sender_tenancy_id: The tenancy that sent the invitation.
1830
+ :param str state: The lifecycle state of the resource.
1831
+ :param str status: The status of the recipient invitation.
1832
+ :param Sequence[str] subjects: The list of subjects the invitation contains.
1833
+ :param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1834
+ :param str time_created: Date and time when the recipient invitation was created.
1835
+ :param str time_updated: Date and time when the recipient invitation was last updated.
1836
+ """
1837
+ pulumi.set(__self__, "compartment_id", compartment_id)
1838
+ pulumi.set(__self__, "defined_tags", defined_tags)
1839
+ pulumi.set(__self__, "display_name", display_name)
1840
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
1841
+ pulumi.set(__self__, "id", id)
1842
+ pulumi.set(__self__, "recipient_email_address", recipient_email_address)
1843
+ pulumi.set(__self__, "sender_invitation_id", sender_invitation_id)
1844
+ pulumi.set(__self__, "sender_tenancy_id", sender_tenancy_id)
1845
+ pulumi.set(__self__, "state", state)
1846
+ pulumi.set(__self__, "status", status)
1847
+ pulumi.set(__self__, "subjects", subjects)
1848
+ pulumi.set(__self__, "system_tags", system_tags)
1849
+ pulumi.set(__self__, "time_created", time_created)
1850
+ pulumi.set(__self__, "time_updated", time_updated)
1851
+
1852
+ @property
1853
+ @pulumi.getter(name="compartmentId")
1854
+ def compartment_id(self) -> str:
1855
+ """
1856
+ The ID of the compartment in which to list resources.
1857
+ """
1858
+ return pulumi.get(self, "compartment_id")
1859
+
1860
+ @property
1861
+ @pulumi.getter(name="definedTags")
1862
+ def defined_tags(self) -> Mapping[str, str]:
1863
+ """
1864
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
1865
+ """
1866
+ return pulumi.get(self, "defined_tags")
1867
+
1868
+ @property
1869
+ @pulumi.getter(name="displayName")
1870
+ def display_name(self) -> str:
1871
+ """
1872
+ A user-created name to describe the invitation. Avoid entering confidential information.
1873
+ """
1874
+ return pulumi.get(self, "display_name")
1875
+
1876
+ @property
1877
+ @pulumi.getter(name="freeformTags")
1878
+ def freeform_tags(self) -> Mapping[str, str]:
1879
+ """
1880
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1881
+ """
1882
+ return pulumi.get(self, "freeform_tags")
1883
+
1884
+ @property
1885
+ @pulumi.getter
1886
+ def id(self) -> str:
1887
+ """
1888
+ OCID of the recipient invitation.
1889
+ """
1890
+ return pulumi.get(self, "id")
1891
+
1892
+ @property
1893
+ @pulumi.getter(name="recipientEmailAddress")
1894
+ def recipient_email_address(self) -> str:
1895
+ """
1896
+ Email address of the recipient.
1897
+ """
1898
+ return pulumi.get(self, "recipient_email_address")
1899
+
1900
+ @property
1901
+ @pulumi.getter(name="senderInvitationId")
1902
+ def sender_invitation_id(self) -> str:
1903
+ """
1904
+ OCID of the corresponding sender invitation.
1905
+ """
1906
+ return pulumi.get(self, "sender_invitation_id")
1907
+
1908
+ @property
1909
+ @pulumi.getter(name="senderTenancyId")
1910
+ def sender_tenancy_id(self) -> str:
1911
+ """
1912
+ The tenancy that sent the invitation.
1913
+ """
1914
+ return pulumi.get(self, "sender_tenancy_id")
1915
+
1916
+ @property
1917
+ @pulumi.getter
1918
+ def state(self) -> str:
1919
+ """
1920
+ The lifecycle state of the resource.
1921
+ """
1922
+ return pulumi.get(self, "state")
1923
+
1924
+ @property
1925
+ @pulumi.getter
1926
+ def status(self) -> str:
1927
+ """
1928
+ The status of the recipient invitation.
1929
+ """
1930
+ return pulumi.get(self, "status")
1931
+
1932
+ @property
1933
+ @pulumi.getter
1934
+ def subjects(self) -> Sequence[str]:
1935
+ """
1936
+ The list of subjects the invitation contains.
1937
+ """
1938
+ return pulumi.get(self, "subjects")
1939
+
1940
+ @property
1941
+ @pulumi.getter(name="systemTags")
1942
+ def system_tags(self) -> Mapping[str, str]:
1943
+ """
1944
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1945
+ """
1946
+ return pulumi.get(self, "system_tags")
1947
+
1948
+ @property
1949
+ @pulumi.getter(name="timeCreated")
1950
+ def time_created(self) -> str:
1951
+ """
1952
+ Date and time when the recipient invitation was created.
1953
+ """
1954
+ return pulumi.get(self, "time_created")
1955
+
1956
+ @property
1957
+ @pulumi.getter(name="timeUpdated")
1958
+ def time_updated(self) -> str:
1959
+ """
1960
+ Date and time when the recipient invitation was last updated.
1961
+ """
1962
+ return pulumi.get(self, "time_updated")
1963
+
1964
+
1965
+ @pulumi.output_type
1966
+ class GetSenderInvitationsFilterResult(dict):
1967
+ def __init__(__self__, *,
1968
+ name: str,
1969
+ values: Sequence[str],
1970
+ regex: Optional[bool] = None):
1971
+ pulumi.set(__self__, "name", name)
1972
+ pulumi.set(__self__, "values", values)
1973
+ if regex is not None:
1974
+ pulumi.set(__self__, "regex", regex)
1975
+
1976
+ @property
1977
+ @pulumi.getter
1978
+ def name(self) -> str:
1979
+ return pulumi.get(self, "name")
1980
+
1981
+ @property
1982
+ @pulumi.getter
1983
+ def values(self) -> Sequence[str]:
1984
+ return pulumi.get(self, "values")
1985
+
1986
+ @property
1987
+ @pulumi.getter
1988
+ def regex(self) -> Optional[bool]:
1989
+ return pulumi.get(self, "regex")
1990
+
1991
+
1992
+ @pulumi.output_type
1993
+ class GetSenderInvitationsSenderInvitationCollectionResult(dict):
1994
+ def __init__(__self__, *,
1995
+ items: Sequence['outputs.GetSenderInvitationsSenderInvitationCollectionItemResult']):
1996
+ pulumi.set(__self__, "items", items)
1997
+
1998
+ @property
1999
+ @pulumi.getter
2000
+ def items(self) -> Sequence['outputs.GetSenderInvitationsSenderInvitationCollectionItemResult']:
2001
+ return pulumi.get(self, "items")
2002
+
2003
+
2004
+ @pulumi.output_type
2005
+ class GetSenderInvitationsSenderInvitationCollectionItemResult(dict):
2006
+ def __init__(__self__, *,
2007
+ compartment_id: str,
2008
+ defined_tags: Mapping[str, str],
2009
+ display_name: str,
2010
+ freeform_tags: Mapping[str, str],
2011
+ id: str,
2012
+ recipient_email_address: str,
2013
+ recipient_invitation_id: str,
2014
+ recipient_tenancy_id: str,
2015
+ state: str,
2016
+ status: str,
2017
+ subjects: Sequence[str],
2018
+ system_tags: Mapping[str, str],
2019
+ time_created: str,
2020
+ time_updated: str):
2021
+ """
2022
+ :param str compartment_id: The ID of the compartment in which to list resources.
2023
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
2024
+ :param str display_name: A filter to return only resources that match the entire display name given.
2025
+ :param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
2026
+ :param str id: OCID of the sender invitation.
2027
+ :param str recipient_email_address: Email address of the recipient.
2028
+ :param str recipient_invitation_id: OCID of the corresponding recipient invitation.
2029
+ :param str recipient_tenancy_id: The tenancy that the invitation is addressed to.
2030
+ :param str state: The lifecycle state of the resource.
2031
+ :param str status: The status of the sender invitation.
2032
+ :param Sequence[str] subjects: The list of subjects the invitation contains.
2033
+ :param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
2034
+ :param str time_created: Date and time when the sender invitation was created.
2035
+ :param str time_updated: Date and time when the sender invitation was last updated.
2036
+ """
2037
+ pulumi.set(__self__, "compartment_id", compartment_id)
2038
+ pulumi.set(__self__, "defined_tags", defined_tags)
2039
+ pulumi.set(__self__, "display_name", display_name)
2040
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
2041
+ pulumi.set(__self__, "id", id)
2042
+ pulumi.set(__self__, "recipient_email_address", recipient_email_address)
2043
+ pulumi.set(__self__, "recipient_invitation_id", recipient_invitation_id)
2044
+ pulumi.set(__self__, "recipient_tenancy_id", recipient_tenancy_id)
2045
+ pulumi.set(__self__, "state", state)
2046
+ pulumi.set(__self__, "status", status)
2047
+ pulumi.set(__self__, "subjects", subjects)
2048
+ pulumi.set(__self__, "system_tags", system_tags)
2049
+ pulumi.set(__self__, "time_created", time_created)
2050
+ pulumi.set(__self__, "time_updated", time_updated)
2051
+
2052
+ @property
2053
+ @pulumi.getter(name="compartmentId")
2054
+ def compartment_id(self) -> str:
2055
+ """
2056
+ The ID of the compartment in which to list resources.
2057
+ """
2058
+ return pulumi.get(self, "compartment_id")
2059
+
2060
+ @property
2061
+ @pulumi.getter(name="definedTags")
2062
+ def defined_tags(self) -> Mapping[str, str]:
2063
+ """
2064
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
2065
+ """
2066
+ return pulumi.get(self, "defined_tags")
2067
+
2068
+ @property
2069
+ @pulumi.getter(name="displayName")
2070
+ def display_name(self) -> str:
2071
+ """
2072
+ A filter to return only resources that match the entire display name given.
2073
+ """
2074
+ return pulumi.get(self, "display_name")
2075
+
2076
+ @property
2077
+ @pulumi.getter(name="freeformTags")
2078
+ def freeform_tags(self) -> Mapping[str, str]:
2079
+ """
2080
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
2081
+ """
2082
+ return pulumi.get(self, "freeform_tags")
2083
+
2084
+ @property
2085
+ @pulumi.getter
2086
+ def id(self) -> str:
2087
+ """
2088
+ OCID of the sender invitation.
2089
+ """
2090
+ return pulumi.get(self, "id")
2091
+
2092
+ @property
2093
+ @pulumi.getter(name="recipientEmailAddress")
2094
+ def recipient_email_address(self) -> str:
2095
+ """
2096
+ Email address of the recipient.
2097
+ """
2098
+ return pulumi.get(self, "recipient_email_address")
2099
+
2100
+ @property
2101
+ @pulumi.getter(name="recipientInvitationId")
2102
+ def recipient_invitation_id(self) -> str:
2103
+ """
2104
+ OCID of the corresponding recipient invitation.
2105
+ """
2106
+ return pulumi.get(self, "recipient_invitation_id")
2107
+
2108
+ @property
2109
+ @pulumi.getter(name="recipientTenancyId")
2110
+ def recipient_tenancy_id(self) -> str:
2111
+ """
2112
+ The tenancy that the invitation is addressed to.
2113
+ """
2114
+ return pulumi.get(self, "recipient_tenancy_id")
2115
+
2116
+ @property
2117
+ @pulumi.getter
2118
+ def state(self) -> str:
2119
+ """
2120
+ The lifecycle state of the resource.
2121
+ """
2122
+ return pulumi.get(self, "state")
2123
+
2124
+ @property
2125
+ @pulumi.getter
2126
+ def status(self) -> str:
2127
+ """
2128
+ The status of the sender invitation.
2129
+ """
2130
+ return pulumi.get(self, "status")
2131
+
2132
+ @property
2133
+ @pulumi.getter
2134
+ def subjects(self) -> Sequence[str]:
2135
+ """
2136
+ The list of subjects the invitation contains.
2137
+ """
2138
+ return pulumi.get(self, "subjects")
2139
+
2140
+ @property
2141
+ @pulumi.getter(name="systemTags")
2142
+ def system_tags(self) -> Mapping[str, str]:
2143
+ """
2144
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
2145
+ """
2146
+ return pulumi.get(self, "system_tags")
2147
+
2148
+ @property
2149
+ @pulumi.getter(name="timeCreated")
2150
+ def time_created(self) -> str:
2151
+ """
2152
+ Date and time when the sender invitation was created.
2153
+ """
2154
+ return pulumi.get(self, "time_created")
2155
+
2156
+ @property
2157
+ @pulumi.getter(name="timeUpdated")
2158
+ def time_updated(self) -> str:
2159
+ """
2160
+ Date and time when the sender invitation was last updated.
2161
+ """
2162
+ return pulumi.get(self, "time_updated")
2163
+
2164
+
2165
+ @pulumi.output_type
2166
+ class GetSubscriptionAvailableRegionsAvailableRegionCollectionResult(dict):
2167
+ def __init__(__self__, *,
2168
+ items: Sequence['outputs.GetSubscriptionAvailableRegionsAvailableRegionCollectionItemResult']):
2169
+ """
2170
+ :param Sequence['GetSubscriptionAvailableRegionsAvailableRegionCollectionItemArgs'] items: Array containing available region items.
2171
+ """
2172
+ pulumi.set(__self__, "items", items)
2173
+
2174
+ @property
2175
+ @pulumi.getter
2176
+ def items(self) -> Sequence['outputs.GetSubscriptionAvailableRegionsAvailableRegionCollectionItemResult']:
2177
+ """
2178
+ Array containing available region items.
2179
+ """
2180
+ return pulumi.get(self, "items")
2181
+
2182
+
2183
+ @pulumi.output_type
2184
+ class GetSubscriptionAvailableRegionsAvailableRegionCollectionItemResult(dict):
2185
+ def __init__(__self__, *,
2186
+ region_name: str,
2187
+ system_tags: Mapping[str, str]):
2188
+ """
2189
+ :param str region_name: Region availability for the subscription.
2190
+ :param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
2191
+ """
2192
+ pulumi.set(__self__, "region_name", region_name)
2193
+ pulumi.set(__self__, "system_tags", system_tags)
2194
+
2195
+ @property
2196
+ @pulumi.getter(name="regionName")
2197
+ def region_name(self) -> str:
2198
+ """
2199
+ Region availability for the subscription.
2200
+ """
2201
+ return pulumi.get(self, "region_name")
2202
+
2203
+ @property
2204
+ @pulumi.getter(name="systemTags")
2205
+ def system_tags(self) -> Mapping[str, str]:
2206
+ """
2207
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
2208
+ """
2209
+ return pulumi.get(self, "system_tags")
2210
+
2211
+
2212
+ @pulumi.output_type
2213
+ class GetSubscriptionAvailableRegionsFilterResult(dict):
2214
+ def __init__(__self__, *,
2215
+ name: str,
2216
+ values: Sequence[str],
2217
+ regex: Optional[bool] = None):
2218
+ pulumi.set(__self__, "name", name)
2219
+ pulumi.set(__self__, "values", values)
2220
+ if regex is not None:
2221
+ pulumi.set(__self__, "regex", regex)
2222
+
2223
+ @property
2224
+ @pulumi.getter
2225
+ def name(self) -> str:
2226
+ return pulumi.get(self, "name")
2227
+
2228
+ @property
2229
+ @pulumi.getter
2230
+ def values(self) -> Sequence[str]:
2231
+ return pulumi.get(self, "values")
2232
+
2233
+ @property
2234
+ @pulumi.getter
2235
+ def regex(self) -> Optional[bool]:
2236
+ return pulumi.get(self, "regex")
2237
+
2238
+
2239
+ @pulumi.output_type
2240
+ class GetSubscriptionLineItemsFilterResult(dict):
2241
+ def __init__(__self__, *,
2242
+ name: str,
2243
+ values: Sequence[str],
2244
+ regex: Optional[bool] = None):
2245
+ pulumi.set(__self__, "name", name)
2246
+ pulumi.set(__self__, "values", values)
2247
+ if regex is not None:
2248
+ pulumi.set(__self__, "regex", regex)
2249
+
2250
+ @property
2251
+ @pulumi.getter
2252
+ def name(self) -> str:
2253
+ return pulumi.get(self, "name")
2254
+
2255
+ @property
2256
+ @pulumi.getter
2257
+ def values(self) -> Sequence[str]:
2258
+ return pulumi.get(self, "values")
2259
+
2260
+ @property
2261
+ @pulumi.getter
2262
+ def regex(self) -> Optional[bool]:
2263
+ return pulumi.get(self, "regex")
2264
+
2265
+
2266
+ @pulumi.output_type
2267
+ class GetSubscriptionLineItemsSubscriptionLineItemCollectionResult(dict):
2268
+ def __init__(__self__, *,
2269
+ items: Sequence['outputs.GetSubscriptionLineItemsSubscriptionLineItemCollectionItemResult']):
2270
+ """
2271
+ :param Sequence['GetSubscriptionLineItemsSubscriptionLineItemCollectionItemArgs'] items: Array containing line item summaries in a subscription.
2272
+ """
2273
+ pulumi.set(__self__, "items", items)
2274
+
2275
+ @property
2276
+ @pulumi.getter
2277
+ def items(self) -> Sequence['outputs.GetSubscriptionLineItemsSubscriptionLineItemCollectionItemResult']:
2278
+ """
2279
+ Array containing line item summaries in a subscription.
2280
+ """
2281
+ return pulumi.get(self, "items")
2282
+
2283
+
2284
+ @pulumi.output_type
2285
+ class GetSubscriptionLineItemsSubscriptionLineItemCollectionItemResult(dict):
2286
+ def __init__(__self__, *,
2287
+ billing_model: str,
2288
+ id: str,
2289
+ product_code: str,
2290
+ quantity: float,
2291
+ system_tags: Mapping[str, str],
2292
+ time_ended: str,
2293
+ time_started: str):
2294
+ """
2295
+ :param str billing_model: Billing model supported by the associated line item.
2296
+ :param str id: Subscription line item identifier.
2297
+ :param str product_code: Product code.
2298
+ :param float quantity: Product number.
2299
+ :param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
2300
+ :param str time_ended: The time the subscription item and associated products should end. An RFC 3339 formatted date and time string.
2301
+ :param str time_started: The time the subscription item and associated products should start. An RFC 3339 formatted date and time string.
2302
+ """
2303
+ pulumi.set(__self__, "billing_model", billing_model)
2304
+ pulumi.set(__self__, "id", id)
2305
+ pulumi.set(__self__, "product_code", product_code)
2306
+ pulumi.set(__self__, "quantity", quantity)
2307
+ pulumi.set(__self__, "system_tags", system_tags)
2308
+ pulumi.set(__self__, "time_ended", time_ended)
2309
+ pulumi.set(__self__, "time_started", time_started)
2310
+
2311
+ @property
2312
+ @pulumi.getter(name="billingModel")
2313
+ def billing_model(self) -> str:
2314
+ """
2315
+ Billing model supported by the associated line item.
2316
+ """
2317
+ return pulumi.get(self, "billing_model")
2318
+
2319
+ @property
2320
+ @pulumi.getter
2321
+ def id(self) -> str:
2322
+ """
2323
+ Subscription line item identifier.
2324
+ """
2325
+ return pulumi.get(self, "id")
2326
+
2327
+ @property
2328
+ @pulumi.getter(name="productCode")
2329
+ def product_code(self) -> str:
2330
+ """
2331
+ Product code.
2332
+ """
2333
+ return pulumi.get(self, "product_code")
2334
+
2335
+ @property
2336
+ @pulumi.getter
2337
+ def quantity(self) -> float:
2338
+ """
2339
+ Product number.
2340
+ """
2341
+ return pulumi.get(self, "quantity")
2342
+
2343
+ @property
2344
+ @pulumi.getter(name="systemTags")
2345
+ def system_tags(self) -> Mapping[str, str]:
2346
+ """
2347
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
2348
+ """
2349
+ return pulumi.get(self, "system_tags")
2350
+
2351
+ @property
2352
+ @pulumi.getter(name="timeEnded")
2353
+ def time_ended(self) -> str:
2354
+ """
2355
+ The time the subscription item and associated products should end. An RFC 3339 formatted date and time string.
2356
+ """
2357
+ return pulumi.get(self, "time_ended")
2358
+
2359
+ @property
2360
+ @pulumi.getter(name="timeStarted")
2361
+ def time_started(self) -> str:
2362
+ """
2363
+ The time the subscription item and associated products should start. An RFC 3339 formatted date and time string.
2364
+ """
2365
+ return pulumi.get(self, "time_started")
2366
+
2367
+
2368
+ @pulumi.output_type
2369
+ class GetSubscriptionMappingsFilterResult(dict):
2370
+ def __init__(__self__, *,
2371
+ name: str,
2372
+ values: Sequence[str],
2373
+ regex: Optional[bool] = None):
2374
+ pulumi.set(__self__, "name", name)
2375
+ pulumi.set(__self__, "values", values)
2376
+ if regex is not None:
2377
+ pulumi.set(__self__, "regex", regex)
2378
+
2379
+ @property
2380
+ @pulumi.getter
2381
+ def name(self) -> str:
2382
+ return pulumi.get(self, "name")
2383
+
2384
+ @property
2385
+ @pulumi.getter
2386
+ def values(self) -> Sequence[str]:
2387
+ return pulumi.get(self, "values")
2388
+
2389
+ @property
2390
+ @pulumi.getter
2391
+ def regex(self) -> Optional[bool]:
2392
+ return pulumi.get(self, "regex")
2393
+
2394
+
2395
+ @pulumi.output_type
2396
+ class GetSubscriptionMappingsSubscriptionMappingCollectionResult(dict):
2397
+ def __init__(__self__, *,
2398
+ items: Sequence['outputs.GetSubscriptionMappingsSubscriptionMappingCollectionItemResult']):
2399
+ pulumi.set(__self__, "items", items)
2400
+
2401
+ @property
2402
+ @pulumi.getter
2403
+ def items(self) -> Sequence['outputs.GetSubscriptionMappingsSubscriptionMappingCollectionItemResult']:
2404
+ return pulumi.get(self, "items")
2405
+
2406
+
2407
+ @pulumi.output_type
2408
+ class GetSubscriptionMappingsSubscriptionMappingCollectionItemResult(dict):
2409
+ def __init__(__self__, *,
2410
+ compartment_id: str,
2411
+ id: str,
2412
+ is_explicitly_assigned: bool,
2413
+ state: str,
2414
+ subscription_id: str,
2415
+ time_created: str,
2416
+ time_terminated: str,
2417
+ time_updated: str):
2418
+ """
2419
+ :param str compartment_id: The ID of the compartment in which to list resources.
2420
+ :param str id: OCID of the mapping between subscription and compartment identified by the tenancy.
2421
+ :param bool is_explicitly_assigned: Denotes if the subscription is explicity assigned to the root compartment or tenancy.
2422
+ :param str state: The lifecycle state of the resource.
2423
+ :param str subscription_id: OCID of the subscription.
2424
+ :param str time_created: Date-time when subscription mapping was created.
2425
+ :param str time_terminated: Date-time when subscription mapping was terminated.
2426
+ :param str time_updated: Date-time when subscription mapping was updated.
2427
+ """
2428
+ pulumi.set(__self__, "compartment_id", compartment_id)
2429
+ pulumi.set(__self__, "id", id)
2430
+ pulumi.set(__self__, "is_explicitly_assigned", is_explicitly_assigned)
2431
+ pulumi.set(__self__, "state", state)
2432
+ pulumi.set(__self__, "subscription_id", subscription_id)
2433
+ pulumi.set(__self__, "time_created", time_created)
2434
+ pulumi.set(__self__, "time_terminated", time_terminated)
2435
+ pulumi.set(__self__, "time_updated", time_updated)
2436
+
2437
+ @property
2438
+ @pulumi.getter(name="compartmentId")
2439
+ def compartment_id(self) -> str:
2440
+ """
2441
+ The ID of the compartment in which to list resources.
2442
+ """
2443
+ return pulumi.get(self, "compartment_id")
2444
+
2445
+ @property
2446
+ @pulumi.getter
2447
+ def id(self) -> str:
2448
+ """
2449
+ OCID of the mapping between subscription and compartment identified by the tenancy.
2450
+ """
2451
+ return pulumi.get(self, "id")
2452
+
2453
+ @property
2454
+ @pulumi.getter(name="isExplicitlyAssigned")
2455
+ def is_explicitly_assigned(self) -> bool:
2456
+ """
2457
+ Denotes if the subscription is explicity assigned to the root compartment or tenancy.
2458
+ """
2459
+ return pulumi.get(self, "is_explicitly_assigned")
2460
+
2461
+ @property
2462
+ @pulumi.getter
2463
+ def state(self) -> str:
2464
+ """
2465
+ The lifecycle state of the resource.
2466
+ """
2467
+ return pulumi.get(self, "state")
2468
+
2469
+ @property
2470
+ @pulumi.getter(name="subscriptionId")
2471
+ def subscription_id(self) -> str:
2472
+ """
2473
+ OCID of the subscription.
2474
+ """
2475
+ return pulumi.get(self, "subscription_id")
2476
+
2477
+ @property
2478
+ @pulumi.getter(name="timeCreated")
2479
+ def time_created(self) -> str:
2480
+ """
2481
+ Date-time when subscription mapping was created.
2482
+ """
2483
+ return pulumi.get(self, "time_created")
2484
+
2485
+ @property
2486
+ @pulumi.getter(name="timeTerminated")
2487
+ def time_terminated(self) -> str:
2488
+ """
2489
+ Date-time when subscription mapping was terminated.
2490
+ """
2491
+ return pulumi.get(self, "time_terminated")
2492
+
2493
+ @property
2494
+ @pulumi.getter(name="timeUpdated")
2495
+ def time_updated(self) -> str:
2496
+ """
2497
+ Date-time when subscription mapping was updated.
2498
+ """
2499
+ return pulumi.get(self, "time_updated")
2500
+
2501
+
2502
+ @pulumi.output_type
2503
+ class GetSubscriptionPromotionResult(dict):
2504
+ def __init__(__self__, *,
2505
+ amount: float,
2506
+ currency_unit: str,
2507
+ duration: int,
2508
+ duration_unit: str,
2509
+ is_intent_to_pay: bool,
2510
+ status: str,
2511
+ time_expired: str,
2512
+ time_started: str):
2513
+ """
2514
+ :param float amount: If a subscription is present, indicates the total amount of promotional subscription credits.
2515
+ :param str currency_unit: Currency unit associated with the promotion.
2516
+ :param int duration: Specifies how long the promotion related to the subscription, if any, is valid in duration units.
2517
+ :param str duration_unit: Unit for the duration.
2518
+ :param bool is_intent_to_pay: Speficies whether or not the customer intends to pay after the promotion has expired.
2519
+ :param str status: If a subscription is present, indicates the current status of the subscription promotion.
2520
+ :param str time_expired: Date and time when the promotion ends.
2521
+ :param str time_started: Date and time when the promotion starts.
2522
+ """
2523
+ pulumi.set(__self__, "amount", amount)
2524
+ pulumi.set(__self__, "currency_unit", currency_unit)
2525
+ pulumi.set(__self__, "duration", duration)
2526
+ pulumi.set(__self__, "duration_unit", duration_unit)
2527
+ pulumi.set(__self__, "is_intent_to_pay", is_intent_to_pay)
2528
+ pulumi.set(__self__, "status", status)
2529
+ pulumi.set(__self__, "time_expired", time_expired)
2530
+ pulumi.set(__self__, "time_started", time_started)
2531
+
2532
+ @property
2533
+ @pulumi.getter
2534
+ def amount(self) -> float:
2535
+ """
2536
+ If a subscription is present, indicates the total amount of promotional subscription credits.
2537
+ """
2538
+ return pulumi.get(self, "amount")
2539
+
2540
+ @property
2541
+ @pulumi.getter(name="currencyUnit")
2542
+ def currency_unit(self) -> str:
2543
+ """
2544
+ Currency unit associated with the promotion.
2545
+ """
2546
+ return pulumi.get(self, "currency_unit")
2547
+
2548
+ @property
2549
+ @pulumi.getter
2550
+ def duration(self) -> int:
2551
+ """
2552
+ Specifies how long the promotion related to the subscription, if any, is valid in duration units.
2553
+ """
2554
+ return pulumi.get(self, "duration")
2555
+
2556
+ @property
2557
+ @pulumi.getter(name="durationUnit")
2558
+ def duration_unit(self) -> str:
2559
+ """
2560
+ Unit for the duration.
2561
+ """
2562
+ return pulumi.get(self, "duration_unit")
2563
+
2564
+ @property
2565
+ @pulumi.getter(name="isIntentToPay")
2566
+ def is_intent_to_pay(self) -> bool:
2567
+ """
2568
+ Speficies whether or not the customer intends to pay after the promotion has expired.
2569
+ """
2570
+ return pulumi.get(self, "is_intent_to_pay")
2571
+
2572
+ @property
2573
+ @pulumi.getter
2574
+ def status(self) -> str:
2575
+ """
2576
+ If a subscription is present, indicates the current status of the subscription promotion.
2577
+ """
2578
+ return pulumi.get(self, "status")
2579
+
2580
+ @property
2581
+ @pulumi.getter(name="timeExpired")
2582
+ def time_expired(self) -> str:
2583
+ """
2584
+ Date and time when the promotion ends.
2585
+ """
2586
+ return pulumi.get(self, "time_expired")
2587
+
2588
+ @property
2589
+ @pulumi.getter(name="timeStarted")
2590
+ def time_started(self) -> str:
2591
+ """
2592
+ Date and time when the promotion starts.
2593
+ """
2594
+ return pulumi.get(self, "time_started")
2595
+
2596
+
2597
+ @pulumi.output_type
2598
+ class GetSubscriptionSkusResult(dict):
2599
+ def __init__(__self__, *,
2600
+ description: str,
2601
+ end_date: str,
2602
+ gsi_order_line_id: str,
2603
+ is_additional_instance: bool,
2604
+ is_base_service_component: bool,
2605
+ license_part_description: str,
2606
+ metric_name: str,
2607
+ quantity: int,
2608
+ sku: str,
2609
+ start_date: str):
2610
+ """
2611
+ :param str description: Description of the stock units.
2612
+ :param str end_date: Date and time when the SKU ended.
2613
+ :param str gsi_order_line_id: Sales order line identifier.
2614
+ :param bool is_additional_instance: Specifies if an additional test instance can be provisioned by the SaaS application.
2615
+ :param bool is_base_service_component: Specifies if the SKU is considered as a parent or child.
2616
+ :param str license_part_description: Description of the covered product belonging to this SKU.
2617
+ :param str metric_name: Base metric for billing the service.
2618
+ :param int quantity: Quantity of the stock units.
2619
+ :param str sku: Stock Keeping Unit (SKU) ID.
2620
+ :param str start_date: Subscription start time.
2621
+ """
2622
+ pulumi.set(__self__, "description", description)
2623
+ pulumi.set(__self__, "end_date", end_date)
2624
+ pulumi.set(__self__, "gsi_order_line_id", gsi_order_line_id)
2625
+ pulumi.set(__self__, "is_additional_instance", is_additional_instance)
2626
+ pulumi.set(__self__, "is_base_service_component", is_base_service_component)
2627
+ pulumi.set(__self__, "license_part_description", license_part_description)
2628
+ pulumi.set(__self__, "metric_name", metric_name)
2629
+ pulumi.set(__self__, "quantity", quantity)
2630
+ pulumi.set(__self__, "sku", sku)
2631
+ pulumi.set(__self__, "start_date", start_date)
2632
+
2633
+ @property
2634
+ @pulumi.getter
2635
+ def description(self) -> str:
2636
+ """
2637
+ Description of the stock units.
2638
+ """
2639
+ return pulumi.get(self, "description")
2640
+
2641
+ @property
2642
+ @pulumi.getter(name="endDate")
2643
+ def end_date(self) -> str:
2644
+ """
2645
+ Date and time when the SKU ended.
2646
+ """
2647
+ return pulumi.get(self, "end_date")
2648
+
2649
+ @property
2650
+ @pulumi.getter(name="gsiOrderLineId")
2651
+ def gsi_order_line_id(self) -> str:
2652
+ """
2653
+ Sales order line identifier.
2654
+ """
2655
+ return pulumi.get(self, "gsi_order_line_id")
2656
+
2657
+ @property
2658
+ @pulumi.getter(name="isAdditionalInstance")
2659
+ def is_additional_instance(self) -> bool:
2660
+ """
2661
+ Specifies if an additional test instance can be provisioned by the SaaS application.
2662
+ """
2663
+ return pulumi.get(self, "is_additional_instance")
2664
+
2665
+ @property
2666
+ @pulumi.getter(name="isBaseServiceComponent")
2667
+ def is_base_service_component(self) -> bool:
2668
+ """
2669
+ Specifies if the SKU is considered as a parent or child.
2670
+ """
2671
+ return pulumi.get(self, "is_base_service_component")
2672
+
2673
+ @property
2674
+ @pulumi.getter(name="licensePartDescription")
2675
+ def license_part_description(self) -> str:
2676
+ """
2677
+ Description of the covered product belonging to this SKU.
2678
+ """
2679
+ return pulumi.get(self, "license_part_description")
2680
+
2681
+ @property
2682
+ @pulumi.getter(name="metricName")
2683
+ def metric_name(self) -> str:
2684
+ """
2685
+ Base metric for billing the service.
2686
+ """
2687
+ return pulumi.get(self, "metric_name")
2688
+
2689
+ @property
2690
+ @pulumi.getter
2691
+ def quantity(self) -> int:
2692
+ """
2693
+ Quantity of the stock units.
2694
+ """
2695
+ return pulumi.get(self, "quantity")
2696
+
2697
+ @property
2698
+ @pulumi.getter
2699
+ def sku(self) -> str:
2700
+ """
2701
+ Stock Keeping Unit (SKU) ID.
2702
+ """
2703
+ return pulumi.get(self, "sku")
2704
+
2705
+ @property
2706
+ @pulumi.getter(name="startDate")
2707
+ def start_date(self) -> str:
2708
+ """
2709
+ Subscription start time.
2710
+ """
2711
+ return pulumi.get(self, "start_date")
2712
+
2713
+
2714
+ @pulumi.output_type
2715
+ class GetSubscriptionsFilterResult(dict):
2716
+ def __init__(__self__, *,
2717
+ name: str,
2718
+ values: Sequence[str],
2719
+ regex: Optional[bool] = None):
2720
+ pulumi.set(__self__, "name", name)
2721
+ pulumi.set(__self__, "values", values)
2722
+ if regex is not None:
2723
+ pulumi.set(__self__, "regex", regex)
2724
+
2725
+ @property
2726
+ @pulumi.getter
2727
+ def name(self) -> str:
2728
+ return pulumi.get(self, "name")
2729
+
2730
+ @property
2731
+ @pulumi.getter
2732
+ def values(self) -> Sequence[str]:
2733
+ return pulumi.get(self, "values")
2734
+
2735
+ @property
2736
+ @pulumi.getter
2737
+ def regex(self) -> Optional[bool]:
2738
+ return pulumi.get(self, "regex")
2739
+
2740
+
2741
+ @pulumi.output_type
2742
+ class GetSubscriptionsSubscriptionCollectionResult(dict):
2743
+ def __init__(__self__, *,
2744
+ items: Sequence['outputs.GetSubscriptionsSubscriptionCollectionItemResult']):
2745
+ pulumi.set(__self__, "items", items)
2746
+
2747
+ @property
2748
+ @pulumi.getter
2749
+ def items(self) -> Sequence['outputs.GetSubscriptionsSubscriptionCollectionItemResult']:
2750
+ return pulumi.get(self, "items")
2751
+
2752
+
2753
+ @pulumi.output_type
2754
+ class GetSubscriptionsSubscriptionCollectionItemResult(dict):
2755
+ def __init__(__self__, *,
2756
+ classic_subscription_id: str,
2757
+ cloud_amount_currency: str,
2758
+ compartment_id: str,
2759
+ csi_number: str,
2760
+ currency_code: str,
2761
+ customer_country_code: str,
2762
+ defined_tags: Mapping[str, str],
2763
+ end_date: str,
2764
+ entity_version: str,
2765
+ freeform_tags: Mapping[str, str],
2766
+ id: str,
2767
+ is_classic_subscription: bool,
2768
+ is_government_subscription: bool,
2769
+ payment_model: str,
2770
+ program_type: str,
2771
+ promotions: Sequence['outputs.GetSubscriptionsSubscriptionCollectionItemPromotionResult'],
2772
+ purchase_entitlement_id: str,
2773
+ region_assignment: str,
2774
+ service_name: str,
2775
+ skuses: Sequence['outputs.GetSubscriptionsSubscriptionCollectionItemSkusResult'],
2776
+ start_date: str,
2777
+ state: str,
2778
+ subscription_number: str,
2779
+ subscription_tier: str,
2780
+ time_created: str,
2781
+ time_updated: str):
2782
+ """
2783
+ :param str classic_subscription_id: Classic subscription ID.
2784
+ :param str cloud_amount_currency: The currency code for the customer associated with the subscription.
2785
+ :param str compartment_id: The ID of the compartment in which to list resources.
2786
+ :param str csi_number: Customer service identifier for the customer associated with the subscription.
2787
+ :param str currency_code: Currency code. For example USD, MXN.
2788
+ :param str customer_country_code: The country code for the customer associated with the subscription.
2789
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
2790
+ :param str end_date: Date and time when the SKU ended.
2791
+ :param str entity_version: The version of the subscription entity.
2792
+ :param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
2793
+ :param str id: The Oracle ID ([OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)) of the subscription.
2794
+ :param bool is_classic_subscription: Specifies whether or not the subscription is from classic systems.
2795
+ :param bool is_government_subscription: Specifies whether or not the subscription is a government subscription.
2796
+ :param str payment_model: The pay model of the subscription, such as 'Pay as you go' or 'Monthly'.
2797
+ :param str program_type: Specifies any program that is associated with the subscription.
2798
+ :param Sequence['GetSubscriptionsSubscriptionCollectionItemPromotionArgs'] promotions: List of promotions related to the subscription.
2799
+ :param str purchase_entitlement_id: Purchase entitlement ID associated with the subscription.
2800
+ :param str region_assignment: Region for the subscription.
2801
+ :param str service_name: The type of subscription, such as 'UCM', 'SAAS', 'ERP', 'CRM'.
2802
+ :param Sequence['GetSubscriptionsSubscriptionCollectionItemSkusArgs'] skuses: List of SKUs linked to this subscription.
2803
+ :param str start_date: Subscription start time.
2804
+ :param str state: Lifecycle state of the subscription.
2805
+ :param str subscription_number: Unique Oracle Cloud Subscriptions identifier that is immutable on creation.
2806
+ :param str subscription_tier: Tier for the subscription, whether a free promotion subscription or a paid subscription.
2807
+ :param str time_created: The date and time of creation, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
2808
+ :param str time_updated: The date and time of update, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
2809
+ """
2810
+ pulumi.set(__self__, "classic_subscription_id", classic_subscription_id)
2811
+ pulumi.set(__self__, "cloud_amount_currency", cloud_amount_currency)
2812
+ pulumi.set(__self__, "compartment_id", compartment_id)
2813
+ pulumi.set(__self__, "csi_number", csi_number)
2814
+ pulumi.set(__self__, "currency_code", currency_code)
2815
+ pulumi.set(__self__, "customer_country_code", customer_country_code)
2816
+ pulumi.set(__self__, "defined_tags", defined_tags)
2817
+ pulumi.set(__self__, "end_date", end_date)
2818
+ pulumi.set(__self__, "entity_version", entity_version)
2819
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
2820
+ pulumi.set(__self__, "id", id)
2821
+ pulumi.set(__self__, "is_classic_subscription", is_classic_subscription)
2822
+ pulumi.set(__self__, "is_government_subscription", is_government_subscription)
2823
+ pulumi.set(__self__, "payment_model", payment_model)
2824
+ pulumi.set(__self__, "program_type", program_type)
2825
+ pulumi.set(__self__, "promotions", promotions)
2826
+ pulumi.set(__self__, "purchase_entitlement_id", purchase_entitlement_id)
2827
+ pulumi.set(__self__, "region_assignment", region_assignment)
2828
+ pulumi.set(__self__, "service_name", service_name)
2829
+ pulumi.set(__self__, "skuses", skuses)
2830
+ pulumi.set(__self__, "start_date", start_date)
2831
+ pulumi.set(__self__, "state", state)
2832
+ pulumi.set(__self__, "subscription_number", subscription_number)
2833
+ pulumi.set(__self__, "subscription_tier", subscription_tier)
2834
+ pulumi.set(__self__, "time_created", time_created)
2835
+ pulumi.set(__self__, "time_updated", time_updated)
2836
+
2837
+ @property
2838
+ @pulumi.getter(name="classicSubscriptionId")
2839
+ def classic_subscription_id(self) -> str:
2840
+ """
2841
+ Classic subscription ID.
2842
+ """
2843
+ return pulumi.get(self, "classic_subscription_id")
2844
+
2845
+ @property
2846
+ @pulumi.getter(name="cloudAmountCurrency")
2847
+ def cloud_amount_currency(self) -> str:
2848
+ """
2849
+ The currency code for the customer associated with the subscription.
2850
+ """
2851
+ return pulumi.get(self, "cloud_amount_currency")
2852
+
2853
+ @property
2854
+ @pulumi.getter(name="compartmentId")
2855
+ def compartment_id(self) -> str:
2856
+ """
2857
+ The ID of the compartment in which to list resources.
2858
+ """
2859
+ return pulumi.get(self, "compartment_id")
2860
+
2861
+ @property
2862
+ @pulumi.getter(name="csiNumber")
2863
+ def csi_number(self) -> str:
2864
+ """
2865
+ Customer service identifier for the customer associated with the subscription.
2866
+ """
2867
+ return pulumi.get(self, "csi_number")
2868
+
2869
+ @property
2870
+ @pulumi.getter(name="currencyCode")
2871
+ def currency_code(self) -> str:
2872
+ """
2873
+ Currency code. For example USD, MXN.
2874
+ """
2875
+ return pulumi.get(self, "currency_code")
2876
+
2877
+ @property
2878
+ @pulumi.getter(name="customerCountryCode")
2879
+ def customer_country_code(self) -> str:
2880
+ """
2881
+ The country code for the customer associated with the subscription.
2882
+ """
2883
+ return pulumi.get(self, "customer_country_code")
2884
+
2885
+ @property
2886
+ @pulumi.getter(name="definedTags")
2887
+ def defined_tags(self) -> Mapping[str, str]:
2888
+ """
2889
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
2890
+ """
2891
+ return pulumi.get(self, "defined_tags")
2892
+
2893
+ @property
2894
+ @pulumi.getter(name="endDate")
2895
+ def end_date(self) -> str:
2896
+ """
2897
+ Date and time when the SKU ended.
2898
+ """
2899
+ return pulumi.get(self, "end_date")
2900
+
2901
+ @property
2902
+ @pulumi.getter(name="entityVersion")
2903
+ def entity_version(self) -> str:
2904
+ """
2905
+ The version of the subscription entity.
2906
+ """
2907
+ return pulumi.get(self, "entity_version")
2908
+
2909
+ @property
2910
+ @pulumi.getter(name="freeformTags")
2911
+ def freeform_tags(self) -> Mapping[str, str]:
2912
+ """
2913
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
2914
+ """
2915
+ return pulumi.get(self, "freeform_tags")
2916
+
2917
+ @property
2918
+ @pulumi.getter
2919
+ def id(self) -> str:
2920
+ """
2921
+ The Oracle ID ([OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)) of the subscription.
2922
+ """
2923
+ return pulumi.get(self, "id")
2924
+
2925
+ @property
2926
+ @pulumi.getter(name="isClassicSubscription")
2927
+ def is_classic_subscription(self) -> bool:
2928
+ """
2929
+ Specifies whether or not the subscription is from classic systems.
2930
+ """
2931
+ return pulumi.get(self, "is_classic_subscription")
2932
+
2933
+ @property
2934
+ @pulumi.getter(name="isGovernmentSubscription")
2935
+ def is_government_subscription(self) -> bool:
2936
+ """
2937
+ Specifies whether or not the subscription is a government subscription.
2938
+ """
2939
+ return pulumi.get(self, "is_government_subscription")
2940
+
2941
+ @property
2942
+ @pulumi.getter(name="paymentModel")
2943
+ def payment_model(self) -> str:
2944
+ """
2945
+ The pay model of the subscription, such as 'Pay as you go' or 'Monthly'.
2946
+ """
2947
+ return pulumi.get(self, "payment_model")
2948
+
2949
+ @property
2950
+ @pulumi.getter(name="programType")
2951
+ def program_type(self) -> str:
2952
+ """
2953
+ Specifies any program that is associated with the subscription.
2954
+ """
2955
+ return pulumi.get(self, "program_type")
2956
+
2957
+ @property
2958
+ @pulumi.getter
2959
+ def promotions(self) -> Sequence['outputs.GetSubscriptionsSubscriptionCollectionItemPromotionResult']:
2960
+ """
2961
+ List of promotions related to the subscription.
2962
+ """
2963
+ return pulumi.get(self, "promotions")
2964
+
2965
+ @property
2966
+ @pulumi.getter(name="purchaseEntitlementId")
2967
+ def purchase_entitlement_id(self) -> str:
2968
+ """
2969
+ Purchase entitlement ID associated with the subscription.
2970
+ """
2971
+ return pulumi.get(self, "purchase_entitlement_id")
2972
+
2973
+ @property
2974
+ @pulumi.getter(name="regionAssignment")
2975
+ def region_assignment(self) -> str:
2976
+ """
2977
+ Region for the subscription.
2978
+ """
2979
+ return pulumi.get(self, "region_assignment")
2980
+
2981
+ @property
2982
+ @pulumi.getter(name="serviceName")
2983
+ def service_name(self) -> str:
2984
+ """
2985
+ The type of subscription, such as 'UCM', 'SAAS', 'ERP', 'CRM'.
2986
+ """
2987
+ return pulumi.get(self, "service_name")
2988
+
2989
+ @property
2990
+ @pulumi.getter
2991
+ def skuses(self) -> Sequence['outputs.GetSubscriptionsSubscriptionCollectionItemSkusResult']:
2992
+ """
2993
+ List of SKUs linked to this subscription.
2994
+ """
2995
+ return pulumi.get(self, "skuses")
2996
+
2997
+ @property
2998
+ @pulumi.getter(name="startDate")
2999
+ def start_date(self) -> str:
3000
+ """
3001
+ Subscription start time.
3002
+ """
3003
+ return pulumi.get(self, "start_date")
3004
+
3005
+ @property
3006
+ @pulumi.getter
3007
+ def state(self) -> str:
3008
+ """
3009
+ Lifecycle state of the subscription.
3010
+ """
3011
+ return pulumi.get(self, "state")
3012
+
3013
+ @property
3014
+ @pulumi.getter(name="subscriptionNumber")
3015
+ def subscription_number(self) -> str:
3016
+ """
3017
+ Unique Oracle Cloud Subscriptions identifier that is immutable on creation.
3018
+ """
3019
+ return pulumi.get(self, "subscription_number")
3020
+
3021
+ @property
3022
+ @pulumi.getter(name="subscriptionTier")
3023
+ def subscription_tier(self) -> str:
3024
+ """
3025
+ Tier for the subscription, whether a free promotion subscription or a paid subscription.
3026
+ """
3027
+ return pulumi.get(self, "subscription_tier")
3028
+
3029
+ @property
3030
+ @pulumi.getter(name="timeCreated")
3031
+ def time_created(self) -> str:
3032
+ """
3033
+ The date and time of creation, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
3034
+ """
3035
+ return pulumi.get(self, "time_created")
3036
+
3037
+ @property
3038
+ @pulumi.getter(name="timeUpdated")
3039
+ def time_updated(self) -> str:
3040
+ """
3041
+ The date and time of update, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
3042
+ """
3043
+ return pulumi.get(self, "time_updated")
3044
+
3045
+
3046
+ @pulumi.output_type
3047
+ class GetSubscriptionsSubscriptionCollectionItemPromotionResult(dict):
3048
+ def __init__(__self__, *,
3049
+ amount: float,
3050
+ currency_unit: str,
3051
+ duration: int,
3052
+ duration_unit: str,
3053
+ is_intent_to_pay: bool,
3054
+ status: str,
3055
+ time_expired: str,
3056
+ time_started: str):
3057
+ """
3058
+ :param float amount: If a subscription is present, indicates the total amount of promotional subscription credits.
3059
+ :param str currency_unit: Currency unit associated with the promotion.
3060
+ :param int duration: Specifies how long the promotion related to the subscription, if any, is valid in duration units.
3061
+ :param str duration_unit: Unit for the duration.
3062
+ :param bool is_intent_to_pay: Speficies whether or not the customer intends to pay after the promotion has expired.
3063
+ :param str status: If a subscription is present, indicates the current status of the subscription promotion.
3064
+ :param str time_expired: Date and time when the promotion ends.
3065
+ :param str time_started: Date and time when the promotion starts.
3066
+ """
3067
+ pulumi.set(__self__, "amount", amount)
3068
+ pulumi.set(__self__, "currency_unit", currency_unit)
3069
+ pulumi.set(__self__, "duration", duration)
3070
+ pulumi.set(__self__, "duration_unit", duration_unit)
3071
+ pulumi.set(__self__, "is_intent_to_pay", is_intent_to_pay)
3072
+ pulumi.set(__self__, "status", status)
3073
+ pulumi.set(__self__, "time_expired", time_expired)
3074
+ pulumi.set(__self__, "time_started", time_started)
3075
+
3076
+ @property
3077
+ @pulumi.getter
3078
+ def amount(self) -> float:
3079
+ """
3080
+ If a subscription is present, indicates the total amount of promotional subscription credits.
3081
+ """
3082
+ return pulumi.get(self, "amount")
3083
+
3084
+ @property
3085
+ @pulumi.getter(name="currencyUnit")
3086
+ def currency_unit(self) -> str:
3087
+ """
3088
+ Currency unit associated with the promotion.
3089
+ """
3090
+ return pulumi.get(self, "currency_unit")
3091
+
3092
+ @property
3093
+ @pulumi.getter
3094
+ def duration(self) -> int:
3095
+ """
3096
+ Specifies how long the promotion related to the subscription, if any, is valid in duration units.
3097
+ """
3098
+ return pulumi.get(self, "duration")
3099
+
3100
+ @property
3101
+ @pulumi.getter(name="durationUnit")
3102
+ def duration_unit(self) -> str:
3103
+ """
3104
+ Unit for the duration.
3105
+ """
3106
+ return pulumi.get(self, "duration_unit")
3107
+
3108
+ @property
3109
+ @pulumi.getter(name="isIntentToPay")
3110
+ def is_intent_to_pay(self) -> bool:
3111
+ """
3112
+ Speficies whether or not the customer intends to pay after the promotion has expired.
3113
+ """
3114
+ return pulumi.get(self, "is_intent_to_pay")
3115
+
3116
+ @property
3117
+ @pulumi.getter
3118
+ def status(self) -> str:
3119
+ """
3120
+ If a subscription is present, indicates the current status of the subscription promotion.
3121
+ """
3122
+ return pulumi.get(self, "status")
3123
+
3124
+ @property
3125
+ @pulumi.getter(name="timeExpired")
3126
+ def time_expired(self) -> str:
3127
+ """
3128
+ Date and time when the promotion ends.
3129
+ """
3130
+ return pulumi.get(self, "time_expired")
3131
+
3132
+ @property
3133
+ @pulumi.getter(name="timeStarted")
3134
+ def time_started(self) -> str:
3135
+ """
3136
+ Date and time when the promotion starts.
3137
+ """
3138
+ return pulumi.get(self, "time_started")
3139
+
3140
+
3141
+ @pulumi.output_type
3142
+ class GetSubscriptionsSubscriptionCollectionItemSkusResult(dict):
3143
+ def __init__(__self__, *,
3144
+ description: str,
3145
+ end_date: str,
3146
+ gsi_order_line_id: str,
3147
+ is_additional_instance: bool,
3148
+ is_base_service_component: bool,
3149
+ license_part_description: str,
3150
+ metric_name: str,
3151
+ quantity: int,
3152
+ sku: str,
3153
+ start_date: str):
3154
+ """
3155
+ :param str description: Description of the stock units.
3156
+ :param str end_date: Date and time when the SKU ended.
3157
+ :param str gsi_order_line_id: Sales order line identifier.
3158
+ :param bool is_additional_instance: Specifies if an additional test instance can be provisioned by the SaaS application.
3159
+ :param bool is_base_service_component: Specifies if the SKU is considered as a parent or child.
3160
+ :param str license_part_description: Description of the covered product belonging to this SKU.
3161
+ :param str metric_name: Base metric for billing the service.
3162
+ :param int quantity: Quantity of the stock units.
3163
+ :param str sku: Stock Keeping Unit (SKU) ID.
3164
+ :param str start_date: Subscription start time.
3165
+ """
3166
+ pulumi.set(__self__, "description", description)
3167
+ pulumi.set(__self__, "end_date", end_date)
3168
+ pulumi.set(__self__, "gsi_order_line_id", gsi_order_line_id)
3169
+ pulumi.set(__self__, "is_additional_instance", is_additional_instance)
3170
+ pulumi.set(__self__, "is_base_service_component", is_base_service_component)
3171
+ pulumi.set(__self__, "license_part_description", license_part_description)
3172
+ pulumi.set(__self__, "metric_name", metric_name)
3173
+ pulumi.set(__self__, "quantity", quantity)
3174
+ pulumi.set(__self__, "sku", sku)
3175
+ pulumi.set(__self__, "start_date", start_date)
3176
+
3177
+ @property
3178
+ @pulumi.getter
3179
+ def description(self) -> str:
3180
+ """
3181
+ Description of the stock units.
3182
+ """
3183
+ return pulumi.get(self, "description")
3184
+
3185
+ @property
3186
+ @pulumi.getter(name="endDate")
3187
+ def end_date(self) -> str:
3188
+ """
3189
+ Date and time when the SKU ended.
3190
+ """
3191
+ return pulumi.get(self, "end_date")
3192
+
3193
+ @property
3194
+ @pulumi.getter(name="gsiOrderLineId")
3195
+ def gsi_order_line_id(self) -> str:
3196
+ """
3197
+ Sales order line identifier.
3198
+ """
3199
+ return pulumi.get(self, "gsi_order_line_id")
3200
+
3201
+ @property
3202
+ @pulumi.getter(name="isAdditionalInstance")
3203
+ def is_additional_instance(self) -> bool:
3204
+ """
3205
+ Specifies if an additional test instance can be provisioned by the SaaS application.
3206
+ """
3207
+ return pulumi.get(self, "is_additional_instance")
3208
+
3209
+ @property
3210
+ @pulumi.getter(name="isBaseServiceComponent")
3211
+ def is_base_service_component(self) -> bool:
3212
+ """
3213
+ Specifies if the SKU is considered as a parent or child.
3214
+ """
3215
+ return pulumi.get(self, "is_base_service_component")
3216
+
3217
+ @property
3218
+ @pulumi.getter(name="licensePartDescription")
3219
+ def license_part_description(self) -> str:
3220
+ """
3221
+ Description of the covered product belonging to this SKU.
3222
+ """
3223
+ return pulumi.get(self, "license_part_description")
3224
+
3225
+ @property
3226
+ @pulumi.getter(name="metricName")
3227
+ def metric_name(self) -> str:
3228
+ """
3229
+ Base metric for billing the service.
3230
+ """
3231
+ return pulumi.get(self, "metric_name")
3232
+
3233
+ @property
3234
+ @pulumi.getter
3235
+ def quantity(self) -> int:
3236
+ """
3237
+ Quantity of the stock units.
3238
+ """
3239
+ return pulumi.get(self, "quantity")
3240
+
3241
+ @property
3242
+ @pulumi.getter
3243
+ def sku(self) -> str:
3244
+ """
3245
+ Stock Keeping Unit (SKU) ID.
3246
+ """
3247
+ return pulumi.get(self, "sku")
3248
+
3249
+ @property
3250
+ @pulumi.getter(name="startDate")
3251
+ def start_date(self) -> str:
3252
+ """
3253
+ Subscription start time.
3254
+ """
3255
+ return pulumi.get(self, "start_date")
3256
+
3257
+