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
@@ -109,6 +109,7 @@ class ListingSubscriptionArgs:
|
|
109
109
|
@pulumi.input_type
|
110
110
|
class _ListingSubscriptionState:
|
111
111
|
def __init__(__self__, *,
|
112
|
+
commercial_infos: Optional[pulumi.Input[Sequence[pulumi.Input['ListingSubscriptionCommercialInfoArgs']]]] = None,
|
112
113
|
creation_time: Optional[pulumi.Input[_builtins.str]] = None,
|
113
114
|
data_exchange_id: Optional[pulumi.Input[_builtins.str]] = None,
|
114
115
|
destination_dataset: Optional[pulumi.Input['ListingSubscriptionDestinationDatasetArgs']] = None,
|
@@ -128,6 +129,8 @@ class _ListingSubscriptionState:
|
|
128
129
|
subscription_id: Optional[pulumi.Input[_builtins.str]] = None):
|
129
130
|
"""
|
130
131
|
Input properties used for looking up and filtering ListingSubscription resources.
|
132
|
+
:param pulumi.Input[Sequence[pulumi.Input['ListingSubscriptionCommercialInfoArgs']]] commercial_infos: Commercial info metadata for this subscription. This is set if this is a commercial subscription i.e. if this subscription was created from subscribing to a commercial listing.
|
133
|
+
Structure is documented below.
|
131
134
|
:param pulumi.Input[_builtins.str] creation_time: Timestamp when the subscription was created.
|
132
135
|
:param pulumi.Input[_builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces.
|
133
136
|
:param pulumi.Input['ListingSubscriptionDestinationDatasetArgs'] destination_dataset: The destination dataset for this subscription.
|
@@ -151,6 +154,8 @@ class _ListingSubscriptionState:
|
|
151
154
|
:param pulumi.Input[_builtins.str] subscriber_contact: Email of the subscriber.
|
152
155
|
:param pulumi.Input[_builtins.str] subscription_id: The subscription id used to reference the subscription.
|
153
156
|
"""
|
157
|
+
if commercial_infos is not None:
|
158
|
+
pulumi.set(__self__, "commercial_infos", commercial_infos)
|
154
159
|
if creation_time is not None:
|
155
160
|
pulumi.set(__self__, "creation_time", creation_time)
|
156
161
|
if data_exchange_id is not None:
|
@@ -186,6 +191,19 @@ class _ListingSubscriptionState:
|
|
186
191
|
if subscription_id is not None:
|
187
192
|
pulumi.set(__self__, "subscription_id", subscription_id)
|
188
193
|
|
194
|
+
@_builtins.property
|
195
|
+
@pulumi.getter(name="commercialInfos")
|
196
|
+
def commercial_infos(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ListingSubscriptionCommercialInfoArgs']]]]:
|
197
|
+
"""
|
198
|
+
Commercial info metadata for this subscription. This is set if this is a commercial subscription i.e. if this subscription was created from subscribing to a commercial listing.
|
199
|
+
Structure is documented below.
|
200
|
+
"""
|
201
|
+
return pulumi.get(self, "commercial_infos")
|
202
|
+
|
203
|
+
@commercial_infos.setter
|
204
|
+
def commercial_infos(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ListingSubscriptionCommercialInfoArgs']]]]):
|
205
|
+
pulumi.set(self, "commercial_infos", value)
|
206
|
+
|
189
207
|
@_builtins.property
|
190
208
|
@pulumi.getter(name="creationTime")
|
191
209
|
def creation_time(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -626,6 +644,7 @@ class ListingSubscription(pulumi.CustomResource):
|
|
626
644
|
raise TypeError("Missing required property 'location'")
|
627
645
|
__props__.__dict__["location"] = location
|
628
646
|
__props__.__dict__["project"] = project
|
647
|
+
__props__.__dict__["commercial_infos"] = None
|
629
648
|
__props__.__dict__["creation_time"] = None
|
630
649
|
__props__.__dict__["last_modify_time"] = None
|
631
650
|
__props__.__dict__["linked_dataset_maps"] = None
|
@@ -648,6 +667,7 @@ class ListingSubscription(pulumi.CustomResource):
|
|
648
667
|
def get(resource_name: str,
|
649
668
|
id: pulumi.Input[str],
|
650
669
|
opts: Optional[pulumi.ResourceOptions] = None,
|
670
|
+
commercial_infos: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ListingSubscriptionCommercialInfoArgs', 'ListingSubscriptionCommercialInfoArgsDict']]]]] = None,
|
651
671
|
creation_time: Optional[pulumi.Input[_builtins.str]] = None,
|
652
672
|
data_exchange_id: Optional[pulumi.Input[_builtins.str]] = None,
|
653
673
|
destination_dataset: Optional[pulumi.Input[Union['ListingSubscriptionDestinationDatasetArgs', 'ListingSubscriptionDestinationDatasetArgsDict']]] = None,
|
@@ -672,6 +692,8 @@ class ListingSubscription(pulumi.CustomResource):
|
|
672
692
|
:param str resource_name: The unique name of the resulting resource.
|
673
693
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
674
694
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
695
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ListingSubscriptionCommercialInfoArgs', 'ListingSubscriptionCommercialInfoArgsDict']]]] commercial_infos: Commercial info metadata for this subscription. This is set if this is a commercial subscription i.e. if this subscription was created from subscribing to a commercial listing.
|
696
|
+
Structure is documented below.
|
675
697
|
:param pulumi.Input[_builtins.str] creation_time: Timestamp when the subscription was created.
|
676
698
|
:param pulumi.Input[_builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces.
|
677
699
|
:param pulumi.Input[Union['ListingSubscriptionDestinationDatasetArgs', 'ListingSubscriptionDestinationDatasetArgsDict']] destination_dataset: The destination dataset for this subscription.
|
@@ -699,6 +721,7 @@ class ListingSubscription(pulumi.CustomResource):
|
|
699
721
|
|
700
722
|
__props__ = _ListingSubscriptionState.__new__(_ListingSubscriptionState)
|
701
723
|
|
724
|
+
__props__.__dict__["commercial_infos"] = commercial_infos
|
702
725
|
__props__.__dict__["creation_time"] = creation_time
|
703
726
|
__props__.__dict__["data_exchange_id"] = data_exchange_id
|
704
727
|
__props__.__dict__["destination_dataset"] = destination_dataset
|
@@ -718,6 +741,15 @@ class ListingSubscription(pulumi.CustomResource):
|
|
718
741
|
__props__.__dict__["subscription_id"] = subscription_id
|
719
742
|
return ListingSubscription(resource_name, opts=opts, __props__=__props__)
|
720
743
|
|
744
|
+
@_builtins.property
|
745
|
+
@pulumi.getter(name="commercialInfos")
|
746
|
+
def commercial_infos(self) -> pulumi.Output[Sequence['outputs.ListingSubscriptionCommercialInfo']]:
|
747
|
+
"""
|
748
|
+
Commercial info metadata for this subscription. This is set if this is a commercial subscription i.e. if this subscription was created from subscribing to a commercial listing.
|
749
|
+
Structure is documented below.
|
750
|
+
"""
|
751
|
+
return pulumi.get(self, "commercial_infos")
|
752
|
+
|
721
753
|
@_builtins.property
|
722
754
|
@pulumi.getter(name="creationTime")
|
723
755
|
def creation_time(self) -> pulumi.Output[_builtins.str]:
|
@@ -27,12 +27,16 @@ __all__ = [
|
|
27
27
|
'DataExchangeSubscriptionLinkedResource',
|
28
28
|
'ListingBigqueryDataset',
|
29
29
|
'ListingBigqueryDatasetSelectedResource',
|
30
|
+
'ListingCommercialInfo',
|
31
|
+
'ListingCommercialInfoCloudMarketplace',
|
30
32
|
'ListingDataProvider',
|
31
33
|
'ListingIamBindingCondition',
|
32
34
|
'ListingIamMemberCondition',
|
33
35
|
'ListingPublisher',
|
34
36
|
'ListingPubsubTopic',
|
35
37
|
'ListingRestrictedExportConfig',
|
38
|
+
'ListingSubscriptionCommercialInfo',
|
39
|
+
'ListingSubscriptionCommercialInfoCloudMarketplace',
|
36
40
|
'ListingSubscriptionDestinationDataset',
|
37
41
|
'ListingSubscriptionDestinationDatasetDatasetReference',
|
38
42
|
'ListingSubscriptionLinkedDatasetMap',
|
@@ -506,6 +510,100 @@ class ListingBigqueryDatasetSelectedResource(dict):
|
|
506
510
|
return pulumi.get(self, "table")
|
507
511
|
|
508
512
|
|
513
|
+
@pulumi.output_type
|
514
|
+
class ListingCommercialInfo(dict):
|
515
|
+
@staticmethod
|
516
|
+
def __key_warning(key: str):
|
517
|
+
suggest = None
|
518
|
+
if key == "cloudMarketplaces":
|
519
|
+
suggest = "cloud_marketplaces"
|
520
|
+
|
521
|
+
if suggest:
|
522
|
+
pulumi.log.warn(f"Key '{key}' not found in ListingCommercialInfo. Access the value via the '{suggest}' property getter instead.")
|
523
|
+
|
524
|
+
def __getitem__(self, key: str) -> Any:
|
525
|
+
ListingCommercialInfo.__key_warning(key)
|
526
|
+
return super().__getitem__(key)
|
527
|
+
|
528
|
+
def get(self, key: str, default = None) -> Any:
|
529
|
+
ListingCommercialInfo.__key_warning(key)
|
530
|
+
return super().get(key, default)
|
531
|
+
|
532
|
+
def __init__(__self__, *,
|
533
|
+
cloud_marketplaces: Optional[Sequence['outputs.ListingCommercialInfoCloudMarketplace']] = None):
|
534
|
+
"""
|
535
|
+
:param Sequence['ListingCommercialInfoCloudMarketplaceArgs'] cloud_marketplaces: (Output)
|
536
|
+
Details of the Marketplace Data Product associated with the Listing.
|
537
|
+
Structure is documented below.
|
538
|
+
"""
|
539
|
+
if cloud_marketplaces is not None:
|
540
|
+
pulumi.set(__self__, "cloud_marketplaces", cloud_marketplaces)
|
541
|
+
|
542
|
+
@_builtins.property
|
543
|
+
@pulumi.getter(name="cloudMarketplaces")
|
544
|
+
def cloud_marketplaces(self) -> Optional[Sequence['outputs.ListingCommercialInfoCloudMarketplace']]:
|
545
|
+
"""
|
546
|
+
(Output)
|
547
|
+
Details of the Marketplace Data Product associated with the Listing.
|
548
|
+
Structure is documented below.
|
549
|
+
"""
|
550
|
+
return pulumi.get(self, "cloud_marketplaces")
|
551
|
+
|
552
|
+
|
553
|
+
@pulumi.output_type
|
554
|
+
class ListingCommercialInfoCloudMarketplace(dict):
|
555
|
+
@staticmethod
|
556
|
+
def __key_warning(key: str):
|
557
|
+
suggest = None
|
558
|
+
if key == "commercialState":
|
559
|
+
suggest = "commercial_state"
|
560
|
+
|
561
|
+
if suggest:
|
562
|
+
pulumi.log.warn(f"Key '{key}' not found in ListingCommercialInfoCloudMarketplace. Access the value via the '{suggest}' property getter instead.")
|
563
|
+
|
564
|
+
def __getitem__(self, key: str) -> Any:
|
565
|
+
ListingCommercialInfoCloudMarketplace.__key_warning(key)
|
566
|
+
return super().__getitem__(key)
|
567
|
+
|
568
|
+
def get(self, key: str, default = None) -> Any:
|
569
|
+
ListingCommercialInfoCloudMarketplace.__key_warning(key)
|
570
|
+
return super().get(key, default)
|
571
|
+
|
572
|
+
def __init__(__self__, *,
|
573
|
+
commercial_state: Optional[_builtins.str] = None,
|
574
|
+
service: Optional[_builtins.str] = None):
|
575
|
+
"""
|
576
|
+
:param _builtins.str commercial_state: (Output)
|
577
|
+
Commercial state of the Marketplace Data Product.
|
578
|
+
Possible values: COMMERCIAL_STATE_UNSPECIFIED, ONBOARDING, ACTIVE
|
579
|
+
:param _builtins.str service: (Output)
|
580
|
+
Resource name of the commercial service associated with the Marketplace Data Product. e.g. example.com
|
581
|
+
"""
|
582
|
+
if commercial_state is not None:
|
583
|
+
pulumi.set(__self__, "commercial_state", commercial_state)
|
584
|
+
if service is not None:
|
585
|
+
pulumi.set(__self__, "service", service)
|
586
|
+
|
587
|
+
@_builtins.property
|
588
|
+
@pulumi.getter(name="commercialState")
|
589
|
+
def commercial_state(self) -> Optional[_builtins.str]:
|
590
|
+
"""
|
591
|
+
(Output)
|
592
|
+
Commercial state of the Marketplace Data Product.
|
593
|
+
Possible values: COMMERCIAL_STATE_UNSPECIFIED, ONBOARDING, ACTIVE
|
594
|
+
"""
|
595
|
+
return pulumi.get(self, "commercial_state")
|
596
|
+
|
597
|
+
@_builtins.property
|
598
|
+
@pulumi.getter
|
599
|
+
def service(self) -> Optional[_builtins.str]:
|
600
|
+
"""
|
601
|
+
(Output)
|
602
|
+
Resource name of the commercial service associated with the Marketplace Data Product. e.g. example.com
|
603
|
+
"""
|
604
|
+
return pulumi.get(self, "service")
|
605
|
+
|
606
|
+
|
509
607
|
@pulumi.output_type
|
510
608
|
class ListingDataProvider(dict):
|
511
609
|
@staticmethod
|
@@ -767,6 +865,67 @@ class ListingRestrictedExportConfig(dict):
|
|
767
865
|
return pulumi.get(self, "restrict_query_result")
|
768
866
|
|
769
867
|
|
868
|
+
@pulumi.output_type
|
869
|
+
class ListingSubscriptionCommercialInfo(dict):
|
870
|
+
@staticmethod
|
871
|
+
def __key_warning(key: str):
|
872
|
+
suggest = None
|
873
|
+
if key == "cloudMarketplaces":
|
874
|
+
suggest = "cloud_marketplaces"
|
875
|
+
|
876
|
+
if suggest:
|
877
|
+
pulumi.log.warn(f"Key '{key}' not found in ListingSubscriptionCommercialInfo. Access the value via the '{suggest}' property getter instead.")
|
878
|
+
|
879
|
+
def __getitem__(self, key: str) -> Any:
|
880
|
+
ListingSubscriptionCommercialInfo.__key_warning(key)
|
881
|
+
return super().__getitem__(key)
|
882
|
+
|
883
|
+
def get(self, key: str, default = None) -> Any:
|
884
|
+
ListingSubscriptionCommercialInfo.__key_warning(key)
|
885
|
+
return super().get(key, default)
|
886
|
+
|
887
|
+
def __init__(__self__, *,
|
888
|
+
cloud_marketplaces: Optional[Sequence['outputs.ListingSubscriptionCommercialInfoCloudMarketplace']] = None):
|
889
|
+
"""
|
890
|
+
:param Sequence['ListingSubscriptionCommercialInfoCloudMarketplaceArgs'] cloud_marketplaces: (Output)
|
891
|
+
Cloud Marketplace commercial metadata for this subscription.
|
892
|
+
Structure is documented below.
|
893
|
+
"""
|
894
|
+
if cloud_marketplaces is not None:
|
895
|
+
pulumi.set(__self__, "cloud_marketplaces", cloud_marketplaces)
|
896
|
+
|
897
|
+
@_builtins.property
|
898
|
+
@pulumi.getter(name="cloudMarketplaces")
|
899
|
+
def cloud_marketplaces(self) -> Optional[Sequence['outputs.ListingSubscriptionCommercialInfoCloudMarketplace']]:
|
900
|
+
"""
|
901
|
+
(Output)
|
902
|
+
Cloud Marketplace commercial metadata for this subscription.
|
903
|
+
Structure is documented below.
|
904
|
+
"""
|
905
|
+
return pulumi.get(self, "cloud_marketplaces")
|
906
|
+
|
907
|
+
|
908
|
+
@pulumi.output_type
|
909
|
+
class ListingSubscriptionCommercialInfoCloudMarketplace(dict):
|
910
|
+
def __init__(__self__, *,
|
911
|
+
order: Optional[_builtins.str] = None):
|
912
|
+
"""
|
913
|
+
:param _builtins.str order: (Output)
|
914
|
+
Resource name of the Marketplace Order.
|
915
|
+
"""
|
916
|
+
if order is not None:
|
917
|
+
pulumi.set(__self__, "order", order)
|
918
|
+
|
919
|
+
@_builtins.property
|
920
|
+
@pulumi.getter
|
921
|
+
def order(self) -> Optional[_builtins.str]:
|
922
|
+
"""
|
923
|
+
(Output)
|
924
|
+
Resource name of the Marketplace Order.
|
925
|
+
"""
|
926
|
+
return pulumi.get(self, "order")
|
927
|
+
|
928
|
+
|
770
929
|
@pulumi.output_type
|
771
930
|
class ListingSubscriptionDestinationDataset(dict):
|
772
931
|
@staticmethod
|
pulumi_gcp/bigtable/__init__.py
CHANGED
@@ -17,6 +17,7 @@ from .instance_iam_member import *
|
|
17
17
|
from .instance_iam_policy import *
|
18
18
|
from .logical_view import *
|
19
19
|
from .materialized_view import *
|
20
|
+
from .schema_bundle import *
|
20
21
|
from .table import *
|
21
22
|
from .table_iam_binding import *
|
22
23
|
from .table_iam_member import *
|
pulumi_gcp/bigtable/_inputs.py
CHANGED
@@ -37,6 +37,8 @@ __all__ = [
|
|
37
37
|
'InstanceIamBindingConditionArgsDict',
|
38
38
|
'InstanceIamMemberConditionArgs',
|
39
39
|
'InstanceIamMemberConditionArgsDict',
|
40
|
+
'SchemaBundleProtoSchemaArgs',
|
41
|
+
'SchemaBundleProtoSchemaArgsDict',
|
40
42
|
'TableAutomatedBackupPolicyArgs',
|
41
43
|
'TableAutomatedBackupPolicyArgsDict',
|
42
44
|
'TableColumnFamilyArgs',
|
@@ -862,6 +864,37 @@ class InstanceIamMemberConditionArgs:
|
|
862
864
|
pulumi.set(self, "description", value)
|
863
865
|
|
864
866
|
|
867
|
+
if not MYPY:
|
868
|
+
class SchemaBundleProtoSchemaArgsDict(TypedDict):
|
869
|
+
proto_descriptors: pulumi.Input[_builtins.str]
|
870
|
+
"""
|
871
|
+
Base64 encoded content of the file.
|
872
|
+
"""
|
873
|
+
elif False:
|
874
|
+
SchemaBundleProtoSchemaArgsDict: TypeAlias = Mapping[str, Any]
|
875
|
+
|
876
|
+
@pulumi.input_type
|
877
|
+
class SchemaBundleProtoSchemaArgs:
|
878
|
+
def __init__(__self__, *,
|
879
|
+
proto_descriptors: pulumi.Input[_builtins.str]):
|
880
|
+
"""
|
881
|
+
:param pulumi.Input[_builtins.str] proto_descriptors: Base64 encoded content of the file.
|
882
|
+
"""
|
883
|
+
pulumi.set(__self__, "proto_descriptors", proto_descriptors)
|
884
|
+
|
885
|
+
@_builtins.property
|
886
|
+
@pulumi.getter(name="protoDescriptors")
|
887
|
+
def proto_descriptors(self) -> pulumi.Input[_builtins.str]:
|
888
|
+
"""
|
889
|
+
Base64 encoded content of the file.
|
890
|
+
"""
|
891
|
+
return pulumi.get(self, "proto_descriptors")
|
892
|
+
|
893
|
+
@proto_descriptors.setter
|
894
|
+
def proto_descriptors(self, value: pulumi.Input[_builtins.str]):
|
895
|
+
pulumi.set(self, "proto_descriptors", value)
|
896
|
+
|
897
|
+
|
865
898
|
if not MYPY:
|
866
899
|
class TableAutomatedBackupPolicyArgsDict(TypedDict):
|
867
900
|
frequency: NotRequired[pulumi.Input[_builtins.str]]
|
pulumi_gcp/bigtable/outputs.py
CHANGED
@@ -27,6 +27,7 @@ __all__ = [
|
|
27
27
|
'InstanceClusterAutoscalingConfig',
|
28
28
|
'InstanceIamBindingCondition',
|
29
29
|
'InstanceIamMemberCondition',
|
30
|
+
'SchemaBundleProtoSchema',
|
30
31
|
'TableAutomatedBackupPolicy',
|
31
32
|
'TableColumnFamily',
|
32
33
|
'TableIamBindingCondition',
|
@@ -642,6 +643,41 @@ class InstanceIamMemberCondition(dict):
|
|
642
643
|
return pulumi.get(self, "description")
|
643
644
|
|
644
645
|
|
646
|
+
@pulumi.output_type
|
647
|
+
class SchemaBundleProtoSchema(dict):
|
648
|
+
@staticmethod
|
649
|
+
def __key_warning(key: str):
|
650
|
+
suggest = None
|
651
|
+
if key == "protoDescriptors":
|
652
|
+
suggest = "proto_descriptors"
|
653
|
+
|
654
|
+
if suggest:
|
655
|
+
pulumi.log.warn(f"Key '{key}' not found in SchemaBundleProtoSchema. Access the value via the '{suggest}' property getter instead.")
|
656
|
+
|
657
|
+
def __getitem__(self, key: str) -> Any:
|
658
|
+
SchemaBundleProtoSchema.__key_warning(key)
|
659
|
+
return super().__getitem__(key)
|
660
|
+
|
661
|
+
def get(self, key: str, default = None) -> Any:
|
662
|
+
SchemaBundleProtoSchema.__key_warning(key)
|
663
|
+
return super().get(key, default)
|
664
|
+
|
665
|
+
def __init__(__self__, *,
|
666
|
+
proto_descriptors: _builtins.str):
|
667
|
+
"""
|
668
|
+
:param _builtins.str proto_descriptors: Base64 encoded content of the file.
|
669
|
+
"""
|
670
|
+
pulumi.set(__self__, "proto_descriptors", proto_descriptors)
|
671
|
+
|
672
|
+
@_builtins.property
|
673
|
+
@pulumi.getter(name="protoDescriptors")
|
674
|
+
def proto_descriptors(self) -> _builtins.str:
|
675
|
+
"""
|
676
|
+
Base64 encoded content of the file.
|
677
|
+
"""
|
678
|
+
return pulumi.get(self, "proto_descriptors")
|
679
|
+
|
680
|
+
|
645
681
|
@pulumi.output_type
|
646
682
|
class TableAutomatedBackupPolicy(dict):
|
647
683
|
@staticmethod
|