pulumi-gcp 7.28.0__py3-none-any.whl → 7.28.0a1718431623__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 +0 -59
- pulumi_gcp/accesscontextmanager/_inputs.py +74 -58
- pulumi_gcp/accesscontextmanager/access_levels.py +20 -0
- pulumi_gcp/accesscontextmanager/outputs.py +74 -58
- pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
- pulumi_gcp/bigtable/_inputs.py +0 -40
- pulumi_gcp/bigtable/outputs.py +0 -49
- pulumi_gcp/bigtable/table.py +0 -54
- pulumi_gcp/cloudbuildv2/_inputs.py +0 -383
- pulumi_gcp/cloudbuildv2/connection.py +2 -110
- pulumi_gcp/cloudbuildv2/outputs.py +0 -421
- pulumi_gcp/composer/__init__.py +0 -3
- pulumi_gcp/compute/_inputs.py +2 -4
- pulumi_gcp/compute/backend_service.py +48 -28
- pulumi_gcp/compute/interconnect.py +4 -4
- pulumi_gcp/compute/outputs.py +4 -10
- pulumi_gcp/compute/region_backend_service.py +48 -35
- pulumi_gcp/compute/region_network_endpoint.py +0 -187
- pulumi_gcp/compute/region_network_endpoint_group.py +9 -49
- pulumi_gcp/compute/region_target_https_proxy.py +14 -7
- pulumi_gcp/compute/target_https_proxy.py +14 -28
- pulumi_gcp/config/__init__.pyi +0 -2
- pulumi_gcp/config/vars.py +0 -4
- pulumi_gcp/container/_inputs.py +2 -2
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/discoveryengine/_inputs.py +0 -227
- pulumi_gcp/discoveryengine/data_store.py +0 -108
- pulumi_gcp/discoveryengine/outputs.py +0 -280
- pulumi_gcp/edgecontainer/_inputs.py +1 -107
- pulumi_gcp/edgecontainer/outputs.py +1 -123
- pulumi_gcp/gkehub/_inputs.py +0 -16
- pulumi_gcp/gkehub/outputs.py +1 -15
- pulumi_gcp/kms/crypto_key.py +6 -2
- pulumi_gcp/logging/folder_sink.py +14 -14
- pulumi_gcp/logging/organization_sink.py +14 -14
- pulumi_gcp/netapp/__init__.py +0 -1
- pulumi_gcp/netapp/active_directory.py +0 -55
- pulumi_gcp/provider.py +0 -20
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/__init__.py +0 -3
- pulumi_gcp/securitycenter/_inputs.py +0 -1105
- pulumi_gcp/securitycenter/outputs.py +0 -1048
- pulumi_gcp/vertex/ai_feature_online_store.py +8 -37
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718431623.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718431623.dist-info}/RECORD +47 -59
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718431623.dist-info}/WHEEL +1 -1
- pulumi_gcp/composer/get_user_workloads_config_map.py +0 -190
- pulumi_gcp/composer/get_user_workloads_secret.py +0 -188
- pulumi_gcp/composer/user_workloads_config_map.py +0 -475
- pulumi_gcp/managedkafka/__init__.py +0 -11
- pulumi_gcp/managedkafka/_inputs.py +0 -169
- pulumi_gcp/managedkafka/cluster.py +0 -807
- pulumi_gcp/managedkafka/outputs.py +0 -197
- pulumi_gcp/managedkafka/topic.py +0 -599
- pulumi_gcp/netapp/backup.py +0 -903
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +0 -725
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +0 -713
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +0 -706
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718431623.dist-info}/top_level.txt +0 -0
@@ -21,8 +21,6 @@ __all__ = [
|
|
21
21
|
'ClusterFleet',
|
22
22
|
'ClusterMaintenanceEvent',
|
23
23
|
'ClusterMaintenancePolicy',
|
24
|
-
'ClusterMaintenancePolicyMaintenanceExclusion',
|
25
|
-
'ClusterMaintenancePolicyMaintenanceExclusionWindow',
|
26
24
|
'ClusterMaintenancePolicyWindow',
|
27
25
|
'ClusterMaintenancePolicyWindowRecurringWindow',
|
28
26
|
'ClusterMaintenancePolicyWindowRecurringWindowWindow',
|
@@ -626,37 +624,13 @@ class ClusterMaintenanceEvent(dict):
|
|
626
624
|
|
627
625
|
@pulumi.output_type
|
628
626
|
class ClusterMaintenancePolicy(dict):
|
629
|
-
@staticmethod
|
630
|
-
def __key_warning(key: str):
|
631
|
-
suggest = None
|
632
|
-
if key == "maintenanceExclusions":
|
633
|
-
suggest = "maintenance_exclusions"
|
634
|
-
|
635
|
-
if suggest:
|
636
|
-
pulumi.log.warn(f"Key '{key}' not found in ClusterMaintenancePolicy. Access the value via the '{suggest}' property getter instead.")
|
637
|
-
|
638
|
-
def __getitem__(self, key: str) -> Any:
|
639
|
-
ClusterMaintenancePolicy.__key_warning(key)
|
640
|
-
return super().__getitem__(key)
|
641
|
-
|
642
|
-
def get(self, key: str, default = None) -> Any:
|
643
|
-
ClusterMaintenancePolicy.__key_warning(key)
|
644
|
-
return super().get(key, default)
|
645
|
-
|
646
627
|
def __init__(__self__, *,
|
647
|
-
window: 'outputs.ClusterMaintenancePolicyWindow'
|
648
|
-
maintenance_exclusions: Optional[Sequence['outputs.ClusterMaintenancePolicyMaintenanceExclusion']] = None):
|
628
|
+
window: 'outputs.ClusterMaintenancePolicyWindow'):
|
649
629
|
"""
|
650
630
|
:param 'ClusterMaintenancePolicyWindowArgs' window: Specifies the maintenance window in which maintenance may be performed.
|
651
631
|
Structure is documented below.
|
652
|
-
:param Sequence['ClusterMaintenancePolicyMaintenanceExclusionArgs'] maintenance_exclusions: Exclusions to automatic maintenance. Non-emergency maintenance should not occur
|
653
|
-
in these windows. Each exclusion has a unique name and may be active or expired.
|
654
|
-
The max number of maintenance exclusions allowed at a given time is 3.
|
655
|
-
Structure is documented below.
|
656
632
|
"""
|
657
633
|
pulumi.set(__self__, "window", window)
|
658
|
-
if maintenance_exclusions is not None:
|
659
|
-
pulumi.set(__self__, "maintenance_exclusions", maintenance_exclusions)
|
660
634
|
|
661
635
|
@property
|
662
636
|
@pulumi.getter
|
@@ -667,102 +641,6 @@ class ClusterMaintenancePolicy(dict):
|
|
667
641
|
"""
|
668
642
|
return pulumi.get(self, "window")
|
669
643
|
|
670
|
-
@property
|
671
|
-
@pulumi.getter(name="maintenanceExclusions")
|
672
|
-
def maintenance_exclusions(self) -> Optional[Sequence['outputs.ClusterMaintenancePolicyMaintenanceExclusion']]:
|
673
|
-
"""
|
674
|
-
Exclusions to automatic maintenance. Non-emergency maintenance should not occur
|
675
|
-
in these windows. Each exclusion has a unique name and may be active or expired.
|
676
|
-
The max number of maintenance exclusions allowed at a given time is 3.
|
677
|
-
Structure is documented below.
|
678
|
-
"""
|
679
|
-
return pulumi.get(self, "maintenance_exclusions")
|
680
|
-
|
681
|
-
|
682
|
-
@pulumi.output_type
|
683
|
-
class ClusterMaintenancePolicyMaintenanceExclusion(dict):
|
684
|
-
def __init__(__self__, *,
|
685
|
-
id: Optional[str] = None,
|
686
|
-
window: Optional['outputs.ClusterMaintenancePolicyMaintenanceExclusionWindow'] = None):
|
687
|
-
"""
|
688
|
-
:param str id: A unique (per cluster) id for the window.
|
689
|
-
:param 'ClusterMaintenancePolicyMaintenanceExclusionWindowArgs' window: Represents an arbitrary window of time.
|
690
|
-
Structure is documented below.
|
691
|
-
"""
|
692
|
-
if id is not None:
|
693
|
-
pulumi.set(__self__, "id", id)
|
694
|
-
if window is not None:
|
695
|
-
pulumi.set(__self__, "window", window)
|
696
|
-
|
697
|
-
@property
|
698
|
-
@pulumi.getter
|
699
|
-
def id(self) -> Optional[str]:
|
700
|
-
"""
|
701
|
-
A unique (per cluster) id for the window.
|
702
|
-
"""
|
703
|
-
return pulumi.get(self, "id")
|
704
|
-
|
705
|
-
@property
|
706
|
-
@pulumi.getter
|
707
|
-
def window(self) -> Optional['outputs.ClusterMaintenancePolicyMaintenanceExclusionWindow']:
|
708
|
-
"""
|
709
|
-
Represents an arbitrary window of time.
|
710
|
-
Structure is documented below.
|
711
|
-
"""
|
712
|
-
return pulumi.get(self, "window")
|
713
|
-
|
714
|
-
|
715
|
-
@pulumi.output_type
|
716
|
-
class ClusterMaintenancePolicyMaintenanceExclusionWindow(dict):
|
717
|
-
@staticmethod
|
718
|
-
def __key_warning(key: str):
|
719
|
-
suggest = None
|
720
|
-
if key == "endTime":
|
721
|
-
suggest = "end_time"
|
722
|
-
elif key == "startTime":
|
723
|
-
suggest = "start_time"
|
724
|
-
|
725
|
-
if suggest:
|
726
|
-
pulumi.log.warn(f"Key '{key}' not found in ClusterMaintenancePolicyMaintenanceExclusionWindow. Access the value via the '{suggest}' property getter instead.")
|
727
|
-
|
728
|
-
def __getitem__(self, key: str) -> Any:
|
729
|
-
ClusterMaintenancePolicyMaintenanceExclusionWindow.__key_warning(key)
|
730
|
-
return super().__getitem__(key)
|
731
|
-
|
732
|
-
def get(self, key: str, default = None) -> Any:
|
733
|
-
ClusterMaintenancePolicyMaintenanceExclusionWindow.__key_warning(key)
|
734
|
-
return super().get(key, default)
|
735
|
-
|
736
|
-
def __init__(__self__, *,
|
737
|
-
end_time: Optional[str] = None,
|
738
|
-
start_time: Optional[str] = None):
|
739
|
-
"""
|
740
|
-
:param str end_time: The time that the window ends. The end time must take place after the
|
741
|
-
start time.
|
742
|
-
:param str start_time: The time that the window first starts.
|
743
|
-
"""
|
744
|
-
if end_time is not None:
|
745
|
-
pulumi.set(__self__, "end_time", end_time)
|
746
|
-
if start_time is not None:
|
747
|
-
pulumi.set(__self__, "start_time", start_time)
|
748
|
-
|
749
|
-
@property
|
750
|
-
@pulumi.getter(name="endTime")
|
751
|
-
def end_time(self) -> Optional[str]:
|
752
|
-
"""
|
753
|
-
The time that the window ends. The end time must take place after the
|
754
|
-
start time.
|
755
|
-
"""
|
756
|
-
return pulumi.get(self, "end_time")
|
757
|
-
|
758
|
-
@property
|
759
|
-
@pulumi.getter(name="startTime")
|
760
|
-
def start_time(self) -> Optional[str]:
|
761
|
-
"""
|
762
|
-
The time that the window first starts.
|
763
|
-
"""
|
764
|
-
return pulumi.get(self, "start_time")
|
765
|
-
|
766
644
|
|
767
645
|
@pulumi.output_type
|
768
646
|
class ClusterMaintenancePolicyWindow(dict):
|
pulumi_gcp/gkehub/_inputs.py
CHANGED
@@ -191,22 +191,18 @@ class FeatureFleetDefaultMemberConfigConfigmanagementConfigSyncArgs:
|
|
191
191
|
def __init__(__self__, *,
|
192
192
|
git: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigConfigmanagementConfigSyncGitArgs']] = None,
|
193
193
|
oci: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigConfigmanagementConfigSyncOciArgs']] = None,
|
194
|
-
prevent_drift: Optional[pulumi.Input[bool]] = None,
|
195
194
|
source_format: Optional[pulumi.Input[str]] = None):
|
196
195
|
"""
|
197
196
|
:param pulumi.Input['FeatureFleetDefaultMemberConfigConfigmanagementConfigSyncGitArgs'] git: Git repo configuration for the cluster
|
198
197
|
Structure is documented below.
|
199
198
|
:param pulumi.Input['FeatureFleetDefaultMemberConfigConfigmanagementConfigSyncOciArgs'] oci: OCI repo configuration for the cluster
|
200
199
|
Structure is documented below.
|
201
|
-
:param pulumi.Input[bool] prevent_drift: 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.
|
202
200
|
:param pulumi.Input[str] source_format: Specifies whether the Config Sync Repo is in hierarchical or unstructured mode
|
203
201
|
"""
|
204
202
|
if git is not None:
|
205
203
|
pulumi.set(__self__, "git", git)
|
206
204
|
if oci is not None:
|
207
205
|
pulumi.set(__self__, "oci", oci)
|
208
|
-
if prevent_drift is not None:
|
209
|
-
pulumi.set(__self__, "prevent_drift", prevent_drift)
|
210
206
|
if source_format is not None:
|
211
207
|
pulumi.set(__self__, "source_format", source_format)
|
212
208
|
|
@@ -236,18 +232,6 @@ class FeatureFleetDefaultMemberConfigConfigmanagementConfigSyncArgs:
|
|
236
232
|
def oci(self, value: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigConfigmanagementConfigSyncOciArgs']]):
|
237
233
|
pulumi.set(self, "oci", value)
|
238
234
|
|
239
|
-
@property
|
240
|
-
@pulumi.getter(name="preventDrift")
|
241
|
-
def prevent_drift(self) -> Optional[pulumi.Input[bool]]:
|
242
|
-
"""
|
243
|
-
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.
|
244
|
-
"""
|
245
|
-
return pulumi.get(self, "prevent_drift")
|
246
|
-
|
247
|
-
@prevent_drift.setter
|
248
|
-
def prevent_drift(self, value: Optional[pulumi.Input[bool]]):
|
249
|
-
pulumi.set(self, "prevent_drift", value)
|
250
|
-
|
251
235
|
@property
|
252
236
|
@pulumi.getter(name="sourceFormat")
|
253
237
|
def source_format(self) -> Optional[pulumi.Input[str]]:
|
pulumi_gcp/gkehub/outputs.py
CHANGED
@@ -189,9 +189,7 @@ class FeatureFleetDefaultMemberConfigConfigmanagementConfigSync(dict):
|
|
189
189
|
@staticmethod
|
190
190
|
def __key_warning(key: str):
|
191
191
|
suggest = None
|
192
|
-
if key == "
|
193
|
-
suggest = "prevent_drift"
|
194
|
-
elif key == "sourceFormat":
|
192
|
+
if key == "sourceFormat":
|
195
193
|
suggest = "source_format"
|
196
194
|
|
197
195
|
if suggest:
|
@@ -208,22 +206,18 @@ class FeatureFleetDefaultMemberConfigConfigmanagementConfigSync(dict):
|
|
208
206
|
def __init__(__self__, *,
|
209
207
|
git: Optional['outputs.FeatureFleetDefaultMemberConfigConfigmanagementConfigSyncGit'] = None,
|
210
208
|
oci: Optional['outputs.FeatureFleetDefaultMemberConfigConfigmanagementConfigSyncOci'] = None,
|
211
|
-
prevent_drift: Optional[bool] = None,
|
212
209
|
source_format: Optional[str] = None):
|
213
210
|
"""
|
214
211
|
:param 'FeatureFleetDefaultMemberConfigConfigmanagementConfigSyncGitArgs' git: Git repo configuration for the cluster
|
215
212
|
Structure is documented below.
|
216
213
|
:param 'FeatureFleetDefaultMemberConfigConfigmanagementConfigSyncOciArgs' oci: OCI repo configuration for the cluster
|
217
214
|
Structure is documented below.
|
218
|
-
:param bool prevent_drift: 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.
|
219
215
|
:param str source_format: Specifies whether the Config Sync Repo is in hierarchical or unstructured mode
|
220
216
|
"""
|
221
217
|
if git is not None:
|
222
218
|
pulumi.set(__self__, "git", git)
|
223
219
|
if oci is not None:
|
224
220
|
pulumi.set(__self__, "oci", oci)
|
225
|
-
if prevent_drift is not None:
|
226
|
-
pulumi.set(__self__, "prevent_drift", prevent_drift)
|
227
221
|
if source_format is not None:
|
228
222
|
pulumi.set(__self__, "source_format", source_format)
|
229
223
|
|
@@ -245,14 +239,6 @@ class FeatureFleetDefaultMemberConfigConfigmanagementConfigSync(dict):
|
|
245
239
|
"""
|
246
240
|
return pulumi.get(self, "oci")
|
247
241
|
|
248
|
-
@property
|
249
|
-
@pulumi.getter(name="preventDrift")
|
250
|
-
def prevent_drift(self) -> Optional[bool]:
|
251
|
-
"""
|
252
|
-
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.
|
253
|
-
"""
|
254
|
-
return pulumi.get(self, "prevent_drift")
|
255
|
-
|
256
242
|
@property
|
257
243
|
@pulumi.getter(name="sourceFormat")
|
258
244
|
def source_format(self) -> Optional[str]:
|
pulumi_gcp/kms/crypto_key.py
CHANGED
@@ -498,7 +498,9 @@ class CryptoKey(pulumi.CustomResource):
|
|
498
498
|
and delete all CryptoKeyVersions, rendering the key unusable, but *will
|
499
499
|
not delete the resource from the project.* When the provider destroys these keys,
|
500
500
|
any data previously encrypted with these keys will be irrecoverable.
|
501
|
-
For this reason, it is strongly recommended that you
|
501
|
+
For this reason, it is strongly recommended that you add
|
502
|
+
lifecycle
|
503
|
+
hooks to the resource to prevent accidental destruction.
|
502
504
|
|
503
505
|
To get more information about CryptoKey, see:
|
504
506
|
|
@@ -603,7 +605,9 @@ class CryptoKey(pulumi.CustomResource):
|
|
603
605
|
and delete all CryptoKeyVersions, rendering the key unusable, but *will
|
604
606
|
not delete the resource from the project.* When the provider destroys these keys,
|
605
607
|
any data previously encrypted with these keys will be irrecoverable.
|
606
|
-
For this reason, it is strongly recommended that you
|
608
|
+
For this reason, it is strongly recommended that you add
|
609
|
+
lifecycle
|
610
|
+
hooks to the resource to prevent accidental destruction.
|
607
611
|
|
608
612
|
To get more information about CryptoKey, see:
|
609
613
|
|
@@ -48,8 +48,8 @@ class FolderSinkArgs:
|
|
48
48
|
write a filter.
|
49
49
|
:param pulumi.Input[bool] include_children: Whether or not to include children folders in the sink export. If true, logs
|
50
50
|
associated with child projects are also exported; otherwise only logs relating to the provided folder are included.
|
51
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
52
|
-
|
51
|
+
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
52
|
+
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
53
53
|
:param pulumi.Input[str] name: The name of the logging sink.
|
54
54
|
"""
|
55
55
|
pulumi.set(__self__, "destination", destination)
|
@@ -183,8 +183,8 @@ class FolderSinkArgs:
|
|
183
183
|
@pulumi.getter(name="interceptChildren")
|
184
184
|
def intercept_children(self) -> Optional[pulumi.Input[bool]]:
|
185
185
|
"""
|
186
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not
|
187
|
-
|
186
|
+
Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
187
|
+
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
188
188
|
"""
|
189
189
|
return pulumi.get(self, "intercept_children")
|
190
190
|
|
@@ -241,8 +241,8 @@ class _FolderSinkState:
|
|
241
241
|
accepted.
|
242
242
|
:param pulumi.Input[bool] include_children: Whether or not to include children folders in the sink export. If true, logs
|
243
243
|
associated with child projects are also exported; otherwise only logs relating to the provided folder are included.
|
244
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
245
|
-
|
244
|
+
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
245
|
+
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
246
246
|
:param pulumi.Input[str] name: The name of the logging sink.
|
247
247
|
:param pulumi.Input[str] writer_identity: The identity associated with this sink. This identity must be granted write access to the
|
248
248
|
configured `destination`.
|
@@ -382,8 +382,8 @@ class _FolderSinkState:
|
|
382
382
|
@pulumi.getter(name="interceptChildren")
|
383
383
|
def intercept_children(self) -> Optional[pulumi.Input[bool]]:
|
384
384
|
"""
|
385
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not
|
386
|
-
|
385
|
+
Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
386
|
+
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
387
387
|
"""
|
388
388
|
return pulumi.get(self, "intercept_children")
|
389
389
|
|
@@ -497,8 +497,8 @@ class FolderSink(pulumi.CustomResource):
|
|
497
497
|
accepted.
|
498
498
|
:param pulumi.Input[bool] include_children: Whether or not to include children folders in the sink export. If true, logs
|
499
499
|
associated with child projects are also exported; otherwise only logs relating to the provided folder are included.
|
500
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
501
|
-
|
500
|
+
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
501
|
+
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
502
502
|
:param pulumi.Input[str] name: The name of the logging sink.
|
503
503
|
"""
|
504
504
|
...
|
@@ -646,8 +646,8 @@ class FolderSink(pulumi.CustomResource):
|
|
646
646
|
accepted.
|
647
647
|
:param pulumi.Input[bool] include_children: Whether or not to include children folders in the sink export. If true, logs
|
648
648
|
associated with child projects are also exported; otherwise only logs relating to the provided folder are included.
|
649
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
650
|
-
|
649
|
+
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
650
|
+
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
651
651
|
:param pulumi.Input[str] name: The name of the logging sink.
|
652
652
|
:param pulumi.Input[str] writer_identity: The identity associated with this sink. This identity must be granted write access to the
|
653
653
|
configured `destination`.
|
@@ -749,8 +749,8 @@ class FolderSink(pulumi.CustomResource):
|
|
749
749
|
@pulumi.getter(name="interceptChildren")
|
750
750
|
def intercept_children(self) -> pulumi.Output[Optional[bool]]:
|
751
751
|
"""
|
752
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not
|
753
|
-
|
752
|
+
Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
753
|
+
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
754
754
|
"""
|
755
755
|
return pulumi.get(self, "intercept_children")
|
756
756
|
|
@@ -47,8 +47,8 @@ class OrganizationSinkArgs:
|
|
47
47
|
write a filter.
|
48
48
|
:param pulumi.Input[bool] include_children: Whether or not to include children organizations in the sink export. If true, logs
|
49
49
|
associated with child projects are also exported; otherwise only logs relating to the provided organization are included.
|
50
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
51
|
-
|
50
|
+
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
51
|
+
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
52
52
|
:param pulumi.Input[str] name: The name of the logging sink.
|
53
53
|
"""
|
54
54
|
pulumi.set(__self__, "destination", destination)
|
@@ -181,8 +181,8 @@ class OrganizationSinkArgs:
|
|
181
181
|
@pulumi.getter(name="interceptChildren")
|
182
182
|
def intercept_children(self) -> Optional[pulumi.Input[bool]]:
|
183
183
|
"""
|
184
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not
|
185
|
-
|
184
|
+
Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
185
|
+
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
186
186
|
"""
|
187
187
|
return pulumi.get(self, "intercept_children")
|
188
188
|
|
@@ -237,8 +237,8 @@ class _OrganizationSinkState:
|
|
237
237
|
write a filter.
|
238
238
|
:param pulumi.Input[bool] include_children: Whether or not to include children organizations in the sink export. If true, logs
|
239
239
|
associated with child projects are also exported; otherwise only logs relating to the provided organization are included.
|
240
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
241
|
-
|
240
|
+
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
241
|
+
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
242
242
|
:param pulumi.Input[str] name: The name of the logging sink.
|
243
243
|
:param pulumi.Input[str] org_id: The numeric ID of the organization to be exported to the sink.
|
244
244
|
:param pulumi.Input[str] writer_identity: The identity associated with this sink. This identity must be granted write access to the
|
@@ -366,8 +366,8 @@ class _OrganizationSinkState:
|
|
366
366
|
@pulumi.getter(name="interceptChildren")
|
367
367
|
def intercept_children(self) -> Optional[pulumi.Input[bool]]:
|
368
368
|
"""
|
369
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not
|
370
|
-
|
369
|
+
Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
370
|
+
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
371
371
|
"""
|
372
372
|
return pulumi.get(self, "intercept_children")
|
373
373
|
|
@@ -488,8 +488,8 @@ class OrganizationSink(pulumi.CustomResource):
|
|
488
488
|
write a filter.
|
489
489
|
:param pulumi.Input[bool] include_children: Whether or not to include children organizations in the sink export. If true, logs
|
490
490
|
associated with child projects are also exported; otherwise only logs relating to the provided organization are included.
|
491
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
492
|
-
|
491
|
+
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
492
|
+
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
493
493
|
:param pulumi.Input[str] name: The name of the logging sink.
|
494
494
|
:param pulumi.Input[str] org_id: The numeric ID of the organization to be exported to the sink.
|
495
495
|
"""
|
@@ -633,8 +633,8 @@ class OrganizationSink(pulumi.CustomResource):
|
|
633
633
|
write a filter.
|
634
634
|
:param pulumi.Input[bool] include_children: Whether or not to include children organizations in the sink export. If true, logs
|
635
635
|
associated with child projects are also exported; otherwise only logs relating to the provided organization are included.
|
636
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
637
|
-
|
636
|
+
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
637
|
+
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
638
638
|
:param pulumi.Input[str] name: The name of the logging sink.
|
639
639
|
:param pulumi.Input[str] org_id: The numeric ID of the organization to be exported to the sink.
|
640
640
|
:param pulumi.Input[str] writer_identity: The identity associated with this sink. This identity must be granted write access to the
|
@@ -728,8 +728,8 @@ class OrganizationSink(pulumi.CustomResource):
|
|
728
728
|
@pulumi.getter(name="interceptChildren")
|
729
729
|
def intercept_children(self) -> pulumi.Output[Optional[bool]]:
|
730
730
|
"""
|
731
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not
|
732
|
-
|
731
|
+
Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child
|
732
|
+
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
733
733
|
"""
|
734
734
|
return pulumi.get(self, "intercept_children")
|
735
735
|
|
pulumi_gcp/netapp/__init__.py
CHANGED
@@ -20,7 +20,6 @@ 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,
|
24
23
|
aes_encryption: Optional[pulumi.Input[bool]] = None,
|
25
24
|
backup_operators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
26
25
|
description: Optional[pulumi.Input[str]] = None,
|
@@ -44,7 +43,6 @@ class ActiveDirectoryArgs:
|
|
44
43
|
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:
|
45
44
|
`\\\\NetBIOS_PREFIX-ABCD.DOMAIN_NAME\\SHARE_NAME`
|
46
45
|
: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.
|
48
46
|
:param pulumi.Input[bool] aes_encryption: Enables AES-128 and AES-256 encryption for Kerberos-based communication with Active Directory.
|
49
47
|
: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.
|
50
48
|
:param pulumi.Input[str] description: An optional description of this resource.
|
@@ -76,8 +74,6 @@ class ActiveDirectoryArgs:
|
|
76
74
|
pulumi.set(__self__, "net_bios_prefix", net_bios_prefix)
|
77
75
|
pulumi.set(__self__, "password", password)
|
78
76
|
pulumi.set(__self__, "username", username)
|
79
|
-
if administrators is not None:
|
80
|
-
pulumi.set(__self__, "administrators", administrators)
|
81
77
|
if aes_encryption is not None:
|
82
78
|
pulumi.set(__self__, "aes_encryption", aes_encryption)
|
83
79
|
if backup_operators is not None:
|
@@ -178,18 +174,6 @@ class ActiveDirectoryArgs:
|
|
178
174
|
def username(self, value: pulumi.Input[str]):
|
179
175
|
pulumi.set(self, "username", value)
|
180
176
|
|
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
|
-
|
193
177
|
@property
|
194
178
|
@pulumi.getter(name="aesEncryption")
|
195
179
|
def aes_encryption(self) -> Optional[pulumi.Input[bool]]:
|
@@ -372,7 +356,6 @@ class ActiveDirectoryArgs:
|
|
372
356
|
@pulumi.input_type
|
373
357
|
class _ActiveDirectoryState:
|
374
358
|
def __init__(__self__, *,
|
375
|
-
administrators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
376
359
|
aes_encryption: Optional[pulumi.Input[bool]] = None,
|
377
360
|
backup_operators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
378
361
|
create_time: Optional[pulumi.Input[str]] = None,
|
@@ -400,7 +383,6 @@ class _ActiveDirectoryState:
|
|
400
383
|
username: Optional[pulumi.Input[str]] = None):
|
401
384
|
"""
|
402
385
|
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.
|
404
386
|
:param pulumi.Input[bool] aes_encryption: Enables AES-128 and AES-256 encryption for Kerberos-based communication with Active Directory.
|
405
387
|
: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.
|
406
388
|
: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".
|
@@ -439,8 +421,6 @@ class _ActiveDirectoryState:
|
|
439
421
|
:param pulumi.Input[str] state_details: The state details of the Active Directory.
|
440
422
|
:param pulumi.Input[str] username: Username for the Active Directory account with permissions to create the compute account within the specified organizational unit.
|
441
423
|
"""
|
442
|
-
if administrators is not None:
|
443
|
-
pulumi.set(__self__, "administrators", administrators)
|
444
424
|
if aes_encryption is not None:
|
445
425
|
pulumi.set(__self__, "aes_encryption", aes_encryption)
|
446
426
|
if backup_operators is not None:
|
@@ -492,18 +472,6 @@ class _ActiveDirectoryState:
|
|
492
472
|
if username is not None:
|
493
473
|
pulumi.set(__self__, "username", username)
|
494
474
|
|
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
|
-
|
507
475
|
@property
|
508
476
|
@pulumi.getter(name="aesEncryption")
|
509
477
|
def aes_encryption(self) -> Optional[pulumi.Input[bool]]:
|
@@ -820,7 +788,6 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
820
788
|
def __init__(__self__,
|
821
789
|
resource_name: str,
|
822
790
|
opts: Optional[pulumi.ResourceOptions] = None,
|
823
|
-
administrators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
824
791
|
aes_encryption: Optional[pulumi.Input[bool]] = None,
|
825
792
|
backup_operators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
826
793
|
description: Optional[pulumi.Input[str]] = None,
|
@@ -872,10 +839,6 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
872
839
|
"test1",
|
873
840
|
"test2",
|
874
841
|
],
|
875
|
-
administrators=[
|
876
|
-
"test1",
|
877
|
-
"test2",
|
878
|
-
],
|
879
842
|
description="ActiveDirectory is the public representation of the active directory config.",
|
880
843
|
encrypt_dc_connections=False,
|
881
844
|
kdc_hostname="hostname",
|
@@ -919,7 +882,6 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
919
882
|
|
920
883
|
:param str resource_name: The name of the resource.
|
921
884
|
: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.
|
923
885
|
:param pulumi.Input[bool] aes_encryption: Enables AES-128 and AES-256 encryption for Kerberos-based communication with Active Directory.
|
924
886
|
: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.
|
925
887
|
:param pulumi.Input[str] description: An optional description of this resource.
|
@@ -988,10 +950,6 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
988
950
|
"test1",
|
989
951
|
"test2",
|
990
952
|
],
|
991
|
-
administrators=[
|
992
|
-
"test1",
|
993
|
-
"test2",
|
994
|
-
],
|
995
953
|
description="ActiveDirectory is the public representation of the active directory config.",
|
996
954
|
encrypt_dc_connections=False,
|
997
955
|
kdc_hostname="hostname",
|
@@ -1048,7 +1006,6 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
1048
1006
|
def _internal_init(__self__,
|
1049
1007
|
resource_name: str,
|
1050
1008
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1051
|
-
administrators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1052
1009
|
aes_encryption: Optional[pulumi.Input[bool]] = None,
|
1053
1010
|
backup_operators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1054
1011
|
description: Optional[pulumi.Input[str]] = None,
|
@@ -1078,7 +1035,6 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
1078
1035
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
1079
1036
|
__props__ = ActiveDirectoryArgs.__new__(ActiveDirectoryArgs)
|
1080
1037
|
|
1081
|
-
__props__.__dict__["administrators"] = administrators
|
1082
1038
|
__props__.__dict__["aes_encryption"] = aes_encryption
|
1083
1039
|
__props__.__dict__["backup_operators"] = backup_operators
|
1084
1040
|
__props__.__dict__["description"] = description
|
@@ -1128,7 +1084,6 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
1128
1084
|
def get(resource_name: str,
|
1129
1085
|
id: pulumi.Input[str],
|
1130
1086
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1131
|
-
administrators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1132
1087
|
aes_encryption: Optional[pulumi.Input[bool]] = None,
|
1133
1088
|
backup_operators: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1134
1089
|
create_time: Optional[pulumi.Input[str]] = None,
|
@@ -1161,7 +1116,6 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
1161
1116
|
:param str resource_name: The unique name of the resulting resource.
|
1162
1117
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1163
1118
|
: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.
|
1165
1119
|
:param pulumi.Input[bool] aes_encryption: Enables AES-128 and AES-256 encryption for Kerberos-based communication with Active Directory.
|
1166
1120
|
: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.
|
1167
1121
|
: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".
|
@@ -1204,7 +1158,6 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
1204
1158
|
|
1205
1159
|
__props__ = _ActiveDirectoryState.__new__(_ActiveDirectoryState)
|
1206
1160
|
|
1207
|
-
__props__.__dict__["administrators"] = administrators
|
1208
1161
|
__props__.__dict__["aes_encryption"] = aes_encryption
|
1209
1162
|
__props__.__dict__["backup_operators"] = backup_operators
|
1210
1163
|
__props__.__dict__["create_time"] = create_time
|
@@ -1232,14 +1185,6 @@ class ActiveDirectory(pulumi.CustomResource):
|
|
1232
1185
|
__props__.__dict__["username"] = username
|
1233
1186
|
return ActiveDirectory(resource_name, opts=opts, __props__=__props__)
|
1234
1187
|
|
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
|
-
|
1243
1188
|
@property
|
1244
1189
|
@pulumi.getter(name="aesEncryption")
|
1245
1190
|
def aes_encryption(self) -> pulumi.Output[Optional[bool]]:
|