pulumi-gcp 8.40.0a1754721948__py3-none-any.whl → 8.40.0a1754951145__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.40.0a1754951145.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/RECORD +157 -138
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py
CHANGED
@@ -732,6 +732,14 @@ _utilities.register(
|
|
732
732
|
"gcp:apigee/api:Api": "Api"
|
733
733
|
}
|
734
734
|
},
|
735
|
+
{
|
736
|
+
"pkg": "gcp",
|
737
|
+
"mod": "apigee/apiProduct",
|
738
|
+
"fqn": "pulumi_gcp.apigee",
|
739
|
+
"classes": {
|
740
|
+
"gcp:apigee/apiProduct:ApiProduct": "ApiProduct"
|
741
|
+
}
|
742
|
+
},
|
735
743
|
{
|
736
744
|
"pkg": "gcp",
|
737
745
|
"mod": "apigee/appGroup",
|
@@ -924,6 +932,14 @@ _utilities.register(
|
|
924
932
|
"gcp:apigee/organization:Organization": "Organization"
|
925
933
|
}
|
926
934
|
},
|
935
|
+
{
|
936
|
+
"pkg": "gcp",
|
937
|
+
"mod": "apigee/securityAction",
|
938
|
+
"fqn": "pulumi_gcp.apigee",
|
939
|
+
"classes": {
|
940
|
+
"gcp:apigee/securityAction:SecurityAction": "SecurityAction"
|
941
|
+
}
|
942
|
+
},
|
927
943
|
{
|
928
944
|
"pkg": "gcp",
|
929
945
|
"mod": "apigee/securityMonitoringCondition",
|
@@ -1716,6 +1732,14 @@ _utilities.register(
|
|
1716
1732
|
"gcp:bigtable/materializedView:MaterializedView": "MaterializedView"
|
1717
1733
|
}
|
1718
1734
|
},
|
1735
|
+
{
|
1736
|
+
"pkg": "gcp",
|
1737
|
+
"mod": "bigtable/schemaBundle",
|
1738
|
+
"fqn": "pulumi_gcp.bigtable",
|
1739
|
+
"classes": {
|
1740
|
+
"gcp:bigtable/schemaBundle:SchemaBundle": "SchemaBundle"
|
1741
|
+
}
|
1742
|
+
},
|
1719
1743
|
{
|
1720
1744
|
"pkg": "gcp",
|
1721
1745
|
"mod": "bigtable/table",
|
@@ -3316,6 +3340,14 @@ _utilities.register(
|
|
3316
3340
|
"gcp:compute/perInstanceConfig:PerInstanceConfig": "PerInstanceConfig"
|
3317
3341
|
}
|
3318
3342
|
},
|
3343
|
+
{
|
3344
|
+
"pkg": "gcp",
|
3345
|
+
"mod": "compute/previewFeature",
|
3346
|
+
"fqn": "pulumi_gcp.compute",
|
3347
|
+
"classes": {
|
3348
|
+
"gcp:compute/previewFeature:PreviewFeature": "PreviewFeature"
|
3349
|
+
}
|
3350
|
+
},
|
3319
3351
|
{
|
3320
3352
|
"pkg": "gcp",
|
3321
3353
|
"mod": "compute/projectCloudArmorTier",
|
@@ -4988,6 +5020,14 @@ _utilities.register(
|
|
4988
5020
|
"gcp:developerconnect/gitRepositoryLink:GitRepositoryLink": "GitRepositoryLink"
|
4989
5021
|
}
|
4990
5022
|
},
|
5023
|
+
{
|
5024
|
+
"pkg": "gcp",
|
5025
|
+
"mod": "developerconnect/insightsConfig",
|
5026
|
+
"fqn": "pulumi_gcp.developerconnect",
|
5027
|
+
"classes": {
|
5028
|
+
"gcp:developerconnect/insightsConfig:InsightsConfig": "InsightsConfig"
|
5029
|
+
}
|
5030
|
+
},
|
4991
5031
|
{
|
4992
5032
|
"pkg": "gcp",
|
4993
5033
|
"mod": "diagflow/agent",
|
@@ -5036,6 +5076,14 @@ _utilities.register(
|
|
5036
5076
|
"gcp:diagflow/cxGenerativeSettings:CxGenerativeSettings": "CxGenerativeSettings"
|
5037
5077
|
}
|
5038
5078
|
},
|
5079
|
+
{
|
5080
|
+
"pkg": "gcp",
|
5081
|
+
"mod": "diagflow/cxGenerator",
|
5082
|
+
"fqn": "pulumi_gcp.diagflow",
|
5083
|
+
"classes": {
|
5084
|
+
"gcp:diagflow/cxGenerator:CxGenerator": "CxGenerator"
|
5085
|
+
}
|
5086
|
+
},
|
5039
5087
|
{
|
5040
5088
|
"pkg": "gcp",
|
5041
5089
|
"mod": "diagflow/cxIntent",
|
@@ -5132,6 +5180,14 @@ _utilities.register(
|
|
5132
5180
|
"gcp:discoveryengine/chatEngine:ChatEngine": "ChatEngine"
|
5133
5181
|
}
|
5134
5182
|
},
|
5183
|
+
{
|
5184
|
+
"pkg": "gcp",
|
5185
|
+
"mod": "discoveryengine/cmekConfig",
|
5186
|
+
"fqn": "pulumi_gcp.discoveryengine",
|
5187
|
+
"classes": {
|
5188
|
+
"gcp:discoveryengine/cmekConfig:CmekConfig": "CmekConfig"
|
5189
|
+
}
|
5190
|
+
},
|
5135
5191
|
{
|
5136
5192
|
"pkg": "gcp",
|
5137
5193
|
"mod": "discoveryengine/dataStore",
|
@@ -5140,6 +5196,14 @@ _utilities.register(
|
|
5140
5196
|
"gcp:discoveryengine/dataStore:DataStore": "DataStore"
|
5141
5197
|
}
|
5142
5198
|
},
|
5199
|
+
{
|
5200
|
+
"pkg": "gcp",
|
5201
|
+
"mod": "discoveryengine/recommendationEngine",
|
5202
|
+
"fqn": "pulumi_gcp.discoveryengine",
|
5203
|
+
"classes": {
|
5204
|
+
"gcp:discoveryengine/recommendationEngine:RecommendationEngine": "RecommendationEngine"
|
5205
|
+
}
|
5206
|
+
},
|
5143
5207
|
{
|
5144
5208
|
"pkg": "gcp",
|
5145
5209
|
"mod": "discoveryengine/schema",
|
@@ -6412,6 +6476,30 @@ _utilities.register(
|
|
6412
6476
|
"gcp:iam/workforcePool:WorkforcePool": "WorkforcePool"
|
6413
6477
|
}
|
6414
6478
|
},
|
6479
|
+
{
|
6480
|
+
"pkg": "gcp",
|
6481
|
+
"mod": "iam/workforcePoolIamBinding",
|
6482
|
+
"fqn": "pulumi_gcp.iam",
|
6483
|
+
"classes": {
|
6484
|
+
"gcp:iam/workforcePoolIamBinding:WorkforcePoolIamBinding": "WorkforcePoolIamBinding"
|
6485
|
+
}
|
6486
|
+
},
|
6487
|
+
{
|
6488
|
+
"pkg": "gcp",
|
6489
|
+
"mod": "iam/workforcePoolIamMember",
|
6490
|
+
"fqn": "pulumi_gcp.iam",
|
6491
|
+
"classes": {
|
6492
|
+
"gcp:iam/workforcePoolIamMember:WorkforcePoolIamMember": "WorkforcePoolIamMember"
|
6493
|
+
}
|
6494
|
+
},
|
6495
|
+
{
|
6496
|
+
"pkg": "gcp",
|
6497
|
+
"mod": "iam/workforcePoolIamPolicy",
|
6498
|
+
"fqn": "pulumi_gcp.iam",
|
6499
|
+
"classes": {
|
6500
|
+
"gcp:iam/workforcePoolIamPolicy:WorkforcePoolIamPolicy": "WorkforcePoolIamPolicy"
|
6501
|
+
}
|
6502
|
+
},
|
6415
6503
|
{
|
6416
6504
|
"pkg": "gcp",
|
6417
6505
|
"mod": "iam/workforcePoolProvider",
|
@@ -7276,6 +7364,14 @@ _utilities.register(
|
|
7276
7364
|
"gcp:ml/engineModel:EngineModel": "EngineModel"
|
7277
7365
|
}
|
7278
7366
|
},
|
7367
|
+
{
|
7368
|
+
"pkg": "gcp",
|
7369
|
+
"mod": "modelarmor/floorsetting",
|
7370
|
+
"fqn": "pulumi_gcp.modelarmor",
|
7371
|
+
"classes": {
|
7372
|
+
"gcp:modelarmor/floorsetting:Floorsetting": "Floorsetting"
|
7373
|
+
}
|
7374
|
+
},
|
7279
7375
|
{
|
7280
7376
|
"pkg": "gcp",
|
7281
7377
|
"mod": "modelarmor/template",
|
@@ -7940,6 +8036,22 @@ _utilities.register(
|
|
7940
8036
|
"gcp:oracledatabase/cloudVmCluster:CloudVmCluster": "CloudVmCluster"
|
7941
8037
|
}
|
7942
8038
|
},
|
8039
|
+
{
|
8040
|
+
"pkg": "gcp",
|
8041
|
+
"mod": "oracledatabase/odbNetwork",
|
8042
|
+
"fqn": "pulumi_gcp.oracledatabase",
|
8043
|
+
"classes": {
|
8044
|
+
"gcp:oracledatabase/odbNetwork:OdbNetwork": "OdbNetwork"
|
8045
|
+
}
|
8046
|
+
},
|
8047
|
+
{
|
8048
|
+
"pkg": "gcp",
|
8049
|
+
"mod": "oracledatabase/odbSubnet",
|
8050
|
+
"fqn": "pulumi_gcp.oracledatabase",
|
8051
|
+
"classes": {
|
8052
|
+
"gcp:oracledatabase/odbSubnet:OdbSubnet": "OdbSubnet"
|
8053
|
+
}
|
8054
|
+
},
|
7943
8055
|
{
|
7944
8056
|
"pkg": "gcp",
|
7945
8057
|
"mod": "organizations/accessApprovalSettings",
|
@@ -9348,6 +9460,14 @@ _utilities.register(
|
|
9348
9460
|
"gcp:storage/hmacKey:HmacKey": "HmacKey"
|
9349
9461
|
}
|
9350
9462
|
},
|
9463
|
+
{
|
9464
|
+
"pkg": "gcp",
|
9465
|
+
"mod": "storage/insightsDatasetConfig",
|
9466
|
+
"fqn": "pulumi_gcp.storage",
|
9467
|
+
"classes": {
|
9468
|
+
"gcp:storage/insightsDatasetConfig:InsightsDatasetConfig": "InsightsDatasetConfig"
|
9469
|
+
}
|
9470
|
+
},
|
9351
9471
|
{
|
9352
9472
|
"pkg": "gcp",
|
9353
9473
|
"mod": "storage/insightsReportConfig",
|
@@ -9596,6 +9716,14 @@ _utilities.register(
|
|
9596
9716
|
"gcp:vertex/aiEndpointIamPolicy:AiEndpointIamPolicy": "AiEndpointIamPolicy"
|
9597
9717
|
}
|
9598
9718
|
},
|
9719
|
+
{
|
9720
|
+
"pkg": "gcp",
|
9721
|
+
"mod": "vertex/aiEndpointWithModelGardenDeployment",
|
9722
|
+
"fqn": "pulumi_gcp.vertex",
|
9723
|
+
"classes": {
|
9724
|
+
"gcp:vertex/aiEndpointWithModelGardenDeployment:AiEndpointWithModelGardenDeployment": "AiEndpointWithModelGardenDeployment"
|
9725
|
+
}
|
9726
|
+
},
|
9599
9727
|
{
|
9600
9728
|
"pkg": "gcp",
|
9601
9729
|
"mod": "vertex/aiFeatureGroup",
|
@@ -2565,7 +2565,7 @@ if not MYPY:
|
|
2565
2565
|
class GcpUserAccessBindingScopedAccessSettingScopeClientScopeArgsDict(TypedDict):
|
2566
2566
|
restricted_client_application: NotRequired[pulumi.Input['GcpUserAccessBindingScopedAccessSettingScopeClientScopeRestrictedClientApplicationArgsDict']]
|
2567
2567
|
"""
|
2568
|
-
Optional. The application that is subject to this binding's scope.
|
2568
|
+
Optional. The application that is subject to this binding's scope. Only one of clientId or name should be specified.
|
2569
2569
|
Structure is documented below.
|
2570
2570
|
"""
|
2571
2571
|
elif False:
|
@@ -2576,7 +2576,7 @@ class GcpUserAccessBindingScopedAccessSettingScopeClientScopeArgs:
|
|
2576
2576
|
def __init__(__self__, *,
|
2577
2577
|
restricted_client_application: Optional[pulumi.Input['GcpUserAccessBindingScopedAccessSettingScopeClientScopeRestrictedClientApplicationArgs']] = None):
|
2578
2578
|
"""
|
2579
|
-
:param pulumi.Input['GcpUserAccessBindingScopedAccessSettingScopeClientScopeRestrictedClientApplicationArgs'] restricted_client_application: Optional. The application that is subject to this binding's scope.
|
2579
|
+
:param pulumi.Input['GcpUserAccessBindingScopedAccessSettingScopeClientScopeRestrictedClientApplicationArgs'] restricted_client_application: Optional. The application that is subject to this binding's scope. Only one of clientId or name should be specified.
|
2580
2580
|
Structure is documented below.
|
2581
2581
|
"""
|
2582
2582
|
if restricted_client_application is not None:
|
@@ -2586,7 +2586,7 @@ class GcpUserAccessBindingScopedAccessSettingScopeClientScopeArgs:
|
|
2586
2586
|
@pulumi.getter(name="restrictedClientApplication")
|
2587
2587
|
def restricted_client_application(self) -> Optional[pulumi.Input['GcpUserAccessBindingScopedAccessSettingScopeClientScopeRestrictedClientApplicationArgs']]:
|
2588
2588
|
"""
|
2589
|
-
Optional. The application that is subject to this binding's scope.
|
2589
|
+
Optional. The application that is subject to this binding's scope. Only one of clientId or name should be specified.
|
2590
2590
|
Structure is documented below.
|
2591
2591
|
"""
|
2592
2592
|
return pulumi.get(self, "restricted_client_application")
|
@@ -2602,18 +2602,26 @@ if not MYPY:
|
|
2602
2602
|
"""
|
2603
2603
|
The OAuth client ID of the application.
|
2604
2604
|
"""
|
2605
|
+
name: NotRequired[pulumi.Input[_builtins.str]]
|
2606
|
+
"""
|
2607
|
+
The name of the application. Example: "Cloud Console"
|
2608
|
+
"""
|
2605
2609
|
elif False:
|
2606
2610
|
GcpUserAccessBindingScopedAccessSettingScopeClientScopeRestrictedClientApplicationArgsDict: TypeAlias = Mapping[str, Any]
|
2607
2611
|
|
2608
2612
|
@pulumi.input_type
|
2609
2613
|
class GcpUserAccessBindingScopedAccessSettingScopeClientScopeRestrictedClientApplicationArgs:
|
2610
2614
|
def __init__(__self__, *,
|
2611
|
-
client_id: Optional[pulumi.Input[_builtins.str]] = None
|
2615
|
+
client_id: Optional[pulumi.Input[_builtins.str]] = None,
|
2616
|
+
name: Optional[pulumi.Input[_builtins.str]] = None):
|
2612
2617
|
"""
|
2613
2618
|
:param pulumi.Input[_builtins.str] client_id: The OAuth client ID of the application.
|
2619
|
+
:param pulumi.Input[_builtins.str] name: The name of the application. Example: "Cloud Console"
|
2614
2620
|
"""
|
2615
2621
|
if client_id is not None:
|
2616
2622
|
pulumi.set(__self__, "client_id", client_id)
|
2623
|
+
if name is not None:
|
2624
|
+
pulumi.set(__self__, "name", name)
|
2617
2625
|
|
2618
2626
|
@_builtins.property
|
2619
2627
|
@pulumi.getter(name="clientId")
|
@@ -2627,6 +2635,18 @@ class GcpUserAccessBindingScopedAccessSettingScopeClientScopeRestrictedClientApp
|
|
2627
2635
|
def client_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2628
2636
|
pulumi.set(self, "client_id", value)
|
2629
2637
|
|
2638
|
+
@_builtins.property
|
2639
|
+
@pulumi.getter
|
2640
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
2641
|
+
"""
|
2642
|
+
The name of the application. Example: "Cloud Console"
|
2643
|
+
"""
|
2644
|
+
return pulumi.get(self, "name")
|
2645
|
+
|
2646
|
+
@name.setter
|
2647
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2648
|
+
pulumi.set(self, "name", value)
|
2649
|
+
|
2630
2650
|
|
2631
2651
|
if not MYPY:
|
2632
2652
|
class GcpUserAccessBindingSessionSettingsArgsDict(TypedDict):
|
@@ -1973,7 +1973,7 @@ class GcpUserAccessBindingScopedAccessSettingScopeClientScope(dict):
|
|
1973
1973
|
def __init__(__self__, *,
|
1974
1974
|
restricted_client_application: Optional['outputs.GcpUserAccessBindingScopedAccessSettingScopeClientScopeRestrictedClientApplication'] = None):
|
1975
1975
|
"""
|
1976
|
-
:param 'GcpUserAccessBindingScopedAccessSettingScopeClientScopeRestrictedClientApplicationArgs' restricted_client_application: Optional. The application that is subject to this binding's scope.
|
1976
|
+
:param 'GcpUserAccessBindingScopedAccessSettingScopeClientScopeRestrictedClientApplicationArgs' restricted_client_application: Optional. The application that is subject to this binding's scope. Only one of clientId or name should be specified.
|
1977
1977
|
Structure is documented below.
|
1978
1978
|
"""
|
1979
1979
|
if restricted_client_application is not None:
|
@@ -1983,7 +1983,7 @@ class GcpUserAccessBindingScopedAccessSettingScopeClientScope(dict):
|
|
1983
1983
|
@pulumi.getter(name="restrictedClientApplication")
|
1984
1984
|
def restricted_client_application(self) -> Optional['outputs.GcpUserAccessBindingScopedAccessSettingScopeClientScopeRestrictedClientApplication']:
|
1985
1985
|
"""
|
1986
|
-
Optional. The application that is subject to this binding's scope.
|
1986
|
+
Optional. The application that is subject to this binding's scope. Only one of clientId or name should be specified.
|
1987
1987
|
Structure is documented below.
|
1988
1988
|
"""
|
1989
1989
|
return pulumi.get(self, "restricted_client_application")
|
@@ -2009,12 +2009,16 @@ class GcpUserAccessBindingScopedAccessSettingScopeClientScopeRestrictedClientApp
|
|
2009
2009
|
return super().get(key, default)
|
2010
2010
|
|
2011
2011
|
def __init__(__self__, *,
|
2012
|
-
client_id: Optional[_builtins.str] = None
|
2012
|
+
client_id: Optional[_builtins.str] = None,
|
2013
|
+
name: Optional[_builtins.str] = None):
|
2013
2014
|
"""
|
2014
2015
|
:param _builtins.str client_id: The OAuth client ID of the application.
|
2016
|
+
:param _builtins.str name: The name of the application. Example: "Cloud Console"
|
2015
2017
|
"""
|
2016
2018
|
if client_id is not None:
|
2017
2019
|
pulumi.set(__self__, "client_id", client_id)
|
2020
|
+
if name is not None:
|
2021
|
+
pulumi.set(__self__, "name", name)
|
2018
2022
|
|
2019
2023
|
@_builtins.property
|
2020
2024
|
@pulumi.getter(name="clientId")
|
@@ -2024,6 +2028,14 @@ class GcpUserAccessBindingScopedAccessSettingScopeClientScopeRestrictedClientApp
|
|
2024
2028
|
"""
|
2025
2029
|
return pulumi.get(self, "client_id")
|
2026
2030
|
|
2031
|
+
@_builtins.property
|
2032
|
+
@pulumi.getter
|
2033
|
+
def name(self) -> Optional[_builtins.str]:
|
2034
|
+
"""
|
2035
|
+
The name of the application. Example: "Cloud Console"
|
2036
|
+
"""
|
2037
|
+
return pulumi.get(self, "name")
|
2038
|
+
|
2027
2039
|
|
2028
2040
|
@pulumi.output_type
|
2029
2041
|
class GcpUserAccessBindingSessionSettings(dict):
|
pulumi_gcp/apigee/__init__.py
CHANGED
@@ -8,6 +8,7 @@ import typing
|
|
8
8
|
# Export this package's modules as members:
|
9
9
|
from .addons_config import *
|
10
10
|
from .api import *
|
11
|
+
from .api_product import *
|
11
12
|
from .app_group import *
|
12
13
|
from .control_plane_access import *
|
13
14
|
from .developer import *
|
@@ -33,6 +34,7 @@ from .keystores_aliases_pkcs12 import *
|
|
33
34
|
from .keystores_aliases_self_signed_cert import *
|
34
35
|
from .nat_address import *
|
35
36
|
from .organization import *
|
37
|
+
from .security_action import *
|
36
38
|
from .security_monitoring_condition import *
|
37
39
|
from .security_profile_v2 import *
|
38
40
|
from .sharedflow import *
|