pulumi-gcp 8.11.0a1734348982__py3-none-any.whl → 8.12.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (168) hide show
  1. pulumi_gcp/__init__.py +123 -0
  2. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +6 -0
  3. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +6 -0
  4. pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +6 -0
  5. pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +6 -0
  6. pulumi_gcp/apigee/app_group.py +7 -7
  7. pulumi_gcp/applicationintegration/client.py +8 -6
  8. pulumi_gcp/artifactregistry/_inputs.py +24 -15
  9. pulumi_gcp/artifactregistry/get_repository_iam_policy.py +12 -4
  10. pulumi_gcp/artifactregistry/outputs.py +32 -20
  11. pulumi_gcp/artifactregistry/repository.py +214 -39
  12. pulumi_gcp/artifactregistry/repository_iam_binding.py +42 -14
  13. pulumi_gcp/artifactregistry/repository_iam_member.py +42 -14
  14. pulumi_gcp/artifactregistry/repository_iam_policy.py +42 -14
  15. pulumi_gcp/assuredworkloads/workload.py +7 -7
  16. pulumi_gcp/backupdisasterrecovery/__init__.py +2 -0
  17. pulumi_gcp/backupdisasterrecovery/backup_plan.py +2 -2
  18. pulumi_gcp/backupdisasterrecovery/backup_vault.py +12 -8
  19. pulumi_gcp/backupdisasterrecovery/get_backup.py +153 -0
  20. pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +415 -0
  21. pulumi_gcp/backupdisasterrecovery/outputs.py +63 -0
  22. pulumi_gcp/bigquery/app_profile.py +75 -0
  23. pulumi_gcp/billing/_inputs.py +6 -6
  24. pulumi_gcp/billing/outputs.py +4 -4
  25. pulumi_gcp/certificateauthority/_inputs.py +9 -9
  26. pulumi_gcp/certificateauthority/outputs.py +8 -8
  27. pulumi_gcp/cloudbuild/_inputs.py +53 -0
  28. pulumi_gcp/cloudbuild/outputs.py +50 -0
  29. pulumi_gcp/cloudbuild/worker_pool.py +47 -0
  30. pulumi_gcp/clouddeploy/_inputs.py +254 -0
  31. pulumi_gcp/clouddeploy/outputs.py +211 -0
  32. pulumi_gcp/clouddeploy/target.py +47 -0
  33. pulumi_gcp/cloudfunctionsv2/_inputs.py +6 -6
  34. pulumi_gcp/cloudfunctionsv2/outputs.py +8 -8
  35. pulumi_gcp/cloudrunv2/job.py +4 -4
  36. pulumi_gcp/cloudrunv2/service.py +4 -4
  37. pulumi_gcp/composer/get_user_workloads_config_map.py +4 -0
  38. pulumi_gcp/composer/get_user_workloads_secret.py +4 -0
  39. pulumi_gcp/composer/user_workloads_config_map.py +14 -0
  40. pulumi_gcp/composer/user_workloads_secret.py +6 -0
  41. pulumi_gcp/compute/_inputs.py +566 -25
  42. pulumi_gcp/compute/disk.py +21 -7
  43. pulumi_gcp/compute/firewall_policy_rule.py +12 -0
  44. pulumi_gcp/compute/get_forwarding_rules.py +2 -2
  45. pulumi_gcp/compute/get_global_forwarding_rule.py +23 -1
  46. pulumi_gcp/compute/get_instance_group_manager.py +12 -1
  47. pulumi_gcp/compute/get_network.py +35 -1
  48. pulumi_gcp/compute/get_region_instance_group_manager.py +12 -1
  49. pulumi_gcp/compute/get_region_network_endpoint_group.py +12 -1
  50. pulumi_gcp/compute/global_forwarding_rule.py +142 -2
  51. pulumi_gcp/compute/instance_group_manager.py +28 -0
  52. pulumi_gcp/compute/network.py +75 -0
  53. pulumi_gcp/compute/outputs.py +655 -26
  54. pulumi_gcp/compute/project_cloud_armor_tier.py +7 -7
  55. pulumi_gcp/compute/region_health_check.py +28 -0
  56. pulumi_gcp/compute/region_instance_group_manager.py +28 -0
  57. pulumi_gcp/compute/region_network_endpoint.py +28 -0
  58. pulumi_gcp/compute/region_network_endpoint_group.py +70 -2
  59. pulumi_gcp/compute/subnetwork.py +30 -2
  60. pulumi_gcp/compute/url_map.py +7 -7
  61. pulumi_gcp/config/__init__.pyi +2 -0
  62. pulumi_gcp/config/vars.py +4 -0
  63. pulumi_gcp/container/_inputs.py +201 -3
  64. pulumi_gcp/container/cluster.py +68 -14
  65. pulumi_gcp/container/get_cluster.py +12 -1
  66. pulumi_gcp/container/outputs.py +249 -3
  67. pulumi_gcp/dataproc/_inputs.py +209 -1
  68. pulumi_gcp/dataproc/batch.py +76 -0
  69. pulumi_gcp/dataproc/outputs.py +169 -3
  70. pulumi_gcp/diagflow/_inputs.py +3 -3
  71. pulumi_gcp/diagflow/outputs.py +2 -2
  72. pulumi_gcp/discoveryengine/search_engine.py +7 -7
  73. pulumi_gcp/firebase/_inputs.py +99 -0
  74. pulumi_gcp/firebase/database_instance.py +24 -6
  75. pulumi_gcp/firebase/hosting_version.py +96 -0
  76. pulumi_gcp/firebase/outputs.py +59 -0
  77. pulumi_gcp/firebase/project.py +6 -6
  78. pulumi_gcp/firebaserules/release.py +76 -0
  79. pulumi_gcp/firestore/field.py +4 -4
  80. pulumi_gcp/gemini/__init__.py +15 -0
  81. pulumi_gcp/gemini/_inputs.py +183 -0
  82. pulumi_gcp/gemini/code_repository_index.py +659 -0
  83. pulumi_gcp/gemini/get_repository_group_iam_policy.py +171 -0
  84. pulumi_gcp/gemini/outputs.py +130 -0
  85. pulumi_gcp/gemini/repository_group.py +586 -0
  86. pulumi_gcp/gemini/repository_group_iam_binding.py +604 -0
  87. pulumi_gcp/gemini/repository_group_iam_member.py +604 -0
  88. pulumi_gcp/gemini/repository_group_iam_policy.py +443 -0
  89. pulumi_gcp/gkehub/_inputs.py +30 -10
  90. pulumi_gcp/gkehub/membership_binding.py +6 -6
  91. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  92. pulumi_gcp/gkehub/namespace.py +4 -4
  93. pulumi_gcp/gkehub/outputs.py +21 -7
  94. pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
  95. pulumi_gcp/iam/__init__.py +1 -0
  96. pulumi_gcp/iam/_inputs.py +137 -0
  97. pulumi_gcp/iam/folders_policy_binding.py +16 -0
  98. pulumi_gcp/iam/organizations_policy_binding.py +16 -0
  99. pulumi_gcp/iam/outputs.py +99 -0
  100. pulumi_gcp/iam/principal_access_boundary_policy.py +16 -0
  101. pulumi_gcp/iam/projects_policy_binding.py +917 -0
  102. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  103. pulumi_gcp/identityplatform/_inputs.py +6 -6
  104. pulumi_gcp/identityplatform/config.py +2 -2
  105. pulumi_gcp/identityplatform/outputs.py +4 -4
  106. pulumi_gcp/integrationconnectors/_inputs.py +15 -15
  107. pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
  108. pulumi_gcp/integrationconnectors/outputs.py +10 -10
  109. pulumi_gcp/looker/instance.py +35 -14
  110. pulumi_gcp/monitoring/_inputs.py +13 -6
  111. pulumi_gcp/monitoring/outputs.py +10 -4
  112. pulumi_gcp/netapp/_inputs.py +3 -3
  113. pulumi_gcp/netapp/active_directory.py +7 -7
  114. pulumi_gcp/netapp/outputs.py +2 -2
  115. pulumi_gcp/netapp/volume.py +11 -11
  116. pulumi_gcp/networkconnectivity/_inputs.py +10 -12
  117. pulumi_gcp/networkconnectivity/outputs.py +6 -8
  118. pulumi_gcp/networkconnectivity/spoke.py +10 -10
  119. pulumi_gcp/networksecurity/__init__.py +7 -0
  120. pulumi_gcp/networksecurity/_inputs.py +2018 -0
  121. pulumi_gcp/networksecurity/authz_policy.py +1008 -0
  122. pulumi_gcp/networksecurity/intercept_deployment.py +846 -0
  123. pulumi_gcp/networksecurity/intercept_deployment_group.py +752 -0
  124. pulumi_gcp/networksecurity/mirroring_deployment.py +848 -0
  125. pulumi_gcp/networksecurity/mirroring_deployment_group.py +752 -0
  126. pulumi_gcp/networksecurity/mirroring_endpoint_group.py +737 -0
  127. pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +840 -0
  128. pulumi_gcp/networksecurity/outputs.py +1463 -0
  129. pulumi_gcp/networkservices/__init__.py +1 -0
  130. pulumi_gcp/networkservices/authz_extension.py +1080 -0
  131. pulumi_gcp/oracledatabase/autonomous_database.py +46 -8
  132. pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +42 -4
  133. pulumi_gcp/oracledatabase/cloud_vm_cluster.py +50 -8
  134. pulumi_gcp/oracledatabase/get_autonomous_database.py +12 -1
  135. pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +12 -1
  136. pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +12 -1
  137. pulumi_gcp/oracledatabase/outputs.py +21 -0
  138. pulumi_gcp/orgpolicy/_inputs.py +40 -0
  139. pulumi_gcp/orgpolicy/outputs.py +24 -0
  140. pulumi_gcp/orgpolicy/policy.py +66 -10
  141. pulumi_gcp/parallelstore/instance.py +4 -0
  142. pulumi_gcp/provider.py +20 -0
  143. pulumi_gcp/pubsub/subscription.py +6 -6
  144. pulumi_gcp/pulumi-plugin.json +1 -1
  145. pulumi_gcp/redis/_inputs.py +435 -3
  146. pulumi_gcp/redis/cluster.py +287 -16
  147. pulumi_gcp/redis/outputs.py +304 -2
  148. pulumi_gcp/serviceaccount/get_account_id_token.py +2 -2
  149. pulumi_gcp/serviceaccount/get_account_key.py +2 -2
  150. pulumi_gcp/sql/_inputs.py +3 -3
  151. pulumi_gcp/sql/database_instance.py +14 -14
  152. pulumi_gcp/sql/outputs.py +2 -2
  153. pulumi_gcp/storage/_inputs.py +53 -6
  154. pulumi_gcp/storage/get_bucket.py +2 -2
  155. pulumi_gcp/storage/get_bucket_object_content.py +2 -2
  156. pulumi_gcp/storage/outputs.py +33 -4
  157. pulumi_gcp/tpu/__init__.py +1 -0
  158. pulumi_gcp/tpu/_inputs.py +214 -24
  159. pulumi_gcp/tpu/outputs.py +182 -16
  160. pulumi_gcp/tpu/v2_queued_resource.py +434 -0
  161. pulumi_gcp/tpu/v2_vm.py +63 -0
  162. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  163. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  164. pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
  165. {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/METADATA +1 -1
  166. {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/RECORD +168 -147
  167. {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/WHEEL +0 -0
  168. {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/top_level.txt +0 -0
@@ -54,7 +54,7 @@ class ActiveDirectoryArgs:
54
54
  :param pulumi.Input[Sequence[pulumi.Input[str]]] backup_operators: Domain user/group accounts to be added to the Backup Operators group of the SMB service. The Backup Operators group allows members to backup and restore files regardless of whether they have read or write access to the files. Comma-separated list.
55
55
  :param pulumi.Input[str] description: An optional description of this resource.
56
56
  :param pulumi.Input[bool] encrypt_dc_connections: If enabled, traffic between the SMB server to Domain Controller (DC) will be encrypted.
57
- :param pulumi.Input[str] kdc_hostname: Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only requried for volumes using kerberized NFSv4.1
57
+ :param pulumi.Input[str] kdc_hostname: Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only required for volumes using kerberized NFSv4.1
58
58
  :param pulumi.Input[str] kdc_ip: IP address of the Active Directory server used as Kerberos Key Distribution Center.
59
59
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels as key value pairs. Example: `{ "owner": "Bob", "department": "finance", "purpose": "testing" }`.
60
60
 
@@ -247,7 +247,7 @@ class ActiveDirectoryArgs:
247
247
  @pulumi.getter(name="kdcHostname")
248
248
  def kdc_hostname(self) -> Optional[pulumi.Input[str]]:
249
249
  """
250
- Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only requried for volumes using kerberized NFSv4.1
250
+ Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only required for volumes using kerberized NFSv4.1
251
251
  """
252
252
  return pulumi.get(self, "kdc_hostname")
253
253
 
@@ -414,7 +414,7 @@ class _ActiveDirectoryState:
414
414
  :param pulumi.Input[str] domain: Fully qualified domain name for the Active Directory domain.
415
415
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
416
416
  :param pulumi.Input[bool] encrypt_dc_connections: If enabled, traffic between the SMB server to Domain Controller (DC) will be encrypted.
417
- :param pulumi.Input[str] kdc_hostname: Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only requried for volumes using kerberized NFSv4.1
417
+ :param pulumi.Input[str] kdc_hostname: Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only required for volumes using kerberized NFSv4.1
418
418
  :param pulumi.Input[str] kdc_ip: IP address of the Active Directory server used as Kerberos Key Distribution Center.
419
419
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels as key value pairs. Example: `{ "owner": "Bob", "department": "finance", "purpose": "testing" }`.
420
420
 
@@ -609,7 +609,7 @@ class _ActiveDirectoryState:
609
609
  @pulumi.getter(name="kdcHostname")
610
610
  def kdc_hostname(self) -> Optional[pulumi.Input[str]]:
611
611
  """
612
- Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only requried for volumes using kerberized NFSv4.1
612
+ Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only required for volumes using kerberized NFSv4.1
613
613
  """
614
614
  return pulumi.get(self, "kdc_hostname")
615
615
 
@@ -931,7 +931,7 @@ class ActiveDirectory(pulumi.CustomResource):
931
931
  :param pulumi.Input[str] dns: Comma separated list of DNS server IP addresses for the Active Directory domain.
932
932
  :param pulumi.Input[str] domain: Fully qualified domain name for the Active Directory domain.
933
933
  :param pulumi.Input[bool] encrypt_dc_connections: If enabled, traffic between the SMB server to Domain Controller (DC) will be encrypted.
934
- :param pulumi.Input[str] kdc_hostname: Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only requried for volumes using kerberized NFSv4.1
934
+ :param pulumi.Input[str] kdc_hostname: Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only required for volumes using kerberized NFSv4.1
935
935
  :param pulumi.Input[str] kdc_ip: IP address of the Active Directory server used as Kerberos Key Distribution Center.
936
936
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels as key value pairs. Example: `{ "owner": "Bob", "department": "finance", "purpose": "testing" }`.
937
937
 
@@ -1175,7 +1175,7 @@ class ActiveDirectory(pulumi.CustomResource):
1175
1175
  :param pulumi.Input[str] domain: Fully qualified domain name for the Active Directory domain.
1176
1176
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
1177
1177
  :param pulumi.Input[bool] encrypt_dc_connections: If enabled, traffic between the SMB server to Domain Controller (DC) will be encrypted.
1178
- :param pulumi.Input[str] kdc_hostname: Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only requried for volumes using kerberized NFSv4.1
1178
+ :param pulumi.Input[str] kdc_hostname: Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only required for volumes using kerberized NFSv4.1
1179
1179
  :param pulumi.Input[str] kdc_ip: IP address of the Active Directory server used as Kerberos Key Distribution Center.
1180
1180
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels as key value pairs. Example: `{ "owner": "Bob", "department": "finance", "purpose": "testing" }`.
1181
1181
 
@@ -1313,7 +1313,7 @@ class ActiveDirectory(pulumi.CustomResource):
1313
1313
  @pulumi.getter(name="kdcHostname")
1314
1314
  def kdc_hostname(self) -> pulumi.Output[Optional[str]]:
1315
1315
  """
1316
- Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only requried for volumes using kerberized NFSv4.1
1316
+ Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only required for volumes using kerberized NFSv4.1
1317
1317
  """
1318
1318
  return pulumi.get(self, "kdc_hostname")
1319
1319
 
@@ -167,7 +167,7 @@ class VolumeExportPolicyRule(dict):
167
167
  """
168
168
  :param str access_type: Defines the access type for clients matching the `allowedClients` specification.
169
169
  Possible values are: `READ_ONLY`, `READ_WRITE`, `READ_NONE`.
170
- :param str allowed_clients: Defines the client ingress specification (allowed clients) as a comma seperated list with IPv4 CIDRs or IPv4 host addresses.
170
+ :param str allowed_clients: Defines the client ingress specification (allowed clients) as a comma separated list with IPv4 CIDRs or IPv4 host addresses.
171
171
  :param str has_root_access: If enabled, the root user (UID = 0) of the specified clients doesn't get mapped to nobody (UID = 65534). This is also known as no_root_squash.
172
172
  :param bool kerberos5_read_only: If enabled (true) the rule defines a read only access for clients matching the 'allowedClients' specification. It enables nfs clients to mount using 'authentication' kerberos security mode.
173
173
  :param bool kerberos5_read_write: If enabled (true) the rule defines read and write access for clients matching the 'allowedClients' specification. It enables nfs clients to mount using 'authentication' kerberos security mode. The 'kerberos5ReadOnly' value is ignored if this is enabled.
@@ -214,7 +214,7 @@ class VolumeExportPolicyRule(dict):
214
214
  @pulumi.getter(name="allowedClients")
215
215
  def allowed_clients(self) -> Optional[str]:
216
216
  """
217
- Defines the client ingress specification (allowed clients) as a comma seperated list with IPv4 CIDRs or IPv4 host addresses.
217
+ Defines the client ingress specification (allowed clients) as a comma separated list with IPv4 CIDRs or IPv4 host addresses.
218
218
  """
219
219
  return pulumi.get(self, "allowed_clients")
220
220
 
@@ -51,7 +51,7 @@ class VolumeArgs:
51
51
  :param pulumi.Input[Sequence[pulumi.Input[str]]] protocols: The protocol of the volume. Allowed combinations are `['NFSV3']`, `['NFSV4']`, `['SMB']`, `['NFSV3', 'NFSV4']`, `['SMB', 'NFSV3']` and `['SMB', 'NFSV4']`.
52
52
  Each value may be one of: `NFSV3`, `NFSV4`, `SMB`.
53
53
  :param pulumi.Input[str] share_name: Share name (SMB) or export path (NFS) of the volume. Needs to be unique per location.
54
- :param pulumi.Input[str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accomodate the volume.
54
+ :param pulumi.Input[str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accommodate the volume.
55
55
  :param pulumi.Input['VolumeBackupConfigArgs'] backup_config: Backup configuration for the volume.
56
56
  Structure is documented below.
57
57
  :param pulumi.Input[str] deletion_policy: Policy to determine if the volume should be deleted forcefully.
@@ -187,7 +187,7 @@ class VolumeArgs:
187
187
  @pulumi.getter(name="storagePool")
188
188
  def storage_pool(self) -> pulumi.Input[str]:
189
189
  """
190
- Name of the storage pool to create the volume in. Pool needs enough spare capacity to accomodate the volume.
190
+ Name of the storage pool to create the volume in. Pool needs enough spare capacity to accommodate the volume.
191
191
  """
192
192
  return pulumi.get(self, "storage_pool")
193
193
 
@@ -528,7 +528,7 @@ class _VolumeState:
528
528
  :param pulumi.Input[str] security_style: Security Style of the Volume. Use UNIX to use UNIX or NFSV4 ACLs for file permissions.
529
529
  Use NTFS to use NTFS ACLs for file permissions. Can only be set for volumes which use SMB together with NFS as protocol.
530
530
  Possible values are: `NTFS`, `UNIX`.
531
- :param pulumi.Input[str] service_level: Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTERME, STANDARD, FLEX.
531
+ :param pulumi.Input[str] service_level: Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTREME, STANDARD, FLEX.
532
532
  :param pulumi.Input[str] share_name: Share name (SMB) or export path (NFS) of the volume. Needs to be unique per location.
533
533
  :param pulumi.Input[Sequence[pulumi.Input[str]]] smb_settings: Settings for volumes with SMB access.
534
534
  Each value may be one of: `ENCRYPT_DATA`, `BROWSABLE`, `CHANGE_NOTIFY`, `NON_BROWSABLE`, `OPLOCKS`, `SHOW_SNAPSHOT`, `SHOW_PREVIOUS_VERSIONS`, `ACCESS_BASED_ENUMERATION`, `CONTINUOUSLY_AVAILABLE`.
@@ -538,7 +538,7 @@ class _VolumeState:
538
538
  Structure is documented below.
539
539
  :param pulumi.Input[str] state: State of the volume.
540
540
  :param pulumi.Input[str] state_details: State details of the volume.
541
- :param pulumi.Input[str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accomodate the volume.
541
+ :param pulumi.Input[str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accommodate the volume.
542
542
  :param pulumi.Input['VolumeTieringPolicyArgs'] tiering_policy: Tiering policy for the volume.
543
543
  Structure is documented below.
544
544
  :param pulumi.Input[str] unix_permissions: Unix permission the mount point will be created with. Default is 0770. Applicable for UNIX security style volumes only.
@@ -1000,7 +1000,7 @@ class _VolumeState:
1000
1000
  @pulumi.getter(name="serviceLevel")
1001
1001
  def service_level(self) -> Optional[pulumi.Input[str]]:
1002
1002
  """
1003
- Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTERME, STANDARD, FLEX.
1003
+ Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTREME, STANDARD, FLEX.
1004
1004
  """
1005
1005
  return pulumi.get(self, "service_level")
1006
1006
 
@@ -1087,7 +1087,7 @@ class _VolumeState:
1087
1087
  @pulumi.getter(name="storagePool")
1088
1088
  def storage_pool(self) -> Optional[pulumi.Input[str]]:
1089
1089
  """
1090
- Name of the storage pool to create the volume in. Pool needs enough spare capacity to accomodate the volume.
1090
+ Name of the storage pool to create the volume in. Pool needs enough spare capacity to accommodate the volume.
1091
1091
  """
1092
1092
  return pulumi.get(self, "storage_pool")
1093
1093
 
@@ -1280,7 +1280,7 @@ class Volume(pulumi.CustomResource):
1280
1280
  :param pulumi.Input[Union['VolumeSnapshotPolicyArgs', 'VolumeSnapshotPolicyArgsDict']] snapshot_policy: Snapshot policy defines the schedule for automatic snapshot creation.
1281
1281
  To disable automatic snapshot creation you have to remove the whole snapshot_policy block.
1282
1282
  Structure is documented below.
1283
- :param pulumi.Input[str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accomodate the volume.
1283
+ :param pulumi.Input[str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accommodate the volume.
1284
1284
  :param pulumi.Input[Union['VolumeTieringPolicyArgs', 'VolumeTieringPolicyArgsDict']] tiering_policy: Tiering policy for the volume.
1285
1285
  Structure is documented below.
1286
1286
  :param pulumi.Input[str] unix_permissions: Unix permission the mount point will be created with. Default is 0770. Applicable for UNIX security style volumes only.
@@ -1561,7 +1561,7 @@ class Volume(pulumi.CustomResource):
1561
1561
  :param pulumi.Input[str] security_style: Security Style of the Volume. Use UNIX to use UNIX or NFSV4 ACLs for file permissions.
1562
1562
  Use NTFS to use NTFS ACLs for file permissions. Can only be set for volumes which use SMB together with NFS as protocol.
1563
1563
  Possible values are: `NTFS`, `UNIX`.
1564
- :param pulumi.Input[str] service_level: Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTERME, STANDARD, FLEX.
1564
+ :param pulumi.Input[str] service_level: Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTREME, STANDARD, FLEX.
1565
1565
  :param pulumi.Input[str] share_name: Share name (SMB) or export path (NFS) of the volume. Needs to be unique per location.
1566
1566
  :param pulumi.Input[Sequence[pulumi.Input[str]]] smb_settings: Settings for volumes with SMB access.
1567
1567
  Each value may be one of: `ENCRYPT_DATA`, `BROWSABLE`, `CHANGE_NOTIFY`, `NON_BROWSABLE`, `OPLOCKS`, `SHOW_SNAPSHOT`, `SHOW_PREVIOUS_VERSIONS`, `ACCESS_BASED_ENUMERATION`, `CONTINUOUSLY_AVAILABLE`.
@@ -1571,7 +1571,7 @@ class Volume(pulumi.CustomResource):
1571
1571
  Structure is documented below.
1572
1572
  :param pulumi.Input[str] state: State of the volume.
1573
1573
  :param pulumi.Input[str] state_details: State details of the volume.
1574
- :param pulumi.Input[str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accomodate the volume.
1574
+ :param pulumi.Input[str] storage_pool: Name of the storage pool to create the volume in. Pool needs enough spare capacity to accommodate the volume.
1575
1575
  :param pulumi.Input[Union['VolumeTieringPolicyArgs', 'VolumeTieringPolicyArgsDict']] tiering_policy: Tiering policy for the volume.
1576
1576
  Structure is documented below.
1577
1577
  :param pulumi.Input[str] unix_permissions: Unix permission the mount point will be created with. Default is 0770. Applicable for UNIX security style volumes only.
@@ -1881,7 +1881,7 @@ class Volume(pulumi.CustomResource):
1881
1881
  @pulumi.getter(name="serviceLevel")
1882
1882
  def service_level(self) -> pulumi.Output[str]:
1883
1883
  """
1884
- Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTERME, STANDARD, FLEX.
1884
+ Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTREME, STANDARD, FLEX.
1885
1885
  """
1886
1886
  return pulumi.get(self, "service_level")
1887
1887
 
@@ -1940,7 +1940,7 @@ class Volume(pulumi.CustomResource):
1940
1940
  @pulumi.getter(name="storagePool")
1941
1941
  def storage_pool(self) -> pulumi.Output[str]:
1942
1942
  """
1943
- Name of the storage pool to create the volume in. Pool needs enough spare capacity to accomodate the volume.
1943
+ Name of the storage pool to create the volume in. Pool needs enough spare capacity to accommodate the volume.
1944
1944
  """
1945
1945
  return pulumi.get(self, "storage_pool")
1946
1946
 
@@ -1096,11 +1096,11 @@ class SpokeLinkedRouterApplianceInstancesArgs:
1096
1096
 
1097
1097
  if not MYPY:
1098
1098
  class SpokeLinkedRouterApplianceInstancesInstanceArgsDict(TypedDict):
1099
- ip_address: NotRequired[pulumi.Input[str]]
1099
+ ip_address: pulumi.Input[str]
1100
1100
  """
1101
1101
  The IP address on the VM to use for peering.
1102
1102
  """
1103
- virtual_machine: NotRequired[pulumi.Input[str]]
1103
+ virtual_machine: pulumi.Input[str]
1104
1104
  """
1105
1105
  The URI of the virtual machine resource
1106
1106
  """
@@ -1110,39 +1110,37 @@ elif False:
1110
1110
  @pulumi.input_type
1111
1111
  class SpokeLinkedRouterApplianceInstancesInstanceArgs:
1112
1112
  def __init__(__self__, *,
1113
- ip_address: Optional[pulumi.Input[str]] = None,
1114
- virtual_machine: Optional[pulumi.Input[str]] = None):
1113
+ ip_address: pulumi.Input[str],
1114
+ virtual_machine: pulumi.Input[str]):
1115
1115
  """
1116
1116
  :param pulumi.Input[str] ip_address: The IP address on the VM to use for peering.
1117
1117
  :param pulumi.Input[str] virtual_machine: The URI of the virtual machine resource
1118
1118
  """
1119
- if ip_address is not None:
1120
- pulumi.set(__self__, "ip_address", ip_address)
1121
- if virtual_machine is not None:
1122
- pulumi.set(__self__, "virtual_machine", virtual_machine)
1119
+ pulumi.set(__self__, "ip_address", ip_address)
1120
+ pulumi.set(__self__, "virtual_machine", virtual_machine)
1123
1121
 
1124
1122
  @property
1125
1123
  @pulumi.getter(name="ipAddress")
1126
- def ip_address(self) -> Optional[pulumi.Input[str]]:
1124
+ def ip_address(self) -> pulumi.Input[str]:
1127
1125
  """
1128
1126
  The IP address on the VM to use for peering.
1129
1127
  """
1130
1128
  return pulumi.get(self, "ip_address")
1131
1129
 
1132
1130
  @ip_address.setter
1133
- def ip_address(self, value: Optional[pulumi.Input[str]]):
1131
+ def ip_address(self, value: pulumi.Input[str]):
1134
1132
  pulumi.set(self, "ip_address", value)
1135
1133
 
1136
1134
  @property
1137
1135
  @pulumi.getter(name="virtualMachine")
1138
- def virtual_machine(self) -> Optional[pulumi.Input[str]]:
1136
+ def virtual_machine(self) -> pulumi.Input[str]:
1139
1137
  """
1140
1138
  The URI of the virtual machine resource
1141
1139
  """
1142
1140
  return pulumi.get(self, "virtual_machine")
1143
1141
 
1144
1142
  @virtual_machine.setter
1145
- def virtual_machine(self, value: Optional[pulumi.Input[str]]):
1143
+ def virtual_machine(self, value: pulumi.Input[str]):
1146
1144
  pulumi.set(self, "virtual_machine", value)
1147
1145
 
1148
1146
 
@@ -823,20 +823,18 @@ class SpokeLinkedRouterApplianceInstancesInstance(dict):
823
823
  return super().get(key, default)
824
824
 
825
825
  def __init__(__self__, *,
826
- ip_address: Optional[str] = None,
827
- virtual_machine: Optional[str] = None):
826
+ ip_address: str,
827
+ virtual_machine: str):
828
828
  """
829
829
  :param str ip_address: The IP address on the VM to use for peering.
830
830
  :param str virtual_machine: The URI of the virtual machine resource
831
831
  """
832
- if ip_address is not None:
833
- pulumi.set(__self__, "ip_address", ip_address)
834
- if virtual_machine is not None:
835
- pulumi.set(__self__, "virtual_machine", virtual_machine)
832
+ pulumi.set(__self__, "ip_address", ip_address)
833
+ pulumi.set(__self__, "virtual_machine", virtual_machine)
836
834
 
837
835
  @property
838
836
  @pulumi.getter(name="ipAddress")
839
- def ip_address(self) -> Optional[str]:
837
+ def ip_address(self) -> str:
840
838
  """
841
839
  The IP address on the VM to use for peering.
842
840
  """
@@ -844,7 +842,7 @@ class SpokeLinkedRouterApplianceInstancesInstance(dict):
844
842
 
845
843
  @property
846
844
  @pulumi.getter(name="virtualMachine")
847
- def virtual_machine(self) -> Optional[str]:
845
+ def virtual_machine(self) -> str:
848
846
  """
849
847
  The URI of the virtual machine resource
850
848
  """
@@ -596,15 +596,15 @@ class Spoke(pulumi.CustomResource):
596
596
  import pulumi_gcp as gcp
597
597
 
598
598
  network = gcp.compute.Network("network",
599
- name="tf-test-network_75413",
599
+ name="tf-test-network_55138",
600
600
  auto_create_subnetworks=False)
601
601
  subnetwork = gcp.compute.Subnetwork("subnetwork",
602
- name="tf-test-subnet_55138",
602
+ name="tf-test-subnet_37559",
603
603
  ip_cidr_range="10.0.0.0/28",
604
604
  region="us-central1",
605
605
  network=network.self_link)
606
606
  instance = gcp.compute.Instance("instance",
607
- name="tf-test-instance_37559",
607
+ name="tf-test-instance_91980",
608
608
  machine_type="e2-medium",
609
609
  can_ip_forward=True,
610
610
  zone="us-central1-a",
@@ -621,13 +621,13 @@ class Spoke(pulumi.CustomResource):
621
621
  }],
622
622
  }])
623
623
  basic_hub = gcp.networkconnectivity.Hub("basic_hub",
624
- name="tf-test-hub_91980",
624
+ name="tf-test-hub_37118",
625
625
  description="A sample hub",
626
626
  labels={
627
627
  "label-two": "value-one",
628
628
  })
629
629
  primary = gcp.networkconnectivity.Spoke("primary",
630
- name="tf-test-name_37118",
630
+ name="tf-test-name_80332",
631
631
  location="us-central1",
632
632
  description="A sample spoke with a linked routher appliance instance",
633
633
  labels={
@@ -951,15 +951,15 @@ class Spoke(pulumi.CustomResource):
951
951
  import pulumi_gcp as gcp
952
952
 
953
953
  network = gcp.compute.Network("network",
954
- name="tf-test-network_75413",
954
+ name="tf-test-network_55138",
955
955
  auto_create_subnetworks=False)
956
956
  subnetwork = gcp.compute.Subnetwork("subnetwork",
957
- name="tf-test-subnet_55138",
957
+ name="tf-test-subnet_37559",
958
958
  ip_cidr_range="10.0.0.0/28",
959
959
  region="us-central1",
960
960
  network=network.self_link)
961
961
  instance = gcp.compute.Instance("instance",
962
- name="tf-test-instance_37559",
962
+ name="tf-test-instance_91980",
963
963
  machine_type="e2-medium",
964
964
  can_ip_forward=True,
965
965
  zone="us-central1-a",
@@ -976,13 +976,13 @@ class Spoke(pulumi.CustomResource):
976
976
  }],
977
977
  }])
978
978
  basic_hub = gcp.networkconnectivity.Hub("basic_hub",
979
- name="tf-test-hub_91980",
979
+ name="tf-test-hub_37118",
980
980
  description="A sample hub",
981
981
  labels={
982
982
  "label-two": "value-one",
983
983
  })
984
984
  primary = gcp.networkconnectivity.Spoke("primary",
985
- name="tf-test-name_37118",
985
+ name="tf-test-name_80332",
986
986
  location="us-central1",
987
987
  description="A sample spoke with a linked routher appliance instance",
988
988
  labels={
@@ -10,12 +10,19 @@ from .address_group_iam_binding import *
10
10
  from .address_group_iam_member import *
11
11
  from .address_group_iam_policy import *
12
12
  from .authorization_policy import *
13
+ from .authz_policy import *
13
14
  from .client_tls_policy import *
14
15
  from .firewall_endpoint import *
15
16
  from .firewall_endpoint_association import *
16
17
  from .gateway_security_policy import *
17
18
  from .gateway_security_policy_rule import *
18
19
  from .get_address_group_iam_policy import *
20
+ from .intercept_deployment import *
21
+ from .intercept_deployment_group import *
22
+ from .mirroring_deployment import *
23
+ from .mirroring_deployment_group import *
24
+ from .mirroring_endpoint_group import *
25
+ from .mirroring_endpoint_group_association import *
19
26
  from .security_profile import *
20
27
  from .security_profile_group import *
21
28
  from .server_tls_policy import *