pulumi-gcp 8.11.0a1734348982__py3-none-any.whl → 8.11.0a1734385115__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 +91 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +29 -0
- pulumi_gcp/accesscontextmanager/outputs.py +18 -0
- pulumi_gcp/accesscontextmanager/service_perimeter.py +36 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +6 -0
- pulumi_gcp/apigee/app_group.py +7 -7
- pulumi_gcp/applicationintegration/client.py +8 -6
- pulumi_gcp/artifactregistry/_inputs.py +24 -15
- pulumi_gcp/artifactregistry/outputs.py +32 -20
- pulumi_gcp/artifactregistry/repository.py +128 -0
- pulumi_gcp/assuredworkloads/workload.py +7 -7
- pulumi_gcp/backupdisasterrecovery/__init__.py +2 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +2 -2
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +12 -8
- pulumi_gcp/backupdisasterrecovery/get_backup.py +153 -0
- pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +415 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +63 -0
- pulumi_gcp/bigquery/app_profile.py +75 -0
- pulumi_gcp/billing/_inputs.py +6 -6
- pulumi_gcp/billing/outputs.py +4 -4
- pulumi_gcp/certificateauthority/_inputs.py +9 -9
- pulumi_gcp/certificateauthority/outputs.py +8 -8
- pulumi_gcp/cloudbuild/_inputs.py +53 -0
- pulumi_gcp/cloudbuild/outputs.py +50 -0
- pulumi_gcp/cloudbuild/worker_pool.py +47 -0
- pulumi_gcp/clouddeploy/_inputs.py +254 -0
- pulumi_gcp/clouddeploy/outputs.py +211 -0
- pulumi_gcp/clouddeploy/target.py +47 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +6 -6
- pulumi_gcp/cloudfunctionsv2/outputs.py +8 -8
- pulumi_gcp/cloudrunv2/job.py +4 -4
- pulumi_gcp/cloudrunv2/service.py +4 -4
- pulumi_gcp/composer/get_user_workloads_config_map.py +4 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +4 -0
- pulumi_gcp/composer/user_workloads_config_map.py +14 -0
- pulumi_gcp/composer/user_workloads_secret.py +6 -0
- pulumi_gcp/compute/_inputs.py +566 -25
- pulumi_gcp/compute/disk.py +21 -7
- pulumi_gcp/compute/firewall_policy_rule.py +12 -0
- pulumi_gcp/compute/get_forwarding_rules.py +2 -2
- pulumi_gcp/compute/get_global_forwarding_rule.py +12 -1
- pulumi_gcp/compute/get_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_network.py +35 -1
- pulumi_gcp/compute/get_region_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_region_network_endpoint_group.py +12 -1
- pulumi_gcp/compute/global_forwarding_rule.py +28 -0
- pulumi_gcp/compute/instance_group_manager.py +28 -0
- pulumi_gcp/compute/network.py +75 -0
- pulumi_gcp/compute/outputs.py +655 -26
- pulumi_gcp/compute/region_health_check.py +28 -0
- pulumi_gcp/compute/region_instance_group_manager.py +28 -0
- pulumi_gcp/compute/region_network_endpoint.py +28 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +70 -2
- pulumi_gcp/compute/subnetwork.py +30 -2
- pulumi_gcp/compute/url_map.py +7 -7
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +201 -3
- pulumi_gcp/container/cluster.py +68 -14
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +249 -3
- pulumi_gcp/dataproc/_inputs.py +209 -1
- pulumi_gcp/dataproc/batch.py +76 -0
- pulumi_gcp/dataproc/outputs.py +169 -3
- pulumi_gcp/diagflow/_inputs.py +3 -3
- pulumi_gcp/diagflow/outputs.py +2 -2
- pulumi_gcp/discoveryengine/search_engine.py +7 -7
- pulumi_gcp/firebaserules/release.py +76 -0
- pulumi_gcp/firestore/field.py +4 -4
- pulumi_gcp/gemini/__init__.py +15 -0
- pulumi_gcp/gemini/_inputs.py +183 -0
- pulumi_gcp/gemini/code_repository_index.py +659 -0
- pulumi_gcp/gemini/get_repository_group_iam_policy.py +171 -0
- pulumi_gcp/gemini/outputs.py +130 -0
- pulumi_gcp/gemini/repository_group.py +586 -0
- pulumi_gcp/gemini/repository_group_iam_binding.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_member.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_policy.py +443 -0
- pulumi_gcp/gkehub/_inputs.py +30 -10
- 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/outputs.py +21 -7
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/iam/__init__.py +1 -0
- pulumi_gcp/iam/_inputs.py +137 -0
- pulumi_gcp/iam/folders_policy_binding.py +16 -0
- pulumi_gcp/iam/organizations_policy_binding.py +16 -0
- pulumi_gcp/iam/outputs.py +99 -0
- pulumi_gcp/iam/principal_access_boundary_policy.py +16 -0
- pulumi_gcp/iam/projects_policy_binding.py +917 -0
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/_inputs.py +15 -15
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/integrationconnectors/outputs.py +10 -10
- pulumi_gcp/monitoring/_inputs.py +13 -6
- pulumi_gcp/monitoring/outputs.py +10 -4
- pulumi_gcp/netapp/_inputs.py +3 -3
- pulumi_gcp/netapp/active_directory.py +7 -7
- pulumi_gcp/netapp/outputs.py +2 -2
- pulumi_gcp/netapp/volume.py +11 -11
- pulumi_gcp/networkconnectivity/spoke.py +10 -10
- pulumi_gcp/networksecurity/__init__.py +4 -0
- pulumi_gcp/networksecurity/_inputs.py +115 -0
- pulumi_gcp/networksecurity/mirroring_deployment.py +848 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +752 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +737 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +840 -0
- pulumi_gcp/networksecurity/outputs.py +70 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +42 -4
- pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +42 -4
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +50 -8
- pulumi_gcp/oracledatabase/get_autonomous_database.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +12 -1
- pulumi_gcp/oracledatabase/outputs.py +21 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parallelstore/instance.py +4 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +435 -3
- pulumi_gcp/redis/cluster.py +287 -16
- pulumi_gcp/redis/outputs.py +304 -2
- pulumi_gcp/serviceaccount/get_account_id_token.py +2 -2
- pulumi_gcp/serviceaccount/get_account_key.py +2 -2
- pulumi_gcp/storage/get_bucket.py +2 -2
- pulumi_gcp/storage/get_bucket_object_content.py +2 -2
- pulumi_gcp/tpu/__init__.py +1 -0
- pulumi_gcp/tpu/_inputs.py +188 -6
- pulumi_gcp/tpu/outputs.py +164 -4
- pulumi_gcp/tpu/v2_queued_resource.py +434 -0
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/RECORD +142 -125
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,171 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import 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
|
+
|
17
|
+
__all__ = [
|
18
|
+
'GetRepositoryGroupIamPolicyResult',
|
19
|
+
'AwaitableGetRepositoryGroupIamPolicyResult',
|
20
|
+
'get_repository_group_iam_policy',
|
21
|
+
'get_repository_group_iam_policy_output',
|
22
|
+
]
|
23
|
+
|
24
|
+
@pulumi.output_type
|
25
|
+
class GetRepositoryGroupIamPolicyResult:
|
26
|
+
"""
|
27
|
+
A collection of values returned by getRepositoryGroupIamPolicy.
|
28
|
+
"""
|
29
|
+
def __init__(__self__, code_repository_index=None, etag=None, id=None, location=None, policy_data=None, project=None, repository_group_id=None):
|
30
|
+
if code_repository_index and not isinstance(code_repository_index, str):
|
31
|
+
raise TypeError("Expected argument 'code_repository_index' to be a str")
|
32
|
+
pulumi.set(__self__, "code_repository_index", code_repository_index)
|
33
|
+
if etag and not isinstance(etag, str):
|
34
|
+
raise TypeError("Expected argument 'etag' to be a str")
|
35
|
+
pulumi.set(__self__, "etag", etag)
|
36
|
+
if id and not isinstance(id, str):
|
37
|
+
raise TypeError("Expected argument 'id' to be a str")
|
38
|
+
pulumi.set(__self__, "id", id)
|
39
|
+
if location and not isinstance(location, str):
|
40
|
+
raise TypeError("Expected argument 'location' to be a str")
|
41
|
+
pulumi.set(__self__, "location", location)
|
42
|
+
if policy_data and not isinstance(policy_data, str):
|
43
|
+
raise TypeError("Expected argument 'policy_data' to be a str")
|
44
|
+
pulumi.set(__self__, "policy_data", policy_data)
|
45
|
+
if project and not isinstance(project, str):
|
46
|
+
raise TypeError("Expected argument 'project' to be a str")
|
47
|
+
pulumi.set(__self__, "project", project)
|
48
|
+
if repository_group_id and not isinstance(repository_group_id, str):
|
49
|
+
raise TypeError("Expected argument 'repository_group_id' to be a str")
|
50
|
+
pulumi.set(__self__, "repository_group_id", repository_group_id)
|
51
|
+
|
52
|
+
@property
|
53
|
+
@pulumi.getter(name="codeRepositoryIndex")
|
54
|
+
def code_repository_index(self) -> str:
|
55
|
+
return pulumi.get(self, "code_repository_index")
|
56
|
+
|
57
|
+
@property
|
58
|
+
@pulumi.getter
|
59
|
+
def etag(self) -> str:
|
60
|
+
"""
|
61
|
+
(Computed) The etag of the IAM policy.
|
62
|
+
"""
|
63
|
+
return pulumi.get(self, "etag")
|
64
|
+
|
65
|
+
@property
|
66
|
+
@pulumi.getter
|
67
|
+
def id(self) -> str:
|
68
|
+
"""
|
69
|
+
The provider-assigned unique ID for this managed resource.
|
70
|
+
"""
|
71
|
+
return pulumi.get(self, "id")
|
72
|
+
|
73
|
+
@property
|
74
|
+
@pulumi.getter
|
75
|
+
def location(self) -> str:
|
76
|
+
return pulumi.get(self, "location")
|
77
|
+
|
78
|
+
@property
|
79
|
+
@pulumi.getter(name="policyData")
|
80
|
+
def policy_data(self) -> str:
|
81
|
+
"""
|
82
|
+
(Required only by `gemini.RepositoryGroupIamPolicy`) The policy data generated by
|
83
|
+
a `organizations_get_iam_policy` data source.
|
84
|
+
"""
|
85
|
+
return pulumi.get(self, "policy_data")
|
86
|
+
|
87
|
+
@property
|
88
|
+
@pulumi.getter
|
89
|
+
def project(self) -> str:
|
90
|
+
return pulumi.get(self, "project")
|
91
|
+
|
92
|
+
@property
|
93
|
+
@pulumi.getter(name="repositoryGroupId")
|
94
|
+
def repository_group_id(self) -> str:
|
95
|
+
return pulumi.get(self, "repository_group_id")
|
96
|
+
|
97
|
+
|
98
|
+
class AwaitableGetRepositoryGroupIamPolicyResult(GetRepositoryGroupIamPolicyResult):
|
99
|
+
# pylint: disable=using-constant-test
|
100
|
+
def __await__(self):
|
101
|
+
if False:
|
102
|
+
yield self
|
103
|
+
return GetRepositoryGroupIamPolicyResult(
|
104
|
+
code_repository_index=self.code_repository_index,
|
105
|
+
etag=self.etag,
|
106
|
+
id=self.id,
|
107
|
+
location=self.location,
|
108
|
+
policy_data=self.policy_data,
|
109
|
+
project=self.project,
|
110
|
+
repository_group_id=self.repository_group_id)
|
111
|
+
|
112
|
+
|
113
|
+
def get_repository_group_iam_policy(code_repository_index: Optional[str] = None,
|
114
|
+
location: Optional[str] = None,
|
115
|
+
project: Optional[str] = None,
|
116
|
+
repository_group_id: Optional[str] = None,
|
117
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRepositoryGroupIamPolicyResult:
|
118
|
+
"""
|
119
|
+
Use this data source to access information about an existing resource.
|
120
|
+
|
121
|
+
:param str location: The location of the Code Repository Index, for example `us-central1`. Used to find the parent resource to bind the IAM policy to. If not specified,
|
122
|
+
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
123
|
+
location is specified, it is taken from the provider configuration.
|
124
|
+
:param str project: The ID of the project in which the resource belongs.
|
125
|
+
If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
|
126
|
+
"""
|
127
|
+
__args__ = dict()
|
128
|
+
__args__['codeRepositoryIndex'] = code_repository_index
|
129
|
+
__args__['location'] = location
|
130
|
+
__args__['project'] = project
|
131
|
+
__args__['repositoryGroupId'] = repository_group_id
|
132
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
133
|
+
__ret__ = pulumi.runtime.invoke('gcp:gemini/getRepositoryGroupIamPolicy:getRepositoryGroupIamPolicy', __args__, opts=opts, typ=GetRepositoryGroupIamPolicyResult).value
|
134
|
+
|
135
|
+
return AwaitableGetRepositoryGroupIamPolicyResult(
|
136
|
+
code_repository_index=pulumi.get(__ret__, 'code_repository_index'),
|
137
|
+
etag=pulumi.get(__ret__, 'etag'),
|
138
|
+
id=pulumi.get(__ret__, 'id'),
|
139
|
+
location=pulumi.get(__ret__, 'location'),
|
140
|
+
policy_data=pulumi.get(__ret__, 'policy_data'),
|
141
|
+
project=pulumi.get(__ret__, 'project'),
|
142
|
+
repository_group_id=pulumi.get(__ret__, 'repository_group_id'))
|
143
|
+
def get_repository_group_iam_policy_output(code_repository_index: Optional[pulumi.Input[str]] = None,
|
144
|
+
location: Optional[pulumi.Input[Optional[str]]] = None,
|
145
|
+
project: Optional[pulumi.Input[Optional[str]]] = None,
|
146
|
+
repository_group_id: Optional[pulumi.Input[str]] = None,
|
147
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRepositoryGroupIamPolicyResult]:
|
148
|
+
"""
|
149
|
+
Use this data source to access information about an existing resource.
|
150
|
+
|
151
|
+
:param str location: The location of the Code Repository Index, for example `us-central1`. Used to find the parent resource to bind the IAM policy to. If not specified,
|
152
|
+
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
153
|
+
location is specified, it is taken from the provider configuration.
|
154
|
+
:param str project: The ID of the project in which the resource belongs.
|
155
|
+
If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
|
156
|
+
"""
|
157
|
+
__args__ = dict()
|
158
|
+
__args__['codeRepositoryIndex'] = code_repository_index
|
159
|
+
__args__['location'] = location
|
160
|
+
__args__['project'] = project
|
161
|
+
__args__['repositoryGroupId'] = repository_group_id
|
162
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
163
|
+
__ret__ = pulumi.runtime.invoke_output('gcp:gemini/getRepositoryGroupIamPolicy:getRepositoryGroupIamPolicy', __args__, opts=opts, typ=GetRepositoryGroupIamPolicyResult)
|
164
|
+
return __ret__.apply(lambda __response__: GetRepositoryGroupIamPolicyResult(
|
165
|
+
code_repository_index=pulumi.get(__response__, 'code_repository_index'),
|
166
|
+
etag=pulumi.get(__response__, 'etag'),
|
167
|
+
id=pulumi.get(__response__, 'id'),
|
168
|
+
location=pulumi.get(__response__, 'location'),
|
169
|
+
policy_data=pulumi.get(__response__, 'policy_data'),
|
170
|
+
project=pulumi.get(__response__, 'project'),
|
171
|
+
repository_group_id=pulumi.get(__response__, 'repository_group_id')))
|
@@ -0,0 +1,130 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import 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
|
+
|
17
|
+
__all__ = [
|
18
|
+
'RepositoryGroupIamBindingCondition',
|
19
|
+
'RepositoryGroupIamMemberCondition',
|
20
|
+
'RepositoryGroupRepository',
|
21
|
+
]
|
22
|
+
|
23
|
+
@pulumi.output_type
|
24
|
+
class RepositoryGroupIamBindingCondition(dict):
|
25
|
+
def __init__(__self__, *,
|
26
|
+
expression: str,
|
27
|
+
title: str,
|
28
|
+
description: Optional[str] = None):
|
29
|
+
pulumi.set(__self__, "expression", expression)
|
30
|
+
pulumi.set(__self__, "title", title)
|
31
|
+
if description is not None:
|
32
|
+
pulumi.set(__self__, "description", description)
|
33
|
+
|
34
|
+
@property
|
35
|
+
@pulumi.getter
|
36
|
+
def expression(self) -> str:
|
37
|
+
return pulumi.get(self, "expression")
|
38
|
+
|
39
|
+
@property
|
40
|
+
@pulumi.getter
|
41
|
+
def title(self) -> str:
|
42
|
+
return pulumi.get(self, "title")
|
43
|
+
|
44
|
+
@property
|
45
|
+
@pulumi.getter
|
46
|
+
def description(self) -> Optional[str]:
|
47
|
+
return pulumi.get(self, "description")
|
48
|
+
|
49
|
+
|
50
|
+
@pulumi.output_type
|
51
|
+
class RepositoryGroupIamMemberCondition(dict):
|
52
|
+
def __init__(__self__, *,
|
53
|
+
expression: str,
|
54
|
+
title: str,
|
55
|
+
description: Optional[str] = None):
|
56
|
+
pulumi.set(__self__, "expression", expression)
|
57
|
+
pulumi.set(__self__, "title", title)
|
58
|
+
if description is not None:
|
59
|
+
pulumi.set(__self__, "description", description)
|
60
|
+
|
61
|
+
@property
|
62
|
+
@pulumi.getter
|
63
|
+
def expression(self) -> str:
|
64
|
+
return pulumi.get(self, "expression")
|
65
|
+
|
66
|
+
@property
|
67
|
+
@pulumi.getter
|
68
|
+
def title(self) -> str:
|
69
|
+
return pulumi.get(self, "title")
|
70
|
+
|
71
|
+
@property
|
72
|
+
@pulumi.getter
|
73
|
+
def description(self) -> Optional[str]:
|
74
|
+
return pulumi.get(self, "description")
|
75
|
+
|
76
|
+
|
77
|
+
@pulumi.output_type
|
78
|
+
class RepositoryGroupRepository(dict):
|
79
|
+
@staticmethod
|
80
|
+
def __key_warning(key: str):
|
81
|
+
suggest = None
|
82
|
+
if key == "branchPattern":
|
83
|
+
suggest = "branch_pattern"
|
84
|
+
|
85
|
+
if suggest:
|
86
|
+
pulumi.log.warn(f"Key '{key}' not found in RepositoryGroupRepository. Access the value via the '{suggest}' property getter instead.")
|
87
|
+
|
88
|
+
def __getitem__(self, key: str) -> Any:
|
89
|
+
RepositoryGroupRepository.__key_warning(key)
|
90
|
+
return super().__getitem__(key)
|
91
|
+
|
92
|
+
def get(self, key: str, default = None) -> Any:
|
93
|
+
RepositoryGroupRepository.__key_warning(key)
|
94
|
+
return super().get(key, default)
|
95
|
+
|
96
|
+
def __init__(__self__, *,
|
97
|
+
branch_pattern: str,
|
98
|
+
resource: str):
|
99
|
+
"""
|
100
|
+
:param str branch_pattern: Required. The Git branch pattern used for indexing in RE2 syntax.
|
101
|
+
See https://github.com/google/re2/wiki/syntax for syntax.
|
102
|
+
|
103
|
+
- - -
|
104
|
+
:param str resource: Required. The DeveloperConnect repository full resource name, relative resource name
|
105
|
+
or resource URL to be indexed.
|
106
|
+
"""
|
107
|
+
pulumi.set(__self__, "branch_pattern", branch_pattern)
|
108
|
+
pulumi.set(__self__, "resource", resource)
|
109
|
+
|
110
|
+
@property
|
111
|
+
@pulumi.getter(name="branchPattern")
|
112
|
+
def branch_pattern(self) -> str:
|
113
|
+
"""
|
114
|
+
Required. The Git branch pattern used for indexing in RE2 syntax.
|
115
|
+
See https://github.com/google/re2/wiki/syntax for syntax.
|
116
|
+
|
117
|
+
- - -
|
118
|
+
"""
|
119
|
+
return pulumi.get(self, "branch_pattern")
|
120
|
+
|
121
|
+
@property
|
122
|
+
@pulumi.getter
|
123
|
+
def resource(self) -> str:
|
124
|
+
"""
|
125
|
+
Required. The DeveloperConnect repository full resource name, relative resource name
|
126
|
+
or resource URL to be indexed.
|
127
|
+
"""
|
128
|
+
return pulumi.get(self, "resource")
|
129
|
+
|
130
|
+
|