pulumi-gcp 7.36.0a1723631483__py3-none-any.whl → 7.37.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 (53) hide show
  1. pulumi_gcp/__init__.py +72 -0
  2. pulumi_gcp/accesscontextmanager/__init__.py +2 -0
  3. pulumi_gcp/accesscontextmanager/_inputs.py +780 -0
  4. pulumi_gcp/accesscontextmanager/outputs.py +601 -0
  5. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +323 -0
  6. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +332 -0
  7. pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +2 -24
  8. pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +2 -24
  9. pulumi_gcp/applicationintegration/client.py +2 -2
  10. pulumi_gcp/clouddeploy/_inputs.py +21 -1
  11. pulumi_gcp/clouddeploy/outputs.py +15 -1
  12. pulumi_gcp/cloudrunv2/_inputs.py +40 -0
  13. pulumi_gcp/cloudrunv2/outputs.py +46 -0
  14. pulumi_gcp/compute/region_target_https_proxy.py +28 -0
  15. pulumi_gcp/container/_inputs.py +26 -0
  16. pulumi_gcp/container/outputs.py +29 -0
  17. pulumi_gcp/dataform/repository.py +80 -2
  18. pulumi_gcp/discoveryengine/data_store.py +93 -2
  19. pulumi_gcp/gkehub/_inputs.py +63 -0
  20. pulumi_gcp/gkehub/outputs.py +38 -0
  21. pulumi_gcp/logging/get_log_view_iam_policy.py +28 -2
  22. pulumi_gcp/logging/log_view_iam_binding.py +512 -0
  23. pulumi_gcp/logging/log_view_iam_member.py +512 -0
  24. pulumi_gcp/logging/log_view_iam_policy.py +512 -0
  25. pulumi_gcp/netapp/_inputs.py +6 -6
  26. pulumi_gcp/netapp/outputs.py +4 -4
  27. pulumi_gcp/networkconnectivity/regional_endpoint.py +6 -6
  28. pulumi_gcp/organizations/get_project.py +11 -1
  29. pulumi_gcp/organizations/project.py +76 -21
  30. pulumi_gcp/pulumi-plugin.json +1 -1
  31. pulumi_gcp/securitycenter/__init__.py +8 -0
  32. pulumi_gcp/securitycenter/_inputs.py +191 -0
  33. pulumi_gcp/securitycenter/get_v2_organization_source_iam_policy.py +146 -0
  34. pulumi_gcp/securitycenter/outputs.py +115 -0
  35. pulumi_gcp/securitycenter/v2_folder_mute_config.py +679 -0
  36. pulumi_gcp/securitycenter/v2_organization_source.py +416 -0
  37. pulumi_gcp/securitycenter/v2_organization_source_iam_binding.py +722 -0
  38. pulumi_gcp/securitycenter/v2_organization_source_iam_member.py +722 -0
  39. pulumi_gcp/securitycenter/v2_organization_source_iam_policy.py +561 -0
  40. pulumi_gcp/securitycenter/v2_project_mute_config.py +684 -0
  41. pulumi_gcp/securitycenter/v2_project_notification_config.py +559 -0
  42. pulumi_gcp/spanner/instance.py +0 -7
  43. pulumi_gcp/sql/_inputs.py +3 -3
  44. pulumi_gcp/sql/outputs.py +6 -6
  45. pulumi_gcp/storage/bucket_object.py +28 -0
  46. pulumi_gcp/storage/get_bucket_object.py +14 -1
  47. pulumi_gcp/storage/get_bucket_object_content.py +11 -1
  48. pulumi_gcp/storage/managed_folder.py +72 -2
  49. pulumi_gcp/vmwareengine/network_policy.py +6 -6
  50. {pulumi_gcp-7.36.0a1723631483.dist-info → pulumi_gcp-7.37.0.dist-info}/METADATA +1 -1
  51. {pulumi_gcp-7.36.0a1723631483.dist-info → pulumi_gcp-7.37.0.dist-info}/RECORD +53 -43
  52. {pulumi_gcp-7.36.0a1723631483.dist-info → pulumi_gcp-7.37.0.dist-info}/WHEEL +0 -0
  53. {pulumi_gcp-7.36.0a1723631483.dist-info → pulumi_gcp-7.37.0.dist-info}/top_level.txt +0 -0
@@ -251,6 +251,11 @@ if not MYPY:
251
251
  ConfigSync configuration for the cluster
252
252
  Structure is documented below.
253
253
  """
254
+ management: NotRequired[pulumi.Input[str]]
255
+ """
256
+ Set this field to MANAGEMENT_AUTOMATIC to enable Config Sync auto-upgrades, and set this field to MANAGEMENT_MANUAL or MANAGEMENT_UNSPECIFIED to disable Config Sync auto-upgrades.
257
+ Possible values are: `MANAGEMENT_UNSPECIFIED`, `MANAGEMENT_AUTOMATIC`, `MANAGEMENT_MANUAL`.
258
+ """
254
259
  version: NotRequired[pulumi.Input[str]]
255
260
  """
256
261
  Version of ACM installed
@@ -262,14 +267,19 @@ elif False:
262
267
  class FeatureFleetDefaultMemberConfigConfigmanagementArgs:
263
268
  def __init__(__self__, *,
264
269
  config_sync: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigConfigmanagementConfigSyncArgs']] = None,
270
+ management: Optional[pulumi.Input[str]] = None,
265
271
  version: Optional[pulumi.Input[str]] = None):
266
272
  """
267
273
  :param pulumi.Input['FeatureFleetDefaultMemberConfigConfigmanagementConfigSyncArgs'] config_sync: ConfigSync configuration for the cluster
268
274
  Structure is documented below.
275
+ :param pulumi.Input[str] management: Set this field to MANAGEMENT_AUTOMATIC to enable Config Sync auto-upgrades, and set this field to MANAGEMENT_MANUAL or MANAGEMENT_UNSPECIFIED to disable Config Sync auto-upgrades.
276
+ Possible values are: `MANAGEMENT_UNSPECIFIED`, `MANAGEMENT_AUTOMATIC`, `MANAGEMENT_MANUAL`.
269
277
  :param pulumi.Input[str] version: Version of ACM installed
270
278
  """
271
279
  if config_sync is not None:
272
280
  pulumi.set(__self__, "config_sync", config_sync)
281
+ if management is not None:
282
+ pulumi.set(__self__, "management", management)
273
283
  if version is not None:
274
284
  pulumi.set(__self__, "version", version)
275
285
 
@@ -286,6 +296,19 @@ class FeatureFleetDefaultMemberConfigConfigmanagementArgs:
286
296
  def config_sync(self, value: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigConfigmanagementConfigSyncArgs']]):
287
297
  pulumi.set(self, "config_sync", value)
288
298
 
299
+ @property
300
+ @pulumi.getter
301
+ def management(self) -> Optional[pulumi.Input[str]]:
302
+ """
303
+ Set this field to MANAGEMENT_AUTOMATIC to enable Config Sync auto-upgrades, and set this field to MANAGEMENT_MANUAL or MANAGEMENT_UNSPECIFIED to disable Config Sync auto-upgrades.
304
+ Possible values are: `MANAGEMENT_UNSPECIFIED`, `MANAGEMENT_AUTOMATIC`, `MANAGEMENT_MANUAL`.
305
+ """
306
+ return pulumi.get(self, "management")
307
+
308
+ @management.setter
309
+ def management(self, value: Optional[pulumi.Input[str]]):
310
+ pulumi.set(self, "management", value)
311
+
289
312
  @property
290
313
  @pulumi.getter
291
314
  def version(self) -> Optional[pulumi.Input[str]]:
@@ -1704,6 +1727,10 @@ if not MYPY:
1704
1727
  """
1705
1728
  Hierarchy Controller configuration for the cluster. Structure is documented below.
1706
1729
  """
1730
+ management: NotRequired[pulumi.Input[str]]
1731
+ """
1732
+ Set this field to MANAGEMENT_AUTOMATIC to enable Config Sync auto-upgrades, and set this field to MANAGEMENT_MANUAL or MANAGEMENT_UNSPECIFIED to disable Config Sync auto-upgrades.
1733
+ """
1707
1734
  policy_controller: NotRequired[pulumi.Input['FeatureMembershipConfigmanagementPolicyControllerArgsDict']]
1708
1735
  """
1709
1736
  Policy Controller configuration for the cluster. Structure is documented below.
@@ -1721,12 +1748,14 @@ class FeatureMembershipConfigmanagementArgs:
1721
1748
  binauthz: Optional[pulumi.Input['FeatureMembershipConfigmanagementBinauthzArgs']] = None,
1722
1749
  config_sync: Optional[pulumi.Input['FeatureMembershipConfigmanagementConfigSyncArgs']] = None,
1723
1750
  hierarchy_controller: Optional[pulumi.Input['FeatureMembershipConfigmanagementHierarchyControllerArgs']] = None,
1751
+ management: Optional[pulumi.Input[str]] = None,
1724
1752
  policy_controller: Optional[pulumi.Input['FeatureMembershipConfigmanagementPolicyControllerArgs']] = None,
1725
1753
  version: Optional[pulumi.Input[str]] = None):
1726
1754
  """
1727
1755
  :param pulumi.Input['FeatureMembershipConfigmanagementBinauthzArgs'] binauthz: Binauthz configuration for the cluster. Structure is documented below.
1728
1756
  :param pulumi.Input['FeatureMembershipConfigmanagementConfigSyncArgs'] config_sync: Config Sync configuration for the cluster. Structure is documented below.
1729
1757
  :param pulumi.Input['FeatureMembershipConfigmanagementHierarchyControllerArgs'] hierarchy_controller: Hierarchy Controller configuration for the cluster. Structure is documented below.
1758
+ :param pulumi.Input[str] management: Set this field to MANAGEMENT_AUTOMATIC to enable Config Sync auto-upgrades, and set this field to MANAGEMENT_MANUAL or MANAGEMENT_UNSPECIFIED to disable Config Sync auto-upgrades.
1730
1759
  :param pulumi.Input['FeatureMembershipConfigmanagementPolicyControllerArgs'] policy_controller: Policy Controller configuration for the cluster. Structure is documented below.
1731
1760
  :param pulumi.Input[str] version: Version of ACM installed.
1732
1761
  """
@@ -1736,6 +1765,8 @@ class FeatureMembershipConfigmanagementArgs:
1736
1765
  pulumi.set(__self__, "config_sync", config_sync)
1737
1766
  if hierarchy_controller is not None:
1738
1767
  pulumi.set(__self__, "hierarchy_controller", hierarchy_controller)
1768
+ if management is not None:
1769
+ pulumi.set(__self__, "management", management)
1739
1770
  if policy_controller is not None:
1740
1771
  pulumi.set(__self__, "policy_controller", policy_controller)
1741
1772
  if version is not None:
@@ -1777,6 +1808,18 @@ class FeatureMembershipConfigmanagementArgs:
1777
1808
  def hierarchy_controller(self, value: Optional[pulumi.Input['FeatureMembershipConfigmanagementHierarchyControllerArgs']]):
1778
1809
  pulumi.set(self, "hierarchy_controller", value)
1779
1810
 
1811
+ @property
1812
+ @pulumi.getter
1813
+ def management(self) -> Optional[pulumi.Input[str]]:
1814
+ """
1815
+ Set this field to MANAGEMENT_AUTOMATIC to enable Config Sync auto-upgrades, and set this field to MANAGEMENT_MANUAL or MANAGEMENT_UNSPECIFIED to disable Config Sync auto-upgrades.
1816
+ """
1817
+ return pulumi.get(self, "management")
1818
+
1819
+ @management.setter
1820
+ def management(self, value: Optional[pulumi.Input[str]]):
1821
+ pulumi.set(self, "management", value)
1822
+
1780
1823
  @property
1781
1824
  @pulumi.getter(name="policyController")
1782
1825
  def policy_controller(self) -> Optional[pulumi.Input['FeatureMembershipConfigmanagementPolicyControllerArgs']]:
@@ -1836,6 +1879,10 @@ class FeatureMembershipConfigmanagementBinauthzArgs:
1836
1879
 
1837
1880
  if not MYPY:
1838
1881
  class FeatureMembershipConfigmanagementConfigSyncArgsDict(TypedDict):
1882
+ enabled: NotRequired[pulumi.Input[bool]]
1883
+ """
1884
+ Enables the installation of ConfigSync. If set to true, ConfigSync resources will be created and the other ConfigSync fields will be applied if exist. If set to false, all other ConfigSync fields will be ignored, ConfigSync resources will be deleted. If omitted, ConfigSync resources will be managed depends on the presence of the git or oci field.
1885
+ """
1839
1886
  git: NotRequired[pulumi.Input['FeatureMembershipConfigmanagementConfigSyncGitArgsDict']]
1840
1887
  """
1841
1888
  (Optional) Structure is documented below.
@@ -1864,12 +1911,14 @@ elif False:
1864
1911
  @pulumi.input_type
1865
1912
  class FeatureMembershipConfigmanagementConfigSyncArgs:
1866
1913
  def __init__(__self__, *,
1914
+ enabled: Optional[pulumi.Input[bool]] = None,
1867
1915
  git: Optional[pulumi.Input['FeatureMembershipConfigmanagementConfigSyncGitArgs']] = None,
1868
1916
  metrics_gcp_service_account_email: Optional[pulumi.Input[str]] = None,
1869
1917
  oci: Optional[pulumi.Input['FeatureMembershipConfigmanagementConfigSyncOciArgs']] = None,
1870
1918
  prevent_drift: Optional[pulumi.Input[bool]] = None,
1871
1919
  source_format: Optional[pulumi.Input[str]] = None):
1872
1920
  """
1921
+ :param pulumi.Input[bool] enabled: Enables the installation of ConfigSync. If set to true, ConfigSync resources will be created and the other ConfigSync fields will be applied if exist. If set to false, all other ConfigSync fields will be ignored, ConfigSync resources will be deleted. If omitted, ConfigSync resources will be managed depends on the presence of the git or oci field.
1873
1922
  :param pulumi.Input['FeatureMembershipConfigmanagementConfigSyncGitArgs'] git: (Optional) Structure is documented below.
1874
1923
  :param pulumi.Input[str] metrics_gcp_service_account_email: The Email of the Google Cloud Service Account (GSA) used for exporting Config Sync metrics to Cloud Monitoring. The GSA should have the Monitoring Metric Writer(roles/monitoring.metricWriter) IAM role. The Kubernetes ServiceAccount `default` in the namespace `config-management-monitoring` should be bound to the GSA.
1875
1924
  :param pulumi.Input['FeatureMembershipConfigmanagementConfigSyncOciArgs'] oci: (Optional) Supported from ACM versions 1.12.0 onwards. Structure is documented below.
@@ -1878,6 +1927,8 @@ class FeatureMembershipConfigmanagementConfigSyncArgs:
1878
1927
  :param pulumi.Input[bool] prevent_drift: Supported from ACM versions 1.10.0 onwards. Set to true to enable the Config Sync admission webhook to prevent drifts. If set to "false", disables the Config Sync admission webhook and does not prevent drifts.
1879
1928
  :param pulumi.Input[str] source_format: Specifies whether the Config Sync Repo is in "hierarchical" or "unstructured" mode.
1880
1929
  """
1930
+ if enabled is not None:
1931
+ pulumi.set(__self__, "enabled", enabled)
1881
1932
  if git is not None:
1882
1933
  pulumi.set(__self__, "git", git)
1883
1934
  if metrics_gcp_service_account_email is not None:
@@ -1889,6 +1940,18 @@ class FeatureMembershipConfigmanagementConfigSyncArgs:
1889
1940
  if source_format is not None:
1890
1941
  pulumi.set(__self__, "source_format", source_format)
1891
1942
 
1943
+ @property
1944
+ @pulumi.getter
1945
+ def enabled(self) -> Optional[pulumi.Input[bool]]:
1946
+ """
1947
+ Enables the installation of ConfigSync. If set to true, ConfigSync resources will be created and the other ConfigSync fields will be applied if exist. If set to false, all other ConfigSync fields will be ignored, ConfigSync resources will be deleted. If omitted, ConfigSync resources will be managed depends on the presence of the git or oci field.
1948
+ """
1949
+ return pulumi.get(self, "enabled")
1950
+
1951
+ @enabled.setter
1952
+ def enabled(self, value: Optional[pulumi.Input[bool]]):
1953
+ pulumi.set(self, "enabled", value)
1954
+
1892
1955
  @property
1893
1956
  @pulumi.getter
1894
1957
  def git(self) -> Optional[pulumi.Input['FeatureMembershipConfigmanagementConfigSyncGitArgs']]:
@@ -161,14 +161,19 @@ class FeatureFleetDefaultMemberConfigConfigmanagement(dict):
161
161
 
162
162
  def __init__(__self__, *,
163
163
  config_sync: Optional['outputs.FeatureFleetDefaultMemberConfigConfigmanagementConfigSync'] = None,
164
+ management: Optional[str] = None,
164
165
  version: Optional[str] = None):
165
166
  """
166
167
  :param 'FeatureFleetDefaultMemberConfigConfigmanagementConfigSyncArgs' config_sync: ConfigSync configuration for the cluster
167
168
  Structure is documented below.
169
+ :param str management: Set this field to MANAGEMENT_AUTOMATIC to enable Config Sync auto-upgrades, and set this field to MANAGEMENT_MANUAL or MANAGEMENT_UNSPECIFIED to disable Config Sync auto-upgrades.
170
+ Possible values are: `MANAGEMENT_UNSPECIFIED`, `MANAGEMENT_AUTOMATIC`, `MANAGEMENT_MANUAL`.
168
171
  :param str version: Version of ACM installed
169
172
  """
170
173
  if config_sync is not None:
171
174
  pulumi.set(__self__, "config_sync", config_sync)
175
+ if management is not None:
176
+ pulumi.set(__self__, "management", management)
172
177
  if version is not None:
173
178
  pulumi.set(__self__, "version", version)
174
179
 
@@ -181,6 +186,15 @@ class FeatureFleetDefaultMemberConfigConfigmanagement(dict):
181
186
  """
182
187
  return pulumi.get(self, "config_sync")
183
188
 
189
+ @property
190
+ @pulumi.getter
191
+ def management(self) -> Optional[str]:
192
+ """
193
+ Set this field to MANAGEMENT_AUTOMATIC to enable Config Sync auto-upgrades, and set this field to MANAGEMENT_MANUAL or MANAGEMENT_UNSPECIFIED to disable Config Sync auto-upgrades.
194
+ Possible values are: `MANAGEMENT_UNSPECIFIED`, `MANAGEMENT_AUTOMATIC`, `MANAGEMENT_MANUAL`.
195
+ """
196
+ return pulumi.get(self, "management")
197
+
184
198
  @property
185
199
  @pulumi.getter
186
200
  def version(self) -> Optional[str]:
@@ -1228,12 +1242,14 @@ class FeatureMembershipConfigmanagement(dict):
1228
1242
  binauthz: Optional['outputs.FeatureMembershipConfigmanagementBinauthz'] = None,
1229
1243
  config_sync: Optional['outputs.FeatureMembershipConfigmanagementConfigSync'] = None,
1230
1244
  hierarchy_controller: Optional['outputs.FeatureMembershipConfigmanagementHierarchyController'] = None,
1245
+ management: Optional[str] = None,
1231
1246
  policy_controller: Optional['outputs.FeatureMembershipConfigmanagementPolicyController'] = None,
1232
1247
  version: Optional[str] = None):
1233
1248
  """
1234
1249
  :param 'FeatureMembershipConfigmanagementBinauthzArgs' binauthz: Binauthz configuration for the cluster. Structure is documented below.
1235
1250
  :param 'FeatureMembershipConfigmanagementConfigSyncArgs' config_sync: Config Sync configuration for the cluster. Structure is documented below.
1236
1251
  :param 'FeatureMembershipConfigmanagementHierarchyControllerArgs' hierarchy_controller: Hierarchy Controller configuration for the cluster. Structure is documented below.
1252
+ :param str management: Set this field to MANAGEMENT_AUTOMATIC to enable Config Sync auto-upgrades, and set this field to MANAGEMENT_MANUAL or MANAGEMENT_UNSPECIFIED to disable Config Sync auto-upgrades.
1237
1253
  :param 'FeatureMembershipConfigmanagementPolicyControllerArgs' policy_controller: Policy Controller configuration for the cluster. Structure is documented below.
1238
1254
  :param str version: Version of ACM installed.
1239
1255
  """
@@ -1243,6 +1259,8 @@ class FeatureMembershipConfigmanagement(dict):
1243
1259
  pulumi.set(__self__, "config_sync", config_sync)
1244
1260
  if hierarchy_controller is not None:
1245
1261
  pulumi.set(__self__, "hierarchy_controller", hierarchy_controller)
1262
+ if management is not None:
1263
+ pulumi.set(__self__, "management", management)
1246
1264
  if policy_controller is not None:
1247
1265
  pulumi.set(__self__, "policy_controller", policy_controller)
1248
1266
  if version is not None:
@@ -1272,6 +1290,14 @@ class FeatureMembershipConfigmanagement(dict):
1272
1290
  """
1273
1291
  return pulumi.get(self, "hierarchy_controller")
1274
1292
 
1293
+ @property
1294
+ @pulumi.getter
1295
+ def management(self) -> Optional[str]:
1296
+ """
1297
+ Set this field to MANAGEMENT_AUTOMATIC to enable Config Sync auto-upgrades, and set this field to MANAGEMENT_MANUAL or MANAGEMENT_UNSPECIFIED to disable Config Sync auto-upgrades.
1298
+ """
1299
+ return pulumi.get(self, "management")
1300
+
1275
1301
  @property
1276
1302
  @pulumi.getter(name="policyController")
1277
1303
  def policy_controller(self) -> Optional['outputs.FeatureMembershipConfigmanagementPolicyController']:
@@ -1332,12 +1358,14 @@ class FeatureMembershipConfigmanagementConfigSync(dict):
1332
1358
  return super().get(key, default)
1333
1359
 
1334
1360
  def __init__(__self__, *,
1361
+ enabled: Optional[bool] = None,
1335
1362
  git: Optional['outputs.FeatureMembershipConfigmanagementConfigSyncGit'] = None,
1336
1363
  metrics_gcp_service_account_email: Optional[str] = None,
1337
1364
  oci: Optional['outputs.FeatureMembershipConfigmanagementConfigSyncOci'] = None,
1338
1365
  prevent_drift: Optional[bool] = None,
1339
1366
  source_format: Optional[str] = None):
1340
1367
  """
1368
+ :param bool enabled: Enables the installation of ConfigSync. If set to true, ConfigSync resources will be created and the other ConfigSync fields will be applied if exist. If set to false, all other ConfigSync fields will be ignored, ConfigSync resources will be deleted. If omitted, ConfigSync resources will be managed depends on the presence of the git or oci field.
1341
1369
  :param 'FeatureMembershipConfigmanagementConfigSyncGitArgs' git: (Optional) Structure is documented below.
1342
1370
  :param str metrics_gcp_service_account_email: The Email of the Google Cloud Service Account (GSA) used for exporting Config Sync metrics to Cloud Monitoring. The GSA should have the Monitoring Metric Writer(roles/monitoring.metricWriter) IAM role. The Kubernetes ServiceAccount `default` in the namespace `config-management-monitoring` should be bound to the GSA.
1343
1371
  :param 'FeatureMembershipConfigmanagementConfigSyncOciArgs' oci: (Optional) Supported from ACM versions 1.12.0 onwards. Structure is documented below.
@@ -1346,6 +1374,8 @@ class FeatureMembershipConfigmanagementConfigSync(dict):
1346
1374
  :param bool prevent_drift: Supported from ACM versions 1.10.0 onwards. Set to true to enable the Config Sync admission webhook to prevent drifts. If set to "false", disables the Config Sync admission webhook and does not prevent drifts.
1347
1375
  :param str source_format: Specifies whether the Config Sync Repo is in "hierarchical" or "unstructured" mode.
1348
1376
  """
1377
+ if enabled is not None:
1378
+ pulumi.set(__self__, "enabled", enabled)
1349
1379
  if git is not None:
1350
1380
  pulumi.set(__self__, "git", git)
1351
1381
  if metrics_gcp_service_account_email is not None:
@@ -1357,6 +1387,14 @@ class FeatureMembershipConfigmanagementConfigSync(dict):
1357
1387
  if source_format is not None:
1358
1388
  pulumi.set(__self__, "source_format", source_format)
1359
1389
 
1390
+ @property
1391
+ @pulumi.getter
1392
+ def enabled(self) -> Optional[bool]:
1393
+ """
1394
+ Enables the installation of ConfigSync. If set to true, ConfigSync resources will be created and the other ConfigSync fields will be applied if exist. If set to false, all other ConfigSync fields will be ignored, ConfigSync resources will be deleted. If omitted, ConfigSync resources will be managed depends on the presence of the git or oci field.
1395
+ """
1396
+ return pulumi.get(self, "enabled")
1397
+
1360
1398
  @property
1361
1399
  @pulumi.getter
1362
1400
  def git(self) -> Optional['outputs.FeatureMembershipConfigmanagementConfigSyncGit']:
@@ -116,7 +116,20 @@ def get_log_view_iam_policy(bucket: Optional[str] = None,
116
116
  parent: Optional[str] = None,
117
117
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLogViewIamPolicyResult:
118
118
  """
119
- Use this data source to access information about an existing resource.
119
+ Retrieves the current IAM policy data for logview
120
+
121
+ ## example
122
+
123
+ ```python
124
+ import pulumi
125
+ import pulumi_gcp as gcp
126
+
127
+ policy = gcp.logging.get_log_view_iam_policy(parent=logging_log_view["parent"],
128
+ location=logging_log_view["location"],
129
+ bucket=logging_log_view["bucket"],
130
+ name=logging_log_view["name"])
131
+ ```
132
+
120
133
 
121
134
  :param str bucket: The bucket of the resource Used to find the parent resource to bind the IAM policy to
122
135
  :param str location: The location of the resource. The supported locations are: global, us-central1, us-east1, us-west1, asia-east1, europe-west1. Used to find the parent resource to bind the IAM policy to. If not specified,
@@ -150,7 +163,20 @@ def get_log_view_iam_policy_output(bucket: Optional[pulumi.Input[str]] = None,
150
163
  parent: Optional[pulumi.Input[str]] = None,
151
164
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetLogViewIamPolicyResult]:
152
165
  """
153
- Use this data source to access information about an existing resource.
166
+ Retrieves the current IAM policy data for logview
167
+
168
+ ## example
169
+
170
+ ```python
171
+ import pulumi
172
+ import pulumi_gcp as gcp
173
+
174
+ policy = gcp.logging.get_log_view_iam_policy(parent=logging_log_view["parent"],
175
+ location=logging_log_view["location"],
176
+ bucket=logging_log_view["bucket"],
177
+ name=logging_log_view["name"])
178
+ ```
179
+
154
180
 
155
181
  :param str bucket: The bucket of the resource Used to find the parent resource to bind the IAM policy to
156
182
  :param str location: The location of the resource. The supported locations are: global, us-central1, us-east1, us-west1, asia-east1, europe-west1. Used to find the parent resource to bind the IAM policy to. If not specified,