pulumi-gcp 7.27.0a1718247696__py3-none-any.whl → 7.28.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +59 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +58 -74
- pulumi_gcp/accesscontextmanager/access_levels.py +0 -20
- pulumi_gcp/accesscontextmanager/outputs.py +58 -74
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/bigtable/_inputs.py +40 -0
- pulumi_gcp/bigtable/outputs.py +49 -0
- pulumi_gcp/bigtable/table.py +54 -0
- pulumi_gcp/cloudbuildv2/_inputs.py +383 -0
- pulumi_gcp/cloudbuildv2/connection.py +110 -2
- pulumi_gcp/cloudbuildv2/outputs.py +421 -0
- pulumi_gcp/composer/__init__.py +3 -0
- pulumi_gcp/composer/get_user_workloads_config_map.py +190 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +188 -0
- pulumi_gcp/composer/user_workloads_config_map.py +475 -0
- pulumi_gcp/compute/_inputs.py +4 -2
- pulumi_gcp/compute/backend_service.py +28 -48
- pulumi_gcp/compute/interconnect.py +4 -4
- pulumi_gcp/compute/outputs.py +10 -4
- pulumi_gcp/compute/region_backend_service.py +35 -48
- pulumi_gcp/compute/region_network_endpoint.py +187 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +49 -9
- pulumi_gcp/compute/region_target_https_proxy.py +7 -14
- pulumi_gcp/compute/target_https_proxy.py +28 -14
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +2 -2
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/discoveryengine/_inputs.py +227 -0
- pulumi_gcp/discoveryengine/data_store.py +108 -0
- pulumi_gcp/discoveryengine/outputs.py +280 -0
- pulumi_gcp/edgecontainer/_inputs.py +107 -1
- pulumi_gcp/edgecontainer/outputs.py +123 -1
- pulumi_gcp/gkehub/_inputs.py +16 -0
- pulumi_gcp/gkehub/outputs.py +15 -1
- pulumi_gcp/kms/crypto_key.py +2 -6
- pulumi_gcp/logging/folder_sink.py +14 -14
- pulumi_gcp/logging/organization_sink.py +14 -14
- pulumi_gcp/managedkafka/__init__.py +11 -0
- pulumi_gcp/managedkafka/_inputs.py +169 -0
- pulumi_gcp/managedkafka/cluster.py +807 -0
- pulumi_gcp/managedkafka/outputs.py +197 -0
- pulumi_gcp/managedkafka/topic.py +599 -0
- pulumi_gcp/netapp/__init__.py +1 -0
- pulumi_gcp/netapp/active_directory.py +55 -0
- pulumi_gcp/netapp/backup.py +903 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/__init__.py +3 -0
- pulumi_gcp/securitycenter/_inputs.py +1105 -0
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +725 -0
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +713 -0
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +706 -0
- pulumi_gcp/securitycenter/outputs.py +1048 -0
- pulumi_gcp/vertex/ai_feature_online_store.py +37 -8
- {pulumi_gcp-7.27.0a1718247696.dist-info → pulumi_gcp-7.28.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.27.0a1718247696.dist-info → pulumi_gcp-7.28.0.dist-info}/RECORD +59 -47
- {pulumi_gcp-7.27.0a1718247696.dist-info → pulumi_gcp-7.28.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-7.27.0a1718247696.dist-info → pulumi_gcp-7.28.0.dist-info}/top_level.txt +0 -0
@@ -20,6 +20,7 @@ class ActiveDirectoryArgs:
|
|
20
20
|
net_bios_prefix: pulumi.Input[str],
|
21
21
|
password: pulumi.Input[str],
|
22
22
|
username: pulumi.Input[str],
|
23
|
+
administrators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
23
24
|
aes_encryption: Optional[pulumi.Input[bool]] = None,
|
24
25
|
backup_operators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
25
26
|
description: Optional[pulumi.Input[str]] = None,
|
@@ -43,6 +44,7 @@ class ActiveDirectoryArgs:
|
|
43
44
|
A five-character random ID is generated automatically, for example, -6f9a, and appended to the prefix. The full UNC share path will have the following format:
|
44
45
|
`\\\\NetBIOS_PREFIX-ABCD.DOMAIN_NAME\\SHARE_NAME`
|
45
46
|
:param pulumi.Input[str] username: Username for the Active Directory account with permissions to create the compute account within the specified organizational unit.
|
47
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] administrators: Domain user accounts to be added to the local Administrators group of the SMB service. Comma-separated list of domain users or groups. The Domain Admin group is automatically added when the service joins your domain as a hidden group.
|
46
48
|
:param pulumi.Input[bool] aes_encryption: Enables AES-128 and AES-256 encryption for Kerberos-based communication with Active Directory.
|
47
49
|
: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.
|
48
50
|
:param pulumi.Input[str] description: An optional description of this resource.
|
@@ -74,6 +76,8 @@ class ActiveDirectoryArgs:
|
|
74
76
|
pulumi.set(__self__, "net_bios_prefix", net_bios_prefix)
|
75
77
|
pulumi.set(__self__, "password", password)
|
76
78
|
pulumi.set(__self__, "username", username)
|
79
|
+
if administrators is not None:
|
80
|
+
pulumi.set(__self__, "administrators", administrators)
|
77
81
|
if aes_encryption is not None:
|
78
82
|
pulumi.set(__self__, "aes_encryption", aes_encryption)
|
79
83
|
if backup_operators is not None:
|
@@ -174,6 +178,18 @@ class ActiveDirectoryArgs:
|
|
174
178
|
def username(self, value: pulumi.Input[str]):
|
175
179
|
pulumi.set(self, "username", value)
|
176
180
|
|
181
|
+
@property
|
182
|
+
@pulumi.getter
|
183
|
+
def administrators(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
184
|
+
"""
|
185
|
+
Domain user accounts to be added to the local Administrators group of the SMB service. Comma-separated list of domain users or groups. The Domain Admin group is automatically added when the service joins your domain as a hidden group.
|
186
|
+
"""
|
187
|
+
return pulumi.get(self, "administrators")
|
188
|
+
|
189
|
+
@administrators.setter
|
190
|
+
def administrators(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
191
|
+
pulumi.set(self, "administrators", value)
|
192
|
+
|
177
193
|
@property
|
178
194
|
@pulumi.getter(name="aesEncryption")
|
179
195
|
def aes_encryption(self) -> Optional[pulumi.Input[bool]]:
|
@@ -356,6 +372,7 @@ class ActiveDirectoryArgs:
|
|
356
372
|
@pulumi.input_type
|
357
373
|
class _ActiveDirectoryState:
|
358
374
|
def __init__(__self__, *,
|
375
|
+
administrators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
359
376
|
aes_encryption: Optional[pulumi.Input[bool]] = None,
|
360
377
|
backup_operators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
361
378
|
create_time: Optional[pulumi.Input[str]] = None,
|
@@ -383,6 +400,7 @@ class _ActiveDirectoryState:
|
|
383
400
|
username: Optional[pulumi.Input[str]] = None):
|
384
401
|
"""
|
385
402
|
Input properties used for looking up and filtering ActiveDirectory resources.
|
403
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] administrators: Domain user accounts to be added to the local Administrators group of the SMB service. Comma-separated list of domain users or groups. The Domain Admin group is automatically added when the service joins your domain as a hidden group.
|
386
404
|
:param pulumi.Input[bool] aes_encryption: Enables AES-128 and AES-256 encryption for Kerberos-based communication with Active Directory.
|
387
405
|
: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.
|
388
406
|
:param pulumi.Input[str] create_time: Create time of the active directory. A timestamp in RFC3339 UTC "Zulu" format. Examples: "2023-06-22T09:13:01.617Z".
|
@@ -421,6 +439,8 @@ class _ActiveDirectoryState:
|
|
421
439
|
:param pulumi.Input[str] state_details: The state details of the Active Directory.
|
422
440
|
:param pulumi.Input[str] username: Username for the Active Directory account with permissions to create the compute account within the specified organizational unit.
|
423
441
|
"""
|
442
|
+
if administrators is not None:
|
443
|
+
pulumi.set(__self__, "administrators", administrators)
|
424
444
|
if aes_encryption is not None:
|
425
445
|
pulumi.set(__self__, "aes_encryption", aes_encryption)
|
426
446
|
if backup_operators is not None:
|
@@ -472,6 +492,18 @@ class _ActiveDirectoryState:
|
|
472
492
|
if username is not None:
|
473
493
|
pulumi.set(__self__, "username", username)
|
474
494
|
|
495
|
+
@property
|
496
|
+
@pulumi.getter
|
497
|
+
def administrators(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
498
|
+
"""
|
499
|
+
Domain user accounts to be added to the local Administrators group of the SMB service. Comma-separated list of domain users or groups. The Domain Admin group is automatically added when the service joins your domain as a hidden group.
|
500
|
+
"""
|
501
|
+
return pulumi.get(self, "administrators")
|
502
|
+
|
503
|
+
@administrators.setter
|
504
|
+
def administrators(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
505
|
+
pulumi.set(self, "administrators", value)
|
506
|
+
|
475
507
|
@property
|
476
508
|
@pulumi.getter(name="aesEncryption")
|
477
509
|
def aes_encryption(self) -> Optional[pulumi.Input[bool]]:
|
@@ -788,6 +820,7 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
788
820
|
def __init__(__self__,
|
789
821
|
resource_name: str,
|
790
822
|
opts: Optional[pulumi.ResourceOptions] = None,
|
823
|
+
administrators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
791
824
|
aes_encryption: Optional[pulumi.Input[bool]] = None,
|
792
825
|
backup_operators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
793
826
|
description: Optional[pulumi.Input[str]] = None,
|
@@ -839,6 +872,10 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
839
872
|
"test1",
|
840
873
|
"test2",
|
841
874
|
],
|
875
|
+
administrators=[
|
876
|
+
"test1",
|
877
|
+
"test2",
|
878
|
+
],
|
842
879
|
description="ActiveDirectory is the public representation of the active directory config.",
|
843
880
|
encrypt_dc_connections=False,
|
844
881
|
kdc_hostname="hostname",
|
@@ -882,6 +919,7 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
882
919
|
|
883
920
|
:param str resource_name: The name of the resource.
|
884
921
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
922
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] administrators: Domain user accounts to be added to the local Administrators group of the SMB service. Comma-separated list of domain users or groups. The Domain Admin group is automatically added when the service joins your domain as a hidden group.
|
885
923
|
:param pulumi.Input[bool] aes_encryption: Enables AES-128 and AES-256 encryption for Kerberos-based communication with Active Directory.
|
886
924
|
: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.
|
887
925
|
:param pulumi.Input[str] description: An optional description of this resource.
|
@@ -950,6 +988,10 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
950
988
|
"test1",
|
951
989
|
"test2",
|
952
990
|
],
|
991
|
+
administrators=[
|
992
|
+
"test1",
|
993
|
+
"test2",
|
994
|
+
],
|
953
995
|
description="ActiveDirectory is the public representation of the active directory config.",
|
954
996
|
encrypt_dc_connections=False,
|
955
997
|
kdc_hostname="hostname",
|
@@ -1006,6 +1048,7 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
1006
1048
|
def _internal_init(__self__,
|
1007
1049
|
resource_name: str,
|
1008
1050
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1051
|
+
administrators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1009
1052
|
aes_encryption: Optional[pulumi.Input[bool]] = None,
|
1010
1053
|
backup_operators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1011
1054
|
description: Optional[pulumi.Input[str]] = None,
|
@@ -1035,6 +1078,7 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
1035
1078
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
1036
1079
|
__props__ = ActiveDirectoryArgs.__new__(ActiveDirectoryArgs)
|
1037
1080
|
|
1081
|
+
__props__.__dict__["administrators"] = administrators
|
1038
1082
|
__props__.__dict__["aes_encryption"] = aes_encryption
|
1039
1083
|
__props__.__dict__["backup_operators"] = backup_operators
|
1040
1084
|
__props__.__dict__["description"] = description
|
@@ -1084,6 +1128,7 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
1084
1128
|
def get(resource_name: str,
|
1085
1129
|
id: pulumi.Input[str],
|
1086
1130
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1131
|
+
administrators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1087
1132
|
aes_encryption: Optional[pulumi.Input[bool]] = None,
|
1088
1133
|
backup_operators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1089
1134
|
create_time: Optional[pulumi.Input[str]] = None,
|
@@ -1116,6 +1161,7 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
1116
1161
|
:param str resource_name: The unique name of the resulting resource.
|
1117
1162
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1118
1163
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1164
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] administrators: Domain user accounts to be added to the local Administrators group of the SMB service. Comma-separated list of domain users or groups. The Domain Admin group is automatically added when the service joins your domain as a hidden group.
|
1119
1165
|
:param pulumi.Input[bool] aes_encryption: Enables AES-128 and AES-256 encryption for Kerberos-based communication with Active Directory.
|
1120
1166
|
: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.
|
1121
1167
|
:param pulumi.Input[str] create_time: Create time of the active directory. A timestamp in RFC3339 UTC "Zulu" format. Examples: "2023-06-22T09:13:01.617Z".
|
@@ -1158,6 +1204,7 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
1158
1204
|
|
1159
1205
|
__props__ = _ActiveDirectoryState.__new__(_ActiveDirectoryState)
|
1160
1206
|
|
1207
|
+
__props__.__dict__["administrators"] = administrators
|
1161
1208
|
__props__.__dict__["aes_encryption"] = aes_encryption
|
1162
1209
|
__props__.__dict__["backup_operators"] = backup_operators
|
1163
1210
|
__props__.__dict__["create_time"] = create_time
|
@@ -1185,6 +1232,14 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
1185
1232
|
__props__.__dict__["username"] = username
|
1186
1233
|
return ActiveDirectory(resource_name, opts=opts, __props__=__props__)
|
1187
1234
|
|
1235
|
+
@property
|
1236
|
+
@pulumi.getter
|
1237
|
+
def administrators(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
1238
|
+
"""
|
1239
|
+
Domain user accounts to be added to the local Administrators group of the SMB service. Comma-separated list of domain users or groups. The Domain Admin group is automatically added when the service joins your domain as a hidden group.
|
1240
|
+
"""
|
1241
|
+
return pulumi.get(self, "administrators")
|
1242
|
+
|
1188
1243
|
@property
|
1189
1244
|
@pulumi.getter(name="aesEncryption")
|
1190
1245
|
def aes_encryption(self) -> pulumi.Output[Optional[bool]]:
|