pulumi-gcp 7.3.0a1702567892__py3-none-any.whl → 7.3.1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. pulumi_gcp/__init__.py +129 -0
  2. pulumi_gcp/artifactregistry/_inputs.py +88 -0
  3. pulumi_gcp/artifactregistry/outputs.py +148 -0
  4. pulumi_gcp/artifactregistry/repository.py +116 -16
  5. pulumi_gcp/bigquery/_inputs.py +110 -0
  6. pulumi_gcp/bigquery/connection.py +123 -3
  7. pulumi_gcp/bigquery/outputs.py +145 -0
  8. pulumi_gcp/cloudbuild/_inputs.py +241 -1
  9. pulumi_gcp/cloudbuild/outputs.py +353 -2
  10. pulumi_gcp/cloudfunctionsv2/_inputs.py +6 -2
  11. pulumi_gcp/cloudfunctionsv2/outputs.py +6 -2
  12. pulumi_gcp/cloudidentity/_inputs.py +54 -5
  13. pulumi_gcp/cloudidentity/group_membership.py +0 -8
  14. pulumi_gcp/cloudidentity/outputs.py +99 -4
  15. pulumi_gcp/cloudrunv2/_inputs.py +8 -4
  16. pulumi_gcp/cloudrunv2/job.py +44 -0
  17. pulumi_gcp/cloudrunv2/outputs.py +8 -4
  18. pulumi_gcp/cloudrunv2/service.py +42 -0
  19. pulumi_gcp/cloudtasks/queue.py +0 -10
  20. pulumi_gcp/composer/_inputs.py +17 -4
  21. pulumi_gcp/composer/outputs.py +20 -4
  22. pulumi_gcp/compute/_inputs.py +46 -0
  23. pulumi_gcp/compute/get_global_forwarding_rule.py +11 -1
  24. pulumi_gcp/compute/global_forwarding_rule.py +69 -0
  25. pulumi_gcp/compute/outputs.py +75 -0
  26. pulumi_gcp/config/__init__.pyi +6 -0
  27. pulumi_gcp/config/vars.py +12 -0
  28. pulumi_gcp/container/_inputs.py +58 -0
  29. pulumi_gcp/container/node_pool.py +68 -14
  30. pulumi_gcp/container/outputs.py +68 -0
  31. pulumi_gcp/dataform/__init__.py +4 -0
  32. pulumi_gcp/dataform/_inputs.py +80 -0
  33. pulumi_gcp/dataform/get_repository_iam_policy.py +144 -0
  34. pulumi_gcp/dataform/outputs.py +56 -0
  35. pulumi_gcp/dataform/repository_iam_binding.py +325 -0
  36. pulumi_gcp/dataform/repository_iam_member.py +325 -0
  37. pulumi_gcp/dataform/repository_iam_policy.py +254 -0
  38. pulumi_gcp/dataloss/_inputs.py +29 -26
  39. pulumi_gcp/dataloss/outputs.py +28 -25
  40. pulumi_gcp/dataloss/prevention_job_trigger.py +78 -0
  41. pulumi_gcp/datastream/connection_profile.py +82 -4
  42. pulumi_gcp/datastream/stream.py +32 -22
  43. pulumi_gcp/firestore/database.py +146 -28
  44. pulumi_gcp/gkehub/_inputs.py +821 -3
  45. pulumi_gcp/gkehub/feature.py +176 -0
  46. pulumi_gcp/gkehub/feature_membership.py +105 -59
  47. pulumi_gcp/gkehub/fleet.py +70 -2
  48. pulumi_gcp/gkehub/outputs.py +819 -3
  49. pulumi_gcp/gkehub/scope.py +2 -2
  50. pulumi_gcp/iam/_inputs.py +72 -0
  51. pulumi_gcp/iam/outputs.py +79 -0
  52. pulumi_gcp/iam/workforce_pool.py +75 -0
  53. pulumi_gcp/identityplatform/project_default_config.py +4 -0
  54. pulumi_gcp/logging/__init__.py +3 -0
  55. pulumi_gcp/logging/get_folder_settings.py +197 -0
  56. pulumi_gcp/logging/get_organization_settings.py +197 -0
  57. pulumi_gcp/logging/get_project_settings.py +197 -0
  58. pulumi_gcp/migrationcenter/__init__.py +8 -0
  59. pulumi_gcp/migrationcenter/group.py +652 -0
  60. pulumi_gcp/netapp/__init__.py +8 -0
  61. pulumi_gcp/netapp/storage_pool.py +970 -0
  62. pulumi_gcp/projects/iam_custom_role.py +7 -7
  63. pulumi_gcp/provider.py +60 -0
  64. pulumi_gcp/securesourcemanager/__init__.py +14 -0
  65. pulumi_gcp/securesourcemanager/_inputs.py +94 -0
  66. pulumi_gcp/securesourcemanager/get_instance_iam_policy.py +168 -0
  67. pulumi_gcp/securesourcemanager/instance.py +607 -0
  68. pulumi_gcp/securesourcemanager/instance_iam_binding.py +325 -0
  69. pulumi_gcp/securesourcemanager/instance_iam_member.py +325 -0
  70. pulumi_gcp/securesourcemanager/instance_iam_policy.py +254 -0
  71. pulumi_gcp/securesourcemanager/outputs.py +70 -0
  72. pulumi_gcp/securitycenter/__init__.py +1 -0
  73. pulumi_gcp/securitycenter/event_threat_detection_custom_module.py +528 -0
  74. pulumi_gcp/sql/_inputs.py +2 -2
  75. pulumi_gcp/sql/database_instance.py +4 -4
  76. pulumi_gcp/sql/outputs.py +2 -2
  77. pulumi_gcp/storage/_inputs.py +16 -0
  78. pulumi_gcp/storage/outputs.py +21 -0
  79. pulumi_gcp/vertex/__init__.py +4 -0
  80. pulumi_gcp/vertex/_inputs.py +80 -0
  81. pulumi_gcp/vertex/ai_endpoint_iam_binding.py +325 -0
  82. pulumi_gcp/vertex/ai_endpoint_iam_member.py +325 -0
  83. pulumi_gcp/vertex/ai_endpoint_iam_policy.py +254 -0
  84. pulumi_gcp/vertex/get_ai_endpoint_iam_policy.py +140 -0
  85. pulumi_gcp/vertex/outputs.py +56 -0
  86. pulumi_gcp/vmwareengine/__init__.py +5 -0
  87. pulumi_gcp/vmwareengine/_inputs.py +104 -2
  88. pulumi_gcp/vmwareengine/get_network.py +14 -4
  89. pulumi_gcp/vmwareengine/get_network_peering.py +260 -0
  90. pulumi_gcp/vmwareengine/get_network_policy.py +228 -0
  91. pulumi_gcp/vmwareengine/get_nsx_credentials.py +133 -0
  92. pulumi_gcp/vmwareengine/get_private_cloud.py +14 -4
  93. pulumi_gcp/vmwareengine/network.py +41 -7
  94. pulumi_gcp/vmwareengine/network_peering.py +959 -0
  95. pulumi_gcp/vmwareengine/network_policy.py +836 -0
  96. pulumi_gcp/vmwareengine/outputs.py +133 -2
  97. pulumi_gcp/vmwareengine/private_cloud.py +20 -68
  98. {pulumi_gcp-7.3.0a1702567892.dist-info → pulumi_gcp-7.3.1.dist-info}/METADATA +1 -1
  99. {pulumi_gcp-7.3.0a1702567892.dist-info → pulumi_gcp-7.3.1.dist-info}/RECORD +101 -72
  100. {pulumi_gcp-7.3.0a1702567892.dist-info → pulumi_gcp-7.3.1.dist-info}/WHEEL +0 -0
  101. {pulumi_gcp-7.3.0a1702567892.dist-info → pulumi_gcp-7.3.1.dist-info}/top_level.txt +0 -0
@@ -26,7 +26,7 @@ class IAMCustomRoleArgs:
26
26
  :param pulumi.Input[str] role_id: The camel case role id to use for this role. Cannot contain `-` characters.
27
27
  :param pulumi.Input[str] title: A human-readable title for the role.
28
28
  :param pulumi.Input[str] description: A human-readable description for the role.
29
- :param pulumi.Input[str] project: The project that the service account will be created in.
29
+ :param pulumi.Input[str] project: The project that the custom role will be created in.
30
30
  Defaults to the provider project configuration.
31
31
  :param pulumi.Input[str] stage: The current launch stage of the role.
32
32
  Defaults to `GA`.
@@ -94,7 +94,7 @@ class IAMCustomRoleArgs:
94
94
  @pulumi.getter
95
95
  def project(self) -> Optional[pulumi.Input[str]]:
96
96
  """
97
- The project that the service account will be created in.
97
+ The project that the custom role will be created in.
98
98
  Defaults to the provider project configuration.
99
99
  """
100
100
  return pulumi.get(self, "project")
@@ -135,7 +135,7 @@ class _IAMCustomRoleState:
135
135
  :param pulumi.Input[str] description: A human-readable description for the role.
136
136
  :param pulumi.Input[str] name: The name of the role in the format `projects/{{project}}/roles/{{role_id}}`. Like `id`, this field can be used as a reference in other resources such as IAM role bindings.
137
137
  :param pulumi.Input[Sequence[pulumi.Input[str]]] permissions: The names of the permissions this role grants when bound in an IAM policy. At least one permission must be specified.
138
- :param pulumi.Input[str] project: The project that the service account will be created in.
138
+ :param pulumi.Input[str] project: The project that the custom role will be created in.
139
139
  Defaults to the provider project configuration.
140
140
  :param pulumi.Input[str] role_id: The camel case role id to use for this role. Cannot contain `-` characters.
141
141
  :param pulumi.Input[str] stage: The current launch stage of the role.
@@ -212,7 +212,7 @@ class _IAMCustomRoleState:
212
212
  @pulumi.getter
213
213
  def project(self) -> Optional[pulumi.Input[str]]:
214
214
  """
215
- The project that the service account will be created in.
215
+ The project that the custom role will be created in.
216
216
  Defaults to the provider project configuration.
217
217
  """
218
218
  return pulumi.get(self, "project")
@@ -332,7 +332,7 @@ class IAMCustomRole(pulumi.CustomResource):
332
332
  :param pulumi.ResourceOptions opts: Options for the resource.
333
333
  :param pulumi.Input[str] description: A human-readable description for the role.
334
334
  :param pulumi.Input[Sequence[pulumi.Input[str]]] permissions: The names of the permissions this role grants when bound in an IAM policy. At least one permission must be specified.
335
- :param pulumi.Input[str] project: The project that the service account will be created in.
335
+ :param pulumi.Input[str] project: The project that the custom role will be created in.
336
336
  Defaults to the provider project configuration.
337
337
  :param pulumi.Input[str] role_id: The camel case role id to use for this role. Cannot contain `-` characters.
338
338
  :param pulumi.Input[str] stage: The current launch stage of the role.
@@ -475,7 +475,7 @@ class IAMCustomRole(pulumi.CustomResource):
475
475
  :param pulumi.Input[str] description: A human-readable description for the role.
476
476
  :param pulumi.Input[str] name: The name of the role in the format `projects/{{project}}/roles/{{role_id}}`. Like `id`, this field can be used as a reference in other resources such as IAM role bindings.
477
477
  :param pulumi.Input[Sequence[pulumi.Input[str]]] permissions: The names of the permissions this role grants when bound in an IAM policy. At least one permission must be specified.
478
- :param pulumi.Input[str] project: The project that the service account will be created in.
478
+ :param pulumi.Input[str] project: The project that the custom role will be created in.
479
479
  Defaults to the provider project configuration.
480
480
  :param pulumi.Input[str] role_id: The camel case role id to use for this role. Cannot contain `-` characters.
481
481
  :param pulumi.Input[str] stage: The current launch stage of the role.
@@ -533,7 +533,7 @@ class IAMCustomRole(pulumi.CustomResource):
533
533
  @pulumi.getter
534
534
  def project(self) -> pulumi.Output[str]:
535
535
  """
536
- The project that the service account will be created in.
536
+ The project that the custom role will be created in.
537
537
  Defaults to the provider project configuration.
538
538
  """
539
539
  return pulumi.get(self, "project")
pulumi_gcp/provider.py CHANGED
@@ -118,8 +118,10 @@ class ProviderArgs:
118
118
  logging_custom_endpoint: Optional[pulumi.Input[str]] = None,
119
119
  looker_custom_endpoint: Optional[pulumi.Input[str]] = None,
120
120
  memcache_custom_endpoint: Optional[pulumi.Input[str]] = None,
121
+ migration_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
121
122
  ml_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
122
123
  monitoring_custom_endpoint: Optional[pulumi.Input[str]] = None,
124
+ netapp_custom_endpoint: Optional[pulumi.Input[str]] = None,
123
125
  network_connectivity_custom_endpoint: Optional[pulumi.Input[str]] = None,
124
126
  network_management_custom_endpoint: Optional[pulumi.Input[str]] = None,
125
127
  network_security_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -144,6 +146,7 @@ class ProviderArgs:
144
146
  runtimeconfig_custom_endpoint: Optional[pulumi.Input[str]] = None,
145
147
  scopes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
146
148
  secret_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
149
+ secure_source_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
147
150
  security_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
148
151
  security_scanner_custom_endpoint: Optional[pulumi.Input[str]] = None,
149
152
  service_directory_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -377,10 +380,14 @@ class ProviderArgs:
377
380
  pulumi.set(__self__, "looker_custom_endpoint", looker_custom_endpoint)
378
381
  if memcache_custom_endpoint is not None:
379
382
  pulumi.set(__self__, "memcache_custom_endpoint", memcache_custom_endpoint)
383
+ if migration_center_custom_endpoint is not None:
384
+ pulumi.set(__self__, "migration_center_custom_endpoint", migration_center_custom_endpoint)
380
385
  if ml_engine_custom_endpoint is not None:
381
386
  pulumi.set(__self__, "ml_engine_custom_endpoint", ml_engine_custom_endpoint)
382
387
  if monitoring_custom_endpoint is not None:
383
388
  pulumi.set(__self__, "monitoring_custom_endpoint", monitoring_custom_endpoint)
389
+ if netapp_custom_endpoint is not None:
390
+ pulumi.set(__self__, "netapp_custom_endpoint", netapp_custom_endpoint)
384
391
  if network_connectivity_custom_endpoint is not None:
385
392
  pulumi.set(__self__, "network_connectivity_custom_endpoint", network_connectivity_custom_endpoint)
386
393
  if network_management_custom_endpoint is not None:
@@ -433,6 +440,8 @@ class ProviderArgs:
433
440
  pulumi.set(__self__, "scopes", scopes)
434
441
  if secret_manager_custom_endpoint is not None:
435
442
  pulumi.set(__self__, "secret_manager_custom_endpoint", secret_manager_custom_endpoint)
443
+ if secure_source_manager_custom_endpoint is not None:
444
+ pulumi.set(__self__, "secure_source_manager_custom_endpoint", secure_source_manager_custom_endpoint)
436
445
  if security_center_custom_endpoint is not None:
437
446
  pulumi.set(__self__, "security_center_custom_endpoint", security_center_custom_endpoint)
438
447
  if security_scanner_custom_endpoint is not None:
@@ -1411,6 +1420,15 @@ class ProviderArgs:
1411
1420
  def memcache_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1412
1421
  pulumi.set(self, "memcache_custom_endpoint", value)
1413
1422
 
1423
+ @property
1424
+ @pulumi.getter(name="migrationCenterCustomEndpoint")
1425
+ def migration_center_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
1426
+ return pulumi.get(self, "migration_center_custom_endpoint")
1427
+
1428
+ @migration_center_custom_endpoint.setter
1429
+ def migration_center_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1430
+ pulumi.set(self, "migration_center_custom_endpoint", value)
1431
+
1414
1432
  @property
1415
1433
  @pulumi.getter(name="mlEngineCustomEndpoint")
1416
1434
  def ml_engine_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
@@ -1429,6 +1447,15 @@ class ProviderArgs:
1429
1447
  def monitoring_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1430
1448
  pulumi.set(self, "monitoring_custom_endpoint", value)
1431
1449
 
1450
+ @property
1451
+ @pulumi.getter(name="netappCustomEndpoint")
1452
+ def netapp_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
1453
+ return pulumi.get(self, "netapp_custom_endpoint")
1454
+
1455
+ @netapp_custom_endpoint.setter
1456
+ def netapp_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1457
+ pulumi.set(self, "netapp_custom_endpoint", value)
1458
+
1432
1459
  @property
1433
1460
  @pulumi.getter(name="networkConnectivityCustomEndpoint")
1434
1461
  def network_connectivity_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
@@ -1645,6 +1672,15 @@ class ProviderArgs:
1645
1672
  def secret_manager_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1646
1673
  pulumi.set(self, "secret_manager_custom_endpoint", value)
1647
1674
 
1675
+ @property
1676
+ @pulumi.getter(name="secureSourceManagerCustomEndpoint")
1677
+ def secure_source_manager_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
1678
+ return pulumi.get(self, "secure_source_manager_custom_endpoint")
1679
+
1680
+ @secure_source_manager_custom_endpoint.setter
1681
+ def secure_source_manager_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1682
+ pulumi.set(self, "secure_source_manager_custom_endpoint", value)
1683
+
1648
1684
  @property
1649
1685
  @pulumi.getter(name="securityCenterCustomEndpoint")
1650
1686
  def security_center_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
@@ -1970,8 +2006,10 @@ class Provider(pulumi.ProviderResource):
1970
2006
  logging_custom_endpoint: Optional[pulumi.Input[str]] = None,
1971
2007
  looker_custom_endpoint: Optional[pulumi.Input[str]] = None,
1972
2008
  memcache_custom_endpoint: Optional[pulumi.Input[str]] = None,
2009
+ migration_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
1973
2010
  ml_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
1974
2011
  monitoring_custom_endpoint: Optional[pulumi.Input[str]] = None,
2012
+ netapp_custom_endpoint: Optional[pulumi.Input[str]] = None,
1975
2013
  network_connectivity_custom_endpoint: Optional[pulumi.Input[str]] = None,
1976
2014
  network_management_custom_endpoint: Optional[pulumi.Input[str]] = None,
1977
2015
  network_security_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -1996,6 +2034,7 @@ class Provider(pulumi.ProviderResource):
1996
2034
  runtimeconfig_custom_endpoint: Optional[pulumi.Input[str]] = None,
1997
2035
  scopes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1998
2036
  secret_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
2037
+ secure_source_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
1999
2038
  security_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
2000
2039
  security_scanner_custom_endpoint: Optional[pulumi.Input[str]] = None,
2001
2040
  service_directory_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -2160,8 +2199,10 @@ class Provider(pulumi.ProviderResource):
2160
2199
  logging_custom_endpoint: Optional[pulumi.Input[str]] = None,
2161
2200
  looker_custom_endpoint: Optional[pulumi.Input[str]] = None,
2162
2201
  memcache_custom_endpoint: Optional[pulumi.Input[str]] = None,
2202
+ migration_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
2163
2203
  ml_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
2164
2204
  monitoring_custom_endpoint: Optional[pulumi.Input[str]] = None,
2205
+ netapp_custom_endpoint: Optional[pulumi.Input[str]] = None,
2165
2206
  network_connectivity_custom_endpoint: Optional[pulumi.Input[str]] = None,
2166
2207
  network_management_custom_endpoint: Optional[pulumi.Input[str]] = None,
2167
2208
  network_security_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -2186,6 +2227,7 @@ class Provider(pulumi.ProviderResource):
2186
2227
  runtimeconfig_custom_endpoint: Optional[pulumi.Input[str]] = None,
2187
2228
  scopes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2188
2229
  secret_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
2230
+ secure_source_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
2189
2231
  security_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
2190
2232
  security_scanner_custom_endpoint: Optional[pulumi.Input[str]] = None,
2191
2233
  service_directory_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -2322,8 +2364,10 @@ class Provider(pulumi.ProviderResource):
2322
2364
  __props__.__dict__["logging_custom_endpoint"] = logging_custom_endpoint
2323
2365
  __props__.__dict__["looker_custom_endpoint"] = looker_custom_endpoint
2324
2366
  __props__.__dict__["memcache_custom_endpoint"] = memcache_custom_endpoint
2367
+ __props__.__dict__["migration_center_custom_endpoint"] = migration_center_custom_endpoint
2325
2368
  __props__.__dict__["ml_engine_custom_endpoint"] = ml_engine_custom_endpoint
2326
2369
  __props__.__dict__["monitoring_custom_endpoint"] = monitoring_custom_endpoint
2370
+ __props__.__dict__["netapp_custom_endpoint"] = netapp_custom_endpoint
2327
2371
  __props__.__dict__["network_connectivity_custom_endpoint"] = network_connectivity_custom_endpoint
2328
2372
  __props__.__dict__["network_management_custom_endpoint"] = network_management_custom_endpoint
2329
2373
  __props__.__dict__["network_security_custom_endpoint"] = network_security_custom_endpoint
@@ -2352,6 +2396,7 @@ class Provider(pulumi.ProviderResource):
2352
2396
  __props__.__dict__["runtimeconfig_custom_endpoint"] = runtimeconfig_custom_endpoint
2353
2397
  __props__.__dict__["scopes"] = pulumi.Output.from_input(scopes).apply(pulumi.runtime.to_json) if scopes is not None else None
2354
2398
  __props__.__dict__["secret_manager_custom_endpoint"] = secret_manager_custom_endpoint
2399
+ __props__.__dict__["secure_source_manager_custom_endpoint"] = secure_source_manager_custom_endpoint
2355
2400
  __props__.__dict__["security_center_custom_endpoint"] = security_center_custom_endpoint
2356
2401
  __props__.__dict__["security_scanner_custom_endpoint"] = security_scanner_custom_endpoint
2357
2402
  __props__.__dict__["service_directory_custom_endpoint"] = service_directory_custom_endpoint
@@ -2879,6 +2924,11 @@ class Provider(pulumi.ProviderResource):
2879
2924
  def memcache_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
2880
2925
  return pulumi.get(self, "memcache_custom_endpoint")
2881
2926
 
2927
+ @property
2928
+ @pulumi.getter(name="migrationCenterCustomEndpoint")
2929
+ def migration_center_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
2930
+ return pulumi.get(self, "migration_center_custom_endpoint")
2931
+
2882
2932
  @property
2883
2933
  @pulumi.getter(name="mlEngineCustomEndpoint")
2884
2934
  def ml_engine_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
@@ -2889,6 +2939,11 @@ class Provider(pulumi.ProviderResource):
2889
2939
  def monitoring_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
2890
2940
  return pulumi.get(self, "monitoring_custom_endpoint")
2891
2941
 
2942
+ @property
2943
+ @pulumi.getter(name="netappCustomEndpoint")
2944
+ def netapp_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
2945
+ return pulumi.get(self, "netapp_custom_endpoint")
2946
+
2892
2947
  @property
2893
2948
  @pulumi.getter(name="networkConnectivityCustomEndpoint")
2894
2949
  def network_connectivity_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
@@ -3004,6 +3059,11 @@ class Provider(pulumi.ProviderResource):
3004
3059
  def secret_manager_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3005
3060
  return pulumi.get(self, "secret_manager_custom_endpoint")
3006
3061
 
3062
+ @property
3063
+ @pulumi.getter(name="secureSourceManagerCustomEndpoint")
3064
+ def secure_source_manager_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3065
+ return pulumi.get(self, "secure_source_manager_custom_endpoint")
3066
+
3007
3067
  @property
3008
3068
  @pulumi.getter(name="securityCenterCustomEndpoint")
3009
3069
  def security_center_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
@@ -0,0 +1,14 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ from .. import _utilities
6
+ import typing
7
+ # Export this package's modules as members:
8
+ from .get_instance_iam_policy import *
9
+ from .instance import *
10
+ from .instance_iam_binding import *
11
+ from .instance_iam_member import *
12
+ from .instance_iam_policy import *
13
+ from ._inputs import *
14
+ from . import outputs
@@ -0,0 +1,94 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+
12
+ __all__ = [
13
+ 'InstanceIamBindingConditionArgs',
14
+ 'InstanceIamMemberConditionArgs',
15
+ ]
16
+
17
+ @pulumi.input_type
18
+ class InstanceIamBindingConditionArgs:
19
+ def __init__(__self__, *,
20
+ expression: pulumi.Input[str],
21
+ title: pulumi.Input[str],
22
+ description: Optional[pulumi.Input[str]] = None):
23
+ pulumi.set(__self__, "expression", expression)
24
+ pulumi.set(__self__, "title", title)
25
+ if description is not None:
26
+ pulumi.set(__self__, "description", description)
27
+
28
+ @property
29
+ @pulumi.getter
30
+ def expression(self) -> pulumi.Input[str]:
31
+ return pulumi.get(self, "expression")
32
+
33
+ @expression.setter
34
+ def expression(self, value: pulumi.Input[str]):
35
+ pulumi.set(self, "expression", value)
36
+
37
+ @property
38
+ @pulumi.getter
39
+ def title(self) -> pulumi.Input[str]:
40
+ return pulumi.get(self, "title")
41
+
42
+ @title.setter
43
+ def title(self, value: pulumi.Input[str]):
44
+ pulumi.set(self, "title", value)
45
+
46
+ @property
47
+ @pulumi.getter
48
+ def description(self) -> Optional[pulumi.Input[str]]:
49
+ return pulumi.get(self, "description")
50
+
51
+ @description.setter
52
+ def description(self, value: Optional[pulumi.Input[str]]):
53
+ pulumi.set(self, "description", value)
54
+
55
+
56
+ @pulumi.input_type
57
+ class InstanceIamMemberConditionArgs:
58
+ def __init__(__self__, *,
59
+ expression: pulumi.Input[str],
60
+ title: pulumi.Input[str],
61
+ description: Optional[pulumi.Input[str]] = None):
62
+ pulumi.set(__self__, "expression", expression)
63
+ pulumi.set(__self__, "title", title)
64
+ if description is not None:
65
+ pulumi.set(__self__, "description", description)
66
+
67
+ @property
68
+ @pulumi.getter
69
+ def expression(self) -> pulumi.Input[str]:
70
+ return pulumi.get(self, "expression")
71
+
72
+ @expression.setter
73
+ def expression(self, value: pulumi.Input[str]):
74
+ pulumi.set(self, "expression", value)
75
+
76
+ @property
77
+ @pulumi.getter
78
+ def title(self) -> pulumi.Input[str]:
79
+ return pulumi.get(self, "title")
80
+
81
+ @title.setter
82
+ def title(self, value: pulumi.Input[str]):
83
+ pulumi.set(self, "title", value)
84
+
85
+ @property
86
+ @pulumi.getter
87
+ def description(self) -> Optional[pulumi.Input[str]]:
88
+ return pulumi.get(self, "description")
89
+
90
+ @description.setter
91
+ def description(self, value: Optional[pulumi.Input[str]]):
92
+ pulumi.set(self, "description", value)
93
+
94
+
@@ -0,0 +1,168 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+
12
+ __all__ = [
13
+ 'GetInstanceIamPolicyResult',
14
+ 'AwaitableGetInstanceIamPolicyResult',
15
+ 'get_instance_iam_policy',
16
+ 'get_instance_iam_policy_output',
17
+ ]
18
+
19
+ @pulumi.output_type
20
+ class GetInstanceIamPolicyResult:
21
+ """
22
+ A collection of values returned by getInstanceIamPolicy.
23
+ """
24
+ def __init__(__self__, etag=None, id=None, instance_id=None, location=None, policy_data=None, project=None):
25
+ if etag and not isinstance(etag, str):
26
+ raise TypeError("Expected argument 'etag' to be a str")
27
+ pulumi.set(__self__, "etag", etag)
28
+ if id and not isinstance(id, str):
29
+ raise TypeError("Expected argument 'id' to be a str")
30
+ pulumi.set(__self__, "id", id)
31
+ if instance_id and not isinstance(instance_id, str):
32
+ raise TypeError("Expected argument 'instance_id' to be a str")
33
+ pulumi.set(__self__, "instance_id", instance_id)
34
+ if location and not isinstance(location, str):
35
+ raise TypeError("Expected argument 'location' to be a str")
36
+ pulumi.set(__self__, "location", location)
37
+ if policy_data and not isinstance(policy_data, str):
38
+ raise TypeError("Expected argument 'policy_data' to be a str")
39
+ pulumi.set(__self__, "policy_data", policy_data)
40
+ if project and not isinstance(project, str):
41
+ raise TypeError("Expected argument 'project' to be a str")
42
+ pulumi.set(__self__, "project", project)
43
+
44
+ @property
45
+ @pulumi.getter
46
+ def etag(self) -> str:
47
+ """
48
+ (Computed) The etag of the IAM policy.
49
+ """
50
+ return pulumi.get(self, "etag")
51
+
52
+ @property
53
+ @pulumi.getter
54
+ def id(self) -> str:
55
+ """
56
+ The provider-assigned unique ID for this managed resource.
57
+ """
58
+ return pulumi.get(self, "id")
59
+
60
+ @property
61
+ @pulumi.getter(name="instanceId")
62
+ def instance_id(self) -> str:
63
+ return pulumi.get(self, "instance_id")
64
+
65
+ @property
66
+ @pulumi.getter
67
+ def location(self) -> str:
68
+ return pulumi.get(self, "location")
69
+
70
+ @property
71
+ @pulumi.getter(name="policyData")
72
+ def policy_data(self) -> str:
73
+ """
74
+ (Required only by `securesourcemanager.InstanceIamPolicy`) The policy data generated by
75
+ a `organizations_get_iam_policy` data source.
76
+ """
77
+ return pulumi.get(self, "policy_data")
78
+
79
+ @property
80
+ @pulumi.getter
81
+ def project(self) -> str:
82
+ return pulumi.get(self, "project")
83
+
84
+
85
+ class AwaitableGetInstanceIamPolicyResult(GetInstanceIamPolicyResult):
86
+ # pylint: disable=using-constant-test
87
+ def __await__(self):
88
+ if False:
89
+ yield self
90
+ return GetInstanceIamPolicyResult(
91
+ etag=self.etag,
92
+ id=self.id,
93
+ instance_id=self.instance_id,
94
+ location=self.location,
95
+ policy_data=self.policy_data,
96
+ project=self.project)
97
+
98
+
99
+ def get_instance_iam_policy(instance_id: Optional[str] = None,
100
+ location: Optional[str] = None,
101
+ project: Optional[str] = None,
102
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetInstanceIamPolicyResult:
103
+ """
104
+ Retrieves the current IAM policy data for instance
105
+
106
+ ## example
107
+
108
+ ```python
109
+ import pulumi
110
+ import pulumi_gcp as gcp
111
+
112
+ policy = gcp.securesourcemanager.get_instance_iam_policy(project=google_secure_source_manager_instance["default"]["project"],
113
+ location=google_secure_source_manager_instance["default"]["location"],
114
+ instance_id=google_secure_source_manager_instance["default"]["instance_id"])
115
+ ```
116
+
117
+
118
+ :param str instance_id: The name for the Instance.
119
+ Used to find the parent resource to bind the IAM policy to
120
+ :param str location: The location for the Instance.
121
+ Used to find the parent resource to bind the IAM policy to
122
+ :param str project: The ID of the project in which the resource belongs.
123
+ If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
124
+ """
125
+ __args__ = dict()
126
+ __args__['instanceId'] = instance_id
127
+ __args__['location'] = location
128
+ __args__['project'] = project
129
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
130
+ __ret__ = pulumi.runtime.invoke('gcp:securesourcemanager/getInstanceIamPolicy:getInstanceIamPolicy', __args__, opts=opts, typ=GetInstanceIamPolicyResult).value
131
+
132
+ return AwaitableGetInstanceIamPolicyResult(
133
+ etag=pulumi.get(__ret__, 'etag'),
134
+ id=pulumi.get(__ret__, 'id'),
135
+ instance_id=pulumi.get(__ret__, 'instance_id'),
136
+ location=pulumi.get(__ret__, 'location'),
137
+ policy_data=pulumi.get(__ret__, 'policy_data'),
138
+ project=pulumi.get(__ret__, 'project'))
139
+
140
+
141
+ @_utilities.lift_output_func(get_instance_iam_policy)
142
+ def get_instance_iam_policy_output(instance_id: Optional[pulumi.Input[str]] = None,
143
+ location: Optional[pulumi.Input[Optional[str]]] = None,
144
+ project: Optional[pulumi.Input[Optional[str]]] = None,
145
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetInstanceIamPolicyResult]:
146
+ """
147
+ Retrieves the current IAM policy data for instance
148
+
149
+ ## example
150
+
151
+ ```python
152
+ import pulumi
153
+ import pulumi_gcp as gcp
154
+
155
+ policy = gcp.securesourcemanager.get_instance_iam_policy(project=google_secure_source_manager_instance["default"]["project"],
156
+ location=google_secure_source_manager_instance["default"]["location"],
157
+ instance_id=google_secure_source_manager_instance["default"]["instance_id"])
158
+ ```
159
+
160
+
161
+ :param str instance_id: The name for the Instance.
162
+ Used to find the parent resource to bind the IAM policy to
163
+ :param str location: The location for the Instance.
164
+ Used to find the parent resource to bind the IAM policy to
165
+ :param str project: The ID of the project in which the resource belongs.
166
+ If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
167
+ """
168
+ ...