pulumi-gcp 8.24.0a1743177741__py3-none-any.whl → 8.25.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +104 -0
- pulumi_gcp/_inputs.py +48 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +324 -12
- pulumi_gcp/accesscontextmanager/outputs.py +204 -12
- pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
- pulumi_gcp/apigee/__init__.py +1 -0
- pulumi_gcp/apigee/_inputs.py +58 -0
- pulumi_gcp/apigee/dns_zone.py +491 -0
- pulumi_gcp/apigee/outputs.py +53 -0
- pulumi_gcp/bigquery/reservation_assignment.py +7 -7
- pulumi_gcp/bigtable/table.py +8 -8
- pulumi_gcp/chronicle/data_access_label.py +2 -2
- pulumi_gcp/chronicle/data_access_scope.py +16 -0
- pulumi_gcp/chronicle/reference_list.py +16 -0
- pulumi_gcp/chronicle/retrohunt.py +16 -0
- pulumi_gcp/chronicle/rule.py +16 -0
- pulumi_gcp/chronicle/rule_deployment.py +16 -0
- pulumi_gcp/chronicle/watchlist.py +16 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +20 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +25 -0
- pulumi_gcp/cloudrunv2/_inputs.py +20 -0
- pulumi_gcp/cloudrunv2/outputs.py +25 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +2011 -43
- pulumi_gcp/compute/backend_service.py +121 -3
- pulumi_gcp/compute/get_backend_service.py +15 -4
- pulumi_gcp/compute/get_instance.py +12 -1
- pulumi_gcp/compute/get_region_backend_service.py +482 -0
- pulumi_gcp/compute/get_router.py +12 -1
- pulumi_gcp/compute/get_subnetwork.py +43 -1
- pulumi_gcp/compute/instance.py +47 -0
- pulumi_gcp/compute/instance_from_machine_image.py +94 -0
- pulumi_gcp/compute/instance_from_template.py +47 -0
- pulumi_gcp/compute/outputs.py +3578 -139
- pulumi_gcp/compute/public_delegated_prefix.py +69 -15
- pulumi_gcp/compute/router.py +54 -0
- pulumi_gcp/compute/subnetwork.py +35 -5
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/outputs.py +27 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +12 -12
- pulumi_gcp/container/cluster.py +47 -0
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/get_registry_image.py +4 -0
- pulumi_gcp/container/get_registry_repository.py +4 -0
- pulumi_gcp/container/outputs.py +8 -8
- pulumi_gcp/container/registry.py +4 -0
- pulumi_gcp/datafusion/instance.py +68 -0
- pulumi_gcp/dataproc/__init__.py +8 -0
- pulumi_gcp/dataproc/_inputs.py +196 -0
- pulumi_gcp/dataproc/get_metastore_database_iam_policy.py +193 -0
- pulumi_gcp/dataproc/get_metastore_table_iam_policy.py +210 -0
- pulumi_gcp/dataproc/metastore_database_iam_binding.py +848 -0
- pulumi_gcp/dataproc/metastore_database_iam_member.py +848 -0
- pulumi_gcp/dataproc/metastore_database_iam_policy.py +687 -0
- pulumi_gcp/dataproc/metastore_federation.py +38 -2
- pulumi_gcp/dataproc/metastore_table_iam_binding.py +895 -0
- pulumi_gcp/dataproc/metastore_table_iam_member.py +895 -0
- pulumi_gcp/dataproc/metastore_table_iam_policy.py +734 -0
- pulumi_gcp/dataproc/outputs.py +112 -0
- pulumi_gcp/datastream/_inputs.py +311 -94
- pulumi_gcp/datastream/connection_profile.py +40 -0
- pulumi_gcp/datastream/outputs.py +244 -51
- pulumi_gcp/datastream/stream.py +216 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/sitemap.py +504 -0
- pulumi_gcp/eventarc/__init__.py +1 -0
- pulumi_gcp/eventarc/enrollment.py +980 -0
- pulumi_gcp/firebase/__init__.py +1 -0
- pulumi_gcp/firebase/_inputs.py +484 -0
- pulumi_gcp/firebase/app_hosting_build.py +1232 -0
- pulumi_gcp/firebase/outputs.py +333 -0
- pulumi_gcp/identityplatform/_inputs.py +91 -0
- pulumi_gcp/identityplatform/outputs.py +73 -0
- pulumi_gcp/identityplatform/tenant.py +56 -0
- pulumi_gcp/managedkafka/cluster.py +2 -2
- pulumi_gcp/memorystore/__init__.py +1 -0
- pulumi_gcp/memorystore/_inputs.py +826 -0
- pulumi_gcp/memorystore/get_instance.py +23 -1
- pulumi_gcp/memorystore/instance.py +344 -23
- pulumi_gcp/memorystore/instance_desired_user_created_endpoints.py +843 -0
- pulumi_gcp/memorystore/outputs.py +889 -8
- pulumi_gcp/networksecurity/_inputs.py +473 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +44 -16
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +94 -36
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +53 -8
- pulumi_gcp/networksecurity/outputs.py +291 -1
- pulumi_gcp/networksecurity/security_profile.py +8 -0
- pulumi_gcp/organizations/__init__.py +1 -0
- pulumi_gcp/organizations/get_iam_custom_roles.py +164 -0
- pulumi_gcp/organizations/outputs.py +96 -0
- pulumi_gcp/parametermanager/get_parameter.py +16 -1
- pulumi_gcp/parametermanager/get_parameter_version.py +19 -1
- pulumi_gcp/parametermanager/get_parameter_version_render.py +4 -0
- pulumi_gcp/parametermanager/get_parameters.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +8 -0
- pulumi_gcp/parametermanager/get_regional_parameters.py +4 -0
- pulumi_gcp/parametermanager/outputs.py +11 -0
- pulumi_gcp/parametermanager/parameter.py +88 -0
- pulumi_gcp/parametermanager/parameter_version.py +74 -0
- pulumi_gcp/parametermanager/regional_parameter.py +12 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +12 -0
- pulumi_gcp/provider.py +15 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +136 -0
- pulumi_gcp/redis/cluster.py +54 -0
- pulumi_gcp/redis/outputs.py +114 -0
- pulumi_gcp/secretmanager/regional_secret_version.py +0 -16
- pulumi_gcp/storage/__init__.py +4 -0
- pulumi_gcp/storage/_inputs.py +596 -0
- pulumi_gcp/storage/bucket.py +7 -7
- pulumi_gcp/storage/control_folder_intelligence_config.py +420 -0
- pulumi_gcp/storage/control_organization_intelligence_config.py +420 -0
- pulumi_gcp/storage/control_project_intelligence_config.py +49 -7
- pulumi_gcp/storage/get_bucket_object_content.py +16 -1
- pulumi_gcp/storage/get_control_folder_intelligence_config.py +160 -0
- pulumi_gcp/storage/get_control_organization_intelligence_config.py +160 -0
- pulumi_gcp/storage/get_control_project_intelligence_config.py +32 -2
- pulumi_gcp/storage/outputs.py +2132 -1312
- pulumi_gcp/workbench/instance.py +14 -2
- {pulumi_gcp-8.24.0a1743177741.dist-info → pulumi_gcp-8.25.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.24.0a1743177741.dist-info → pulumi_gcp-8.25.0.dist-info}/RECORD +126 -107
- {pulumi_gcp-8.24.0a1743177741.dist-info → pulumi_gcp-8.25.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.24.0a1743177741.dist-info → pulumi_gcp-8.25.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/redis/outputs.py
CHANGED
@@ -16,6 +16,9 @@ from .. import _utilities
|
|
16
16
|
from . import outputs
|
17
17
|
|
18
18
|
__all__ = [
|
19
|
+
'ClusterAutomatedBackupConfig',
|
20
|
+
'ClusterAutomatedBackupConfigFixedFrequencySchedule',
|
21
|
+
'ClusterAutomatedBackupConfigFixedFrequencyScheduleStartTime',
|
19
22
|
'ClusterCrossClusterReplicationConfig',
|
20
23
|
'ClusterCrossClusterReplicationConfigMembership',
|
21
24
|
'ClusterCrossClusterReplicationConfigMembershipPrimaryCluster',
|
@@ -56,6 +59,117 @@ __all__ = [
|
|
56
59
|
'GetInstanceServerCaCertResult',
|
57
60
|
]
|
58
61
|
|
62
|
+
@pulumi.output_type
|
63
|
+
class ClusterAutomatedBackupConfig(dict):
|
64
|
+
@staticmethod
|
65
|
+
def __key_warning(key: str):
|
66
|
+
suggest = None
|
67
|
+
if key == "fixedFrequencySchedule":
|
68
|
+
suggest = "fixed_frequency_schedule"
|
69
|
+
|
70
|
+
if suggest:
|
71
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterAutomatedBackupConfig. Access the value via the '{suggest}' property getter instead.")
|
72
|
+
|
73
|
+
def __getitem__(self, key: str) -> Any:
|
74
|
+
ClusterAutomatedBackupConfig.__key_warning(key)
|
75
|
+
return super().__getitem__(key)
|
76
|
+
|
77
|
+
def get(self, key: str, default = None) -> Any:
|
78
|
+
ClusterAutomatedBackupConfig.__key_warning(key)
|
79
|
+
return super().get(key, default)
|
80
|
+
|
81
|
+
def __init__(__self__, *,
|
82
|
+
fixed_frequency_schedule: 'outputs.ClusterAutomatedBackupConfigFixedFrequencySchedule',
|
83
|
+
retention: str):
|
84
|
+
"""
|
85
|
+
:param 'ClusterAutomatedBackupConfigFixedFrequencyScheduleArgs' fixed_frequency_schedule: Trigger automated backups at a fixed frequency.
|
86
|
+
Structure is documented below.
|
87
|
+
:param str retention: How long to keep automated backups before the backups are deleted.
|
88
|
+
The value should be between 1 day and 365 days. If not specified, the default value is 35 days.
|
89
|
+
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
90
|
+
"""
|
91
|
+
pulumi.set(__self__, "fixed_frequency_schedule", fixed_frequency_schedule)
|
92
|
+
pulumi.set(__self__, "retention", retention)
|
93
|
+
|
94
|
+
@property
|
95
|
+
@pulumi.getter(name="fixedFrequencySchedule")
|
96
|
+
def fixed_frequency_schedule(self) -> 'outputs.ClusterAutomatedBackupConfigFixedFrequencySchedule':
|
97
|
+
"""
|
98
|
+
Trigger automated backups at a fixed frequency.
|
99
|
+
Structure is documented below.
|
100
|
+
"""
|
101
|
+
return pulumi.get(self, "fixed_frequency_schedule")
|
102
|
+
|
103
|
+
@property
|
104
|
+
@pulumi.getter
|
105
|
+
def retention(self) -> str:
|
106
|
+
"""
|
107
|
+
How long to keep automated backups before the backups are deleted.
|
108
|
+
The value should be between 1 day and 365 days. If not specified, the default value is 35 days.
|
109
|
+
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
110
|
+
"""
|
111
|
+
return pulumi.get(self, "retention")
|
112
|
+
|
113
|
+
|
114
|
+
@pulumi.output_type
|
115
|
+
class ClusterAutomatedBackupConfigFixedFrequencySchedule(dict):
|
116
|
+
@staticmethod
|
117
|
+
def __key_warning(key: str):
|
118
|
+
suggest = None
|
119
|
+
if key == "startTime":
|
120
|
+
suggest = "start_time"
|
121
|
+
|
122
|
+
if suggest:
|
123
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterAutomatedBackupConfigFixedFrequencySchedule. Access the value via the '{suggest}' property getter instead.")
|
124
|
+
|
125
|
+
def __getitem__(self, key: str) -> Any:
|
126
|
+
ClusterAutomatedBackupConfigFixedFrequencySchedule.__key_warning(key)
|
127
|
+
return super().__getitem__(key)
|
128
|
+
|
129
|
+
def get(self, key: str, default = None) -> Any:
|
130
|
+
ClusterAutomatedBackupConfigFixedFrequencySchedule.__key_warning(key)
|
131
|
+
return super().get(key, default)
|
132
|
+
|
133
|
+
def __init__(__self__, *,
|
134
|
+
start_time: 'outputs.ClusterAutomatedBackupConfigFixedFrequencyScheduleStartTime'):
|
135
|
+
"""
|
136
|
+
:param 'ClusterAutomatedBackupConfigFixedFrequencyScheduleStartTimeArgs' start_time: The start time of every automated backup in UTC.
|
137
|
+
It must be set to the start of an hour. This field is required.
|
138
|
+
Structure is documented below.
|
139
|
+
"""
|
140
|
+
pulumi.set(__self__, "start_time", start_time)
|
141
|
+
|
142
|
+
@property
|
143
|
+
@pulumi.getter(name="startTime")
|
144
|
+
def start_time(self) -> 'outputs.ClusterAutomatedBackupConfigFixedFrequencyScheduleStartTime':
|
145
|
+
"""
|
146
|
+
The start time of every automated backup in UTC.
|
147
|
+
It must be set to the start of an hour. This field is required.
|
148
|
+
Structure is documented below.
|
149
|
+
"""
|
150
|
+
return pulumi.get(self, "start_time")
|
151
|
+
|
152
|
+
|
153
|
+
@pulumi.output_type
|
154
|
+
class ClusterAutomatedBackupConfigFixedFrequencyScheduleStartTime(dict):
|
155
|
+
def __init__(__self__, *,
|
156
|
+
hours: int):
|
157
|
+
"""
|
158
|
+
:param int hours: Hours of day in 24 hour format. Should be from 0 to 23.
|
159
|
+
An API may choose to allow the value "24:00:00" for scenarios like business closing time.
|
160
|
+
"""
|
161
|
+
pulumi.set(__self__, "hours", hours)
|
162
|
+
|
163
|
+
@property
|
164
|
+
@pulumi.getter
|
165
|
+
def hours(self) -> int:
|
166
|
+
"""
|
167
|
+
Hours of day in 24 hour format. Should be from 0 to 23.
|
168
|
+
An API may choose to allow the value "24:00:00" for scenarios like business closing time.
|
169
|
+
"""
|
170
|
+
return pulumi.get(self, "hours")
|
171
|
+
|
172
|
+
|
59
173
|
@pulumi.output_type
|
60
174
|
class ClusterCrossClusterReplicationConfig(dict):
|
61
175
|
@staticmethod
|
@@ -340,14 +340,6 @@ class RegionalSecretVersion(pulumi.CustomResource):
|
|
340
340
|
secret_data: Optional[pulumi.Input[str]] = None,
|
341
341
|
__props__=None):
|
342
342
|
"""
|
343
|
-
A regional secret version resource.
|
344
|
-
|
345
|
-
To get more information about RegionalSecretVersion, see:
|
346
|
-
|
347
|
-
* [API documentation](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.locations.secrets.versions)
|
348
|
-
* How-to Guides
|
349
|
-
* [Create and deploy a Regional Secret Version](https://cloud.google.com/secret-manager/regional-secrets/add-secret-version-rs)
|
350
|
-
|
351
343
|
## Example Usage
|
352
344
|
|
353
345
|
### Regional Secret Version Basic
|
@@ -457,14 +449,6 @@ class RegionalSecretVersion(pulumi.CustomResource):
|
|
457
449
|
args: RegionalSecretVersionArgs,
|
458
450
|
opts: Optional[pulumi.ResourceOptions] = None):
|
459
451
|
"""
|
460
|
-
A regional secret version resource.
|
461
|
-
|
462
|
-
To get more information about RegionalSecretVersion, see:
|
463
|
-
|
464
|
-
* [API documentation](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.locations.secrets.versions)
|
465
|
-
* How-to Guides
|
466
|
-
* [Create and deploy a Regional Secret Version](https://cloud.google.com/secret-manager/regional-secrets/add-secret-version-rs)
|
467
|
-
|
468
452
|
## Example Usage
|
469
453
|
|
470
454
|
### Regional Secret Version Basic
|
pulumi_gcp/storage/__init__.py
CHANGED
@@ -13,6 +13,8 @@ from .bucket_iam_binding import *
|
|
13
13
|
from .bucket_iam_member import *
|
14
14
|
from .bucket_iam_policy import *
|
15
15
|
from .bucket_object import *
|
16
|
+
from .control_folder_intelligence_config import *
|
17
|
+
from .control_organization_intelligence_config import *
|
16
18
|
from .control_project_intelligence_config import *
|
17
19
|
from .default_object_access_control import *
|
18
20
|
from .default_object_acl import *
|
@@ -23,6 +25,8 @@ from .get_bucket_object import *
|
|
23
25
|
from .get_bucket_object_content import *
|
24
26
|
from .get_bucket_objects import *
|
25
27
|
from .get_buckets import *
|
28
|
+
from .get_control_folder_intelligence_config import *
|
29
|
+
from .get_control_organization_intelligence_config import *
|
26
30
|
from .get_control_project_intelligence_config import *
|
27
31
|
from .get_managed_folder_iam_policy import *
|
28
32
|
from .get_object_signed_url import *
|