pulumi-gcp 8.25.1__py3-none-any.whl → 8.26.0__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 +48 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +117 -0
- pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +81 -26
- pulumi_gcp/accesscontextmanager/outputs.py +95 -0
- pulumi_gcp/apigee/__init__.py +1 -0
- pulumi_gcp/apigee/control_plane_access.py +419 -0
- pulumi_gcp/clouddeploy/__init__.py +1 -0
- pulumi_gcp/clouddeploy/_inputs.py +2876 -1314
- pulumi_gcp/clouddeploy/automation.py +64 -2
- pulumi_gcp/clouddeploy/deploy_policy.py +1179 -0
- pulumi_gcp/clouddeploy/outputs.py +1130 -5
- pulumi_gcp/cloudrunv2/service.py +2 -2
- pulumi_gcp/compute/_inputs.py +20 -0
- pulumi_gcp/compute/outputs.py +25 -0
- pulumi_gcp/compute/resource_policy.py +30 -0
- pulumi_gcp/datastream/_inputs.py +506 -0
- pulumi_gcp/datastream/outputs.py +376 -0
- pulumi_gcp/datastream/stream.py +0 -2
- pulumi_gcp/firebase/hosting_version.py +34 -14
- pulumi_gcp/folder/__init__.py +1 -0
- pulumi_gcp/folder/service_identity.py +340 -0
- pulumi_gcp/gemini/__init__.py +2 -0
- pulumi_gcp/gemini/_inputs.py +176 -0
- pulumi_gcp/gemini/code_tools_setting.py +601 -0
- pulumi_gcp/gemini/code_tools_setting_binding.py +753 -0
- pulumi_gcp/gemini/outputs.py +124 -0
- pulumi_gcp/gkeonprem/v_mware_cluster.py +49 -0
- pulumi_gcp/gkeonprem/vmware_admin_cluster.py +28 -0
- pulumi_gcp/memorystore/_inputs.py +136 -0
- pulumi_gcp/memorystore/get_instance.py +12 -1
- pulumi_gcp/memorystore/instance.py +54 -0
- pulumi_gcp/memorystore/outputs.py +190 -0
- pulumi_gcp/netapp/_inputs.py +89 -3
- pulumi_gcp/netapp/outputs.py +75 -2
- pulumi_gcp/netapp/volume_replication.py +12 -2
- pulumi_gcp/networkconnectivity/service_connection_policy.py +4 -2
- pulumi_gcp/osconfig/__init__.py +1 -0
- pulumi_gcp/osconfig/_inputs.py +5439 -0
- pulumi_gcp/osconfig/outputs.py +3978 -0
- pulumi_gcp/osconfig/v2_policy_orchestrator_for_organization.py +1047 -0
- pulumi_gcp/parametermanager/get_regional_parameter.py +12 -1
- pulumi_gcp/parametermanager/get_regional_parameter_version.py +15 -1
- pulumi_gcp/parametermanager/outputs.py +11 -0
- pulumi_gcp/parametermanager/regional_parameter.py +78 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +66 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/spanner/database.py +0 -34
- pulumi_gcp/storage/bucket_object.py +28 -0
- pulumi_gcp/storage/get_bucket_object.py +12 -1
- pulumi_gcp/storage/get_bucket_object_content.py +12 -1
- pulumi_gcp/workbench/_inputs.py +60 -0
- pulumi_gcp/workbench/instance.py +48 -0
- pulumi_gcp/workbench/outputs.py +55 -0
- {pulumi_gcp-8.25.1.dist-info → pulumi_gcp-8.26.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.25.1.dist-info → pulumi_gcp-8.26.0.dist-info}/RECORD +57 -51
- {pulumi_gcp-8.25.1.dist-info → pulumi_gcp-8.26.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.25.1.dist-info → pulumi_gcp-8.26.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/datastream/outputs.py
CHANGED
@@ -44,6 +44,9 @@ __all__ = [
|
|
44
44
|
'StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchema',
|
45
45
|
'StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaPostgresqlTable',
|
46
46
|
'StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumn',
|
47
|
+
'StreamBackfillAllSalesforceExcludedObjects',
|
48
|
+
'StreamBackfillAllSalesforceExcludedObjectsObject',
|
49
|
+
'StreamBackfillAllSalesforceExcludedObjectsObjectField',
|
47
50
|
'StreamBackfillAllSqlServerExcludedObjects',
|
48
51
|
'StreamBackfillAllSqlServerExcludedObjectsSchema',
|
49
52
|
'StreamBackfillAllSqlServerExcludedObjectsSchemaTable',
|
@@ -92,6 +95,13 @@ __all__ = [
|
|
92
95
|
'StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchema',
|
93
96
|
'StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaPostgresqlTable',
|
94
97
|
'StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumn',
|
98
|
+
'StreamSourceConfigSalesforceSourceConfig',
|
99
|
+
'StreamSourceConfigSalesforceSourceConfigExcludeObjects',
|
100
|
+
'StreamSourceConfigSalesforceSourceConfigExcludeObjectsObject',
|
101
|
+
'StreamSourceConfigSalesforceSourceConfigExcludeObjectsObjectField',
|
102
|
+
'StreamSourceConfigSalesforceSourceConfigIncludeObjects',
|
103
|
+
'StreamSourceConfigSalesforceSourceConfigIncludeObjectsObject',
|
104
|
+
'StreamSourceConfigSalesforceSourceConfigIncludeObjectsObjectField',
|
95
105
|
'StreamSourceConfigSqlServerSourceConfig',
|
96
106
|
'StreamSourceConfigSqlServerSourceConfigChangeTables',
|
97
107
|
'StreamSourceConfigSqlServerSourceConfigExcludeObjects',
|
@@ -1108,6 +1118,8 @@ class StreamBackfillAll(dict):
|
|
1108
1118
|
suggest = "oracle_excluded_objects"
|
1109
1119
|
elif key == "postgresqlExcludedObjects":
|
1110
1120
|
suggest = "postgresql_excluded_objects"
|
1121
|
+
elif key == "salesforceExcludedObjects":
|
1122
|
+
suggest = "salesforce_excluded_objects"
|
1111
1123
|
elif key == "sqlServerExcludedObjects":
|
1112
1124
|
suggest = "sql_server_excluded_objects"
|
1113
1125
|
|
@@ -1126,6 +1138,7 @@ class StreamBackfillAll(dict):
|
|
1126
1138
|
mysql_excluded_objects: Optional['outputs.StreamBackfillAllMysqlExcludedObjects'] = None,
|
1127
1139
|
oracle_excluded_objects: Optional['outputs.StreamBackfillAllOracleExcludedObjects'] = None,
|
1128
1140
|
postgresql_excluded_objects: Optional['outputs.StreamBackfillAllPostgresqlExcludedObjects'] = None,
|
1141
|
+
salesforce_excluded_objects: Optional['outputs.StreamBackfillAllSalesforceExcludedObjects'] = None,
|
1129
1142
|
sql_server_excluded_objects: Optional['outputs.StreamBackfillAllSqlServerExcludedObjects'] = None):
|
1130
1143
|
"""
|
1131
1144
|
:param 'StreamBackfillAllMysqlExcludedObjectsArgs' mysql_excluded_objects: MySQL data source objects to avoid backfilling.
|
@@ -1134,6 +1147,8 @@ class StreamBackfillAll(dict):
|
|
1134
1147
|
Structure is documented below.
|
1135
1148
|
:param 'StreamBackfillAllPostgresqlExcludedObjectsArgs' postgresql_excluded_objects: PostgreSQL data source objects to avoid backfilling.
|
1136
1149
|
Structure is documented below.
|
1150
|
+
:param 'StreamBackfillAllSalesforceExcludedObjectsArgs' salesforce_excluded_objects: Salesforce objects to avoid backfilling.
|
1151
|
+
Structure is documented below.
|
1137
1152
|
:param 'StreamBackfillAllSqlServerExcludedObjectsArgs' sql_server_excluded_objects: SQL Server data source objects to avoid backfilling.
|
1138
1153
|
Structure is documented below.
|
1139
1154
|
"""
|
@@ -1143,6 +1158,8 @@ class StreamBackfillAll(dict):
|
|
1143
1158
|
pulumi.set(__self__, "oracle_excluded_objects", oracle_excluded_objects)
|
1144
1159
|
if postgresql_excluded_objects is not None:
|
1145
1160
|
pulumi.set(__self__, "postgresql_excluded_objects", postgresql_excluded_objects)
|
1161
|
+
if salesforce_excluded_objects is not None:
|
1162
|
+
pulumi.set(__self__, "salesforce_excluded_objects", salesforce_excluded_objects)
|
1146
1163
|
if sql_server_excluded_objects is not None:
|
1147
1164
|
pulumi.set(__self__, "sql_server_excluded_objects", sql_server_excluded_objects)
|
1148
1165
|
|
@@ -1173,6 +1190,15 @@ class StreamBackfillAll(dict):
|
|
1173
1190
|
"""
|
1174
1191
|
return pulumi.get(self, "postgresql_excluded_objects")
|
1175
1192
|
|
1193
|
+
@property
|
1194
|
+
@pulumi.getter(name="salesforceExcludedObjects")
|
1195
|
+
def salesforce_excluded_objects(self) -> Optional['outputs.StreamBackfillAllSalesforceExcludedObjects']:
|
1196
|
+
"""
|
1197
|
+
Salesforce objects to avoid backfilling.
|
1198
|
+
Structure is documented below.
|
1199
|
+
"""
|
1200
|
+
return pulumi.get(self, "salesforce_excluded_objects")
|
1201
|
+
|
1176
1202
|
@property
|
1177
1203
|
@pulumi.getter(name="sqlServerExcludedObjects")
|
1178
1204
|
def sql_server_excluded_objects(self) -> Optional['outputs.StreamBackfillAllSqlServerExcludedObjects']:
|
@@ -1988,6 +2014,95 @@ class StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaPostgresqlTableP
|
|
1988
2014
|
return pulumi.get(self, "scale")
|
1989
2015
|
|
1990
2016
|
|
2017
|
+
@pulumi.output_type
|
2018
|
+
class StreamBackfillAllSalesforceExcludedObjects(dict):
|
2019
|
+
def __init__(__self__, *,
|
2020
|
+
objects: Sequence['outputs.StreamBackfillAllSalesforceExcludedObjectsObject']):
|
2021
|
+
"""
|
2022
|
+
:param Sequence['StreamBackfillAllSalesforceExcludedObjectsObjectArgs'] objects: Salesforce objects in Salesforce Org.
|
2023
|
+
Structure is documented below.
|
2024
|
+
"""
|
2025
|
+
pulumi.set(__self__, "objects", objects)
|
2026
|
+
|
2027
|
+
@property
|
2028
|
+
@pulumi.getter
|
2029
|
+
def objects(self) -> Sequence['outputs.StreamBackfillAllSalesforceExcludedObjectsObject']:
|
2030
|
+
"""
|
2031
|
+
Salesforce objects in Salesforce Org.
|
2032
|
+
Structure is documented below.
|
2033
|
+
"""
|
2034
|
+
return pulumi.get(self, "objects")
|
2035
|
+
|
2036
|
+
|
2037
|
+
@pulumi.output_type
|
2038
|
+
class StreamBackfillAllSalesforceExcludedObjectsObject(dict):
|
2039
|
+
@staticmethod
|
2040
|
+
def __key_warning(key: str):
|
2041
|
+
suggest = None
|
2042
|
+
if key == "objectName":
|
2043
|
+
suggest = "object_name"
|
2044
|
+
|
2045
|
+
if suggest:
|
2046
|
+
pulumi.log.warn(f"Key '{key}' not found in StreamBackfillAllSalesforceExcludedObjectsObject. Access the value via the '{suggest}' property getter instead.")
|
2047
|
+
|
2048
|
+
def __getitem__(self, key: str) -> Any:
|
2049
|
+
StreamBackfillAllSalesforceExcludedObjectsObject.__key_warning(key)
|
2050
|
+
return super().__getitem__(key)
|
2051
|
+
|
2052
|
+
def get(self, key: str, default = None) -> Any:
|
2053
|
+
StreamBackfillAllSalesforceExcludedObjectsObject.__key_warning(key)
|
2054
|
+
return super().get(key, default)
|
2055
|
+
|
2056
|
+
def __init__(__self__, *,
|
2057
|
+
fields: Optional[Sequence['outputs.StreamBackfillAllSalesforceExcludedObjectsObjectField']] = None,
|
2058
|
+
object_name: Optional[builtins.str] = None):
|
2059
|
+
"""
|
2060
|
+
:param Sequence['StreamBackfillAllSalesforceExcludedObjectsObjectFieldArgs'] fields: Fields in the Salesforce object. When unspecified as part of include/exclude objects, includes/excludes everything/nothing.
|
2061
|
+
Structure is documented below.
|
2062
|
+
:param builtins.str object_name: Name of object in Salesforce Org.
|
2063
|
+
"""
|
2064
|
+
if fields is not None:
|
2065
|
+
pulumi.set(__self__, "fields", fields)
|
2066
|
+
if object_name is not None:
|
2067
|
+
pulumi.set(__self__, "object_name", object_name)
|
2068
|
+
|
2069
|
+
@property
|
2070
|
+
@pulumi.getter
|
2071
|
+
def fields(self) -> Optional[Sequence['outputs.StreamBackfillAllSalesforceExcludedObjectsObjectField']]:
|
2072
|
+
"""
|
2073
|
+
Fields in the Salesforce object. When unspecified as part of include/exclude objects, includes/excludes everything/nothing.
|
2074
|
+
Structure is documented below.
|
2075
|
+
"""
|
2076
|
+
return pulumi.get(self, "fields")
|
2077
|
+
|
2078
|
+
@property
|
2079
|
+
@pulumi.getter(name="objectName")
|
2080
|
+
def object_name(self) -> Optional[builtins.str]:
|
2081
|
+
"""
|
2082
|
+
Name of object in Salesforce Org.
|
2083
|
+
"""
|
2084
|
+
return pulumi.get(self, "object_name")
|
2085
|
+
|
2086
|
+
|
2087
|
+
@pulumi.output_type
|
2088
|
+
class StreamBackfillAllSalesforceExcludedObjectsObjectField(dict):
|
2089
|
+
def __init__(__self__, *,
|
2090
|
+
name: Optional[builtins.str] = None):
|
2091
|
+
"""
|
2092
|
+
:param builtins.str name: Field name.
|
2093
|
+
"""
|
2094
|
+
if name is not None:
|
2095
|
+
pulumi.set(__self__, "name", name)
|
2096
|
+
|
2097
|
+
@property
|
2098
|
+
@pulumi.getter
|
2099
|
+
def name(self) -> Optional[builtins.str]:
|
2100
|
+
"""
|
2101
|
+
Field name.
|
2102
|
+
"""
|
2103
|
+
return pulumi.get(self, "name")
|
2104
|
+
|
2105
|
+
|
1991
2106
|
@pulumi.output_type
|
1992
2107
|
class StreamBackfillAllSqlServerExcludedObjects(dict):
|
1993
2108
|
def __init__(__self__, *,
|
@@ -2819,6 +2934,8 @@ class StreamSourceConfig(dict):
|
|
2819
2934
|
suggest = "oracle_source_config"
|
2820
2935
|
elif key == "postgresqlSourceConfig":
|
2821
2936
|
suggest = "postgresql_source_config"
|
2937
|
+
elif key == "salesforceSourceConfig":
|
2938
|
+
suggest = "salesforce_source_config"
|
2822
2939
|
elif key == "sqlServerSourceConfig":
|
2823
2940
|
suggest = "sql_server_source_config"
|
2824
2941
|
|
@@ -2838,6 +2955,7 @@ class StreamSourceConfig(dict):
|
|
2838
2955
|
mysql_source_config: Optional['outputs.StreamSourceConfigMysqlSourceConfig'] = None,
|
2839
2956
|
oracle_source_config: Optional['outputs.StreamSourceConfigOracleSourceConfig'] = None,
|
2840
2957
|
postgresql_source_config: Optional['outputs.StreamSourceConfigPostgresqlSourceConfig'] = None,
|
2958
|
+
salesforce_source_config: Optional['outputs.StreamSourceConfigSalesforceSourceConfig'] = None,
|
2841
2959
|
sql_server_source_config: Optional['outputs.StreamSourceConfigSqlServerSourceConfig'] = None):
|
2842
2960
|
"""
|
2843
2961
|
:param builtins.str source_connection_profile: Source connection profile resource. Format: projects/{project}/locations/{location}/connectionProfiles/{name}
|
@@ -2847,6 +2965,8 @@ class StreamSourceConfig(dict):
|
|
2847
2965
|
Structure is documented below.
|
2848
2966
|
:param 'StreamSourceConfigPostgresqlSourceConfigArgs' postgresql_source_config: PostgreSQL data source configuration.
|
2849
2967
|
Structure is documented below.
|
2968
|
+
:param 'StreamSourceConfigSalesforceSourceConfigArgs' salesforce_source_config: Salesforce data source configuration.
|
2969
|
+
Structure is documented below.
|
2850
2970
|
:param 'StreamSourceConfigSqlServerSourceConfigArgs' sql_server_source_config: SQL Server data source configuration.
|
2851
2971
|
Structure is documented below.
|
2852
2972
|
"""
|
@@ -2857,6 +2977,8 @@ class StreamSourceConfig(dict):
|
|
2857
2977
|
pulumi.set(__self__, "oracle_source_config", oracle_source_config)
|
2858
2978
|
if postgresql_source_config is not None:
|
2859
2979
|
pulumi.set(__self__, "postgresql_source_config", postgresql_source_config)
|
2980
|
+
if salesforce_source_config is not None:
|
2981
|
+
pulumi.set(__self__, "salesforce_source_config", salesforce_source_config)
|
2860
2982
|
if sql_server_source_config is not None:
|
2861
2983
|
pulumi.set(__self__, "sql_server_source_config", sql_server_source_config)
|
2862
2984
|
|
@@ -2895,6 +3017,15 @@ class StreamSourceConfig(dict):
|
|
2895
3017
|
"""
|
2896
3018
|
return pulumi.get(self, "postgresql_source_config")
|
2897
3019
|
|
3020
|
+
@property
|
3021
|
+
@pulumi.getter(name="salesforceSourceConfig")
|
3022
|
+
def salesforce_source_config(self) -> Optional['outputs.StreamSourceConfigSalesforceSourceConfig']:
|
3023
|
+
"""
|
3024
|
+
Salesforce data source configuration.
|
3025
|
+
Structure is documented below.
|
3026
|
+
"""
|
3027
|
+
return pulumi.get(self, "salesforce_source_config")
|
3028
|
+
|
2898
3029
|
@property
|
2899
3030
|
@pulumi.getter(name="sqlServerSourceConfig")
|
2900
3031
|
def sql_server_source_config(self) -> Optional['outputs.StreamSourceConfigSqlServerSourceConfig']:
|
@@ -4863,6 +4994,251 @@ class StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaPost
|
|
4863
4994
|
return pulumi.get(self, "scale")
|
4864
4995
|
|
4865
4996
|
|
4997
|
+
@pulumi.output_type
|
4998
|
+
class StreamSourceConfigSalesforceSourceConfig(dict):
|
4999
|
+
@staticmethod
|
5000
|
+
def __key_warning(key: str):
|
5001
|
+
suggest = None
|
5002
|
+
if key == "pollingInterval":
|
5003
|
+
suggest = "polling_interval"
|
5004
|
+
elif key == "excludeObjects":
|
5005
|
+
suggest = "exclude_objects"
|
5006
|
+
elif key == "includeObjects":
|
5007
|
+
suggest = "include_objects"
|
5008
|
+
|
5009
|
+
if suggest:
|
5010
|
+
pulumi.log.warn(f"Key '{key}' not found in StreamSourceConfigSalesforceSourceConfig. Access the value via the '{suggest}' property getter instead.")
|
5011
|
+
|
5012
|
+
def __getitem__(self, key: str) -> Any:
|
5013
|
+
StreamSourceConfigSalesforceSourceConfig.__key_warning(key)
|
5014
|
+
return super().__getitem__(key)
|
5015
|
+
|
5016
|
+
def get(self, key: str, default = None) -> Any:
|
5017
|
+
StreamSourceConfigSalesforceSourceConfig.__key_warning(key)
|
5018
|
+
return super().get(key, default)
|
5019
|
+
|
5020
|
+
def __init__(__self__, *,
|
5021
|
+
polling_interval: builtins.str,
|
5022
|
+
exclude_objects: Optional['outputs.StreamSourceConfigSalesforceSourceConfigExcludeObjects'] = None,
|
5023
|
+
include_objects: Optional['outputs.StreamSourceConfigSalesforceSourceConfigIncludeObjects'] = None):
|
5024
|
+
"""
|
5025
|
+
:param builtins.str polling_interval: Salesforce objects polling interval. The interval at which new changes will be polled for each object. The duration must be between 5 minutes and 24 hours.
|
5026
|
+
:param 'StreamSourceConfigSalesforceSourceConfigExcludeObjectsArgs' exclude_objects: Salesforce objects to exclude from the stream.
|
5027
|
+
Structure is documented below.
|
5028
|
+
:param 'StreamSourceConfigSalesforceSourceConfigIncludeObjectsArgs' include_objects: Salesforce objects to retrieve from the source.
|
5029
|
+
Structure is documented below.
|
5030
|
+
"""
|
5031
|
+
pulumi.set(__self__, "polling_interval", polling_interval)
|
5032
|
+
if exclude_objects is not None:
|
5033
|
+
pulumi.set(__self__, "exclude_objects", exclude_objects)
|
5034
|
+
if include_objects is not None:
|
5035
|
+
pulumi.set(__self__, "include_objects", include_objects)
|
5036
|
+
|
5037
|
+
@property
|
5038
|
+
@pulumi.getter(name="pollingInterval")
|
5039
|
+
def polling_interval(self) -> builtins.str:
|
5040
|
+
"""
|
5041
|
+
Salesforce objects polling interval. The interval at which new changes will be polled for each object. The duration must be between 5 minutes and 24 hours.
|
5042
|
+
"""
|
5043
|
+
return pulumi.get(self, "polling_interval")
|
5044
|
+
|
5045
|
+
@property
|
5046
|
+
@pulumi.getter(name="excludeObjects")
|
5047
|
+
def exclude_objects(self) -> Optional['outputs.StreamSourceConfigSalesforceSourceConfigExcludeObjects']:
|
5048
|
+
"""
|
5049
|
+
Salesforce objects to exclude from the stream.
|
5050
|
+
Structure is documented below.
|
5051
|
+
"""
|
5052
|
+
return pulumi.get(self, "exclude_objects")
|
5053
|
+
|
5054
|
+
@property
|
5055
|
+
@pulumi.getter(name="includeObjects")
|
5056
|
+
def include_objects(self) -> Optional['outputs.StreamSourceConfigSalesforceSourceConfigIncludeObjects']:
|
5057
|
+
"""
|
5058
|
+
Salesforce objects to retrieve from the source.
|
5059
|
+
Structure is documented below.
|
5060
|
+
"""
|
5061
|
+
return pulumi.get(self, "include_objects")
|
5062
|
+
|
5063
|
+
|
5064
|
+
@pulumi.output_type
|
5065
|
+
class StreamSourceConfigSalesforceSourceConfigExcludeObjects(dict):
|
5066
|
+
def __init__(__self__, *,
|
5067
|
+
objects: Sequence['outputs.StreamSourceConfigSalesforceSourceConfigExcludeObjectsObject']):
|
5068
|
+
"""
|
5069
|
+
:param Sequence['StreamSourceConfigSalesforceSourceConfigExcludeObjectsObjectArgs'] objects: Salesforce objects in data source.
|
5070
|
+
Structure is documented below.
|
5071
|
+
"""
|
5072
|
+
pulumi.set(__self__, "objects", objects)
|
5073
|
+
|
5074
|
+
@property
|
5075
|
+
@pulumi.getter
|
5076
|
+
def objects(self) -> Sequence['outputs.StreamSourceConfigSalesforceSourceConfigExcludeObjectsObject']:
|
5077
|
+
"""
|
5078
|
+
Salesforce objects in data source.
|
5079
|
+
Structure is documented below.
|
5080
|
+
"""
|
5081
|
+
return pulumi.get(self, "objects")
|
5082
|
+
|
5083
|
+
|
5084
|
+
@pulumi.output_type
|
5085
|
+
class StreamSourceConfigSalesforceSourceConfigExcludeObjectsObject(dict):
|
5086
|
+
@staticmethod
|
5087
|
+
def __key_warning(key: str):
|
5088
|
+
suggest = None
|
5089
|
+
if key == "objectName":
|
5090
|
+
suggest = "object_name"
|
5091
|
+
|
5092
|
+
if suggest:
|
5093
|
+
pulumi.log.warn(f"Key '{key}' not found in StreamSourceConfigSalesforceSourceConfigExcludeObjectsObject. Access the value via the '{suggest}' property getter instead.")
|
5094
|
+
|
5095
|
+
def __getitem__(self, key: str) -> Any:
|
5096
|
+
StreamSourceConfigSalesforceSourceConfigExcludeObjectsObject.__key_warning(key)
|
5097
|
+
return super().__getitem__(key)
|
5098
|
+
|
5099
|
+
def get(self, key: str, default = None) -> Any:
|
5100
|
+
StreamSourceConfigSalesforceSourceConfigExcludeObjectsObject.__key_warning(key)
|
5101
|
+
return super().get(key, default)
|
5102
|
+
|
5103
|
+
def __init__(__self__, *,
|
5104
|
+
fields: Optional[Sequence['outputs.StreamSourceConfigSalesforceSourceConfigExcludeObjectsObjectField']] = None,
|
5105
|
+
object_name: Optional[builtins.str] = None):
|
5106
|
+
"""
|
5107
|
+
:param Sequence['StreamSourceConfigSalesforceSourceConfigExcludeObjectsObjectFieldArgs'] fields: Fields in the Salesforce object. When unspecified as part of include/exclude objects, includes/excludes everything/nothing.
|
5108
|
+
Structure is documented below.
|
5109
|
+
:param builtins.str object_name: Name of object in Salesforce Org.
|
5110
|
+
"""
|
5111
|
+
if fields is not None:
|
5112
|
+
pulumi.set(__self__, "fields", fields)
|
5113
|
+
if object_name is not None:
|
5114
|
+
pulumi.set(__self__, "object_name", object_name)
|
5115
|
+
|
5116
|
+
@property
|
5117
|
+
@pulumi.getter
|
5118
|
+
def fields(self) -> Optional[Sequence['outputs.StreamSourceConfigSalesforceSourceConfigExcludeObjectsObjectField']]:
|
5119
|
+
"""
|
5120
|
+
Fields in the Salesforce object. When unspecified as part of include/exclude objects, includes/excludes everything/nothing.
|
5121
|
+
Structure is documented below.
|
5122
|
+
"""
|
5123
|
+
return pulumi.get(self, "fields")
|
5124
|
+
|
5125
|
+
@property
|
5126
|
+
@pulumi.getter(name="objectName")
|
5127
|
+
def object_name(self) -> Optional[builtins.str]:
|
5128
|
+
"""
|
5129
|
+
Name of object in Salesforce Org.
|
5130
|
+
"""
|
5131
|
+
return pulumi.get(self, "object_name")
|
5132
|
+
|
5133
|
+
|
5134
|
+
@pulumi.output_type
|
5135
|
+
class StreamSourceConfigSalesforceSourceConfigExcludeObjectsObjectField(dict):
|
5136
|
+
def __init__(__self__, *,
|
5137
|
+
name: Optional[builtins.str] = None):
|
5138
|
+
"""
|
5139
|
+
:param builtins.str name: Field name.
|
5140
|
+
"""
|
5141
|
+
if name is not None:
|
5142
|
+
pulumi.set(__self__, "name", name)
|
5143
|
+
|
5144
|
+
@property
|
5145
|
+
@pulumi.getter
|
5146
|
+
def name(self) -> Optional[builtins.str]:
|
5147
|
+
"""
|
5148
|
+
Field name.
|
5149
|
+
"""
|
5150
|
+
return pulumi.get(self, "name")
|
5151
|
+
|
5152
|
+
|
5153
|
+
@pulumi.output_type
|
5154
|
+
class StreamSourceConfigSalesforceSourceConfigIncludeObjects(dict):
|
5155
|
+
def __init__(__self__, *,
|
5156
|
+
objects: Sequence['outputs.StreamSourceConfigSalesforceSourceConfigIncludeObjectsObject']):
|
5157
|
+
"""
|
5158
|
+
:param Sequence['StreamSourceConfigSalesforceSourceConfigIncludeObjectsObjectArgs'] objects: Salesforce objects in Salesforce Org.
|
5159
|
+
Structure is documented below.
|
5160
|
+
"""
|
5161
|
+
pulumi.set(__self__, "objects", objects)
|
5162
|
+
|
5163
|
+
@property
|
5164
|
+
@pulumi.getter
|
5165
|
+
def objects(self) -> Sequence['outputs.StreamSourceConfigSalesforceSourceConfigIncludeObjectsObject']:
|
5166
|
+
"""
|
5167
|
+
Salesforce objects in Salesforce Org.
|
5168
|
+
Structure is documented below.
|
5169
|
+
"""
|
5170
|
+
return pulumi.get(self, "objects")
|
5171
|
+
|
5172
|
+
|
5173
|
+
@pulumi.output_type
|
5174
|
+
class StreamSourceConfigSalesforceSourceConfigIncludeObjectsObject(dict):
|
5175
|
+
@staticmethod
|
5176
|
+
def __key_warning(key: str):
|
5177
|
+
suggest = None
|
5178
|
+
if key == "objectName":
|
5179
|
+
suggest = "object_name"
|
5180
|
+
|
5181
|
+
if suggest:
|
5182
|
+
pulumi.log.warn(f"Key '{key}' not found in StreamSourceConfigSalesforceSourceConfigIncludeObjectsObject. Access the value via the '{suggest}' property getter instead.")
|
5183
|
+
|
5184
|
+
def __getitem__(self, key: str) -> Any:
|
5185
|
+
StreamSourceConfigSalesforceSourceConfigIncludeObjectsObject.__key_warning(key)
|
5186
|
+
return super().__getitem__(key)
|
5187
|
+
|
5188
|
+
def get(self, key: str, default = None) -> Any:
|
5189
|
+
StreamSourceConfigSalesforceSourceConfigIncludeObjectsObject.__key_warning(key)
|
5190
|
+
return super().get(key, default)
|
5191
|
+
|
5192
|
+
def __init__(__self__, *,
|
5193
|
+
fields: Optional[Sequence['outputs.StreamSourceConfigSalesforceSourceConfigIncludeObjectsObjectField']] = None,
|
5194
|
+
object_name: Optional[builtins.str] = None):
|
5195
|
+
"""
|
5196
|
+
:param Sequence['StreamSourceConfigSalesforceSourceConfigIncludeObjectsObjectFieldArgs'] fields: Fields in the Salesforce object. When unspecified as part of include/exclude objects, includes/excludes everything/nothing.
|
5197
|
+
Structure is documented below.
|
5198
|
+
:param builtins.str object_name: Name of object in Salesforce Org.
|
5199
|
+
"""
|
5200
|
+
if fields is not None:
|
5201
|
+
pulumi.set(__self__, "fields", fields)
|
5202
|
+
if object_name is not None:
|
5203
|
+
pulumi.set(__self__, "object_name", object_name)
|
5204
|
+
|
5205
|
+
@property
|
5206
|
+
@pulumi.getter
|
5207
|
+
def fields(self) -> Optional[Sequence['outputs.StreamSourceConfigSalesforceSourceConfigIncludeObjectsObjectField']]:
|
5208
|
+
"""
|
5209
|
+
Fields in the Salesforce object. When unspecified as part of include/exclude objects, includes/excludes everything/nothing.
|
5210
|
+
Structure is documented below.
|
5211
|
+
"""
|
5212
|
+
return pulumi.get(self, "fields")
|
5213
|
+
|
5214
|
+
@property
|
5215
|
+
@pulumi.getter(name="objectName")
|
5216
|
+
def object_name(self) -> Optional[builtins.str]:
|
5217
|
+
"""
|
5218
|
+
Name of object in Salesforce Org.
|
5219
|
+
"""
|
5220
|
+
return pulumi.get(self, "object_name")
|
5221
|
+
|
5222
|
+
|
5223
|
+
@pulumi.output_type
|
5224
|
+
class StreamSourceConfigSalesforceSourceConfigIncludeObjectsObjectField(dict):
|
5225
|
+
def __init__(__self__, *,
|
5226
|
+
name: Optional[builtins.str] = None):
|
5227
|
+
"""
|
5228
|
+
:param builtins.str name: Field name.
|
5229
|
+
"""
|
5230
|
+
if name is not None:
|
5231
|
+
pulumi.set(__self__, "name", name)
|
5232
|
+
|
5233
|
+
@property
|
5234
|
+
@pulumi.getter
|
5235
|
+
def name(self) -> Optional[builtins.str]:
|
5236
|
+
"""
|
5237
|
+
Field name.
|
5238
|
+
"""
|
5239
|
+
return pulumi.get(self, "name")
|
5240
|
+
|
5241
|
+
|
4866
5242
|
@pulumi.output_type
|
4867
5243
|
class StreamSourceConfigSqlServerSourceConfig(dict):
|
4868
5244
|
@staticmethod
|
pulumi_gcp/datastream/stream.py
CHANGED
@@ -1409,7 +1409,6 @@ class Stream(pulumi.CustomResource):
|
|
1409
1409
|
},
|
1410
1410
|
backfill_none={})
|
1411
1411
|
```
|
1412
|
-
|
1413
1412
|
## Import
|
1414
1413
|
|
1415
1414
|
Stream can be imported using any of these accepted formats:
|
@@ -2355,7 +2354,6 @@ class Stream(pulumi.CustomResource):
|
|
2355
2354
|
},
|
2356
2355
|
backfill_none={})
|
2357
2356
|
```
|
2358
|
-
|
2359
2357
|
## Import
|
2360
2358
|
|
2361
2359
|
Stream can be imported using any of these accepted formats:
|
@@ -306,16 +306,26 @@ class HostingVersion(pulumi.CustomResource):
|
|
306
306
|
name="function-source.zip",
|
307
307
|
bucket=bucket.name,
|
308
308
|
source=pulumi.FileAsset("function-source.zip"))
|
309
|
-
function = gcp.
|
309
|
+
function = gcp.cloudfunctionsv2.Function("function",
|
310
310
|
project="my-project-name",
|
311
311
|
name="cloud-function-via-hosting",
|
312
|
+
location="us-central1",
|
312
313
|
description="A Cloud Function connected to Firebase Hosing",
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
314
|
+
build_config={
|
315
|
+
"runtime": "nodejs22",
|
316
|
+
"entry_point": "helloHttp",
|
317
|
+
"source": {
|
318
|
+
"storage_source": {
|
319
|
+
"bucket": bucket.name,
|
320
|
+
"object": object.name,
|
321
|
+
},
|
322
|
+
},
|
323
|
+
},
|
324
|
+
service_config={
|
325
|
+
"max_instance_count": 1,
|
326
|
+
"available_memory": "256M",
|
327
|
+
"timeout_seconds": 60,
|
328
|
+
})
|
319
329
|
default_hosting_version = gcp.firebase.HostingVersion("default",
|
320
330
|
site_id=default.site_id,
|
321
331
|
config={
|
@@ -513,16 +523,26 @@ class HostingVersion(pulumi.CustomResource):
|
|
513
523
|
name="function-source.zip",
|
514
524
|
bucket=bucket.name,
|
515
525
|
source=pulumi.FileAsset("function-source.zip"))
|
516
|
-
function = gcp.
|
526
|
+
function = gcp.cloudfunctionsv2.Function("function",
|
517
527
|
project="my-project-name",
|
518
528
|
name="cloud-function-via-hosting",
|
529
|
+
location="us-central1",
|
519
530
|
description="A Cloud Function connected to Firebase Hosing",
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
531
|
+
build_config={
|
532
|
+
"runtime": "nodejs22",
|
533
|
+
"entry_point": "helloHttp",
|
534
|
+
"source": {
|
535
|
+
"storage_source": {
|
536
|
+
"bucket": bucket.name,
|
537
|
+
"object": object.name,
|
538
|
+
},
|
539
|
+
},
|
540
|
+
},
|
541
|
+
service_config={
|
542
|
+
"max_instance_count": 1,
|
543
|
+
"available_memory": "256M",
|
544
|
+
"timeout_seconds": 60,
|
545
|
+
})
|
526
546
|
default_hosting_version = gcp.firebase.HostingVersion("default",
|
527
547
|
site_id=default.site_id,
|
528
548
|
config={
|