pulumi-gcp 8.1.0a1726293903__py3-none-any.whl → 8.1.0a1726492828__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 (101) hide show
  1. pulumi_gcp/__init__.py +24 -0
  2. pulumi_gcp/alloydb/_inputs.py +94 -0
  3. pulumi_gcp/alloydb/cluster.py +94 -1
  4. pulumi_gcp/alloydb/outputs.py +79 -0
  5. pulumi_gcp/assuredworkloads/workload.py +135 -16
  6. pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
  7. pulumi_gcp/backupdisasterrecovery/backup_vault.py +1203 -0
  8. pulumi_gcp/bigquery/_inputs.py +33 -0
  9. pulumi_gcp/bigquery/data_transfer_config.py +134 -6
  10. pulumi_gcp/bigquery/outputs.py +36 -0
  11. pulumi_gcp/bigqueryanalyticshub/_inputs.py +169 -7
  12. pulumi_gcp/bigqueryanalyticshub/data_exchange.py +96 -3
  13. pulumi_gcp/bigqueryanalyticshub/listing.py +114 -0
  14. pulumi_gcp/bigqueryanalyticshub/outputs.py +138 -5
  15. pulumi_gcp/bigtable/_inputs.py +21 -1
  16. pulumi_gcp/bigtable/outputs.py +13 -1
  17. pulumi_gcp/bigtable/table.py +34 -0
  18. pulumi_gcp/certificateauthority/authority.py +14 -7
  19. pulumi_gcp/certificatemanager/__init__.py +1 -0
  20. pulumi_gcp/certificatemanager/certificate.py +28 -0
  21. pulumi_gcp/certificatemanager/get_certificates.py +150 -0
  22. pulumi_gcp/certificatemanager/outputs.py +322 -0
  23. pulumi_gcp/cloudbuild/_inputs.py +6 -6
  24. pulumi_gcp/cloudbuild/outputs.py +4 -4
  25. pulumi_gcp/cloudrun/_inputs.py +6 -12
  26. pulumi_gcp/cloudrun/outputs.py +8 -16
  27. pulumi_gcp/cloudrunv2/_inputs.py +72 -15
  28. pulumi_gcp/cloudrunv2/outputs.py +82 -16
  29. pulumi_gcp/cloudrunv2/service.py +50 -4
  30. pulumi_gcp/cloudtasks/_inputs.py +630 -0
  31. pulumi_gcp/cloudtasks/outputs.py +479 -0
  32. pulumi_gcp/cloudtasks/queue.py +238 -0
  33. pulumi_gcp/compute/_inputs.py +129 -9
  34. pulumi_gcp/compute/get_instance.py +1 -1
  35. pulumi_gcp/compute/health_check.py +114 -0
  36. pulumi_gcp/compute/instance.py +86 -4
  37. pulumi_gcp/compute/instance_template.py +66 -0
  38. pulumi_gcp/compute/interconnect.py +28 -21
  39. pulumi_gcp/compute/node_template.py +93 -0
  40. pulumi_gcp/compute/outputs.py +108 -6
  41. pulumi_gcp/compute/target_https_proxy.py +28 -0
  42. pulumi_gcp/container/_inputs.py +140 -3
  43. pulumi_gcp/container/attached_cluster.py +7 -7
  44. pulumi_gcp/container/outputs.py +174 -2
  45. pulumi_gcp/databasemigrationservice/_inputs.py +176 -148
  46. pulumi_gcp/databasemigrationservice/connection_profile.py +206 -0
  47. pulumi_gcp/databasemigrationservice/outputs.py +109 -87
  48. pulumi_gcp/dataloss/_inputs.py +353 -1
  49. pulumi_gcp/dataloss/outputs.py +274 -3
  50. pulumi_gcp/dataproc/_inputs.py +27 -27
  51. pulumi_gcp/dataproc/outputs.py +18 -18
  52. pulumi_gcp/datastream/_inputs.py +69 -1
  53. pulumi_gcp/datastream/outputs.py +44 -2
  54. pulumi_gcp/datastream/stream.py +194 -7
  55. pulumi_gcp/discoveryengine/_inputs.py +188 -0
  56. pulumi_gcp/discoveryengine/data_store.py +14 -14
  57. pulumi_gcp/discoveryengine/outputs.py +153 -1
  58. pulumi_gcp/firebase/database_instance.py +7 -7
  59. pulumi_gcp/gkehub/_inputs.py +25 -1
  60. pulumi_gcp/gkehub/feature_membership.py +12 -6
  61. pulumi_gcp/gkehub/outputs.py +17 -1
  62. pulumi_gcp/iam/_inputs.py +196 -0
  63. pulumi_gcp/iam/get_workload_identity_pool_provider.py +13 -3
  64. pulumi_gcp/iam/outputs.py +295 -0
  65. pulumi_gcp/iam/workload_identity_pool_provider.py +164 -3
  66. pulumi_gcp/kms/__init__.py +2 -0
  67. pulumi_gcp/kms/autokey_config.py +10 -2
  68. pulumi_gcp/kms/get_crypto_key_latest_version.py +222 -0
  69. pulumi_gcp/kms/get_crypto_key_versions.py +175 -0
  70. pulumi_gcp/kms/outputs.py +164 -0
  71. pulumi_gcp/netapp/active_directory.py +6 -6
  72. pulumi_gcp/netapp/backup.py +6 -6
  73. pulumi_gcp/netapp/backup_policy.py +6 -6
  74. pulumi_gcp/netapp/backup_vault.py +6 -6
  75. pulumi_gcp/netapp/storage_pool.py +4 -4
  76. pulumi_gcp/netapp/volume.py +7 -0
  77. pulumi_gcp/networkconnectivity/_inputs.py +21 -1
  78. pulumi_gcp/networkconnectivity/outputs.py +15 -1
  79. pulumi_gcp/networkconnectivity/spoke.py +8 -0
  80. pulumi_gcp/networksecurity/client_tls_policy.py +24 -22
  81. pulumi_gcp/networksecurity/server_tls_policy.py +20 -32
  82. pulumi_gcp/organizations/get_project.py +13 -3
  83. pulumi_gcp/organizations/project.py +88 -3
  84. pulumi_gcp/parallelstore/instance.py +121 -121
  85. pulumi_gcp/projects/iam_member_remove.py +26 -0
  86. pulumi_gcp/projects/usage_export_bucket.py +38 -0
  87. pulumi_gcp/pubsub/_inputs.py +40 -0
  88. pulumi_gcp/pubsub/outputs.py +51 -1
  89. pulumi_gcp/pubsub/subscription.py +6 -0
  90. pulumi_gcp/pulumi-plugin.json +1 -1
  91. pulumi_gcp/redis/_inputs.py +419 -0
  92. pulumi_gcp/redis/cluster.py +123 -0
  93. pulumi_gcp/redis/outputs.py +315 -0
  94. pulumi_gcp/securitycenter/__init__.py +2 -0
  95. pulumi_gcp/securitycenter/v2_folder_scc_big_query_export.py +857 -0
  96. pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +4 -4
  97. pulumi_gcp/securitycenter/v2_project_scc_big_query_export.py +796 -0
  98. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.1.0a1726492828.dist-info}/METADATA +1 -1
  99. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.1.0a1726492828.dist-info}/RECORD +101 -95
  100. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.1.0a1726492828.dist-info}/WHEEL +1 -1
  101. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.1.0a1726492828.dist-info}/top_level.txt +0 -0
@@ -31,12 +31,13 @@ class WorkloadArgs:
31
31
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
32
32
  partner: Optional[pulumi.Input[str]] = None,
33
33
  partner_permissions: Optional[pulumi.Input['WorkloadPartnerPermissionsArgs']] = None,
34
+ partner_services_billing_account: Optional[pulumi.Input[str]] = None,
34
35
  provisioned_resources_parent: Optional[pulumi.Input[str]] = None,
35
36
  resource_settings: Optional[pulumi.Input[Sequence[pulumi.Input['WorkloadResourceSettingArgs']]]] = None,
36
37
  violation_notifications_enabled: Optional[pulumi.Input[bool]] = None):
37
38
  """
38
39
  The set of arguments for constructing a Workload resource.
39
- :param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT
40
+ :param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS
40
41
  :param pulumi.Input[str] display_name: Required. The user-assigned display name of the Workload. When present it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen, and spaces. Example: My Workload
41
42
  :param pulumi.Input[str] location: The location for the resource
42
43
  :param pulumi.Input[str] organization: The organization for the resource
@@ -51,8 +52,9 @@ class WorkloadArgs:
51
52
 
52
53
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
53
54
  Please refer to the field `effective_labels` for all of the labels present on the resource.
54
- :param pulumi.Input[str] partner: Optional. Partner regime associated with this workload. Possible values: PARTNER_UNSPECIFIED, LOCAL_CONTROLS_BY_S3NS, SOVEREIGN_CONTROLS_BY_T_SYSTEMS, SOVEREIGN_CONTROLS_BY_SIA_MINSAIT, SOVEREIGN_CONTROLS_BY_PSN
55
+ :param pulumi.Input[str] partner: Optional. Partner regime associated with this workload. Possible values: PARTNER_UNSPECIFIED, LOCAL_CONTROLS_BY_S3NS, SOVEREIGN_CONTROLS_BY_T_SYSTEMS, SOVEREIGN_CONTROLS_BY_SIA_MINSAIT, SOVEREIGN_CONTROLS_BY_PSN, SOVEREIGN_CONTROLS_BY_CNTXT, SOVEREIGN_CONTROLS_BY_CNTXT_NO_EKM
55
56
  :param pulumi.Input['WorkloadPartnerPermissionsArgs'] partner_permissions: Optional. Permissions granted to the AW Partner SA account for the customer workload
57
+ :param pulumi.Input[str] partner_services_billing_account: Optional. Input only. Billing account necessary for purchasing services from Sovereign Partners. This field is required for creating SIA/PSN/CNTXT partner workloads. The caller should have 'billing.resourceAssociations.create' IAM permission on this billing-account. The format of this string is billingAccounts/AAAAAA-BBBBBB-CCCCCC.
56
58
  :param pulumi.Input[str] provisioned_resources_parent: Input only. The parent resource for the resources managed by this Assured Workload. May be either empty or a folder resource which is a child of the Workload parent. If not specified all resources are created under the parent organization. Format: folders/{folder_id}
57
59
  :param pulumi.Input[Sequence[pulumi.Input['WorkloadResourceSettingArgs']]] resource_settings: Input only. Resource properties that are used to customize workload resources. These properties (such as custom project id) will be used to create workload resources if possible. This field is optional.
58
60
  :param pulumi.Input[bool] violation_notifications_enabled: Optional. Indicates whether the e-mail notification for a violation is enabled for a workload. This value will be by default True, and if not present will be considered as true. This should only be updated via updateWorkload call. Any Changes to this field during the createWorkload call will not be honored. This will always be true while creating the workload.
@@ -73,6 +75,8 @@ class WorkloadArgs:
73
75
  pulumi.set(__self__, "partner", partner)
74
76
  if partner_permissions is not None:
75
77
  pulumi.set(__self__, "partner_permissions", partner_permissions)
78
+ if partner_services_billing_account is not None:
79
+ pulumi.set(__self__, "partner_services_billing_account", partner_services_billing_account)
76
80
  if provisioned_resources_parent is not None:
77
81
  pulumi.set(__self__, "provisioned_resources_parent", provisioned_resources_parent)
78
82
  if resource_settings is not None:
@@ -84,7 +88,7 @@ class WorkloadArgs:
84
88
  @pulumi.getter(name="complianceRegime")
85
89
  def compliance_regime(self) -> pulumi.Input[str]:
86
90
  """
87
- Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT
91
+ Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS
88
92
  """
89
93
  return pulumi.get(self, "compliance_regime")
90
94
 
@@ -187,7 +191,7 @@ class WorkloadArgs:
187
191
  @pulumi.getter
188
192
  def partner(self) -> Optional[pulumi.Input[str]]:
189
193
  """
190
- Optional. Partner regime associated with this workload. Possible values: PARTNER_UNSPECIFIED, LOCAL_CONTROLS_BY_S3NS, SOVEREIGN_CONTROLS_BY_T_SYSTEMS, SOVEREIGN_CONTROLS_BY_SIA_MINSAIT, SOVEREIGN_CONTROLS_BY_PSN
194
+ Optional. Partner regime associated with this workload. Possible values: PARTNER_UNSPECIFIED, LOCAL_CONTROLS_BY_S3NS, SOVEREIGN_CONTROLS_BY_T_SYSTEMS, SOVEREIGN_CONTROLS_BY_SIA_MINSAIT, SOVEREIGN_CONTROLS_BY_PSN, SOVEREIGN_CONTROLS_BY_CNTXT, SOVEREIGN_CONTROLS_BY_CNTXT_NO_EKM
191
195
  """
192
196
  return pulumi.get(self, "partner")
193
197
 
@@ -207,6 +211,18 @@ class WorkloadArgs:
207
211
  def partner_permissions(self, value: Optional[pulumi.Input['WorkloadPartnerPermissionsArgs']]):
208
212
  pulumi.set(self, "partner_permissions", value)
209
213
 
214
+ @property
215
+ @pulumi.getter(name="partnerServicesBillingAccount")
216
+ def partner_services_billing_account(self) -> Optional[pulumi.Input[str]]:
217
+ """
218
+ Optional. Input only. Billing account necessary for purchasing services from Sovereign Partners. This field is required for creating SIA/PSN/CNTXT partner workloads. The caller should have 'billing.resourceAssociations.create' IAM permission on this billing-account. The format of this string is billingAccounts/AAAAAA-BBBBBB-CCCCCC.
219
+ """
220
+ return pulumi.get(self, "partner_services_billing_account")
221
+
222
+ @partner_services_billing_account.setter
223
+ def partner_services_billing_account(self, value: Optional[pulumi.Input[str]]):
224
+ pulumi.set(self, "partner_services_billing_account", value)
225
+
210
226
  @property
211
227
  @pulumi.getter(name="provisionedResourcesParent")
212
228
  def provisioned_resources_parent(self) -> Optional[pulumi.Input[str]]:
@@ -264,6 +280,7 @@ class _WorkloadState:
264
280
  organization: Optional[pulumi.Input[str]] = None,
265
281
  partner: Optional[pulumi.Input[str]] = None,
266
282
  partner_permissions: Optional[pulumi.Input['WorkloadPartnerPermissionsArgs']] = None,
283
+ partner_services_billing_account: Optional[pulumi.Input[str]] = None,
267
284
  provisioned_resources_parent: Optional[pulumi.Input[str]] = None,
268
285
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
269
286
  resource_settings: Optional[pulumi.Input[Sequence[pulumi.Input['WorkloadResourceSettingArgs']]]] = None,
@@ -273,7 +290,7 @@ class _WorkloadState:
273
290
  """
274
291
  Input properties used for looking up and filtering Workload resources.
275
292
  :param pulumi.Input[str] billing_account: Optional. Input only. The billing account used for the resources which are direct children of workload. This billing account is initially associated with the resources created as part of Workload creation. After the initial creation of these resources, the customer can change the assigned billing account. The resource name has the form `billingAccounts/{billing_account_id}`. For example, `billingAccounts/012345-567890-ABCDEF`.
276
- :param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT
293
+ :param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS
277
294
  :param pulumi.Input[Sequence[pulumi.Input['WorkloadComplianceStatusArgs']]] compliance_statuses: Output only. Count of active Violations in the Workload.
278
295
  :param pulumi.Input[Sequence[pulumi.Input[str]]] compliant_but_disallowed_services: Output only. Urls for services which are compliant for this Assured Workload, but which are currently disallowed by the ResourceUsageRestriction org policy. Invoke workloads.restrictAllowedResources endpoint to allow your project developers to use these services in their environment.
279
296
  :param pulumi.Input[str] create_time: Output only. Immutable. The Workload creation timestamp.
@@ -294,8 +311,9 @@ class _WorkloadState:
294
311
 
295
312
 
296
313
  - - -
297
- :param pulumi.Input[str] partner: Optional. Partner regime associated with this workload. Possible values: PARTNER_UNSPECIFIED, LOCAL_CONTROLS_BY_S3NS, SOVEREIGN_CONTROLS_BY_T_SYSTEMS, SOVEREIGN_CONTROLS_BY_SIA_MINSAIT, SOVEREIGN_CONTROLS_BY_PSN
314
+ :param pulumi.Input[str] partner: Optional. Partner regime associated with this workload. Possible values: PARTNER_UNSPECIFIED, LOCAL_CONTROLS_BY_S3NS, SOVEREIGN_CONTROLS_BY_T_SYSTEMS, SOVEREIGN_CONTROLS_BY_SIA_MINSAIT, SOVEREIGN_CONTROLS_BY_PSN, SOVEREIGN_CONTROLS_BY_CNTXT, SOVEREIGN_CONTROLS_BY_CNTXT_NO_EKM
298
315
  :param pulumi.Input['WorkloadPartnerPermissionsArgs'] partner_permissions: Optional. Permissions granted to the AW Partner SA account for the customer workload
316
+ :param pulumi.Input[str] partner_services_billing_account: Optional. Input only. Billing account necessary for purchasing services from Sovereign Partners. This field is required for creating SIA/PSN/CNTXT partner workloads. The caller should have 'billing.resourceAssociations.create' IAM permission on this billing-account. The format of this string is billingAccounts/AAAAAA-BBBBBB-CCCCCC.
299
317
  :param pulumi.Input[str] provisioned_resources_parent: Input only. The parent resource for the resources managed by this Assured Workload. May be either empty or a folder resource which is a child of the Workload parent. If not specified all resources are created under the parent organization. Format: folders/{folder_id}
300
318
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
301
319
  :param pulumi.Input[Sequence[pulumi.Input['WorkloadResourceSettingArgs']]] resource_settings: Input only. Resource properties that are used to customize workload resources. These properties (such as custom project id) will be used to create workload resources if possible. This field is optional.
@@ -337,6 +355,8 @@ class _WorkloadState:
337
355
  pulumi.set(__self__, "partner", partner)
338
356
  if partner_permissions is not None:
339
357
  pulumi.set(__self__, "partner_permissions", partner_permissions)
358
+ if partner_services_billing_account is not None:
359
+ pulumi.set(__self__, "partner_services_billing_account", partner_services_billing_account)
340
360
  if provisioned_resources_parent is not None:
341
361
  pulumi.set(__self__, "provisioned_resources_parent", provisioned_resources_parent)
342
362
  if pulumi_labels is not None:
@@ -366,7 +386,7 @@ class _WorkloadState:
366
386
  @pulumi.getter(name="complianceRegime")
367
387
  def compliance_regime(self) -> Optional[pulumi.Input[str]]:
368
388
  """
369
- Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT
389
+ Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS
370
390
  """
371
391
  return pulumi.get(self, "compliance_regime")
372
392
 
@@ -541,7 +561,7 @@ class _WorkloadState:
541
561
  @pulumi.getter
542
562
  def partner(self) -> Optional[pulumi.Input[str]]:
543
563
  """
544
- Optional. Partner regime associated with this workload. Possible values: PARTNER_UNSPECIFIED, LOCAL_CONTROLS_BY_S3NS, SOVEREIGN_CONTROLS_BY_T_SYSTEMS, SOVEREIGN_CONTROLS_BY_SIA_MINSAIT, SOVEREIGN_CONTROLS_BY_PSN
564
+ Optional. Partner regime associated with this workload. Possible values: PARTNER_UNSPECIFIED, LOCAL_CONTROLS_BY_S3NS, SOVEREIGN_CONTROLS_BY_T_SYSTEMS, SOVEREIGN_CONTROLS_BY_SIA_MINSAIT, SOVEREIGN_CONTROLS_BY_PSN, SOVEREIGN_CONTROLS_BY_CNTXT, SOVEREIGN_CONTROLS_BY_CNTXT_NO_EKM
545
565
  """
546
566
  return pulumi.get(self, "partner")
547
567
 
@@ -561,6 +581,18 @@ class _WorkloadState:
561
581
  def partner_permissions(self, value: Optional[pulumi.Input['WorkloadPartnerPermissionsArgs']]):
562
582
  pulumi.set(self, "partner_permissions", value)
563
583
 
584
+ @property
585
+ @pulumi.getter(name="partnerServicesBillingAccount")
586
+ def partner_services_billing_account(self) -> Optional[pulumi.Input[str]]:
587
+ """
588
+ Optional. Input only. Billing account necessary for purchasing services from Sovereign Partners. This field is required for creating SIA/PSN/CNTXT partner workloads. The caller should have 'billing.resourceAssociations.create' IAM permission on this billing-account. The format of this string is billingAccounts/AAAAAA-BBBBBB-CCCCCC.
589
+ """
590
+ return pulumi.get(self, "partner_services_billing_account")
591
+
592
+ @partner_services_billing_account.setter
593
+ def partner_services_billing_account(self, value: Optional[pulumi.Input[str]]):
594
+ pulumi.set(self, "partner_services_billing_account", value)
595
+
564
596
  @property
565
597
  @pulumi.getter(name="provisionedResourcesParent")
566
598
  def provisioned_resources_parent(self) -> Optional[pulumi.Input[str]]:
@@ -649,6 +681,7 @@ class Workload(pulumi.CustomResource):
649
681
  organization: Optional[pulumi.Input[str]] = None,
650
682
  partner: Optional[pulumi.Input[str]] = None,
651
683
  partner_permissions: Optional[pulumi.Input[Union['WorkloadPartnerPermissionsArgs', 'WorkloadPartnerPermissionsArgsDict']]] = None,
684
+ partner_services_billing_account: Optional[pulumi.Input[str]] = None,
652
685
  provisioned_resources_parent: Optional[pulumi.Input[str]] = None,
653
686
  resource_settings: Optional[pulumi.Input[Sequence[pulumi.Input[Union['WorkloadResourceSettingArgs', 'WorkloadResourceSettingArgsDict']]]]] = None,
654
687
  violation_notifications_enabled: Optional[pulumi.Input[bool]] = None,
@@ -677,7 +710,7 @@ class Workload(pulumi.CustomResource):
677
710
  provisioned_resources_parent="folders/519620126891",
678
711
  resource_settings=[
679
712
  {
680
- "display_name": "folder-display-name",
713
+ "display_name": "{{name}}",
681
714
  "resource_type": "CONSUMER_FOLDER",
682
715
  },
683
716
  {
@@ -726,6 +759,42 @@ class Workload(pulumi.CustomResource):
726
759
  "label-one": "value-one",
727
760
  })
728
761
  ```
762
+ ### Split_billing_partner_workload
763
+ A Split billing partner test of the assuredworkloads api
764
+ ```python
765
+ import pulumi
766
+ import pulumi_gcp as gcp
767
+
768
+ primary = gcp.assuredworkloads.Workload("primary",
769
+ compliance_regime="ASSURED_WORKLOADS_FOR_PARTNERS",
770
+ display_name="display",
771
+ location="europe-west8",
772
+ organization="123456789",
773
+ billing_account="billingAccounts/000000-0000000-0000000-000000",
774
+ partner="SOVEREIGN_CONTROLS_BY_PSN",
775
+ partner_permissions={
776
+ "assured_workloads_monitoring": True,
777
+ "data_logs_viewer": True,
778
+ "service_access_approver": True,
779
+ },
780
+ partner_services_billing_account="billingAccounts/01BF3F-2C6DE5-30C607",
781
+ resource_settings=[
782
+ {
783
+ "resource_type": "CONSUMER_FOLDER",
784
+ },
785
+ {
786
+ "resource_type": "ENCRYPTION_KEYS_PROJECT",
787
+ },
788
+ {
789
+ "resource_id": "ring",
790
+ "resource_type": "KEYRING",
791
+ },
792
+ ],
793
+ violation_notifications_enabled=True,
794
+ labels={
795
+ "label-one": "value-one",
796
+ })
797
+ ```
729
798
 
730
799
  ## Import
731
800
 
@@ -748,7 +817,7 @@ class Workload(pulumi.CustomResource):
748
817
  :param str resource_name: The name of the resource.
749
818
  :param pulumi.ResourceOptions opts: Options for the resource.
750
819
  :param pulumi.Input[str] billing_account: Optional. Input only. The billing account used for the resources which are direct children of workload. This billing account is initially associated with the resources created as part of Workload creation. After the initial creation of these resources, the customer can change the assigned billing account. The resource name has the form `billingAccounts/{billing_account_id}`. For example, `billingAccounts/012345-567890-ABCDEF`.
751
- :param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT
820
+ :param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS
752
821
  :param pulumi.Input[str] display_name: Required. The user-assigned display name of the Workload. When present it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen, and spaces. Example: My Workload
753
822
  :param pulumi.Input[bool] enable_sovereign_controls: Optional. Indicates the sovereignty status of the given workload. Currently meant to be used by Europe/Canada customers.
754
823
  :param pulumi.Input[Union['WorkloadKmsSettingsArgs', 'WorkloadKmsSettingsArgsDict']] kms_settings: **DEPRECATED** Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.
@@ -762,8 +831,9 @@ class Workload(pulumi.CustomResource):
762
831
 
763
832
 
764
833
  - - -
765
- :param pulumi.Input[str] partner: Optional. Partner regime associated with this workload. Possible values: PARTNER_UNSPECIFIED, LOCAL_CONTROLS_BY_S3NS, SOVEREIGN_CONTROLS_BY_T_SYSTEMS, SOVEREIGN_CONTROLS_BY_SIA_MINSAIT, SOVEREIGN_CONTROLS_BY_PSN
834
+ :param pulumi.Input[str] partner: Optional. Partner regime associated with this workload. Possible values: PARTNER_UNSPECIFIED, LOCAL_CONTROLS_BY_S3NS, SOVEREIGN_CONTROLS_BY_T_SYSTEMS, SOVEREIGN_CONTROLS_BY_SIA_MINSAIT, SOVEREIGN_CONTROLS_BY_PSN, SOVEREIGN_CONTROLS_BY_CNTXT, SOVEREIGN_CONTROLS_BY_CNTXT_NO_EKM
766
835
  :param pulumi.Input[Union['WorkloadPartnerPermissionsArgs', 'WorkloadPartnerPermissionsArgsDict']] partner_permissions: Optional. Permissions granted to the AW Partner SA account for the customer workload
836
+ :param pulumi.Input[str] partner_services_billing_account: Optional. Input only. Billing account necessary for purchasing services from Sovereign Partners. This field is required for creating SIA/PSN/CNTXT partner workloads. The caller should have 'billing.resourceAssociations.create' IAM permission on this billing-account. The format of this string is billingAccounts/AAAAAA-BBBBBB-CCCCCC.
767
837
  :param pulumi.Input[str] provisioned_resources_parent: Input only. The parent resource for the resources managed by this Assured Workload. May be either empty or a folder resource which is a child of the Workload parent. If not specified all resources are created under the parent organization. Format: folders/{folder_id}
768
838
  :param pulumi.Input[Sequence[pulumi.Input[Union['WorkloadResourceSettingArgs', 'WorkloadResourceSettingArgsDict']]]] resource_settings: Input only. Resource properties that are used to customize workload resources. These properties (such as custom project id) will be used to create workload resources if possible. This field is optional.
769
839
  :param pulumi.Input[bool] violation_notifications_enabled: Optional. Indicates whether the e-mail notification for a violation is enabled for a workload. This value will be by default True, and if not present will be considered as true. This should only be updated via updateWorkload call. Any Changes to this field during the createWorkload call will not be honored. This will always be true while creating the workload.
@@ -798,7 +868,7 @@ class Workload(pulumi.CustomResource):
798
868
  provisioned_resources_parent="folders/519620126891",
799
869
  resource_settings=[
800
870
  {
801
- "display_name": "folder-display-name",
871
+ "display_name": "{{name}}",
802
872
  "resource_type": "CONSUMER_FOLDER",
803
873
  },
804
874
  {
@@ -847,6 +917,42 @@ class Workload(pulumi.CustomResource):
847
917
  "label-one": "value-one",
848
918
  })
849
919
  ```
920
+ ### Split_billing_partner_workload
921
+ A Split billing partner test of the assuredworkloads api
922
+ ```python
923
+ import pulumi
924
+ import pulumi_gcp as gcp
925
+
926
+ primary = gcp.assuredworkloads.Workload("primary",
927
+ compliance_regime="ASSURED_WORKLOADS_FOR_PARTNERS",
928
+ display_name="display",
929
+ location="europe-west8",
930
+ organization="123456789",
931
+ billing_account="billingAccounts/000000-0000000-0000000-000000",
932
+ partner="SOVEREIGN_CONTROLS_BY_PSN",
933
+ partner_permissions={
934
+ "assured_workloads_monitoring": True,
935
+ "data_logs_viewer": True,
936
+ "service_access_approver": True,
937
+ },
938
+ partner_services_billing_account="billingAccounts/01BF3F-2C6DE5-30C607",
939
+ resource_settings=[
940
+ {
941
+ "resource_type": "CONSUMER_FOLDER",
942
+ },
943
+ {
944
+ "resource_type": "ENCRYPTION_KEYS_PROJECT",
945
+ },
946
+ {
947
+ "resource_id": "ring",
948
+ "resource_type": "KEYRING",
949
+ },
950
+ ],
951
+ violation_notifications_enabled=True,
952
+ labels={
953
+ "label-one": "value-one",
954
+ })
955
+ ```
850
956
 
851
957
  ## Import
852
958
 
@@ -891,6 +997,7 @@ class Workload(pulumi.CustomResource):
891
997
  organization: Optional[pulumi.Input[str]] = None,
892
998
  partner: Optional[pulumi.Input[str]] = None,
893
999
  partner_permissions: Optional[pulumi.Input[Union['WorkloadPartnerPermissionsArgs', 'WorkloadPartnerPermissionsArgsDict']]] = None,
1000
+ partner_services_billing_account: Optional[pulumi.Input[str]] = None,
894
1001
  provisioned_resources_parent: Optional[pulumi.Input[str]] = None,
895
1002
  resource_settings: Optional[pulumi.Input[Sequence[pulumi.Input[Union['WorkloadResourceSettingArgs', 'WorkloadResourceSettingArgsDict']]]]] = None,
896
1003
  violation_notifications_enabled: Optional[pulumi.Input[bool]] = None,
@@ -921,6 +1028,7 @@ class Workload(pulumi.CustomResource):
921
1028
  __props__.__dict__["organization"] = organization
922
1029
  __props__.__dict__["partner"] = partner
923
1030
  __props__.__dict__["partner_permissions"] = partner_permissions
1031
+ __props__.__dict__["partner_services_billing_account"] = partner_services_billing_account
924
1032
  __props__.__dict__["provisioned_resources_parent"] = provisioned_resources_parent
925
1033
  __props__.__dict__["resource_settings"] = resource_settings
926
1034
  __props__.__dict__["violation_notifications_enabled"] = violation_notifications_enabled
@@ -963,6 +1071,7 @@ class Workload(pulumi.CustomResource):
963
1071
  organization: Optional[pulumi.Input[str]] = None,
964
1072
  partner: Optional[pulumi.Input[str]] = None,
965
1073
  partner_permissions: Optional[pulumi.Input[Union['WorkloadPartnerPermissionsArgs', 'WorkloadPartnerPermissionsArgsDict']]] = None,
1074
+ partner_services_billing_account: Optional[pulumi.Input[str]] = None,
966
1075
  provisioned_resources_parent: Optional[pulumi.Input[str]] = None,
967
1076
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
968
1077
  resource_settings: Optional[pulumi.Input[Sequence[pulumi.Input[Union['WorkloadResourceSettingArgs', 'WorkloadResourceSettingArgsDict']]]]] = None,
@@ -977,7 +1086,7 @@ class Workload(pulumi.CustomResource):
977
1086
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
978
1087
  :param pulumi.ResourceOptions opts: Options for the resource.
979
1088
  :param pulumi.Input[str] billing_account: Optional. Input only. The billing account used for the resources which are direct children of workload. This billing account is initially associated with the resources created as part of Workload creation. After the initial creation of these resources, the customer can change the assigned billing account. The resource name has the form `billingAccounts/{billing_account_id}`. For example, `billingAccounts/012345-567890-ABCDEF`.
980
- :param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT
1089
+ :param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS
981
1090
  :param pulumi.Input[Sequence[pulumi.Input[Union['WorkloadComplianceStatusArgs', 'WorkloadComplianceStatusArgsDict']]]] compliance_statuses: Output only. Count of active Violations in the Workload.
982
1091
  :param pulumi.Input[Sequence[pulumi.Input[str]]] compliant_but_disallowed_services: Output only. Urls for services which are compliant for this Assured Workload, but which are currently disallowed by the ResourceUsageRestriction org policy. Invoke workloads.restrictAllowedResources endpoint to allow your project developers to use these services in their environment.
983
1092
  :param pulumi.Input[str] create_time: Output only. Immutable. The Workload creation timestamp.
@@ -998,8 +1107,9 @@ class Workload(pulumi.CustomResource):
998
1107
 
999
1108
 
1000
1109
  - - -
1001
- :param pulumi.Input[str] partner: Optional. Partner regime associated with this workload. Possible values: PARTNER_UNSPECIFIED, LOCAL_CONTROLS_BY_S3NS, SOVEREIGN_CONTROLS_BY_T_SYSTEMS, SOVEREIGN_CONTROLS_BY_SIA_MINSAIT, SOVEREIGN_CONTROLS_BY_PSN
1110
+ :param pulumi.Input[str] partner: Optional. Partner regime associated with this workload. Possible values: PARTNER_UNSPECIFIED, LOCAL_CONTROLS_BY_S3NS, SOVEREIGN_CONTROLS_BY_T_SYSTEMS, SOVEREIGN_CONTROLS_BY_SIA_MINSAIT, SOVEREIGN_CONTROLS_BY_PSN, SOVEREIGN_CONTROLS_BY_CNTXT, SOVEREIGN_CONTROLS_BY_CNTXT_NO_EKM
1002
1111
  :param pulumi.Input[Union['WorkloadPartnerPermissionsArgs', 'WorkloadPartnerPermissionsArgsDict']] partner_permissions: Optional. Permissions granted to the AW Partner SA account for the customer workload
1112
+ :param pulumi.Input[str] partner_services_billing_account: Optional. Input only. Billing account necessary for purchasing services from Sovereign Partners. This field is required for creating SIA/PSN/CNTXT partner workloads. The caller should have 'billing.resourceAssociations.create' IAM permission on this billing-account. The format of this string is billingAccounts/AAAAAA-BBBBBB-CCCCCC.
1003
1113
  :param pulumi.Input[str] provisioned_resources_parent: Input only. The parent resource for the resources managed by this Assured Workload. May be either empty or a folder resource which is a child of the Workload parent. If not specified all resources are created under the parent organization. Format: folders/{folder_id}
1004
1114
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
1005
1115
  :param pulumi.Input[Sequence[pulumi.Input[Union['WorkloadResourceSettingArgs', 'WorkloadResourceSettingArgsDict']]]] resource_settings: Input only. Resource properties that are used to customize workload resources. These properties (such as custom project id) will be used to create workload resources if possible. This field is optional.
@@ -1028,6 +1138,7 @@ class Workload(pulumi.CustomResource):
1028
1138
  __props__.__dict__["organization"] = organization
1029
1139
  __props__.__dict__["partner"] = partner
1030
1140
  __props__.__dict__["partner_permissions"] = partner_permissions
1141
+ __props__.__dict__["partner_services_billing_account"] = partner_services_billing_account
1031
1142
  __props__.__dict__["provisioned_resources_parent"] = provisioned_resources_parent
1032
1143
  __props__.__dict__["pulumi_labels"] = pulumi_labels
1033
1144
  __props__.__dict__["resource_settings"] = resource_settings
@@ -1048,7 +1159,7 @@ class Workload(pulumi.CustomResource):
1048
1159
  @pulumi.getter(name="complianceRegime")
1049
1160
  def compliance_regime(self) -> pulumi.Output[str]:
1050
1161
  """
1051
- Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT
1162
+ Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS
1052
1163
  """
1053
1164
  return pulumi.get(self, "compliance_regime")
1054
1165
 
@@ -1167,7 +1278,7 @@ class Workload(pulumi.CustomResource):
1167
1278
  @pulumi.getter
1168
1279
  def partner(self) -> pulumi.Output[Optional[str]]:
1169
1280
  """
1170
- Optional. Partner regime associated with this workload. Possible values: PARTNER_UNSPECIFIED, LOCAL_CONTROLS_BY_S3NS, SOVEREIGN_CONTROLS_BY_T_SYSTEMS, SOVEREIGN_CONTROLS_BY_SIA_MINSAIT, SOVEREIGN_CONTROLS_BY_PSN
1281
+ Optional. Partner regime associated with this workload. Possible values: PARTNER_UNSPECIFIED, LOCAL_CONTROLS_BY_S3NS, SOVEREIGN_CONTROLS_BY_T_SYSTEMS, SOVEREIGN_CONTROLS_BY_SIA_MINSAIT, SOVEREIGN_CONTROLS_BY_PSN, SOVEREIGN_CONTROLS_BY_CNTXT, SOVEREIGN_CONTROLS_BY_CNTXT_NO_EKM
1171
1282
  """
1172
1283
  return pulumi.get(self, "partner")
1173
1284
 
@@ -1179,6 +1290,14 @@ class Workload(pulumi.CustomResource):
1179
1290
  """
1180
1291
  return pulumi.get(self, "partner_permissions")
1181
1292
 
1293
+ @property
1294
+ @pulumi.getter(name="partnerServicesBillingAccount")
1295
+ def partner_services_billing_account(self) -> pulumi.Output[Optional[str]]:
1296
+ """
1297
+ Optional. Input only. Billing account necessary for purchasing services from Sovereign Partners. This field is required for creating SIA/PSN/CNTXT partner workloads. The caller should have 'billing.resourceAssociations.create' IAM permission on this billing-account. The format of this string is billingAccounts/AAAAAA-BBBBBB-CCCCCC.
1298
+ """
1299
+ return pulumi.get(self, "partner_services_billing_account")
1300
+
1182
1301
  @property
1183
1302
  @pulumi.getter(name="provisionedResourcesParent")
1184
1303
  def provisioned_resources_parent(self) -> pulumi.Output[Optional[str]]:
@@ -5,6 +5,7 @@
5
5
  from .. import _utilities
6
6
  import typing
7
7
  # Export this package's modules as members:
8
+ from .backup_vault import *
8
9
  from .get_management_server import *
9
10
  from .management_server import *
10
11
  from ._inputs import *