pulumi-gcp 8.40.0a1754721948__py3-none-any.whl → 8.41.0a1754981061__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 +128 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +24 -4
- pulumi_gcp/accesscontextmanager/outputs.py +15 -3
- pulumi_gcp/apigee/__init__.py +2 -0
- pulumi_gcp/apigee/_inputs.py +1435 -0
- pulumi_gcp/apigee/api_product.py +1698 -0
- pulumi_gcp/apigee/outputs.py +1081 -0
- pulumi_gcp/apigee/security_action.py +1010 -0
- pulumi_gcp/artifactregistry/__init__.py +1 -0
- pulumi_gcp/artifactregistry/get_docker_images.py +164 -0
- pulumi_gcp/artifactregistry/outputs.py +109 -2
- pulumi_gcp/artifactregistry/repository.py +6 -6
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +56 -0
- pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +12 -1
- pulumi_gcp/bigquery/_inputs.py +6 -0
- pulumi_gcp/bigquery/get_table.py +23 -1
- pulumi_gcp/bigquery/outputs.py +4 -0
- pulumi_gcp/bigquery/table.py +62 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +180 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +80 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +322 -2
- pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +32 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +159 -0
- pulumi_gcp/bigtable/__init__.py +1 -0
- pulumi_gcp/bigtable/_inputs.py +33 -0
- pulumi_gcp/bigtable/outputs.py +36 -0
- pulumi_gcp/bigtable/schema_bundle.py +568 -0
- pulumi_gcp/cloudfunctions/_inputs.py +48 -0
- pulumi_gcp/cloudfunctions/function.py +94 -0
- pulumi_gcp/cloudfunctions/get_function.py +23 -1
- pulumi_gcp/cloudfunctions/outputs.py +70 -0
- pulumi_gcp/cloudrunv2/_inputs.py +20 -0
- pulumi_gcp/cloudrunv2/job.py +2 -0
- pulumi_gcp/cloudrunv2/outputs.py +25 -0
- pulumi_gcp/cloudrunv2/worker_pool.py +2 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +713 -22
- pulumi_gcp/compute/firewall_policy_with_rules.py +66 -0
- pulumi_gcp/compute/forwarding_rule.py +0 -21
- pulumi_gcp/compute/get_router.py +12 -1
- pulumi_gcp/compute/outputs.py +562 -22
- pulumi_gcp/compute/preview_feature.py +396 -0
- pulumi_gcp/compute/region_url_map.py +392 -0
- pulumi_gcp/compute/reservation.py +4 -4
- pulumi_gcp/compute/router.py +54 -0
- pulumi_gcp/compute/storage_pool.py +154 -0
- pulumi_gcp/compute/subnetwork.py +54 -0
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +278 -8
- pulumi_gcp/container/cluster.py +61 -21
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +352 -8
- pulumi_gcp/dataproc/_inputs.py +249 -14
- pulumi_gcp/dataproc/batch.py +6 -0
- pulumi_gcp/dataproc/cluster.py +2 -0
- pulumi_gcp/dataproc/outputs.py +215 -12
- pulumi_gcp/dataproc/session_template.py +14 -2
- pulumi_gcp/developerconnect/__init__.py +1 -0
- pulumi_gcp/developerconnect/_inputs.py +583 -0
- pulumi_gcp/developerconnect/insights_config.py +895 -0
- pulumi_gcp/developerconnect/outputs.py +442 -0
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +1165 -58
- pulumi_gcp/diagflow/cx_generator.py +636 -0
- pulumi_gcp/diagflow/cx_tool.py +2 -2
- pulumi_gcp/diagflow/cx_webhook.py +380 -36
- pulumi_gcp/diagflow/outputs.py +848 -25
- pulumi_gcp/discoveryengine/__init__.py +2 -0
- pulumi_gcp/discoveryengine/_inputs.py +465 -0
- pulumi_gcp/discoveryengine/cmek_config.py +707 -0
- pulumi_gcp/discoveryengine/outputs.py +412 -0
- pulumi_gcp/discoveryengine/recommendation_engine.py +813 -0
- pulumi_gcp/firestore/field.py +6 -6
- pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +107 -9
- pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +2 -2
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +8 -8
- pulumi_gcp/iam/__init__.py +4 -0
- pulumi_gcp/iam/_inputs.py +98 -0
- pulumi_gcp/iam/get_workforce_pool_iam_policy.py +161 -0
- pulumi_gcp/iam/outputs.py +56 -0
- pulumi_gcp/iam/workforce_pool_iam_binding.py +761 -0
- pulumi_gcp/iam/workforce_pool_iam_member.py +761 -0
- pulumi_gcp/iam/workforce_pool_iam_policy.py +600 -0
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/looker/instance.py +28 -7
- pulumi_gcp/managedkafka/_inputs.py +127 -0
- pulumi_gcp/managedkafka/cluster.py +131 -1
- pulumi_gcp/managedkafka/connect_cluster.py +4 -4
- pulumi_gcp/managedkafka/connector.py +4 -4
- pulumi_gcp/managedkafka/outputs.py +128 -0
- pulumi_gcp/memorystore/instance.py +8 -12
- pulumi_gcp/modelarmor/__init__.py +1 -0
- pulumi_gcp/modelarmor/_inputs.py +683 -0
- pulumi_gcp/modelarmor/floorsetting.py +736 -0
- pulumi_gcp/modelarmor/outputs.py +618 -0
- pulumi_gcp/networkconnectivity/_inputs.py +60 -0
- pulumi_gcp/networkconnectivity/internal_range.py +136 -0
- pulumi_gcp/networkconnectivity/outputs.py +55 -0
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/oracledatabase/__init__.py +2 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +262 -38
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +314 -50
- pulumi_gcp/oracledatabase/get_autonomous_database.py +23 -1
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +34 -1
- pulumi_gcp/oracledatabase/odb_network.py +721 -0
- pulumi_gcp/oracledatabase/odb_subnet.py +803 -0
- pulumi_gcp/oracledatabase/outputs.py +83 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parametermanager/parameter_version.py +62 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +64 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +46 -6
- pulumi_gcp/pubsub/topic.py +36 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +70 -0
- pulumi_gcp/redis/get_cluster.py +12 -1
- pulumi_gcp/redis/instance.py +8 -12
- pulumi_gcp/secretmanager/get_regional_secret.py +12 -1
- pulumi_gcp/secretmanager/get_secret.py +12 -1
- pulumi_gcp/secretmanager/outputs.py +30 -0
- pulumi_gcp/secretmanager/regional_secret.py +61 -0
- pulumi_gcp/secretmanager/secret.py +61 -0
- pulumi_gcp/securesourcemanager/branch_rule.py +16 -8
- pulumi_gcp/securesourcemanager/instance.py +112 -4
- pulumi_gcp/securesourcemanager/repository.py +112 -8
- pulumi_gcp/serviceaccount/get_account_key.py +1 -0
- pulumi_gcp/sql/_inputs.py +6 -6
- pulumi_gcp/sql/database.py +0 -12
- pulumi_gcp/sql/outputs.py +4 -4
- pulumi_gcp/storage/__init__.py +2 -0
- pulumi_gcp/storage/_inputs.py +451 -0
- pulumi_gcp/storage/bucket.py +7 -7
- pulumi_gcp/storage/bucket_object.py +34 -0
- pulumi_gcp/storage/get_bucket_object.py +12 -1
- pulumi_gcp/storage/get_bucket_object_content.py +12 -1
- pulumi_gcp/storage/get_insights_dataset_config.py +363 -0
- pulumi_gcp/storage/insights_dataset_config.py +1280 -0
- pulumi_gcp/storage/outputs.py +619 -0
- pulumi_gcp/vertex/__init__.py +1 -0
- pulumi_gcp/vertex/_inputs.py +3646 -3
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_endpoint_with_model_garden_deployment.py +940 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/outputs.py +2609 -2
- pulumi_gcp/vmwareengine/network_peering.py +7 -7
- pulumi_gcp/workbench/_inputs.py +118 -0
- pulumi_gcp/workbench/instance.py +171 -2
- pulumi_gcp/workbench/outputs.py +91 -0
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.41.0a1754981061.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.41.0a1754981061.dist-info}/RECORD +157 -138
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.41.0a1754981061.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.41.0a1754981061.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,164 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins as _builtins
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
|
18
|
+
__all__ = [
|
19
|
+
'GetDockerImagesResult',
|
20
|
+
'AwaitableGetDockerImagesResult',
|
21
|
+
'get_docker_images',
|
22
|
+
'get_docker_images_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetDockerImagesResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getDockerImages.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, docker_images=None, id=None, location=None, project=None, repository_id=None):
|
31
|
+
if docker_images and not isinstance(docker_images, list):
|
32
|
+
raise TypeError("Expected argument 'docker_images' to be a list")
|
33
|
+
pulumi.set(__self__, "docker_images", docker_images)
|
34
|
+
if id and not isinstance(id, str):
|
35
|
+
raise TypeError("Expected argument 'id' to be a str")
|
36
|
+
pulumi.set(__self__, "id", id)
|
37
|
+
if location and not isinstance(location, str):
|
38
|
+
raise TypeError("Expected argument 'location' to be a str")
|
39
|
+
pulumi.set(__self__, "location", location)
|
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
|
+
if repository_id and not isinstance(repository_id, str):
|
44
|
+
raise TypeError("Expected argument 'repository_id' to be a str")
|
45
|
+
pulumi.set(__self__, "repository_id", repository_id)
|
46
|
+
|
47
|
+
@_builtins.property
|
48
|
+
@pulumi.getter(name="dockerImages")
|
49
|
+
def docker_images(self) -> Sequence['outputs.GetDockerImagesDockerImageResult']:
|
50
|
+
"""
|
51
|
+
A list of all retrieved Artifact Registry Docker images. Structure is defined below.
|
52
|
+
"""
|
53
|
+
return pulumi.get(self, "docker_images")
|
54
|
+
|
55
|
+
@_builtins.property
|
56
|
+
@pulumi.getter
|
57
|
+
def id(self) -> _builtins.str:
|
58
|
+
"""
|
59
|
+
The provider-assigned unique ID for this managed resource.
|
60
|
+
"""
|
61
|
+
return pulumi.get(self, "id")
|
62
|
+
|
63
|
+
@_builtins.property
|
64
|
+
@pulumi.getter
|
65
|
+
def location(self) -> _builtins.str:
|
66
|
+
return pulumi.get(self, "location")
|
67
|
+
|
68
|
+
@_builtins.property
|
69
|
+
@pulumi.getter
|
70
|
+
def project(self) -> Optional[_builtins.str]:
|
71
|
+
return pulumi.get(self, "project")
|
72
|
+
|
73
|
+
@_builtins.property
|
74
|
+
@pulumi.getter(name="repositoryId")
|
75
|
+
def repository_id(self) -> _builtins.str:
|
76
|
+
return pulumi.get(self, "repository_id")
|
77
|
+
|
78
|
+
|
79
|
+
class AwaitableGetDockerImagesResult(GetDockerImagesResult):
|
80
|
+
# pylint: disable=using-constant-test
|
81
|
+
def __await__(self):
|
82
|
+
if False:
|
83
|
+
yield self
|
84
|
+
return GetDockerImagesResult(
|
85
|
+
docker_images=self.docker_images,
|
86
|
+
id=self.id,
|
87
|
+
location=self.location,
|
88
|
+
project=self.project,
|
89
|
+
repository_id=self.repository_id)
|
90
|
+
|
91
|
+
|
92
|
+
def get_docker_images(location: Optional[_builtins.str] = None,
|
93
|
+
project: Optional[_builtins.str] = None,
|
94
|
+
repository_id: Optional[_builtins.str] = None,
|
95
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDockerImagesResult:
|
96
|
+
"""
|
97
|
+
Get information about Artifact Registry Docker images.
|
98
|
+
See [the official documentation](https://cloud.google.com/artifact-registry/docs/docker)
|
99
|
+
and [API](https://cloud.google.com/artifact-registry/docs/reference/rest/v1/projects.locations.repositories.dockerImages/list).
|
100
|
+
|
101
|
+
## Example Usage
|
102
|
+
|
103
|
+
```python
|
104
|
+
import pulumi
|
105
|
+
import pulumi_gcp as gcp
|
106
|
+
|
107
|
+
my_images = gcp.artifactregistry.get_docker_images(location="us-central1",
|
108
|
+
repository_id="example-repo")
|
109
|
+
```
|
110
|
+
|
111
|
+
|
112
|
+
:param _builtins.str location: The location of the Artifact Registry repository.
|
113
|
+
:param _builtins.str project: The project ID in which the resource belongs. If it is not provided, the provider project is used.
|
114
|
+
:param _builtins.str repository_id: The last part of the repository name to fetch from.
|
115
|
+
"""
|
116
|
+
__args__ = dict()
|
117
|
+
__args__['location'] = location
|
118
|
+
__args__['project'] = project
|
119
|
+
__args__['repositoryId'] = repository_id
|
120
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
121
|
+
__ret__ = pulumi.runtime.invoke('gcp:artifactregistry/getDockerImages:getDockerImages', __args__, opts=opts, typ=GetDockerImagesResult).value
|
122
|
+
|
123
|
+
return AwaitableGetDockerImagesResult(
|
124
|
+
docker_images=pulumi.get(__ret__, 'docker_images'),
|
125
|
+
id=pulumi.get(__ret__, 'id'),
|
126
|
+
location=pulumi.get(__ret__, 'location'),
|
127
|
+
project=pulumi.get(__ret__, 'project'),
|
128
|
+
repository_id=pulumi.get(__ret__, 'repository_id'))
|
129
|
+
def get_docker_images_output(location: Optional[pulumi.Input[_builtins.str]] = None,
|
130
|
+
project: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
131
|
+
repository_id: Optional[pulumi.Input[_builtins.str]] = None,
|
132
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDockerImagesResult]:
|
133
|
+
"""
|
134
|
+
Get information about Artifact Registry Docker images.
|
135
|
+
See [the official documentation](https://cloud.google.com/artifact-registry/docs/docker)
|
136
|
+
and [API](https://cloud.google.com/artifact-registry/docs/reference/rest/v1/projects.locations.repositories.dockerImages/list).
|
137
|
+
|
138
|
+
## Example Usage
|
139
|
+
|
140
|
+
```python
|
141
|
+
import pulumi
|
142
|
+
import pulumi_gcp as gcp
|
143
|
+
|
144
|
+
my_images = gcp.artifactregistry.get_docker_images(location="us-central1",
|
145
|
+
repository_id="example-repo")
|
146
|
+
```
|
147
|
+
|
148
|
+
|
149
|
+
:param _builtins.str location: The location of the Artifact Registry repository.
|
150
|
+
:param _builtins.str project: The project ID in which the resource belongs. If it is not provided, the provider project is used.
|
151
|
+
:param _builtins.str repository_id: The last part of the repository name to fetch from.
|
152
|
+
"""
|
153
|
+
__args__ = dict()
|
154
|
+
__args__['location'] = location
|
155
|
+
__args__['project'] = project
|
156
|
+
__args__['repositoryId'] = repository_id
|
157
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
158
|
+
__ret__ = pulumi.runtime.invoke_output('gcp:artifactregistry/getDockerImages:getDockerImages', __args__, opts=opts, typ=GetDockerImagesResult)
|
159
|
+
return __ret__.apply(lambda __response__: GetDockerImagesResult(
|
160
|
+
docker_images=pulumi.get(__response__, 'docker_images'),
|
161
|
+
id=pulumi.get(__response__, 'id'),
|
162
|
+
location=pulumi.get(__response__, 'location'),
|
163
|
+
project=pulumi.get(__response__, 'project'),
|
164
|
+
repository_id=pulumi.get(__response__, 'repository_id')))
|
@@ -42,6 +42,7 @@ __all__ = [
|
|
42
42
|
'RepositoryVirtualRepositoryConfig',
|
43
43
|
'RepositoryVirtualRepositoryConfigUpstreamPolicy',
|
44
44
|
'RepositoryVulnerabilityScanningConfig',
|
45
|
+
'GetDockerImagesDockerImageResult',
|
45
46
|
'GetRepositoryCleanupPolicyResult',
|
46
47
|
'GetRepositoryCleanupPolicyConditionResult',
|
47
48
|
'GetRepositoryCleanupPolicyMostRecentVersionResult',
|
@@ -1376,6 +1377,112 @@ class RepositoryVulnerabilityScanningConfig(dict):
|
|
1376
1377
|
return pulumi.get(self, "enablement_state_reason")
|
1377
1378
|
|
1378
1379
|
|
1380
|
+
@pulumi.output_type
|
1381
|
+
class GetDockerImagesDockerImageResult(dict):
|
1382
|
+
def __init__(__self__, *,
|
1383
|
+
build_time: _builtins.str,
|
1384
|
+
image_name: _builtins.str,
|
1385
|
+
image_size_bytes: _builtins.str,
|
1386
|
+
media_type: _builtins.str,
|
1387
|
+
name: _builtins.str,
|
1388
|
+
self_link: _builtins.str,
|
1389
|
+
tags: Sequence[_builtins.str],
|
1390
|
+
update_time: _builtins.str,
|
1391
|
+
upload_time: _builtins.str):
|
1392
|
+
"""
|
1393
|
+
:param _builtins.str build_time: The time, as a RFC 3339 string, this image was built.
|
1394
|
+
:param _builtins.str image_name: Extracted short name of the image (last part of `name`, without tag or digest). For example, from `.../nginx@sha256:...` → `nginx`.
|
1395
|
+
:param _builtins.str image_size_bytes: Calculated size of the image in bytes.
|
1396
|
+
:param _builtins.str media_type: Media type of this image, e.g. `application/vnd.docker.distribution.manifest.v2+json`.
|
1397
|
+
:param _builtins.str name: The fully qualified name of the fetched image. This name has the form: `projects/{{project}}/locations/{{location}}/repository/{{repository_id}}/dockerImages/{{docker_image}}`. For example, `projects/test-project/locations/us-west4/repositories/test-repo/dockerImages/nginx@sha256:e9954c1fc875017be1c3e36eca16be2d9e9bccc4bf072163515467d6a823c7cf`
|
1398
|
+
:param _builtins.str self_link: The URI to access the image. For example, `us-west4-docker.pkg.dev/test-project/test-repo/nginx@sha256:e9954c1fc875017be1c3e36eca16be2d9e9bccc4bf072163515467d6a823c7cf`
|
1399
|
+
:param Sequence[_builtins.str] tags: A list of all tags associated with the image.
|
1400
|
+
:param _builtins.str update_time: The time, as a RFC 3339 string, this image was updated.
|
1401
|
+
:param _builtins.str upload_time: The time, as a RFC 3339 string, the image was uploaded. For example, `2014-10-02T15:01:23.045123456Z`.
|
1402
|
+
"""
|
1403
|
+
pulumi.set(__self__, "build_time", build_time)
|
1404
|
+
pulumi.set(__self__, "image_name", image_name)
|
1405
|
+
pulumi.set(__self__, "image_size_bytes", image_size_bytes)
|
1406
|
+
pulumi.set(__self__, "media_type", media_type)
|
1407
|
+
pulumi.set(__self__, "name", name)
|
1408
|
+
pulumi.set(__self__, "self_link", self_link)
|
1409
|
+
pulumi.set(__self__, "tags", tags)
|
1410
|
+
pulumi.set(__self__, "update_time", update_time)
|
1411
|
+
pulumi.set(__self__, "upload_time", upload_time)
|
1412
|
+
|
1413
|
+
@_builtins.property
|
1414
|
+
@pulumi.getter(name="buildTime")
|
1415
|
+
def build_time(self) -> _builtins.str:
|
1416
|
+
"""
|
1417
|
+
The time, as a RFC 3339 string, this image was built.
|
1418
|
+
"""
|
1419
|
+
return pulumi.get(self, "build_time")
|
1420
|
+
|
1421
|
+
@_builtins.property
|
1422
|
+
@pulumi.getter(name="imageName")
|
1423
|
+
def image_name(self) -> _builtins.str:
|
1424
|
+
"""
|
1425
|
+
Extracted short name of the image (last part of `name`, without tag or digest). For example, from `.../nginx@sha256:...` → `nginx`.
|
1426
|
+
"""
|
1427
|
+
return pulumi.get(self, "image_name")
|
1428
|
+
|
1429
|
+
@_builtins.property
|
1430
|
+
@pulumi.getter(name="imageSizeBytes")
|
1431
|
+
def image_size_bytes(self) -> _builtins.str:
|
1432
|
+
"""
|
1433
|
+
Calculated size of the image in bytes.
|
1434
|
+
"""
|
1435
|
+
return pulumi.get(self, "image_size_bytes")
|
1436
|
+
|
1437
|
+
@_builtins.property
|
1438
|
+
@pulumi.getter(name="mediaType")
|
1439
|
+
def media_type(self) -> _builtins.str:
|
1440
|
+
"""
|
1441
|
+
Media type of this image, e.g. `application/vnd.docker.distribution.manifest.v2+json`.
|
1442
|
+
"""
|
1443
|
+
return pulumi.get(self, "media_type")
|
1444
|
+
|
1445
|
+
@_builtins.property
|
1446
|
+
@pulumi.getter
|
1447
|
+
def name(self) -> _builtins.str:
|
1448
|
+
"""
|
1449
|
+
The fully qualified name of the fetched image. This name has the form: `projects/{{project}}/locations/{{location}}/repository/{{repository_id}}/dockerImages/{{docker_image}}`. For example, `projects/test-project/locations/us-west4/repositories/test-repo/dockerImages/nginx@sha256:e9954c1fc875017be1c3e36eca16be2d9e9bccc4bf072163515467d6a823c7cf`
|
1450
|
+
"""
|
1451
|
+
return pulumi.get(self, "name")
|
1452
|
+
|
1453
|
+
@_builtins.property
|
1454
|
+
@pulumi.getter(name="selfLink")
|
1455
|
+
def self_link(self) -> _builtins.str:
|
1456
|
+
"""
|
1457
|
+
The URI to access the image. For example, `us-west4-docker.pkg.dev/test-project/test-repo/nginx@sha256:e9954c1fc875017be1c3e36eca16be2d9e9bccc4bf072163515467d6a823c7cf`
|
1458
|
+
"""
|
1459
|
+
return pulumi.get(self, "self_link")
|
1460
|
+
|
1461
|
+
@_builtins.property
|
1462
|
+
@pulumi.getter
|
1463
|
+
def tags(self) -> Sequence[_builtins.str]:
|
1464
|
+
"""
|
1465
|
+
A list of all tags associated with the image.
|
1466
|
+
"""
|
1467
|
+
return pulumi.get(self, "tags")
|
1468
|
+
|
1469
|
+
@_builtins.property
|
1470
|
+
@pulumi.getter(name="updateTime")
|
1471
|
+
def update_time(self) -> _builtins.str:
|
1472
|
+
"""
|
1473
|
+
The time, as a RFC 3339 string, this image was updated.
|
1474
|
+
"""
|
1475
|
+
return pulumi.get(self, "update_time")
|
1476
|
+
|
1477
|
+
@_builtins.property
|
1478
|
+
@pulumi.getter(name="uploadTime")
|
1479
|
+
def upload_time(self) -> _builtins.str:
|
1480
|
+
"""
|
1481
|
+
The time, as a RFC 3339 string, the image was uploaded. For example, `2014-10-02T15:01:23.045123456Z`.
|
1482
|
+
"""
|
1483
|
+
return pulumi.get(self, "upload_time")
|
1484
|
+
|
1485
|
+
|
1379
1486
|
@pulumi.output_type
|
1380
1487
|
class GetRepositoryCleanupPolicyResult(dict):
|
1381
1488
|
def __init__(__self__, *,
|
@@ -1719,7 +1826,7 @@ class GetRepositoryRemoteRepositoryConfigAptRepositoryPublicRepositoryResult(dic
|
|
1719
1826
|
repository_base: _builtins.str,
|
1720
1827
|
repository_path: _builtins.str):
|
1721
1828
|
"""
|
1722
|
-
:param _builtins.str repository_base: A common public repository base for Apt, e.g. '"debian/dists/
|
1829
|
+
:param _builtins.str repository_base: A common public repository base for Apt, e.g. '"debian/dists/stable"' Possible values: ["DEBIAN", "UBUNTU", "DEBIAN_SNAPSHOT"]
|
1723
1830
|
:param _builtins.str repository_path: Specific repository from the base.
|
1724
1831
|
"""
|
1725
1832
|
pulumi.set(__self__, "repository_base", repository_base)
|
@@ -1729,7 +1836,7 @@ class GetRepositoryRemoteRepositoryConfigAptRepositoryPublicRepositoryResult(dic
|
|
1729
1836
|
@pulumi.getter(name="repositoryBase")
|
1730
1837
|
def repository_base(self) -> _builtins.str:
|
1731
1838
|
"""
|
1732
|
-
A common public repository base for Apt, e.g. '"debian/dists/
|
1839
|
+
A common public repository base for Apt, e.g. '"debian/dists/stable"' Possible values: ["DEBIAN", "UBUNTU", "DEBIAN_SNAPSHOT"]
|
1733
1840
|
"""
|
1734
1841
|
return pulumi.get(self, "repository_base")
|
1735
1842
|
|
@@ -887,16 +887,16 @@ class Repository(pulumi.CustomResource):
|
|
887
887
|
|
888
888
|
my_repo = gcp.artifactregistry.Repository("my-repo",
|
889
889
|
location="us-central1",
|
890
|
-
repository_id="debian-
|
890
|
+
repository_id="debian-stable",
|
891
891
|
description="example remote apt repository",
|
892
892
|
format="APT",
|
893
893
|
mode="REMOTE_REPOSITORY",
|
894
894
|
remote_repository_config={
|
895
|
-
"description": "Debian
|
895
|
+
"description": "Debian stable remote repository",
|
896
896
|
"apt_repository": {
|
897
897
|
"public_repository": {
|
898
898
|
"repository_base": "DEBIAN",
|
899
|
-
"repository_path": "debian/dists/
|
899
|
+
"repository_path": "debian/dists/stable",
|
900
900
|
},
|
901
901
|
},
|
902
902
|
})
|
@@ -1512,16 +1512,16 @@ class Repository(pulumi.CustomResource):
|
|
1512
1512
|
|
1513
1513
|
my_repo = gcp.artifactregistry.Repository("my-repo",
|
1514
1514
|
location="us-central1",
|
1515
|
-
repository_id="debian-
|
1515
|
+
repository_id="debian-stable",
|
1516
1516
|
description="example remote apt repository",
|
1517
1517
|
format="APT",
|
1518
1518
|
mode="REMOTE_REPOSITORY",
|
1519
1519
|
remote_repository_config={
|
1520
|
-
"description": "Debian
|
1520
|
+
"description": "Debian stable remote repository",
|
1521
1521
|
"apt_repository": {
|
1522
1522
|
"public_repository": {
|
1523
1523
|
"repository_base": "DEBIAN",
|
1524
|
-
"repository_path": "debian/dists/
|
1524
|
+
"repository_path": "debian/dists/stable",
|
1525
1525
|
},
|
1526
1526
|
},
|
1527
1527
|
})
|
@@ -25,6 +25,7 @@ class BackupVaultArgs:
|
|
25
25
|
access_restriction: Optional[pulumi.Input[_builtins.str]] = None,
|
26
26
|
allow_missing: Optional[pulumi.Input[_builtins.bool]] = None,
|
27
27
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
28
|
+
backup_retention_inheritance: Optional[pulumi.Input[_builtins.str]] = None,
|
28
29
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
29
30
|
effective_time: Optional[pulumi.Input[_builtins.str]] = None,
|
30
31
|
force_delete: Optional[pulumi.Input[_builtins.bool]] = None,
|
@@ -46,6 +47,8 @@ class BackupVaultArgs:
|
|
46
47
|
Stores small amounts of arbitrary data.
|
47
48
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
48
49
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
50
|
+
:param pulumi.Input[_builtins.str] backup_retention_inheritance: How a backup's enforced retention end time is inherited. Default value is `INHERIT_VAULT_RETENTION` if not provided during creation.
|
51
|
+
Possible values are: `BACKUP_RETENTION_INHERITANCE_UNSPECIFIED`, `INHERIT_VAULT_RETENTION`, `MATCH_BACKUP_EXPIRE_TIME`.
|
49
52
|
:param pulumi.Input[_builtins.str] description: Optional. The description of the BackupVault instance (2048 characters or less).
|
50
53
|
:param pulumi.Input[_builtins.str] effective_time: Optional. Time after which the BackupVault resource is locked.
|
51
54
|
:param pulumi.Input[_builtins.bool] force_delete: (Optional, Deprecated)
|
@@ -77,6 +80,8 @@ class BackupVaultArgs:
|
|
77
80
|
pulumi.set(__self__, "allow_missing", allow_missing)
|
78
81
|
if annotations is not None:
|
79
82
|
pulumi.set(__self__, "annotations", annotations)
|
83
|
+
if backup_retention_inheritance is not None:
|
84
|
+
pulumi.set(__self__, "backup_retention_inheritance", backup_retention_inheritance)
|
80
85
|
if description is not None:
|
81
86
|
pulumi.set(__self__, "description", description)
|
82
87
|
if effective_time is not None:
|
@@ -174,6 +179,19 @@ class BackupVaultArgs:
|
|
174
179
|
def annotations(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
175
180
|
pulumi.set(self, "annotations", value)
|
176
181
|
|
182
|
+
@_builtins.property
|
183
|
+
@pulumi.getter(name="backupRetentionInheritance")
|
184
|
+
def backup_retention_inheritance(self) -> Optional[pulumi.Input[_builtins.str]]:
|
185
|
+
"""
|
186
|
+
How a backup's enforced retention end time is inherited. Default value is `INHERIT_VAULT_RETENTION` if not provided during creation.
|
187
|
+
Possible values are: `BACKUP_RETENTION_INHERITANCE_UNSPECIFIED`, `INHERIT_VAULT_RETENTION`, `MATCH_BACKUP_EXPIRE_TIME`.
|
188
|
+
"""
|
189
|
+
return pulumi.get(self, "backup_retention_inheritance")
|
190
|
+
|
191
|
+
@backup_retention_inheritance.setter
|
192
|
+
def backup_retention_inheritance(self, value: Optional[pulumi.Input[_builtins.str]]):
|
193
|
+
pulumi.set(self, "backup_retention_inheritance", value)
|
194
|
+
|
177
195
|
@_builtins.property
|
178
196
|
@pulumi.getter
|
179
197
|
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -293,6 +311,7 @@ class _BackupVaultState:
|
|
293
311
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
294
312
|
backup_count: Optional[pulumi.Input[_builtins.str]] = None,
|
295
313
|
backup_minimum_enforced_retention_duration: Optional[pulumi.Input[_builtins.str]] = None,
|
314
|
+
backup_retention_inheritance: Optional[pulumi.Input[_builtins.str]] = None,
|
296
315
|
backup_vault_id: Optional[pulumi.Input[_builtins.str]] = None,
|
297
316
|
create_time: Optional[pulumi.Input[_builtins.str]] = None,
|
298
317
|
deletable: Optional[pulumi.Input[_builtins.bool]] = None,
|
@@ -327,6 +346,8 @@ class _BackupVaultState:
|
|
327
346
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
328
347
|
:param pulumi.Input[_builtins.str] backup_count: Output only. The number of backups in this backup vault.
|
329
348
|
:param pulumi.Input[_builtins.str] backup_minimum_enforced_retention_duration: Required. The default and minimum enforced retention for each backup within the backup vault. The enforced retention for each backup can be extended.
|
349
|
+
:param pulumi.Input[_builtins.str] backup_retention_inheritance: How a backup's enforced retention end time is inherited. Default value is `INHERIT_VAULT_RETENTION` if not provided during creation.
|
350
|
+
Possible values are: `BACKUP_RETENTION_INHERITANCE_UNSPECIFIED`, `INHERIT_VAULT_RETENTION`, `MATCH_BACKUP_EXPIRE_TIME`.
|
330
351
|
:param pulumi.Input[_builtins.str] backup_vault_id: Required. ID of the requesting object.
|
331
352
|
:param pulumi.Input[_builtins.str] create_time: Output only. The time when the instance was created.
|
332
353
|
:param pulumi.Input[_builtins.bool] deletable: Output only. Set to true when there are no backups nested under this resource.
|
@@ -379,6 +400,8 @@ class _BackupVaultState:
|
|
379
400
|
pulumi.set(__self__, "backup_count", backup_count)
|
380
401
|
if backup_minimum_enforced_retention_duration is not None:
|
381
402
|
pulumi.set(__self__, "backup_minimum_enforced_retention_duration", backup_minimum_enforced_retention_duration)
|
403
|
+
if backup_retention_inheritance is not None:
|
404
|
+
pulumi.set(__self__, "backup_retention_inheritance", backup_retention_inheritance)
|
382
405
|
if backup_vault_id is not None:
|
383
406
|
pulumi.set(__self__, "backup_vault_id", backup_vault_id)
|
384
407
|
if create_time is not None:
|
@@ -492,6 +515,19 @@ class _BackupVaultState:
|
|
492
515
|
def backup_minimum_enforced_retention_duration(self, value: Optional[pulumi.Input[_builtins.str]]):
|
493
516
|
pulumi.set(self, "backup_minimum_enforced_retention_duration", value)
|
494
517
|
|
518
|
+
@_builtins.property
|
519
|
+
@pulumi.getter(name="backupRetentionInheritance")
|
520
|
+
def backup_retention_inheritance(self) -> Optional[pulumi.Input[_builtins.str]]:
|
521
|
+
"""
|
522
|
+
How a backup's enforced retention end time is inherited. Default value is `INHERIT_VAULT_RETENTION` if not provided during creation.
|
523
|
+
Possible values are: `BACKUP_RETENTION_INHERITANCE_UNSPECIFIED`, `INHERIT_VAULT_RETENTION`, `MATCH_BACKUP_EXPIRE_TIME`.
|
524
|
+
"""
|
525
|
+
return pulumi.get(self, "backup_retention_inheritance")
|
526
|
+
|
527
|
+
@backup_retention_inheritance.setter
|
528
|
+
def backup_retention_inheritance(self, value: Optional[pulumi.Input[_builtins.str]]):
|
529
|
+
pulumi.set(self, "backup_retention_inheritance", value)
|
530
|
+
|
495
531
|
@_builtins.property
|
496
532
|
@pulumi.getter(name="backupVaultId")
|
497
533
|
def backup_vault_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -785,6 +821,7 @@ class BackupVault(pulumi.CustomResource):
|
|
785
821
|
allow_missing: Optional[pulumi.Input[_builtins.bool]] = None,
|
786
822
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
787
823
|
backup_minimum_enforced_retention_duration: Optional[pulumi.Input[_builtins.str]] = None,
|
824
|
+
backup_retention_inheritance: Optional[pulumi.Input[_builtins.str]] = None,
|
788
825
|
backup_vault_id: Optional[pulumi.Input[_builtins.str]] = None,
|
789
826
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
790
827
|
effective_time: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -822,6 +859,7 @@ class BackupVault(pulumi.CustomResource):
|
|
822
859
|
},
|
823
860
|
force_update=True,
|
824
861
|
access_restriction="WITHIN_ORGANIZATION",
|
862
|
+
backup_retention_inheritance="INHERIT_VAULT_RETENTION",
|
825
863
|
ignore_inactive_datasources=True,
|
826
864
|
ignore_backup_plan_references=True,
|
827
865
|
allow_missing=True)
|
@@ -862,6 +900,8 @@ class BackupVault(pulumi.CustomResource):
|
|
862
900
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
863
901
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
864
902
|
:param pulumi.Input[_builtins.str] backup_minimum_enforced_retention_duration: Required. The default and minimum enforced retention for each backup within the backup vault. The enforced retention for each backup can be extended.
|
903
|
+
:param pulumi.Input[_builtins.str] backup_retention_inheritance: How a backup's enforced retention end time is inherited. Default value is `INHERIT_VAULT_RETENTION` if not provided during creation.
|
904
|
+
Possible values are: `BACKUP_RETENTION_INHERITANCE_UNSPECIFIED`, `INHERIT_VAULT_RETENTION`, `MATCH_BACKUP_EXPIRE_TIME`.
|
865
905
|
:param pulumi.Input[_builtins.str] backup_vault_id: Required. ID of the requesting object.
|
866
906
|
:param pulumi.Input[_builtins.str] description: Optional. The description of the BackupVault instance (2048 characters or less).
|
867
907
|
:param pulumi.Input[_builtins.str] effective_time: Optional. Time after which the BackupVault resource is locked.
|
@@ -918,6 +958,7 @@ class BackupVault(pulumi.CustomResource):
|
|
918
958
|
},
|
919
959
|
force_update=True,
|
920
960
|
access_restriction="WITHIN_ORGANIZATION",
|
961
|
+
backup_retention_inheritance="INHERIT_VAULT_RETENTION",
|
921
962
|
ignore_inactive_datasources=True,
|
922
963
|
ignore_backup_plan_references=True,
|
923
964
|
allow_missing=True)
|
@@ -966,6 +1007,7 @@ class BackupVault(pulumi.CustomResource):
|
|
966
1007
|
allow_missing: Optional[pulumi.Input[_builtins.bool]] = None,
|
967
1008
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
968
1009
|
backup_minimum_enforced_retention_duration: Optional[pulumi.Input[_builtins.str]] = None,
|
1010
|
+
backup_retention_inheritance: Optional[pulumi.Input[_builtins.str]] = None,
|
969
1011
|
backup_vault_id: Optional[pulumi.Input[_builtins.str]] = None,
|
970
1012
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
971
1013
|
effective_time: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -991,6 +1033,7 @@ class BackupVault(pulumi.CustomResource):
|
|
991
1033
|
if backup_minimum_enforced_retention_duration is None and not opts.urn:
|
992
1034
|
raise TypeError("Missing required property 'backup_minimum_enforced_retention_duration'")
|
993
1035
|
__props__.__dict__["backup_minimum_enforced_retention_duration"] = backup_minimum_enforced_retention_duration
|
1036
|
+
__props__.__dict__["backup_retention_inheritance"] = backup_retention_inheritance
|
994
1037
|
if backup_vault_id is None and not opts.urn:
|
995
1038
|
raise TypeError("Missing required property 'backup_vault_id'")
|
996
1039
|
__props__.__dict__["backup_vault_id"] = backup_vault_id
|
@@ -1035,6 +1078,7 @@ class BackupVault(pulumi.CustomResource):
|
|
1035
1078
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
1036
1079
|
backup_count: Optional[pulumi.Input[_builtins.str]] = None,
|
1037
1080
|
backup_minimum_enforced_retention_duration: Optional[pulumi.Input[_builtins.str]] = None,
|
1081
|
+
backup_retention_inheritance: Optional[pulumi.Input[_builtins.str]] = None,
|
1038
1082
|
backup_vault_id: Optional[pulumi.Input[_builtins.str]] = None,
|
1039
1083
|
create_time: Optional[pulumi.Input[_builtins.str]] = None,
|
1040
1084
|
deletable: Optional[pulumi.Input[_builtins.bool]] = None,
|
@@ -1074,6 +1118,8 @@ class BackupVault(pulumi.CustomResource):
|
|
1074
1118
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
1075
1119
|
:param pulumi.Input[_builtins.str] backup_count: Output only. The number of backups in this backup vault.
|
1076
1120
|
:param pulumi.Input[_builtins.str] backup_minimum_enforced_retention_duration: Required. The default and minimum enforced retention for each backup within the backup vault. The enforced retention for each backup can be extended.
|
1121
|
+
:param pulumi.Input[_builtins.str] backup_retention_inheritance: How a backup's enforced retention end time is inherited. Default value is `INHERIT_VAULT_RETENTION` if not provided during creation.
|
1122
|
+
Possible values are: `BACKUP_RETENTION_INHERITANCE_UNSPECIFIED`, `INHERIT_VAULT_RETENTION`, `MATCH_BACKUP_EXPIRE_TIME`.
|
1077
1123
|
:param pulumi.Input[_builtins.str] backup_vault_id: Required. ID of the requesting object.
|
1078
1124
|
:param pulumi.Input[_builtins.str] create_time: Output only. The time when the instance was created.
|
1079
1125
|
:param pulumi.Input[_builtins.bool] deletable: Output only. Set to true when there are no backups nested under this resource.
|
@@ -1125,6 +1171,7 @@ class BackupVault(pulumi.CustomResource):
|
|
1125
1171
|
__props__.__dict__["annotations"] = annotations
|
1126
1172
|
__props__.__dict__["backup_count"] = backup_count
|
1127
1173
|
__props__.__dict__["backup_minimum_enforced_retention_duration"] = backup_minimum_enforced_retention_duration
|
1174
|
+
__props__.__dict__["backup_retention_inheritance"] = backup_retention_inheritance
|
1128
1175
|
__props__.__dict__["backup_vault_id"] = backup_vault_id
|
1129
1176
|
__props__.__dict__["create_time"] = create_time
|
1130
1177
|
__props__.__dict__["deletable"] = deletable
|
@@ -1194,6 +1241,15 @@ class BackupVault(pulumi.CustomResource):
|
|
1194
1241
|
"""
|
1195
1242
|
return pulumi.get(self, "backup_minimum_enforced_retention_duration")
|
1196
1243
|
|
1244
|
+
@_builtins.property
|
1245
|
+
@pulumi.getter(name="backupRetentionInheritance")
|
1246
|
+
def backup_retention_inheritance(self) -> pulumi.Output[Optional[_builtins.str]]:
|
1247
|
+
"""
|
1248
|
+
How a backup's enforced retention end time is inherited. Default value is `INHERIT_VAULT_RETENTION` if not provided during creation.
|
1249
|
+
Possible values are: `BACKUP_RETENTION_INHERITANCE_UNSPECIFIED`, `INHERIT_VAULT_RETENTION`, `MATCH_BACKUP_EXPIRE_TIME`.
|
1250
|
+
"""
|
1251
|
+
return pulumi.get(self, "backup_retention_inheritance")
|
1252
|
+
|
1197
1253
|
@_builtins.property
|
1198
1254
|
@pulumi.getter(name="backupVaultId")
|
1199
1255
|
def backup_vault_id(self) -> pulumi.Output[_builtins.str]:
|
@@ -26,7 +26,7 @@ class GetBackupVaultResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getBackupVault.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, access_restriction=None, allow_missing=None, annotations=None, backup_count=None, backup_minimum_enforced_retention_duration=None, backup_vault_id=None, create_time=None, deletable=None, description=None, effective_annotations=None, effective_labels=None, effective_time=None, etag=None, force_delete=None, force_update=None, id=None, ignore_backup_plan_references=None, ignore_inactive_datasources=None, labels=None, location=None, name=None, project=None, pulumi_labels=None, service_account=None, state=None, total_stored_bytes=None, uid=None, update_time=None):
|
29
|
+
def __init__(__self__, access_restriction=None, allow_missing=None, annotations=None, backup_count=None, backup_minimum_enforced_retention_duration=None, backup_retention_inheritance=None, backup_vault_id=None, create_time=None, deletable=None, description=None, effective_annotations=None, effective_labels=None, effective_time=None, etag=None, force_delete=None, force_update=None, id=None, ignore_backup_plan_references=None, ignore_inactive_datasources=None, labels=None, location=None, name=None, project=None, pulumi_labels=None, service_account=None, state=None, total_stored_bytes=None, uid=None, update_time=None):
|
30
30
|
if access_restriction and not isinstance(access_restriction, str):
|
31
31
|
raise TypeError("Expected argument 'access_restriction' to be a str")
|
32
32
|
pulumi.set(__self__, "access_restriction", access_restriction)
|
@@ -42,6 +42,9 @@ class GetBackupVaultResult:
|
|
42
42
|
if backup_minimum_enforced_retention_duration and not isinstance(backup_minimum_enforced_retention_duration, str):
|
43
43
|
raise TypeError("Expected argument 'backup_minimum_enforced_retention_duration' to be a str")
|
44
44
|
pulumi.set(__self__, "backup_minimum_enforced_retention_duration", backup_minimum_enforced_retention_duration)
|
45
|
+
if backup_retention_inheritance and not isinstance(backup_retention_inheritance, str):
|
46
|
+
raise TypeError("Expected argument 'backup_retention_inheritance' to be a str")
|
47
|
+
pulumi.set(__self__, "backup_retention_inheritance", backup_retention_inheritance)
|
45
48
|
if backup_vault_id and not isinstance(backup_vault_id, str):
|
46
49
|
raise TypeError("Expected argument 'backup_vault_id' to be a str")
|
47
50
|
pulumi.set(__self__, "backup_vault_id", backup_vault_id)
|
@@ -137,6 +140,11 @@ class GetBackupVaultResult:
|
|
137
140
|
def backup_minimum_enforced_retention_duration(self) -> _builtins.str:
|
138
141
|
return pulumi.get(self, "backup_minimum_enforced_retention_duration")
|
139
142
|
|
143
|
+
@_builtins.property
|
144
|
+
@pulumi.getter(name="backupRetentionInheritance")
|
145
|
+
def backup_retention_inheritance(self) -> _builtins.str:
|
146
|
+
return pulumi.get(self, "backup_retention_inheritance")
|
147
|
+
|
140
148
|
@_builtins.property
|
141
149
|
@pulumi.getter(name="backupVaultId")
|
142
150
|
def backup_vault_id(self) -> _builtins.str:
|
@@ -267,6 +275,7 @@ class AwaitableGetBackupVaultResult(GetBackupVaultResult):
|
|
267
275
|
annotations=self.annotations,
|
268
276
|
backup_count=self.backup_count,
|
269
277
|
backup_minimum_enforced_retention_duration=self.backup_minimum_enforced_retention_duration,
|
278
|
+
backup_retention_inheritance=self.backup_retention_inheritance,
|
270
279
|
backup_vault_id=self.backup_vault_id,
|
271
280
|
create_time=self.create_time,
|
272
281
|
deletable=self.deletable,
|
@@ -330,6 +339,7 @@ def get_backup_vault(backup_vault_id: Optional[_builtins.str] = None,
|
|
330
339
|
annotations=pulumi.get(__ret__, 'annotations'),
|
331
340
|
backup_count=pulumi.get(__ret__, 'backup_count'),
|
332
341
|
backup_minimum_enforced_retention_duration=pulumi.get(__ret__, 'backup_minimum_enforced_retention_duration'),
|
342
|
+
backup_retention_inheritance=pulumi.get(__ret__, 'backup_retention_inheritance'),
|
333
343
|
backup_vault_id=pulumi.get(__ret__, 'backup_vault_id'),
|
334
344
|
create_time=pulumi.get(__ret__, 'create_time'),
|
335
345
|
deletable=pulumi.get(__ret__, 'deletable'),
|
@@ -390,6 +400,7 @@ def get_backup_vault_output(backup_vault_id: Optional[pulumi.Input[_builtins.str
|
|
390
400
|
annotations=pulumi.get(__response__, 'annotations'),
|
391
401
|
backup_count=pulumi.get(__response__, 'backup_count'),
|
392
402
|
backup_minimum_enforced_retention_duration=pulumi.get(__response__, 'backup_minimum_enforced_retention_duration'),
|
403
|
+
backup_retention_inheritance=pulumi.get(__response__, 'backup_retention_inheritance'),
|
393
404
|
backup_vault_id=pulumi.get(__response__, 'backup_vault_id'),
|
394
405
|
create_time=pulumi.get(__response__, 'create_time'),
|
395
406
|
deletable=pulumi.get(__response__, 'deletable'),
|
pulumi_gcp/bigquery/_inputs.py
CHANGED
@@ -8387,6 +8387,8 @@ if not MYPY:
|
|
8387
8387
|
"""
|
8388
8388
|
Specifies whether to use BigQuery's legacy SQL for this view.
|
8389
8389
|
The default value is true. If set to false, the view will use BigQuery's standard SQL.
|
8390
|
+
> **Note**: Starting in provider version `7.0.0`, no default value is
|
8391
|
+
provided for this field unless explicitly set in the configuration.
|
8390
8392
|
"""
|
8391
8393
|
elif False:
|
8392
8394
|
TableViewArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -8400,6 +8402,8 @@ class TableViewArgs:
|
|
8400
8402
|
:param pulumi.Input[_builtins.str] query: A query that BigQuery executes when the view is referenced.
|
8401
8403
|
:param pulumi.Input[_builtins.bool] use_legacy_sql: Specifies whether to use BigQuery's legacy SQL for this view.
|
8402
8404
|
The default value is true. If set to false, the view will use BigQuery's standard SQL.
|
8405
|
+
> **Note**: Starting in provider version `7.0.0`, no default value is
|
8406
|
+
provided for this field unless explicitly set in the configuration.
|
8403
8407
|
"""
|
8404
8408
|
pulumi.set(__self__, "query", query)
|
8405
8409
|
if use_legacy_sql is not None:
|
@@ -8423,6 +8427,8 @@ class TableViewArgs:
|
|
8423
8427
|
"""
|
8424
8428
|
Specifies whether to use BigQuery's legacy SQL for this view.
|
8425
8429
|
The default value is true. If set to false, the view will use BigQuery's standard SQL.
|
8430
|
+
> **Note**: Starting in provider version `7.0.0`, no default value is
|
8431
|
+
provided for this field unless explicitly set in the configuration.
|
8426
8432
|
"""
|
8427
8433
|
return pulumi.get(self, "use_legacy_sql")
|
8428
8434
|
|