pulumi-gcp 8.7.0a1729200523__py3-none-any.whl → 8.7.0a1730196225__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 +70 -0
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeters.py +2 -0
- pulumi_gcp/apigee/__init__.py +2 -0
- pulumi_gcp/apigee/_inputs.py +108 -0
- pulumi_gcp/apigee/app_group.py +811 -0
- pulumi_gcp/apigee/developer.py +757 -0
- pulumi_gcp/apigee/outputs.py +64 -0
- pulumi_gcp/artifactregistry/get_docker_image.py +40 -0
- pulumi_gcp/bigquery/connection.py +12 -12
- pulumi_gcp/bigquery/job.py +6 -6
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/service.py +92 -0
- pulumi_gcp/compute/_inputs.py +214 -116
- pulumi_gcp/compute/backend_service.py +76 -0
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_instance.py +29 -1
- pulumi_gcp/compute/get_instance_template.py +29 -1
- pulumi_gcp/compute/get_region_instance_group_manager.py +0 -18
- pulumi_gcp/compute/get_region_instance_template.py +29 -1
- pulumi_gcp/compute/instance.py +89 -0
- pulumi_gcp/compute/instance_from_machine_image.py +82 -0
- pulumi_gcp/compute/instance_from_template.py +82 -0
- pulumi_gcp/compute/instance_template.py +75 -0
- pulumi_gcp/compute/network_firewall_policy_association.py +76 -50
- pulumi_gcp/compute/network_firewall_policy_rule.py +149 -103
- pulumi_gcp/compute/outputs.py +170 -80
- pulumi_gcp/compute/region_backend_service.py +94 -0
- pulumi_gcp/compute/region_instance_template.py +75 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +6 -4
- pulumi_gcp/compute/region_network_firewall_policy_association.py +104 -54
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +160 -107
- pulumi_gcp/config/__init__.pyi +4 -0
- pulumi_gcp/config/vars.py +8 -0
- pulumi_gcp/container/attached_cluster.py +9 -6
- pulumi_gcp/container/outputs.py +2 -2
- pulumi_gcp/datastream/stream.py +2 -2
- pulumi_gcp/diagflow/_inputs.py +472 -2
- pulumi_gcp/diagflow/cx_agent.py +64 -4
- pulumi_gcp/diagflow/cx_flow.py +30 -0
- pulumi_gcp/diagflow/outputs.py +378 -2
- pulumi_gcp/gkehub/feature.py +2 -4
- pulumi_gcp/iam/workload_identity_pool_provider.py +56 -0
- pulumi_gcp/looker/instance.py +104 -2
- pulumi_gcp/monitoring/_inputs.py +23 -0
- pulumi_gcp/monitoring/get_secret_version.py +22 -3
- pulumi_gcp/monitoring/outputs.py +16 -0
- pulumi_gcp/networkconnectivity/__init__.py +1 -0
- pulumi_gcp/networkconnectivity/_inputs.py +148 -0
- pulumi_gcp/networkconnectivity/group.py +764 -0
- pulumi_gcp/networkconnectivity/outputs.py +125 -0
- pulumi_gcp/networkconnectivity/spoke.py +144 -0
- pulumi_gcp/networksecurity/server_tls_policy.py +2 -2
- pulumi_gcp/oracledatabase/__init__.py +20 -0
- pulumi_gcp/oracledatabase/_inputs.py +4745 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +983 -0
- pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +842 -0
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +1086 -0
- pulumi_gcp/oracledatabase/get_autonomous_database.py +290 -0
- pulumi_gcp/oracledatabase/get_autonomous_databases.py +150 -0
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +257 -0
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructures.py +150 -0
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +290 -0
- pulumi_gcp/oracledatabase/get_cloud_vm_clusters.py +150 -0
- pulumi_gcp/oracledatabase/get_db_nodes.py +245 -0
- pulumi_gcp/oracledatabase/get_db_servers.py +245 -0
- pulumi_gcp/oracledatabase/outputs.py +9304 -0
- pulumi_gcp/organizations/folder.py +7 -7
- pulumi_gcp/organizations/project.py +7 -7
- pulumi_gcp/orgpolicy/_inputs.py +3 -3
- pulumi_gcp/orgpolicy/outputs.py +2 -2
- pulumi_gcp/privilegedaccessmanager/get_entitlement.py +46 -2
- pulumi_gcp/provider.py +40 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/secretmanager/get_regional_secret_version.py +24 -5
- pulumi_gcp/secretmanager/get_regional_secret_version_access.py +24 -5
- pulumi_gcp/secretmanager/get_secret_version.py +22 -3
- pulumi_gcp/secretmanager/get_secret_version_access.py +22 -3
- pulumi_gcp/secretmanager/regional_secret.py +2 -2
- pulumi_gcp/siteverification/get_token.py +0 -16
- pulumi_gcp/siteverification/owner.py +0 -16
- pulumi_gcp/spanner/_inputs.py +29 -5
- pulumi_gcp/spanner/outputs.py +20 -3
- pulumi_gcp/sql/_inputs.py +6 -6
- pulumi_gcp/sql/outputs.py +4 -4
- pulumi_gcp/sql/user.py +28 -21
- pulumi_gcp/storage/_inputs.py +36 -0
- pulumi_gcp/storage/bucket.py +47 -0
- pulumi_gcp/storage/get_bucket.py +12 -1
- pulumi_gcp/storage/outputs.py +40 -0
- pulumi_gcp/transcoder/__init__.py +11 -0
- pulumi_gcp/transcoder/_inputs.py +3991 -0
- pulumi_gcp/transcoder/job.py +2134 -0
- pulumi_gcp/transcoder/job_template.py +1524 -0
- pulumi_gcp/transcoder/outputs.py +2918 -0
- pulumi_gcp/vertex/ai_deployment_resource_pool.py +2 -2
- pulumi_gcp/vmwareengine/_inputs.py +440 -0
- pulumi_gcp/vmwareengine/cluster.py +100 -2
- pulumi_gcp/vmwareengine/get_cluster.py +12 -1
- pulumi_gcp/vmwareengine/outputs.py +615 -0
- pulumi_gcp/workstations/_inputs.py +54 -0
- pulumi_gcp/workstations/outputs.py +32 -0
- pulumi_gcp/workstations/workstation_config.py +205 -0
- {pulumi_gcp-8.7.0a1729200523.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.7.0a1729200523.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/RECORD +111 -89
- {pulumi_gcp-8.7.0a1729200523.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.7.0a1729200523.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py
CHANGED
@@ -188,6 +188,8 @@ if typing.TYPE_CHECKING:
|
|
188
188
|
networkservices = __networkservices
|
189
189
|
import pulumi_gcp.notebooks as __notebooks
|
190
190
|
notebooks = __notebooks
|
191
|
+
import pulumi_gcp.oracledatabase as __oracledatabase
|
192
|
+
oracledatabase = __oracledatabase
|
191
193
|
import pulumi_gcp.organizations as __organizations
|
192
194
|
organizations = __organizations
|
193
195
|
import pulumi_gcp.orgpolicy as __orgpolicy
|
@@ -242,6 +244,8 @@ if typing.TYPE_CHECKING:
|
|
242
244
|
tags = __tags
|
243
245
|
import pulumi_gcp.tpu as __tpu
|
244
246
|
tpu = __tpu
|
247
|
+
import pulumi_gcp.transcoder as __transcoder
|
248
|
+
transcoder = __transcoder
|
245
249
|
import pulumi_gcp.vertex as __vertex
|
246
250
|
vertex = __vertex
|
247
251
|
import pulumi_gcp.vmwareengine as __vmwareengine
|
@@ -344,6 +348,7 @@ else:
|
|
344
348
|
networksecurity = _utilities.lazy_import('pulumi_gcp.networksecurity')
|
345
349
|
networkservices = _utilities.lazy_import('pulumi_gcp.networkservices')
|
346
350
|
notebooks = _utilities.lazy_import('pulumi_gcp.notebooks')
|
351
|
+
oracledatabase = _utilities.lazy_import('pulumi_gcp.oracledatabase')
|
347
352
|
organizations = _utilities.lazy_import('pulumi_gcp.organizations')
|
348
353
|
orgpolicy = _utilities.lazy_import('pulumi_gcp.orgpolicy')
|
349
354
|
osconfig = _utilities.lazy_import('pulumi_gcp.osconfig')
|
@@ -371,6 +376,7 @@ else:
|
|
371
376
|
storage = _utilities.lazy_import('pulumi_gcp.storage')
|
372
377
|
tags = _utilities.lazy_import('pulumi_gcp.tags')
|
373
378
|
tpu = _utilities.lazy_import('pulumi_gcp.tpu')
|
379
|
+
transcoder = _utilities.lazy_import('pulumi_gcp.transcoder')
|
374
380
|
vertex = _utilities.lazy_import('pulumi_gcp.vertex')
|
375
381
|
vmwareengine = _utilities.lazy_import('pulumi_gcp.vmwareengine')
|
376
382
|
vpcaccess = _utilities.lazy_import('pulumi_gcp.vpcaccess')
|
@@ -693,6 +699,22 @@ _utilities.register(
|
|
693
699
|
"gcp:apigee/addonsConfig:AddonsConfig": "AddonsConfig"
|
694
700
|
}
|
695
701
|
},
|
702
|
+
{
|
703
|
+
"pkg": "gcp",
|
704
|
+
"mod": "apigee/appGroup",
|
705
|
+
"fqn": "pulumi_gcp.apigee",
|
706
|
+
"classes": {
|
707
|
+
"gcp:apigee/appGroup:AppGroup": "AppGroup"
|
708
|
+
}
|
709
|
+
},
|
710
|
+
{
|
711
|
+
"pkg": "gcp",
|
712
|
+
"mod": "apigee/developer",
|
713
|
+
"fqn": "pulumi_gcp.apigee",
|
714
|
+
"classes": {
|
715
|
+
"gcp:apigee/developer:Developer": "Developer"
|
716
|
+
}
|
717
|
+
},
|
696
718
|
{
|
697
719
|
"pkg": "gcp",
|
698
720
|
"mod": "apigee/endpointAttachment",
|
@@ -6205,6 +6227,14 @@ _utilities.register(
|
|
6205
6227
|
"gcp:netapp/volumeSnapshot:VolumeSnapshot": "VolumeSnapshot"
|
6206
6228
|
}
|
6207
6229
|
},
|
6230
|
+
{
|
6231
|
+
"pkg": "gcp",
|
6232
|
+
"mod": "networkconnectivity/group",
|
6233
|
+
"fqn": "pulumi_gcp.networkconnectivity",
|
6234
|
+
"classes": {
|
6235
|
+
"gcp:networkconnectivity/group:Group": "Group"
|
6236
|
+
}
|
6237
|
+
},
|
6208
6238
|
{
|
6209
6239
|
"pkg": "gcp",
|
6210
6240
|
"mod": "networkconnectivity/hub",
|
@@ -6573,6 +6603,30 @@ _utilities.register(
|
|
6573
6603
|
"gcp:notebooks/runtimeIamPolicy:RuntimeIamPolicy": "RuntimeIamPolicy"
|
6574
6604
|
}
|
6575
6605
|
},
|
6606
|
+
{
|
6607
|
+
"pkg": "gcp",
|
6608
|
+
"mod": "oracledatabase/autonomousDatabase",
|
6609
|
+
"fqn": "pulumi_gcp.oracledatabase",
|
6610
|
+
"classes": {
|
6611
|
+
"gcp:oracledatabase/autonomousDatabase:AutonomousDatabase": "AutonomousDatabase"
|
6612
|
+
}
|
6613
|
+
},
|
6614
|
+
{
|
6615
|
+
"pkg": "gcp",
|
6616
|
+
"mod": "oracledatabase/cloudExadataInfrastructure",
|
6617
|
+
"fqn": "pulumi_gcp.oracledatabase",
|
6618
|
+
"classes": {
|
6619
|
+
"gcp:oracledatabase/cloudExadataInfrastructure:CloudExadataInfrastructure": "CloudExadataInfrastructure"
|
6620
|
+
}
|
6621
|
+
},
|
6622
|
+
{
|
6623
|
+
"pkg": "gcp",
|
6624
|
+
"mod": "oracledatabase/cloudVmCluster",
|
6625
|
+
"fqn": "pulumi_gcp.oracledatabase",
|
6626
|
+
"classes": {
|
6627
|
+
"gcp:oracledatabase/cloudVmCluster:CloudVmCluster": "CloudVmCluster"
|
6628
|
+
}
|
6629
|
+
},
|
6576
6630
|
{
|
6577
6631
|
"pkg": "gcp",
|
6578
6632
|
"mod": "organizations/accessApprovalSettings",
|
@@ -8029,6 +8083,22 @@ _utilities.register(
|
|
8029
8083
|
"gcp:tpu/v2Vm:V2Vm": "V2Vm"
|
8030
8084
|
}
|
8031
8085
|
},
|
8086
|
+
{
|
8087
|
+
"pkg": "gcp",
|
8088
|
+
"mod": "transcoder/job",
|
8089
|
+
"fqn": "pulumi_gcp.transcoder",
|
8090
|
+
"classes": {
|
8091
|
+
"gcp:transcoder/job:Job": "Job"
|
8092
|
+
}
|
8093
|
+
},
|
8094
|
+
{
|
8095
|
+
"pkg": "gcp",
|
8096
|
+
"mod": "transcoder/jobTemplate",
|
8097
|
+
"fqn": "pulumi_gcp.transcoder",
|
8098
|
+
"classes": {
|
8099
|
+
"gcp:transcoder/jobTemplate:JobTemplate": "JobTemplate"
|
8100
|
+
}
|
8101
|
+
},
|
8032
8102
|
{
|
8033
8103
|
"pkg": "gcp",
|
8034
8104
|
"mod": "vertex/aiDataset",
|
@@ -497,6 +497,7 @@ class ServicePerimeter(pulumi.CustomResource):
|
|
497
497
|
|
498
498
|
* [API documentation](https://cloud.google.com/access-context-manager/docs/reference/rest/v1/accessPolicies.servicePerimeters)
|
499
499
|
* How-to Guides
|
500
|
+
* [Guide to Ingress and Egress Rules](https://cloud.google.com/vpc-service-controls/docs/ingress-egress-rules)
|
500
501
|
* [Service Perimeter Quickstart](https://cloud.google.com/vpc-service-controls/docs/quickstart)
|
501
502
|
|
502
503
|
> **Warning:** If you are using User ADCs (Application Default Credentials) with this resource,
|
@@ -754,6 +755,7 @@ class ServicePerimeter(pulumi.CustomResource):
|
|
754
755
|
|
755
756
|
* [API documentation](https://cloud.google.com/access-context-manager/docs/reference/rest/v1/accessPolicies.servicePerimeters)
|
756
757
|
* How-to Guides
|
758
|
+
* [Guide to Ingress and Egress Rules](https://cloud.google.com/vpc-service-controls/docs/ingress-egress-rules)
|
757
759
|
* [Service Perimeter Quickstart](https://cloud.google.com/vpc-service-controls/docs/quickstart)
|
758
760
|
|
759
761
|
> **Warning:** If you are using User ADCs (Application Default Credentials) with this resource,
|
@@ -179,6 +179,8 @@ class ServicePerimeterDryRunEgressPolicy(pulumi.CustomResource):
|
|
179
179
|
To get more information about ServicePerimeterDryRunEgressPolicy, see:
|
180
180
|
|
181
181
|
* [API documentation](https://cloud.google.com/access-context-manager/docs/reference/rest/v1/accessPolicies.servicePerimeters#egresspolicy)
|
182
|
+
* How-to Guides
|
183
|
+
* [Guide to Ingress and Egress Rules](https://cloud.google.com/vpc-service-controls/docs/ingress-egress-rules)
|
182
184
|
|
183
185
|
## Example Usage
|
184
186
|
|
@@ -217,6 +219,8 @@ class ServicePerimeterDryRunEgressPolicy(pulumi.CustomResource):
|
|
217
219
|
To get more information about ServicePerimeterDryRunEgressPolicy, see:
|
218
220
|
|
219
221
|
* [API documentation](https://cloud.google.com/access-context-manager/docs/reference/rest/v1/accessPolicies.servicePerimeters#egresspolicy)
|
222
|
+
* How-to Guides
|
223
|
+
* [Guide to Ingress and Egress Rules](https://cloud.google.com/vpc-service-controls/docs/ingress-egress-rules)
|
220
224
|
|
221
225
|
## Example Usage
|
222
226
|
|
@@ -184,6 +184,8 @@ class ServicePerimeterDryRunIngressPolicy(pulumi.CustomResource):
|
|
184
184
|
To get more information about ServicePerimeterDryRunIngressPolicy, see:
|
185
185
|
|
186
186
|
* [API documentation](https://cloud.google.com/access-context-manager/docs/reference/rest/v1/accessPolicies.servicePerimeters#ingresspolicy)
|
187
|
+
* How-to Guides
|
188
|
+
* [Guide to Ingress and Egress Rules](https://cloud.google.com/vpc-service-controls/docs/ingress-egress-rules)
|
187
189
|
|
188
190
|
## Example Usage
|
189
191
|
|
@@ -224,6 +226,8 @@ class ServicePerimeterDryRunIngressPolicy(pulumi.CustomResource):
|
|
224
226
|
To get more information about ServicePerimeterDryRunIngressPolicy, see:
|
225
227
|
|
226
228
|
* [API documentation](https://cloud.google.com/access-context-manager/docs/reference/rest/v1/accessPolicies.servicePerimeters#ingresspolicy)
|
229
|
+
* How-to Guides
|
230
|
+
* [Guide to Ingress and Egress Rules](https://cloud.google.com/vpc-service-controls/docs/ingress-egress-rules)
|
227
231
|
|
228
232
|
## Example Usage
|
229
233
|
|
@@ -179,6 +179,8 @@ class ServicePerimeterEgressPolicy(pulumi.CustomResource):
|
|
179
179
|
To get more information about ServicePerimeterEgressPolicy, see:
|
180
180
|
|
181
181
|
* [API documentation](https://cloud.google.com/access-context-manager/docs/reference/rest/v1/accessPolicies.servicePerimeters#egresspolicy)
|
182
|
+
* How-to Guides
|
183
|
+
* [Guide to Ingress and Egress Rules](https://cloud.google.com/vpc-service-controls/docs/ingress-egress-rules)
|
182
184
|
|
183
185
|
## Example Usage
|
184
186
|
|
@@ -217,6 +219,8 @@ class ServicePerimeterEgressPolicy(pulumi.CustomResource):
|
|
217
219
|
To get more information about ServicePerimeterEgressPolicy, see:
|
218
220
|
|
219
221
|
* [API documentation](https://cloud.google.com/access-context-manager/docs/reference/rest/v1/accessPolicies.servicePerimeters#egresspolicy)
|
222
|
+
* How-to Guides
|
223
|
+
* [Guide to Ingress and Egress Rules](https://cloud.google.com/vpc-service-controls/docs/ingress-egress-rules)
|
220
224
|
|
221
225
|
## Example Usage
|
222
226
|
|
@@ -184,6 +184,8 @@ class ServicePerimeterIngressPolicy(pulumi.CustomResource):
|
|
184
184
|
To get more information about ServicePerimeterIngressPolicy, see:
|
185
185
|
|
186
186
|
* [API documentation](https://cloud.google.com/access-context-manager/docs/reference/rest/v1/accessPolicies.servicePerimeters#ingresspolicy)
|
187
|
+
* How-to Guides
|
188
|
+
* [Guide to Ingress and Egress Rules](https://cloud.google.com/vpc-service-controls/docs/ingress-egress-rules)
|
187
189
|
|
188
190
|
## Example Usage
|
189
191
|
|
@@ -224,6 +226,8 @@ class ServicePerimeterIngressPolicy(pulumi.CustomResource):
|
|
224
226
|
To get more information about ServicePerimeterIngressPolicy, see:
|
225
227
|
|
226
228
|
* [API documentation](https://cloud.google.com/access-context-manager/docs/reference/rest/v1/accessPolicies.servicePerimeters#ingresspolicy)
|
229
|
+
* How-to Guides
|
230
|
+
* [Guide to Ingress and Egress Rules](https://cloud.google.com/vpc-service-controls/docs/ingress-egress-rules)
|
227
231
|
|
228
232
|
## Example Usage
|
229
233
|
|
@@ -134,6 +134,7 @@ class ServicePerimeters(pulumi.CustomResource):
|
|
134
134
|
|
135
135
|
* [API documentation](https://cloud.google.com/access-context-manager/docs/reference/rest/v1/accessPolicies.servicePerimeters)
|
136
136
|
* How-to Guides
|
137
|
+
* [Guide to Ingress and Egress Rules](https://cloud.google.com/vpc-service-controls/docs/ingress-egress-rules)
|
137
138
|
* [Service Perimeter Quickstart](https://cloud.google.com/vpc-service-controls/docs/quickstart)
|
138
139
|
|
139
140
|
## Example Usage
|
@@ -229,6 +230,7 @@ class ServicePerimeters(pulumi.CustomResource):
|
|
229
230
|
|
230
231
|
* [API documentation](https://cloud.google.com/access-context-manager/docs/reference/rest/v1/accessPolicies.servicePerimeters)
|
231
232
|
* How-to Guides
|
233
|
+
* [Guide to Ingress and Egress Rules](https://cloud.google.com/vpc-service-controls/docs/ingress-egress-rules)
|
232
234
|
* [Service Perimeter Quickstart](https://cloud.google.com/vpc-service-controls/docs/quickstart)
|
233
235
|
|
234
236
|
## Example Usage
|
pulumi_gcp/apigee/__init__.py
CHANGED
@@ -6,6 +6,8 @@ from .. import _utilities
|
|
6
6
|
import typing
|
7
7
|
# Export this package's modules as members:
|
8
8
|
from .addons_config import *
|
9
|
+
from .app_group import *
|
10
|
+
from .developer import *
|
9
11
|
from .endpoint_attachment import *
|
10
12
|
from .env_group import *
|
11
13
|
from .env_group_attachment import *
|
pulumi_gcp/apigee/_inputs.py
CHANGED
@@ -27,6 +27,10 @@ __all__ = [
|
|
27
27
|
'AddonsConfigAddonsConfigIntegrationConfigArgsDict',
|
28
28
|
'AddonsConfigAddonsConfigMonetizationConfigArgs',
|
29
29
|
'AddonsConfigAddonsConfigMonetizationConfigArgsDict',
|
30
|
+
'AppGroupAttributeArgs',
|
31
|
+
'AppGroupAttributeArgsDict',
|
32
|
+
'DeveloperAttributeArgs',
|
33
|
+
'DeveloperAttributeArgsDict',
|
30
34
|
'EnvironmentIamBindingConditionArgs',
|
31
35
|
'EnvironmentIamBindingConditionArgsDict',
|
32
36
|
'EnvironmentIamMemberConditionArgs',
|
@@ -396,6 +400,110 @@ class AddonsConfigAddonsConfigMonetizationConfigArgs:
|
|
396
400
|
pulumi.set(self, "enabled", value)
|
397
401
|
|
398
402
|
|
403
|
+
if not MYPY:
|
404
|
+
class AppGroupAttributeArgsDict(TypedDict):
|
405
|
+
name: NotRequired[pulumi.Input[str]]
|
406
|
+
"""
|
407
|
+
Key of the attribute
|
408
|
+
"""
|
409
|
+
value: NotRequired[pulumi.Input[str]]
|
410
|
+
"""
|
411
|
+
Value of the attribute
|
412
|
+
"""
|
413
|
+
elif False:
|
414
|
+
AppGroupAttributeArgsDict: TypeAlias = Mapping[str, Any]
|
415
|
+
|
416
|
+
@pulumi.input_type
|
417
|
+
class AppGroupAttributeArgs:
|
418
|
+
def __init__(__self__, *,
|
419
|
+
name: Optional[pulumi.Input[str]] = None,
|
420
|
+
value: Optional[pulumi.Input[str]] = None):
|
421
|
+
"""
|
422
|
+
:param pulumi.Input[str] name: Key of the attribute
|
423
|
+
:param pulumi.Input[str] value: Value of the attribute
|
424
|
+
"""
|
425
|
+
if name is not None:
|
426
|
+
pulumi.set(__self__, "name", name)
|
427
|
+
if value is not None:
|
428
|
+
pulumi.set(__self__, "value", value)
|
429
|
+
|
430
|
+
@property
|
431
|
+
@pulumi.getter
|
432
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
433
|
+
"""
|
434
|
+
Key of the attribute
|
435
|
+
"""
|
436
|
+
return pulumi.get(self, "name")
|
437
|
+
|
438
|
+
@name.setter
|
439
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
440
|
+
pulumi.set(self, "name", value)
|
441
|
+
|
442
|
+
@property
|
443
|
+
@pulumi.getter
|
444
|
+
def value(self) -> Optional[pulumi.Input[str]]:
|
445
|
+
"""
|
446
|
+
Value of the attribute
|
447
|
+
"""
|
448
|
+
return pulumi.get(self, "value")
|
449
|
+
|
450
|
+
@value.setter
|
451
|
+
def value(self, value: Optional[pulumi.Input[str]]):
|
452
|
+
pulumi.set(self, "value", value)
|
453
|
+
|
454
|
+
|
455
|
+
if not MYPY:
|
456
|
+
class DeveloperAttributeArgsDict(TypedDict):
|
457
|
+
name: NotRequired[pulumi.Input[str]]
|
458
|
+
"""
|
459
|
+
Key of the attribute
|
460
|
+
"""
|
461
|
+
value: NotRequired[pulumi.Input[str]]
|
462
|
+
"""
|
463
|
+
Value of the attribute
|
464
|
+
"""
|
465
|
+
elif False:
|
466
|
+
DeveloperAttributeArgsDict: TypeAlias = Mapping[str, Any]
|
467
|
+
|
468
|
+
@pulumi.input_type
|
469
|
+
class DeveloperAttributeArgs:
|
470
|
+
def __init__(__self__, *,
|
471
|
+
name: Optional[pulumi.Input[str]] = None,
|
472
|
+
value: Optional[pulumi.Input[str]] = None):
|
473
|
+
"""
|
474
|
+
:param pulumi.Input[str] name: Key of the attribute
|
475
|
+
:param pulumi.Input[str] value: Value of the attribute
|
476
|
+
"""
|
477
|
+
if name is not None:
|
478
|
+
pulumi.set(__self__, "name", name)
|
479
|
+
if value is not None:
|
480
|
+
pulumi.set(__self__, "value", value)
|
481
|
+
|
482
|
+
@property
|
483
|
+
@pulumi.getter
|
484
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
485
|
+
"""
|
486
|
+
Key of the attribute
|
487
|
+
"""
|
488
|
+
return pulumi.get(self, "name")
|
489
|
+
|
490
|
+
@name.setter
|
491
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
492
|
+
pulumi.set(self, "name", value)
|
493
|
+
|
494
|
+
@property
|
495
|
+
@pulumi.getter
|
496
|
+
def value(self) -> Optional[pulumi.Input[str]]:
|
497
|
+
"""
|
498
|
+
Value of the attribute
|
499
|
+
"""
|
500
|
+
return pulumi.get(self, "value")
|
501
|
+
|
502
|
+
@value.setter
|
503
|
+
def value(self, value: Optional[pulumi.Input[str]]):
|
504
|
+
pulumi.set(self, "value", value)
|
505
|
+
|
506
|
+
|
399
507
|
if not MYPY:
|
400
508
|
class EnvironmentIamBindingConditionArgsDict(TypedDict):
|
401
509
|
expression: pulumi.Input[str]
|