pulumi-oci 1.20.0a1705991859__py3-none-any.whl → 1.21.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +51 -0
- pulumi_oci/core/get_boot_volume_attachments.py +36 -2
- pulumi_oci/database/autonomous_database.py +49 -0
- pulumi_oci/database/autonomous_database_wallet.py +18 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_managed_preferred_credential.py +19 -1
- pulumi_oci/database/outputs.py +21 -0
- pulumi_oci/database/vm_cluster_network.py +20 -7
- pulumi_oci/databasemanagement/__init__.py +3 -0
- pulumi_oci/databasemanagement/_inputs.py +863 -48
- pulumi_oci/databasemanagement/get_external_asm_configuration.py +22 -5
- pulumi_oci/databasemanagement/get_external_asm_disk_groups.py +22 -5
- pulumi_oci/databasemanagement/get_external_asm_users.py +22 -5
- pulumi_oci/databasemanagement/get_external_listener_services.py +22 -5
- pulumi_oci/databasemanagement/get_managed_database_cursor_cache_statements.py +18 -1
- pulumi_oci/databasemanagement/get_managed_database_sql_plan_baseline.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_sql_plan_baseline_configuration.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_sql_plan_baseline_jobs.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_sql_plan_baselines.py +46 -37
- pulumi_oci/databasemanagement/get_managed_database_sql_tuning_advisor_tasks.py +18 -1
- pulumi_oci/databasemanagement/get_managed_database_sql_tuning_advisor_tasks_execution_plan_stats_comparison.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_sql_tuning_advisor_tasks_findings.py +18 -1
- pulumi_oci/databasemanagement/get_managed_database_sql_tuning_advisor_tasks_recommendations.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_sql_tuning_advisor_tasks_sql_execution_plan.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_sql_tuning_advisor_tasks_summary_report.py +18 -1
- pulumi_oci/databasemanagement/get_managed_database_sql_tuning_sets.py +18 -1
- pulumi_oci/databasemanagement/get_managed_database_user.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_user_consumer_group_privileges.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_user_data_access_containers.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_user_object_privileges.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_user_proxied_for_users.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_user_roles.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_users.py +20 -3
- pulumi_oci/databasemanagement/get_managed_databases_database_parameters.py +18 -1
- pulumi_oci/databasemanagement/get_managed_databases_user_proxy_users.py +20 -3
- pulumi_oci/databasemanagement/get_managed_databases_user_system_privileges.py +20 -3
- pulumi_oci/databasemanagement/get_named_credential.py +249 -0
- pulumi_oci/databasemanagement/get_named_credentials.py +216 -0
- pulumi_oci/databasemanagement/managed_databases_change_database_parameter.py +99 -37
- pulumi_oci/databasemanagement/managed_databases_reset_database_parameter.py +91 -29
- pulumi_oci/databasemanagement/named_credential.py +635 -0
- pulumi_oci/databasemanagement/outputs.py +1896 -157
- pulumi_oci/dataintegration/__init__.py +3 -0
- pulumi_oci/dataintegration/_inputs.py +798 -0
- pulumi_oci/dataintegration/get_workspace_application_patch.py +391 -0
- pulumi_oci/dataintegration/get_workspace_application_patches.py +207 -0
- pulumi_oci/dataintegration/get_workspace_import_request.py +14 -1
- pulumi_oci/dataintegration/outputs.py +2844 -739
- pulumi_oci/dataintegration/workspace_application_patch.py +1026 -0
- pulumi_oci/dataintegration/workspace_import_request.py +49 -0
- pulumi_oci/generativeai/__init__.py +18 -0
- pulumi_oci/generativeai/_inputs.py +534 -0
- pulumi_oci/generativeai/dedicated_ai_cluster.py +808 -0
- pulumi_oci/generativeai/endpoint.py +717 -0
- pulumi_oci/generativeai/get_dedicated_ai_cluster.py +288 -0
- pulumi_oci/generativeai/get_dedicated_ai_clusters.py +183 -0
- pulumi_oci/generativeai/get_endpoint.py +275 -0
- pulumi_oci/generativeai/get_endpoints.py +183 -0
- pulumi_oci/generativeai/get_model.py +353 -0
- pulumi_oci/generativeai/get_models.py +220 -0
- pulumi_oci/generativeai/model.py +858 -0
- pulumi_oci/generativeai/outputs.py +1721 -0
- pulumi_oci/loadbalancer/_inputs.py +12 -0
- pulumi_oci/loadbalancer/outputs.py +12 -0
- pulumi_oci/marketplace/get_publication.py +14 -1
- pulumi_oci/marketplace/outputs.py +11 -0
- pulumi_oci/marketplace/publication.py +28 -0
- pulumi_oci/ospgateway/_inputs.py +16 -0
- pulumi_oci/ospgateway/outputs.py +94 -19
- pulumi_oci/stackmonitoring/__init__.py +3 -0
- pulumi_oci/stackmonitoring/_inputs.py +143 -0
- pulumi_oci/stackmonitoring/get_process_set.py +236 -0
- pulumi_oci/stackmonitoring/get_process_sets.py +156 -0
- pulumi_oci/stackmonitoring/outputs.py +422 -0
- pulumi_oci/stackmonitoring/process_set.py +548 -0
- {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0.dist-info}/RECORD +79 -58
- {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0.dist-info}/top_level.txt +0 -0
@@ -1056,12 +1056,18 @@ class LoadBalancerIpAddressDetailArgs:
|
|
1056
1056
|
class LoadBalancerIpAddressDetailReservedIpArgs:
|
1057
1057
|
def __init__(__self__, *,
|
1058
1058
|
id: Optional[pulumi.Input[str]] = None):
|
1059
|
+
"""
|
1060
|
+
:param pulumi.Input[str] id: Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1061
|
+
"""
|
1059
1062
|
if id is not None:
|
1060
1063
|
pulumi.set(__self__, "id", id)
|
1061
1064
|
|
1062
1065
|
@property
|
1063
1066
|
@pulumi.getter
|
1064
1067
|
def id(self) -> Optional[pulumi.Input[str]]:
|
1068
|
+
"""
|
1069
|
+
Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1070
|
+
"""
|
1065
1071
|
return pulumi.get(self, "id")
|
1066
1072
|
|
1067
1073
|
@id.setter
|
@@ -1073,12 +1079,18 @@ class LoadBalancerIpAddressDetailReservedIpArgs:
|
|
1073
1079
|
class LoadBalancerReservedIpArgs:
|
1074
1080
|
def __init__(__self__, *,
|
1075
1081
|
id: Optional[pulumi.Input[str]] = None):
|
1082
|
+
"""
|
1083
|
+
:param pulumi.Input[str] id: Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1084
|
+
"""
|
1076
1085
|
if id is not None:
|
1077
1086
|
pulumi.set(__self__, "id", id)
|
1078
1087
|
|
1079
1088
|
@property
|
1080
1089
|
@pulumi.getter
|
1081
1090
|
def id(self) -> Optional[pulumi.Input[str]]:
|
1091
|
+
"""
|
1092
|
+
Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1093
|
+
"""
|
1082
1094
|
return pulumi.get(self, "id")
|
1083
1095
|
|
1084
1096
|
@id.setter
|
@@ -1097,12 +1097,18 @@ class LoadBalancerIpAddressDetail(dict):
|
|
1097
1097
|
class LoadBalancerIpAddressDetailReservedIp(dict):
|
1098
1098
|
def __init__(__self__, *,
|
1099
1099
|
id: Optional[str] = None):
|
1100
|
+
"""
|
1101
|
+
:param str id: Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1102
|
+
"""
|
1100
1103
|
if id is not None:
|
1101
1104
|
pulumi.set(__self__, "id", id)
|
1102
1105
|
|
1103
1106
|
@property
|
1104
1107
|
@pulumi.getter
|
1105
1108
|
def id(self) -> Optional[str]:
|
1109
|
+
"""
|
1110
|
+
Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1111
|
+
"""
|
1106
1112
|
return pulumi.get(self, "id")
|
1107
1113
|
|
1108
1114
|
|
@@ -1110,12 +1116,18 @@ class LoadBalancerIpAddressDetailReservedIp(dict):
|
|
1110
1116
|
class LoadBalancerReservedIp(dict):
|
1111
1117
|
def __init__(__self__, *,
|
1112
1118
|
id: Optional[str] = None):
|
1119
|
+
"""
|
1120
|
+
:param str id: Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1121
|
+
"""
|
1113
1122
|
if id is not None:
|
1114
1123
|
pulumi.set(__self__, "id", id)
|
1115
1124
|
|
1116
1125
|
@property
|
1117
1126
|
@pulumi.getter
|
1118
1127
|
def id(self) -> Optional[str]:
|
1128
|
+
"""
|
1129
|
+
Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1130
|
+
"""
|
1119
1131
|
return pulumi.get(self, "id")
|
1120
1132
|
|
1121
1133
|
|
@@ -22,7 +22,7 @@ class GetPublicationResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getPublication.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, compartment_id=None, defined_tags=None, freeform_tags=None, icons=None, id=None, is_agreement_acknowledged=None, listing_type=None, long_description=None, name=None, package_details=None, package_type=None, publication_id=None, short_description=None, state=None, support_contacts=None, supported_operating_systems=None, time_created=None):
|
25
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, freeform_tags=None, icons=None, id=None, is_agreement_acknowledged=None, listing_type=None, long_description=None, name=None, package_details=None, package_type=None, publication_id=None, short_description=None, state=None, support_contacts=None, supported_operating_systems=None, system_tags=None, time_created=None):
|
26
26
|
if compartment_id and not isinstance(compartment_id, str):
|
27
27
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
28
28
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -71,6 +71,9 @@ class GetPublicationResult:
|
|
71
71
|
if supported_operating_systems and not isinstance(supported_operating_systems, list):
|
72
72
|
raise TypeError("Expected argument 'supported_operating_systems' to be a list")
|
73
73
|
pulumi.set(__self__, "supported_operating_systems", supported_operating_systems)
|
74
|
+
if system_tags and not isinstance(system_tags, dict):
|
75
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
76
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
74
77
|
if time_created and not isinstance(time_created, str):
|
75
78
|
raise TypeError("Expected argument 'time_created' to be a str")
|
76
79
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -194,6 +197,14 @@ class GetPublicationResult:
|
|
194
197
|
"""
|
195
198
|
return pulumi.get(self, "supported_operating_systems")
|
196
199
|
|
200
|
+
@property
|
201
|
+
@pulumi.getter(name="systemTags")
|
202
|
+
def system_tags(self) -> Mapping[str, Any]:
|
203
|
+
"""
|
204
|
+
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
205
|
+
"""
|
206
|
+
return pulumi.get(self, "system_tags")
|
207
|
+
|
197
208
|
@property
|
198
209
|
@pulumi.getter(name="timeCreated")
|
199
210
|
def time_created(self) -> str:
|
@@ -225,6 +236,7 @@ class AwaitableGetPublicationResult(GetPublicationResult):
|
|
225
236
|
state=self.state,
|
226
237
|
support_contacts=self.support_contacts,
|
227
238
|
supported_operating_systems=self.supported_operating_systems,
|
239
|
+
system_tags=self.system_tags,
|
228
240
|
time_created=self.time_created)
|
229
241
|
|
230
242
|
|
@@ -269,6 +281,7 @@ def get_publication(publication_id: Optional[str] = None,
|
|
269
281
|
state=pulumi.get(__ret__, 'state'),
|
270
282
|
support_contacts=pulumi.get(__ret__, 'support_contacts'),
|
271
283
|
supported_operating_systems=pulumi.get(__ret__, 'supported_operating_systems'),
|
284
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
272
285
|
time_created=pulumi.get(__ret__, 'time_created'))
|
273
286
|
|
274
287
|
|
@@ -2904,6 +2904,7 @@ class GetPublicationsPublicationResult(dict):
|
|
2904
2904
|
state: str,
|
2905
2905
|
support_contacts: Sequence['outputs.GetPublicationsPublicationSupportContactResult'],
|
2906
2906
|
supported_operating_systems: Sequence['outputs.GetPublicationsPublicationSupportedOperatingSystemResult'],
|
2907
|
+
system_tags: Mapping[str, Any],
|
2907
2908
|
time_created: str):
|
2908
2909
|
"""
|
2909
2910
|
:param str compartment_id: The unique identifier for the compartment.
|
@@ -2919,6 +2920,7 @@ class GetPublicationsPublicationResult(dict):
|
|
2919
2920
|
:param str state: The lifecycle state of the publication.
|
2920
2921
|
:param Sequence['GetPublicationsPublicationSupportContactArgs'] support_contacts: Contact information for getting support from the publisher for the listing.
|
2921
2922
|
:param Sequence['GetPublicationsPublicationSupportedOperatingSystemArgs'] supported_operating_systems: The list of operating systems supported by the listing.
|
2923
|
+
:param Mapping[str, Any] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
2922
2924
|
:param str time_created: The date and time the publication was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
2923
2925
|
"""
|
2924
2926
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -2936,6 +2938,7 @@ class GetPublicationsPublicationResult(dict):
|
|
2936
2938
|
pulumi.set(__self__, "state", state)
|
2937
2939
|
pulumi.set(__self__, "support_contacts", support_contacts)
|
2938
2940
|
pulumi.set(__self__, "supported_operating_systems", supported_operating_systems)
|
2941
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
2939
2942
|
pulumi.set(__self__, "time_created", time_created)
|
2940
2943
|
|
2941
2944
|
@property
|
@@ -3052,6 +3055,14 @@ class GetPublicationsPublicationResult(dict):
|
|
3052
3055
|
"""
|
3053
3056
|
return pulumi.get(self, "supported_operating_systems")
|
3054
3057
|
|
3058
|
+
@property
|
3059
|
+
@pulumi.getter(name="systemTags")
|
3060
|
+
def system_tags(self) -> Mapping[str, Any]:
|
3061
|
+
"""
|
3062
|
+
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
3063
|
+
"""
|
3064
|
+
return pulumi.get(self, "system_tags")
|
3065
|
+
|
3055
3066
|
@property
|
3056
3067
|
@pulumi.getter(name="timeCreated")
|
3057
3068
|
def time_created(self) -> str:
|
@@ -192,6 +192,7 @@ class _PublicationState:
|
|
192
192
|
state: Optional[pulumi.Input[str]] = None,
|
193
193
|
support_contacts: Optional[pulumi.Input[Sequence[pulumi.Input['PublicationSupportContactArgs']]]] = None,
|
194
194
|
supported_operating_systems: Optional[pulumi.Input[Sequence[pulumi.Input['PublicationSupportedOperatingSystemArgs']]]] = None,
|
195
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
195
196
|
time_created: Optional[pulumi.Input[str]] = None):
|
196
197
|
"""
|
197
198
|
Input properties used for looking up and filtering Publication resources.
|
@@ -209,6 +210,7 @@ class _PublicationState:
|
|
209
210
|
:param pulumi.Input[str] state: The lifecycle state of the publication.
|
210
211
|
:param pulumi.Input[Sequence[pulumi.Input['PublicationSupportContactArgs']]] support_contacts: (Updatable) Contact information for getting support from the publisher for the listing.
|
211
212
|
:param pulumi.Input[Sequence[pulumi.Input['PublicationSupportedOperatingSystemArgs']]] supported_operating_systems: The list of operating systems supported by the listing.
|
213
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
212
214
|
:param pulumi.Input[str] time_created: The date and time the publication was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
213
215
|
"""
|
214
216
|
if compartment_id is not None:
|
@@ -239,6 +241,8 @@ class _PublicationState:
|
|
239
241
|
pulumi.set(__self__, "support_contacts", support_contacts)
|
240
242
|
if supported_operating_systems is not None:
|
241
243
|
pulumi.set(__self__, "supported_operating_systems", supported_operating_systems)
|
244
|
+
if system_tags is not None:
|
245
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
242
246
|
if time_created is not None:
|
243
247
|
pulumi.set(__self__, "time_created", time_created)
|
244
248
|
|
@@ -410,6 +414,18 @@ class _PublicationState:
|
|
410
414
|
def supported_operating_systems(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PublicationSupportedOperatingSystemArgs']]]]):
|
411
415
|
pulumi.set(self, "supported_operating_systems", value)
|
412
416
|
|
417
|
+
@property
|
418
|
+
@pulumi.getter(name="systemTags")
|
419
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
420
|
+
"""
|
421
|
+
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
422
|
+
"""
|
423
|
+
return pulumi.get(self, "system_tags")
|
424
|
+
|
425
|
+
@system_tags.setter
|
426
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
427
|
+
pulumi.set(self, "system_tags", value)
|
428
|
+
|
413
429
|
@property
|
414
430
|
@pulumi.getter(name="timeCreated")
|
415
431
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -620,6 +636,7 @@ class Publication(pulumi.CustomResource):
|
|
620
636
|
__props__.__dict__["package_type"] = None
|
621
637
|
__props__.__dict__["state"] = None
|
622
638
|
__props__.__dict__["supported_operating_systems"] = None
|
639
|
+
__props__.__dict__["system_tags"] = None
|
623
640
|
__props__.__dict__["time_created"] = None
|
624
641
|
super(Publication, __self__).__init__(
|
625
642
|
'oci:Marketplace/publication:Publication',
|
@@ -645,6 +662,7 @@ class Publication(pulumi.CustomResource):
|
|
645
662
|
state: Optional[pulumi.Input[str]] = None,
|
646
663
|
support_contacts: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PublicationSupportContactArgs']]]]] = None,
|
647
664
|
supported_operating_systems: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PublicationSupportedOperatingSystemArgs']]]]] = None,
|
665
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
648
666
|
time_created: Optional[pulumi.Input[str]] = None) -> 'Publication':
|
649
667
|
"""
|
650
668
|
Get an existing Publication resource's state with the given name, id, and optional extra
|
@@ -667,6 +685,7 @@ class Publication(pulumi.CustomResource):
|
|
667
685
|
:param pulumi.Input[str] state: The lifecycle state of the publication.
|
668
686
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PublicationSupportContactArgs']]]] support_contacts: (Updatable) Contact information for getting support from the publisher for the listing.
|
669
687
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PublicationSupportedOperatingSystemArgs']]]] supported_operating_systems: The list of operating systems supported by the listing.
|
688
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
670
689
|
:param pulumi.Input[str] time_created: The date and time the publication was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
671
690
|
"""
|
672
691
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -687,6 +706,7 @@ class Publication(pulumi.CustomResource):
|
|
687
706
|
__props__.__dict__["state"] = state
|
688
707
|
__props__.__dict__["support_contacts"] = support_contacts
|
689
708
|
__props__.__dict__["supported_operating_systems"] = supported_operating_systems
|
709
|
+
__props__.__dict__["system_tags"] = system_tags
|
690
710
|
__props__.__dict__["time_created"] = time_created
|
691
711
|
return Publication(resource_name, opts=opts, __props__=__props__)
|
692
712
|
|
@@ -802,6 +822,14 @@ class Publication(pulumi.CustomResource):
|
|
802
822
|
"""
|
803
823
|
return pulumi.get(self, "supported_operating_systems")
|
804
824
|
|
825
|
+
@property
|
826
|
+
@pulumi.getter(name="systemTags")
|
827
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
828
|
+
"""
|
829
|
+
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
830
|
+
"""
|
831
|
+
return pulumi.get(self, "system_tags")
|
832
|
+
|
805
833
|
@property
|
806
834
|
@pulumi.getter(name="timeCreated")
|
807
835
|
def time_created(self) -> pulumi.Output[str]:
|
pulumi_oci/ospgateway/_inputs.py
CHANGED
@@ -2225,18 +2225,22 @@ class SubscriptionSubscriptionTaxInfoArgs:
|
|
2225
2225
|
@pulumi.input_type
|
2226
2226
|
class SubscriptionTaxInfoArgs:
|
2227
2227
|
def __init__(__self__, *,
|
2228
|
+
giro: Optional[pulumi.Input[str]] = None,
|
2228
2229
|
no_tax_reason_code: Optional[pulumi.Input[str]] = None,
|
2229
2230
|
no_tax_reason_code_details: Optional[pulumi.Input[str]] = None,
|
2230
2231
|
tax_cnpj: Optional[pulumi.Input[str]] = None,
|
2231
2232
|
tax_payer_id: Optional[pulumi.Input[str]] = None,
|
2232
2233
|
tax_reg_number: Optional[pulumi.Input[str]] = None):
|
2233
2234
|
"""
|
2235
|
+
:param pulumi.Input[str] giro: Companies' GIRO code
|
2234
2236
|
:param pulumi.Input[str] no_tax_reason_code: (Updatable) Tax exemption reason code.
|
2235
2237
|
:param pulumi.Input[str] no_tax_reason_code_details: (Updatable) Tax exemption reason description.
|
2236
2238
|
:param pulumi.Input[str] tax_cnpj: (Updatable) Brazilian companies' CNPJ number.
|
2237
2239
|
:param pulumi.Input[str] tax_payer_id: (Updatable) Tay payer identifier.
|
2238
2240
|
:param pulumi.Input[str] tax_reg_number: (Updatable) Tax registration number.
|
2239
2241
|
"""
|
2242
|
+
if giro is not None:
|
2243
|
+
pulumi.set(__self__, "giro", giro)
|
2240
2244
|
if no_tax_reason_code is not None:
|
2241
2245
|
pulumi.set(__self__, "no_tax_reason_code", no_tax_reason_code)
|
2242
2246
|
if no_tax_reason_code_details is not None:
|
@@ -2248,6 +2252,18 @@ class SubscriptionTaxInfoArgs:
|
|
2248
2252
|
if tax_reg_number is not None:
|
2249
2253
|
pulumi.set(__self__, "tax_reg_number", tax_reg_number)
|
2250
2254
|
|
2255
|
+
@property
|
2256
|
+
@pulumi.getter
|
2257
|
+
def giro(self) -> Optional[pulumi.Input[str]]:
|
2258
|
+
"""
|
2259
|
+
Companies' GIRO code
|
2260
|
+
"""
|
2261
|
+
return pulumi.get(self, "giro")
|
2262
|
+
|
2263
|
+
@giro.setter
|
2264
|
+
def giro(self, value: Optional[pulumi.Input[str]]):
|
2265
|
+
pulumi.set(self, "giro", value)
|
2266
|
+
|
2251
2267
|
@property
|
2252
2268
|
@pulumi.getter(name="noTaxReasonCode")
|
2253
2269
|
def no_tax_reason_code(self) -> Optional[pulumi.Input[str]]:
|
pulumi_oci/ospgateway/outputs.py
CHANGED
@@ -35,6 +35,7 @@ __all__ = [
|
|
35
35
|
'GetAddressRuleTaxFieldResult',
|
36
36
|
'GetAddressRuleTaxFieldFormatResult',
|
37
37
|
'GetAddressRuleTaxFieldLabelResult',
|
38
|
+
'GetAddressRuleTaxValueSetResult',
|
38
39
|
'GetInvoiceBillToAddressResult',
|
39
40
|
'GetInvoiceBillToAddressCountryResult',
|
40
41
|
'GetInvoiceCurrencyResult',
|
@@ -2147,18 +2148,22 @@ class SubscriptionTaxInfo(dict):
|
|
2147
2148
|
return super().get(key, default)
|
2148
2149
|
|
2149
2150
|
def __init__(__self__, *,
|
2151
|
+
giro: Optional[str] = None,
|
2150
2152
|
no_tax_reason_code: Optional[str] = None,
|
2151
2153
|
no_tax_reason_code_details: Optional[str] = None,
|
2152
2154
|
tax_cnpj: Optional[str] = None,
|
2153
2155
|
tax_payer_id: Optional[str] = None,
|
2154
2156
|
tax_reg_number: Optional[str] = None):
|
2155
2157
|
"""
|
2158
|
+
:param str giro: Companies' GIRO code
|
2156
2159
|
:param str no_tax_reason_code: (Updatable) Tax exemption reason code.
|
2157
2160
|
:param str no_tax_reason_code_details: (Updatable) Tax exemption reason description.
|
2158
2161
|
:param str tax_cnpj: (Updatable) Brazilian companies' CNPJ number.
|
2159
2162
|
:param str tax_payer_id: (Updatable) Tay payer identifier.
|
2160
2163
|
:param str tax_reg_number: (Updatable) Tax registration number.
|
2161
2164
|
"""
|
2165
|
+
if giro is not None:
|
2166
|
+
pulumi.set(__self__, "giro", giro)
|
2162
2167
|
if no_tax_reason_code is not None:
|
2163
2168
|
pulumi.set(__self__, "no_tax_reason_code", no_tax_reason_code)
|
2164
2169
|
if no_tax_reason_code_details is not None:
|
@@ -2170,6 +2175,14 @@ class SubscriptionTaxInfo(dict):
|
|
2170
2175
|
if tax_reg_number is not None:
|
2171
2176
|
pulumi.set(__self__, "tax_reg_number", tax_reg_number)
|
2172
2177
|
|
2178
|
+
@property
|
2179
|
+
@pulumi.getter
|
2180
|
+
def giro(self) -> Optional[str]:
|
2181
|
+
"""
|
2182
|
+
Companies' GIRO code
|
2183
|
+
"""
|
2184
|
+
return pulumi.get(self, "giro")
|
2185
|
+
|
2173
2186
|
@property
|
2174
2187
|
@pulumi.getter(name="noTaxReasonCode")
|
2175
2188
|
def no_tax_reason_code(self) -> Optional[str]:
|
@@ -2253,7 +2266,7 @@ class GetAddressRuleAddressFieldResult(dict):
|
|
2253
2266
|
:param bool is_required: The given field is requeired or not
|
2254
2267
|
:param Sequence['GetAddressRuleAddressFieldLabelArgs'] labels: Label information
|
2255
2268
|
:param str language: Locale code (rfc4646 format) of a forced language (e.g.: jp addresses require jp always)
|
2256
|
-
:param str name:
|
2269
|
+
:param str name: User friendly name
|
2257
2270
|
"""
|
2258
2271
|
pulumi.set(__self__, "formats", formats)
|
2259
2272
|
pulumi.set(__self__, "is_required", is_required)
|
@@ -2297,7 +2310,7 @@ class GetAddressRuleAddressFieldResult(dict):
|
|
2297
2310
|
@pulumi.getter
|
2298
2311
|
def name(self) -> str:
|
2299
2312
|
"""
|
2300
|
-
|
2313
|
+
User friendly name
|
2301
2314
|
"""
|
2302
2315
|
return pulumi.get(self, "name")
|
2303
2316
|
|
@@ -2309,7 +2322,7 @@ class GetAddressRuleAddressFieldFormatResult(dict):
|
|
2309
2322
|
value: str):
|
2310
2323
|
"""
|
2311
2324
|
:param str example: English translation of the label (for reference only - translation is not provided)
|
2312
|
-
:param str value:
|
2325
|
+
:param str value: Value
|
2313
2326
|
"""
|
2314
2327
|
pulumi.set(__self__, "example", example)
|
2315
2328
|
pulumi.set(__self__, "value", value)
|
@@ -2326,7 +2339,7 @@ class GetAddressRuleAddressFieldFormatResult(dict):
|
|
2326
2339
|
@pulumi.getter
|
2327
2340
|
def value(self) -> str:
|
2328
2341
|
"""
|
2329
|
-
|
2342
|
+
Value
|
2330
2343
|
"""
|
2331
2344
|
return pulumi.get(self, "value")
|
2332
2345
|
|
@@ -2338,7 +2351,7 @@ class GetAddressRuleAddressFieldLabelResult(dict):
|
|
2338
2351
|
value: str):
|
2339
2352
|
"""
|
2340
2353
|
:param str example: English translation of the label (for reference only - translation is not provided)
|
2341
|
-
:param str value:
|
2354
|
+
:param str value: Value
|
2342
2355
|
"""
|
2343
2356
|
pulumi.set(__self__, "example", example)
|
2344
2357
|
pulumi.set(__self__, "value", value)
|
@@ -2355,7 +2368,7 @@ class GetAddressRuleAddressFieldLabelResult(dict):
|
|
2355
2368
|
@pulumi.getter
|
2356
2369
|
def value(self) -> str:
|
2357
2370
|
"""
|
2358
|
-
|
2371
|
+
Value
|
2359
2372
|
"""
|
2360
2373
|
return pulumi.get(self, "value")
|
2361
2374
|
|
@@ -2391,7 +2404,7 @@ class GetAddressRuleContactFieldResult(dict):
|
|
2391
2404
|
:param bool is_required: The given field is requeired or not
|
2392
2405
|
:param Sequence['GetAddressRuleContactFieldLabelArgs'] labels: Label information
|
2393
2406
|
:param str language: Locale code (rfc4646 format) of a forced language (e.g.: jp addresses require jp always)
|
2394
|
-
:param str name:
|
2407
|
+
:param str name: User friendly name
|
2395
2408
|
"""
|
2396
2409
|
pulumi.set(__self__, "formats", formats)
|
2397
2410
|
pulumi.set(__self__, "is_required", is_required)
|
@@ -2435,7 +2448,7 @@ class GetAddressRuleContactFieldResult(dict):
|
|
2435
2448
|
@pulumi.getter
|
2436
2449
|
def name(self) -> str:
|
2437
2450
|
"""
|
2438
|
-
|
2451
|
+
User friendly name
|
2439
2452
|
"""
|
2440
2453
|
return pulumi.get(self, "name")
|
2441
2454
|
|
@@ -2447,7 +2460,7 @@ class GetAddressRuleContactFieldFormatResult(dict):
|
|
2447
2460
|
value: str):
|
2448
2461
|
"""
|
2449
2462
|
:param str example: English translation of the label (for reference only - translation is not provided)
|
2450
|
-
:param str value:
|
2463
|
+
:param str value: Value
|
2451
2464
|
"""
|
2452
2465
|
pulumi.set(__self__, "example", example)
|
2453
2466
|
pulumi.set(__self__, "value", value)
|
@@ -2464,7 +2477,7 @@ class GetAddressRuleContactFieldFormatResult(dict):
|
|
2464
2477
|
@pulumi.getter
|
2465
2478
|
def value(self) -> str:
|
2466
2479
|
"""
|
2467
|
-
|
2480
|
+
Value
|
2468
2481
|
"""
|
2469
2482
|
return pulumi.get(self, "value")
|
2470
2483
|
|
@@ -2476,7 +2489,7 @@ class GetAddressRuleContactFieldLabelResult(dict):
|
|
2476
2489
|
value: str):
|
2477
2490
|
"""
|
2478
2491
|
:param str example: English translation of the label (for reference only - translation is not provided)
|
2479
|
-
:param str value:
|
2492
|
+
:param str value: Value
|
2480
2493
|
"""
|
2481
2494
|
pulumi.set(__self__, "example", example)
|
2482
2495
|
pulumi.set(__self__, "value", value)
|
@@ -2493,7 +2506,7 @@ class GetAddressRuleContactFieldLabelResult(dict):
|
|
2493
2506
|
@pulumi.getter
|
2494
2507
|
def value(self) -> str:
|
2495
2508
|
"""
|
2496
|
-
|
2509
|
+
Value
|
2497
2510
|
"""
|
2498
2511
|
return pulumi.get(self, "value")
|
2499
2512
|
|
@@ -2501,11 +2514,14 @@ class GetAddressRuleContactFieldLabelResult(dict):
|
|
2501
2514
|
@pulumi.output_type
|
2502
2515
|
class GetAddressRuleTaxResult(dict):
|
2503
2516
|
def __init__(__self__, *,
|
2504
|
-
fields: Sequence['outputs.GetAddressRuleTaxFieldResult']
|
2517
|
+
fields: Sequence['outputs.GetAddressRuleTaxFieldResult'],
|
2518
|
+
value_sets: Sequence['outputs.GetAddressRuleTaxValueSetResult']):
|
2505
2519
|
"""
|
2506
2520
|
:param Sequence['GetAddressRuleTaxFieldArgs'] fields: Tax type rule fields
|
2521
|
+
:param Sequence['GetAddressRuleTaxValueSetArgs'] value_sets: Label value pair for allowed values. Used for GIRO
|
2507
2522
|
"""
|
2508
2523
|
pulumi.set(__self__, "fields", fields)
|
2524
|
+
pulumi.set(__self__, "value_sets", value_sets)
|
2509
2525
|
|
2510
2526
|
@property
|
2511
2527
|
@pulumi.getter
|
@@ -2515,6 +2531,14 @@ class GetAddressRuleTaxResult(dict):
|
|
2515
2531
|
"""
|
2516
2532
|
return pulumi.get(self, "fields")
|
2517
2533
|
|
2534
|
+
@property
|
2535
|
+
@pulumi.getter(name="valueSets")
|
2536
|
+
def value_sets(self) -> Sequence['outputs.GetAddressRuleTaxValueSetResult']:
|
2537
|
+
"""
|
2538
|
+
Label value pair for allowed values. Used for GIRO
|
2539
|
+
"""
|
2540
|
+
return pulumi.get(self, "value_sets")
|
2541
|
+
|
2518
2542
|
|
2519
2543
|
@pulumi.output_type
|
2520
2544
|
class GetAddressRuleTaxFieldResult(dict):
|
@@ -2529,7 +2553,7 @@ class GetAddressRuleTaxFieldResult(dict):
|
|
2529
2553
|
:param bool is_required: The given field is requeired or not
|
2530
2554
|
:param Sequence['GetAddressRuleTaxFieldLabelArgs'] labels: Label information
|
2531
2555
|
:param str language: Locale code (rfc4646 format) of a forced language (e.g.: jp addresses require jp always)
|
2532
|
-
:param str name:
|
2556
|
+
:param str name: User friendly name
|
2533
2557
|
"""
|
2534
2558
|
pulumi.set(__self__, "formats", formats)
|
2535
2559
|
pulumi.set(__self__, "is_required", is_required)
|
@@ -2573,7 +2597,7 @@ class GetAddressRuleTaxFieldResult(dict):
|
|
2573
2597
|
@pulumi.getter
|
2574
2598
|
def name(self) -> str:
|
2575
2599
|
"""
|
2576
|
-
|
2600
|
+
User friendly name
|
2577
2601
|
"""
|
2578
2602
|
return pulumi.get(self, "name")
|
2579
2603
|
|
@@ -2585,7 +2609,7 @@ class GetAddressRuleTaxFieldFormatResult(dict):
|
|
2585
2609
|
value: str):
|
2586
2610
|
"""
|
2587
2611
|
:param str example: English translation of the label (for reference only - translation is not provided)
|
2588
|
-
:param str value:
|
2612
|
+
:param str value: Value
|
2589
2613
|
"""
|
2590
2614
|
pulumi.set(__self__, "example", example)
|
2591
2615
|
pulumi.set(__self__, "value", value)
|
@@ -2602,7 +2626,7 @@ class GetAddressRuleTaxFieldFormatResult(dict):
|
|
2602
2626
|
@pulumi.getter
|
2603
2627
|
def value(self) -> str:
|
2604
2628
|
"""
|
2605
|
-
|
2629
|
+
Value
|
2606
2630
|
"""
|
2607
2631
|
return pulumi.get(self, "value")
|
2608
2632
|
|
@@ -2614,7 +2638,7 @@ class GetAddressRuleTaxFieldLabelResult(dict):
|
|
2614
2638
|
value: str):
|
2615
2639
|
"""
|
2616
2640
|
:param str example: English translation of the label (for reference only - translation is not provided)
|
2617
|
-
:param str value:
|
2641
|
+
:param str value: Value
|
2618
2642
|
"""
|
2619
2643
|
pulumi.set(__self__, "example", example)
|
2620
2644
|
pulumi.set(__self__, "value", value)
|
@@ -2631,7 +2655,36 @@ class GetAddressRuleTaxFieldLabelResult(dict):
|
|
2631
2655
|
@pulumi.getter
|
2632
2656
|
def value(self) -> str:
|
2633
2657
|
"""
|
2634
|
-
|
2658
|
+
Value
|
2659
|
+
"""
|
2660
|
+
return pulumi.get(self, "value")
|
2661
|
+
|
2662
|
+
|
2663
|
+
@pulumi.output_type
|
2664
|
+
class GetAddressRuleTaxValueSetResult(dict):
|
2665
|
+
def __init__(__self__, *,
|
2666
|
+
name: str,
|
2667
|
+
value: str):
|
2668
|
+
"""
|
2669
|
+
:param str name: User friendly name
|
2670
|
+
:param str value: Value
|
2671
|
+
"""
|
2672
|
+
pulumi.set(__self__, "name", name)
|
2673
|
+
pulumi.set(__self__, "value", value)
|
2674
|
+
|
2675
|
+
@property
|
2676
|
+
@pulumi.getter
|
2677
|
+
def name(self) -> str:
|
2678
|
+
"""
|
2679
|
+
User friendly name
|
2680
|
+
"""
|
2681
|
+
return pulumi.get(self, "name")
|
2682
|
+
|
2683
|
+
@property
|
2684
|
+
@pulumi.getter
|
2685
|
+
def value(self) -> str:
|
2686
|
+
"""
|
2687
|
+
Value
|
2635
2688
|
"""
|
2636
2689
|
return pulumi.get(self, "value")
|
2637
2690
|
|
@@ -5516,24 +5569,35 @@ class GetSubscriptionSubscriptionTaxInfoResult(dict):
|
|
5516
5569
|
@pulumi.output_type
|
5517
5570
|
class GetSubscriptionTaxInfoResult(dict):
|
5518
5571
|
def __init__(__self__, *,
|
5572
|
+
giro: str,
|
5519
5573
|
no_tax_reason_code: str,
|
5520
5574
|
no_tax_reason_code_details: str,
|
5521
5575
|
tax_cnpj: str,
|
5522
5576
|
tax_payer_id: str,
|
5523
5577
|
tax_reg_number: str):
|
5524
5578
|
"""
|
5579
|
+
:param str giro: Companies' GIRO code
|
5525
5580
|
:param str no_tax_reason_code: Tax exemption reason code.
|
5526
5581
|
:param str no_tax_reason_code_details: Tax exemption reason description.
|
5527
5582
|
:param str tax_cnpj: Brazilian companies' CNPJ number.
|
5528
5583
|
:param str tax_payer_id: Tay payer identifier.
|
5529
5584
|
:param str tax_reg_number: Tax registration number.
|
5530
5585
|
"""
|
5586
|
+
pulumi.set(__self__, "giro", giro)
|
5531
5587
|
pulumi.set(__self__, "no_tax_reason_code", no_tax_reason_code)
|
5532
5588
|
pulumi.set(__self__, "no_tax_reason_code_details", no_tax_reason_code_details)
|
5533
5589
|
pulumi.set(__self__, "tax_cnpj", tax_cnpj)
|
5534
5590
|
pulumi.set(__self__, "tax_payer_id", tax_payer_id)
|
5535
5591
|
pulumi.set(__self__, "tax_reg_number", tax_reg_number)
|
5536
5592
|
|
5593
|
+
@property
|
5594
|
+
@pulumi.getter
|
5595
|
+
def giro(self) -> str:
|
5596
|
+
"""
|
5597
|
+
Companies' GIRO code
|
5598
|
+
"""
|
5599
|
+
return pulumi.get(self, "giro")
|
5600
|
+
|
5537
5601
|
@property
|
5538
5602
|
@pulumi.getter(name="noTaxReasonCode")
|
5539
5603
|
def no_tax_reason_code(self) -> str:
|
@@ -7134,24 +7198,35 @@ class GetSubscriptionsSubscriptionCollectionItemSubscriptionTaxInfoResult(dict):
|
|
7134
7198
|
@pulumi.output_type
|
7135
7199
|
class GetSubscriptionsSubscriptionCollectionItemTaxInfoResult(dict):
|
7136
7200
|
def __init__(__self__, *,
|
7201
|
+
giro: str,
|
7137
7202
|
no_tax_reason_code: str,
|
7138
7203
|
no_tax_reason_code_details: str,
|
7139
7204
|
tax_cnpj: str,
|
7140
7205
|
tax_payer_id: str,
|
7141
7206
|
tax_reg_number: str):
|
7142
7207
|
"""
|
7208
|
+
:param str giro: Companies' GIRO code
|
7143
7209
|
:param str no_tax_reason_code: Tax exemption reason code.
|
7144
7210
|
:param str no_tax_reason_code_details: Tax exemption reason description.
|
7145
7211
|
:param str tax_cnpj: Brazilian companies' CNPJ number.
|
7146
7212
|
:param str tax_payer_id: Tay payer identifier.
|
7147
7213
|
:param str tax_reg_number: Tax registration number.
|
7148
7214
|
"""
|
7215
|
+
pulumi.set(__self__, "giro", giro)
|
7149
7216
|
pulumi.set(__self__, "no_tax_reason_code", no_tax_reason_code)
|
7150
7217
|
pulumi.set(__self__, "no_tax_reason_code_details", no_tax_reason_code_details)
|
7151
7218
|
pulumi.set(__self__, "tax_cnpj", tax_cnpj)
|
7152
7219
|
pulumi.set(__self__, "tax_payer_id", tax_payer_id)
|
7153
7220
|
pulumi.set(__self__, "tax_reg_number", tax_reg_number)
|
7154
7221
|
|
7222
|
+
@property
|
7223
|
+
@pulumi.getter
|
7224
|
+
def giro(self) -> str:
|
7225
|
+
"""
|
7226
|
+
Companies' GIRO code
|
7227
|
+
"""
|
7228
|
+
return pulumi.get(self, "giro")
|
7229
|
+
|
7155
7230
|
@property
|
7156
7231
|
@pulumi.getter(name="noTaxReasonCode")
|
7157
7232
|
def no_tax_reason_code(self) -> str:
|
@@ -24,6 +24,8 @@ from .get_monitored_resource_tasks import *
|
|
24
24
|
from .get_monitored_resource_type import *
|
25
25
|
from .get_monitored_resource_types import *
|
26
26
|
from .get_monitored_resources import *
|
27
|
+
from .get_process_set import *
|
28
|
+
from .get_process_sets import *
|
27
29
|
from .metric_extension import *
|
28
30
|
from .metric_extension_metric_extension_on_given_resources_management import *
|
29
31
|
from .metric_extensions_test_management import *
|
@@ -34,5 +36,6 @@ from .monitored_resources_associate_monitored_resource import *
|
|
34
36
|
from .monitored_resources_list_member import *
|
35
37
|
from .monitored_resources_search import *
|
36
38
|
from .monitored_resources_search_association import *
|
39
|
+
from .process_set import *
|
37
40
|
from ._inputs import *
|
38
41
|
from . import outputs
|