pulumi-oci 1.21.0a1706749393__py3-none-any.whl → 1.22.0a1706814317__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 +16 -0
- pulumi_oci/_utilities.py +6 -2
- pulumi_oci/config/__init__.pyi +0 -4
- pulumi_oci/config/vars.py +0 -4
- pulumi_oci/database/autonomous_database.py +49 -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/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/ospgateway/_inputs.py +16 -0
- pulumi_oci/ospgateway/outputs.py +94 -19
- {pulumi_oci-1.21.0a1706749393.dist-info → pulumi_oci-1.22.0a1706814317.dist-info}/METADATA +2 -1
- {pulumi_oci-1.21.0a1706749393.dist-info → pulumi_oci-1.22.0a1706814317.dist-info}/RECORD +56 -50
- {pulumi_oci-1.21.0a1706749393.dist-info → pulumi_oci-1.22.0a1706814317.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.21.0a1706749393.dist-info → pulumi_oci-1.22.0a1706814317.dist-info}/top_level.txt +0 -0
@@ -19,6 +19,7 @@ class WorkspaceImportRequestArgs:
|
|
19
19
|
bucket: pulumi.Input[str],
|
20
20
|
file_name: pulumi.Input[str],
|
21
21
|
workspace_id: pulumi.Input[str],
|
22
|
+
are_data_asset_references_included: Optional[pulumi.Input[bool]] = None,
|
22
23
|
import_conflict_resolution: Optional[pulumi.Input['WorkspaceImportRequestImportConflictResolutionArgs']] = None,
|
23
24
|
object_key_for_import: Optional[pulumi.Input[str]] = None,
|
24
25
|
object_storage_region: Optional[pulumi.Input[str]] = None,
|
@@ -32,6 +33,7 @@ class WorkspaceImportRequestArgs:
|
|
32
33
|
|
33
34
|
** IMPORTANT **
|
34
35
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
36
|
+
:param pulumi.Input[bool] are_data_asset_references_included: This field controls if the data asset references will be included during import.
|
35
37
|
:param pulumi.Input['WorkspaceImportRequestImportConflictResolutionArgs'] import_conflict_resolution: Import Objects Conflict resolution.
|
36
38
|
:param pulumi.Input[str] object_key_for_import: Key of the object inside which all the objects will be imported
|
37
39
|
:param pulumi.Input[str] object_storage_region: Region of the object storage (if using object storage of different region)
|
@@ -40,6 +42,8 @@ class WorkspaceImportRequestArgs:
|
|
40
42
|
pulumi.set(__self__, "bucket", bucket)
|
41
43
|
pulumi.set(__self__, "file_name", file_name)
|
42
44
|
pulumi.set(__self__, "workspace_id", workspace_id)
|
45
|
+
if are_data_asset_references_included is not None:
|
46
|
+
pulumi.set(__self__, "are_data_asset_references_included", are_data_asset_references_included)
|
43
47
|
if import_conflict_resolution is not None:
|
44
48
|
pulumi.set(__self__, "import_conflict_resolution", import_conflict_resolution)
|
45
49
|
if object_key_for_import is not None:
|
@@ -89,6 +93,18 @@ class WorkspaceImportRequestArgs:
|
|
89
93
|
def workspace_id(self, value: pulumi.Input[str]):
|
90
94
|
pulumi.set(self, "workspace_id", value)
|
91
95
|
|
96
|
+
@property
|
97
|
+
@pulumi.getter(name="areDataAssetReferencesIncluded")
|
98
|
+
def are_data_asset_references_included(self) -> Optional[pulumi.Input[bool]]:
|
99
|
+
"""
|
100
|
+
This field controls if the data asset references will be included during import.
|
101
|
+
"""
|
102
|
+
return pulumi.get(self, "are_data_asset_references_included")
|
103
|
+
|
104
|
+
@are_data_asset_references_included.setter
|
105
|
+
def are_data_asset_references_included(self, value: Optional[pulumi.Input[bool]]):
|
106
|
+
pulumi.set(self, "are_data_asset_references_included", value)
|
107
|
+
|
92
108
|
@property
|
93
109
|
@pulumi.getter(name="importConflictResolution")
|
94
110
|
def import_conflict_resolution(self) -> Optional[pulumi.Input['WorkspaceImportRequestImportConflictResolutionArgs']]:
|
@@ -141,6 +157,7 @@ class WorkspaceImportRequestArgs:
|
|
141
157
|
@pulumi.input_type
|
142
158
|
class _WorkspaceImportRequestState:
|
143
159
|
def __init__(__self__, *,
|
160
|
+
are_data_asset_references_included: Optional[pulumi.Input[bool]] = None,
|
144
161
|
bucket: Optional[pulumi.Input[str]] = None,
|
145
162
|
created_by: Optional[pulumi.Input[str]] = None,
|
146
163
|
error_messages: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -159,6 +176,7 @@ class _WorkspaceImportRequestState:
|
|
159
176
|
workspace_id: Optional[pulumi.Input[str]] = None):
|
160
177
|
"""
|
161
178
|
Input properties used for looking up and filtering WorkspaceImportRequest resources.
|
179
|
+
:param pulumi.Input[bool] are_data_asset_references_included: This field controls if the data asset references will be included during import.
|
162
180
|
:param pulumi.Input[str] bucket: Name of the Object Storage bucket where the object will be imported from.
|
163
181
|
:param pulumi.Input[str] created_by: Name of the user who initiated import request.
|
164
182
|
:param pulumi.Input[Mapping[str, Any]] error_messages: Contains key of the error
|
@@ -180,6 +198,8 @@ class _WorkspaceImportRequestState:
|
|
180
198
|
** IMPORTANT **
|
181
199
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
182
200
|
"""
|
201
|
+
if are_data_asset_references_included is not None:
|
202
|
+
pulumi.set(__self__, "are_data_asset_references_included", are_data_asset_references_included)
|
183
203
|
if bucket is not None:
|
184
204
|
pulumi.set(__self__, "bucket", bucket)
|
185
205
|
if created_by is not None:
|
@@ -213,6 +233,18 @@ class _WorkspaceImportRequestState:
|
|
213
233
|
if workspace_id is not None:
|
214
234
|
pulumi.set(__self__, "workspace_id", workspace_id)
|
215
235
|
|
236
|
+
@property
|
237
|
+
@pulumi.getter(name="areDataAssetReferencesIncluded")
|
238
|
+
def are_data_asset_references_included(self) -> Optional[pulumi.Input[bool]]:
|
239
|
+
"""
|
240
|
+
This field controls if the data asset references will be included during import.
|
241
|
+
"""
|
242
|
+
return pulumi.get(self, "are_data_asset_references_included")
|
243
|
+
|
244
|
+
@are_data_asset_references_included.setter
|
245
|
+
def are_data_asset_references_included(self, value: Optional[pulumi.Input[bool]]):
|
246
|
+
pulumi.set(self, "are_data_asset_references_included", value)
|
247
|
+
|
216
248
|
@property
|
217
249
|
@pulumi.getter
|
218
250
|
def bucket(self) -> Optional[pulumi.Input[str]]:
|
@@ -415,6 +447,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
415
447
|
def __init__(__self__,
|
416
448
|
resource_name: str,
|
417
449
|
opts: Optional[pulumi.ResourceOptions] = None,
|
450
|
+
are_data_asset_references_included: Optional[pulumi.Input[bool]] = None,
|
418
451
|
bucket: Optional[pulumi.Input[str]] = None,
|
419
452
|
file_name: Optional[pulumi.Input[str]] = None,
|
420
453
|
import_conflict_resolution: Optional[pulumi.Input[pulumi.InputType['WorkspaceImportRequestImportConflictResolutionArgs']]] = None,
|
@@ -438,6 +471,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
438
471
|
bucket=var["workspace_import_request_bucket"],
|
439
472
|
file_name=var["workspace_import_request_file_name"],
|
440
473
|
workspace_id=oci_dataintegration_workspace["test_workspace"]["id"],
|
474
|
+
are_data_asset_references_included=var["workspace_import_request_are_data_asset_references_included"],
|
441
475
|
import_conflict_resolution=oci.data_integration.WorkspaceImportRequestImportConflictResolutionArgs(
|
442
476
|
import_conflict_resolution_type=var["workspace_import_request_import_conflict_resolution_import_conflict_resolution_type"],
|
443
477
|
duplicate_prefix=var["workspace_import_request_import_conflict_resolution_duplicate_prefix"],
|
@@ -458,6 +492,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
458
492
|
|
459
493
|
:param str resource_name: The name of the resource.
|
460
494
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
495
|
+
:param pulumi.Input[bool] are_data_asset_references_included: This field controls if the data asset references will be included during import.
|
461
496
|
:param pulumi.Input[str] bucket: Name of the Object Storage bucket where the object will be imported from.
|
462
497
|
:param pulumi.Input[str] file_name: Name of the zip file to be imported.
|
463
498
|
:param pulumi.Input[pulumi.InputType['WorkspaceImportRequestImportConflictResolutionArgs']] import_conflict_resolution: Import Objects Conflict resolution.
|
@@ -491,6 +526,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
491
526
|
bucket=var["workspace_import_request_bucket"],
|
492
527
|
file_name=var["workspace_import_request_file_name"],
|
493
528
|
workspace_id=oci_dataintegration_workspace["test_workspace"]["id"],
|
529
|
+
are_data_asset_references_included=var["workspace_import_request_are_data_asset_references_included"],
|
494
530
|
import_conflict_resolution=oci.data_integration.WorkspaceImportRequestImportConflictResolutionArgs(
|
495
531
|
import_conflict_resolution_type=var["workspace_import_request_import_conflict_resolution_import_conflict_resolution_type"],
|
496
532
|
duplicate_prefix=var["workspace_import_request_import_conflict_resolution_duplicate_prefix"],
|
@@ -524,6 +560,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
524
560
|
def _internal_init(__self__,
|
525
561
|
resource_name: str,
|
526
562
|
opts: Optional[pulumi.ResourceOptions] = None,
|
563
|
+
are_data_asset_references_included: Optional[pulumi.Input[bool]] = None,
|
527
564
|
bucket: Optional[pulumi.Input[str]] = None,
|
528
565
|
file_name: Optional[pulumi.Input[str]] = None,
|
529
566
|
import_conflict_resolution: Optional[pulumi.Input[pulumi.InputType['WorkspaceImportRequestImportConflictResolutionArgs']]] = None,
|
@@ -540,6 +577,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
540
577
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
541
578
|
__props__ = WorkspaceImportRequestArgs.__new__(WorkspaceImportRequestArgs)
|
542
579
|
|
580
|
+
__props__.__dict__["are_data_asset_references_included"] = are_data_asset_references_included
|
543
581
|
if bucket is None and not opts.urn:
|
544
582
|
raise TypeError("Missing required property 'bucket'")
|
545
583
|
__props__.__dict__["bucket"] = bucket
|
@@ -572,6 +610,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
572
610
|
def get(resource_name: str,
|
573
611
|
id: pulumi.Input[str],
|
574
612
|
opts: Optional[pulumi.ResourceOptions] = None,
|
613
|
+
are_data_asset_references_included: Optional[pulumi.Input[bool]] = None,
|
575
614
|
bucket: Optional[pulumi.Input[str]] = None,
|
576
615
|
created_by: Optional[pulumi.Input[str]] = None,
|
577
616
|
error_messages: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -595,6 +634,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
595
634
|
:param str resource_name: The unique name of the resulting resource.
|
596
635
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
597
636
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
637
|
+
:param pulumi.Input[bool] are_data_asset_references_included: This field controls if the data asset references will be included during import.
|
598
638
|
:param pulumi.Input[str] bucket: Name of the Object Storage bucket where the object will be imported from.
|
599
639
|
:param pulumi.Input[str] created_by: Name of the user who initiated import request.
|
600
640
|
:param pulumi.Input[Mapping[str, Any]] error_messages: Contains key of the error
|
@@ -620,6 +660,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
620
660
|
|
621
661
|
__props__ = _WorkspaceImportRequestState.__new__(_WorkspaceImportRequestState)
|
622
662
|
|
663
|
+
__props__.__dict__["are_data_asset_references_included"] = are_data_asset_references_included
|
623
664
|
__props__.__dict__["bucket"] = bucket
|
624
665
|
__props__.__dict__["created_by"] = created_by
|
625
666
|
__props__.__dict__["error_messages"] = error_messages
|
@@ -638,6 +679,14 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
638
679
|
__props__.__dict__["workspace_id"] = workspace_id
|
639
680
|
return WorkspaceImportRequest(resource_name, opts=opts, __props__=__props__)
|
640
681
|
|
682
|
+
@property
|
683
|
+
@pulumi.getter(name="areDataAssetReferencesIncluded")
|
684
|
+
def are_data_asset_references_included(self) -> pulumi.Output[bool]:
|
685
|
+
"""
|
686
|
+
This field controls if the data asset references will be included during import.
|
687
|
+
"""
|
688
|
+
return pulumi.get(self, "are_data_asset_references_included")
|
689
|
+
|
641
690
|
@property
|
642
691
|
@pulumi.getter
|
643
692
|
def bucket(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:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pulumi_oci
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.22.0a1706814317
|
4
4
|
Summary: A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.
|
5
5
|
License: Apache-2.0
|
6
6
|
Project-URL: Homepage, https://www.pulumi.com
|
@@ -11,6 +11,7 @@ Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver >=0.2.1
|
12
12
|
Requires-Dist: pulumi <4.0.0,>=3.0.0
|
13
13
|
Requires-Dist: semver >=2.8.1
|
14
|
+
Requires-Dist: importlib-metadata <7.0.0,>=6.0.0 ; python_version < "3.8"
|
14
15
|
|
15
16
|
# Oracle Cloud Infrastructure Resource Provider
|
16
17
|
|