pulumi-gcp 8.24.0a1743057423__py3-none-any.whl → 8.25.0a1743489606__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 +27 -0
- pulumi_gcp/bigquery/_inputs.py +158 -0
- pulumi_gcp/bigquery/outputs.py +115 -0
- pulumi_gcp/bigquery/reservation.py +189 -1
- pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +11 -7
- pulumi_gcp/chronicle/data_access_label.py +16 -0
- pulumi_gcp/cloudrunv2/service.py +14 -14
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +616 -18
- pulumi_gcp/compute/get_images.py +172 -0
- pulumi_gcp/compute/get_resource_policy.py +15 -4
- pulumi_gcp/compute/image.py +54 -0
- pulumi_gcp/compute/interconnect.py +14 -7
- pulumi_gcp/compute/outputs.py +710 -18
- pulumi_gcp/compute/resource_policy.py +169 -3
- pulumi_gcp/compute/router_route_policy.py +16 -0
- pulumi_gcp/config/__init__.pyi +6 -0
- pulumi_gcp/config/vars.py +12 -0
- pulumi_gcp/container/_inputs.py +262 -1
- pulumi_gcp/container/cluster.py +54 -0
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +297 -2
- pulumi_gcp/dataproc/_inputs.py +23 -0
- pulumi_gcp/dataproc/outputs.py +27 -0
- pulumi_gcp/lustre/__init__.py +8 -0
- pulumi_gcp/lustre/instance.py +983 -0
- pulumi_gcp/memorystore/_inputs.py +419 -0
- pulumi_gcp/memorystore/get_instance.py +23 -1
- pulumi_gcp/memorystore/instance.py +137 -7
- pulumi_gcp/memorystore/outputs.py +544 -0
- pulumi_gcp/networkmanagement/_inputs.py +422 -91
- pulumi_gcp/networkmanagement/connectivity_test.py +233 -211
- pulumi_gcp/networkmanagement/outputs.py +280 -61
- pulumi_gcp/networksecurity/_inputs.py +392 -0
- pulumi_gcp/networksecurity/intercept_deployment_group.py +44 -16
- pulumi_gcp/networksecurity/intercept_endpoint_group.py +90 -36
- pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +53 -8
- pulumi_gcp/networksecurity/outputs.py +240 -0
- pulumi_gcp/organizations/__init__.py +1 -0
- pulumi_gcp/organizations/get_iam_custom_role.py +198 -0
- pulumi_gcp/osconfig/__init__.py +1 -0
- pulumi_gcp/osconfig/_inputs.py +5413 -0
- pulumi_gcp/osconfig/outputs.py +3962 -0
- pulumi_gcp/osconfig/v2_policy_orchestrator.py +971 -0
- pulumi_gcp/provider.py +60 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/storage/__init__.py +2 -0
- pulumi_gcp/storage/_inputs.py +726 -0
- pulumi_gcp/storage/control_project_intelligence_config.py +366 -0
- pulumi_gcp/storage/get_control_project_intelligence_config.py +130 -0
- pulumi_gcp/storage/outputs.py +716 -0
- {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0a1743489606.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0a1743489606.dist-info}/RECORD +55 -48
- {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0a1743489606.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0a1743489606.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py
CHANGED
@@ -172,6 +172,8 @@ if typing.TYPE_CHECKING:
|
|
172
172
|
logging = __logging
|
173
173
|
import pulumi_gcp.looker as __looker
|
174
174
|
looker = __looker
|
175
|
+
import pulumi_gcp.lustre as __lustre
|
176
|
+
lustre = __lustre
|
175
177
|
import pulumi_gcp.managedkafka as __managedkafka
|
176
178
|
managedkafka = __managedkafka
|
177
179
|
import pulumi_gcp.memcache as __memcache
|
@@ -350,6 +352,7 @@ else:
|
|
350
352
|
kms = _utilities.lazy_import('pulumi_gcp.kms')
|
351
353
|
logging = _utilities.lazy_import('pulumi_gcp.logging')
|
352
354
|
looker = _utilities.lazy_import('pulumi_gcp.looker')
|
355
|
+
lustre = _utilities.lazy_import('pulumi_gcp.lustre')
|
353
356
|
managedkafka = _utilities.lazy_import('pulumi_gcp.managedkafka')
|
354
357
|
memcache = _utilities.lazy_import('pulumi_gcp.memcache')
|
355
358
|
memorystore = _utilities.lazy_import('pulumi_gcp.memorystore')
|
@@ -6586,6 +6589,14 @@ _utilities.register(
|
|
6586
6589
|
"gcp:looker/instance:Instance": "Instance"
|
6587
6590
|
}
|
6588
6591
|
},
|
6592
|
+
{
|
6593
|
+
"pkg": "gcp",
|
6594
|
+
"mod": "lustre/instance",
|
6595
|
+
"fqn": "pulumi_gcp.lustre",
|
6596
|
+
"classes": {
|
6597
|
+
"gcp:lustre/instance:Instance": "Instance"
|
6598
|
+
}
|
6599
|
+
},
|
6589
6600
|
{
|
6590
6601
|
"pkg": "gcp",
|
6591
6602
|
"mod": "managedkafka/cluster",
|
@@ -7426,6 +7437,14 @@ _utilities.register(
|
|
7426
7437
|
"gcp:osconfig/patchDeployment:PatchDeployment": "PatchDeployment"
|
7427
7438
|
}
|
7428
7439
|
},
|
7440
|
+
{
|
7441
|
+
"pkg": "gcp",
|
7442
|
+
"mod": "osconfig/v2PolicyOrchestrator",
|
7443
|
+
"fqn": "pulumi_gcp.osconfig",
|
7444
|
+
"classes": {
|
7445
|
+
"gcp:osconfig/v2PolicyOrchestrator:V2PolicyOrchestrator": "V2PolicyOrchestrator"
|
7446
|
+
}
|
7447
|
+
},
|
7429
7448
|
{
|
7430
7449
|
"pkg": "gcp",
|
7431
7450
|
"mod": "oslogin/sshPublicKey",
|
@@ -8626,6 +8645,14 @@ _utilities.register(
|
|
8626
8645
|
"gcp:storage/bucketObject:BucketObject": "BucketObject"
|
8627
8646
|
}
|
8628
8647
|
},
|
8648
|
+
{
|
8649
|
+
"pkg": "gcp",
|
8650
|
+
"mod": "storage/controlProjectIntelligenceConfig",
|
8651
|
+
"fqn": "pulumi_gcp.storage",
|
8652
|
+
"classes": {
|
8653
|
+
"gcp:storage/controlProjectIntelligenceConfig:ControlProjectIntelligenceConfig": "ControlProjectIntelligenceConfig"
|
8654
|
+
}
|
8655
|
+
},
|
8629
8656
|
{
|
8630
8657
|
"pkg": "gcp",
|
8631
8658
|
"mod": "storage/defaultObjectACL",
|
pulumi_gcp/bigquery/_inputs.py
CHANGED
@@ -129,6 +129,10 @@ __all__ = [
|
|
129
129
|
'JobStatusErrorResultArgsDict',
|
130
130
|
'ReservationAutoscaleArgs',
|
131
131
|
'ReservationAutoscaleArgsDict',
|
132
|
+
'ReservationReplicationStatusArgs',
|
133
|
+
'ReservationReplicationStatusArgsDict',
|
134
|
+
'ReservationReplicationStatusErrorArgs',
|
135
|
+
'ReservationReplicationStatusErrorArgsDict',
|
132
136
|
'RoutineArgumentArgs',
|
133
137
|
'RoutineArgumentArgsDict',
|
134
138
|
'RoutineRemoteFunctionOptionsArgs',
|
@@ -5177,6 +5181,160 @@ class ReservationAutoscaleArgs:
|
|
5177
5181
|
pulumi.set(self, "max_slots", value)
|
5178
5182
|
|
5179
5183
|
|
5184
|
+
if not MYPY:
|
5185
|
+
class ReservationReplicationStatusArgsDict(TypedDict):
|
5186
|
+
errors: NotRequired[pulumi.Input[Sequence[pulumi.Input['ReservationReplicationStatusErrorArgsDict']]]]
|
5187
|
+
"""
|
5188
|
+
(Output)
|
5189
|
+
The last error encountered while trying to replicate changes from the primary to the
|
5190
|
+
secondary. This field is only available if the replication has not succeeded since.
|
5191
|
+
Structure is documented below.
|
5192
|
+
"""
|
5193
|
+
last_error_time: NotRequired[pulumi.Input[str]]
|
5194
|
+
"""
|
5195
|
+
(Output)
|
5196
|
+
The time at which the last error was encountered while trying to replicate changes from
|
5197
|
+
the primary to the secondary. This field is only available if the replication has not
|
5198
|
+
succeeded since.
|
5199
|
+
"""
|
5200
|
+
last_replication_time: NotRequired[pulumi.Input[str]]
|
5201
|
+
"""
|
5202
|
+
(Output)
|
5203
|
+
A timestamp corresponding to the last change on the primary that was successfully
|
5204
|
+
replicated to the secondary.
|
5205
|
+
"""
|
5206
|
+
elif False:
|
5207
|
+
ReservationReplicationStatusArgsDict: TypeAlias = Mapping[str, Any]
|
5208
|
+
|
5209
|
+
@pulumi.input_type
|
5210
|
+
class ReservationReplicationStatusArgs:
|
5211
|
+
def __init__(__self__, *,
|
5212
|
+
errors: Optional[pulumi.Input[Sequence[pulumi.Input['ReservationReplicationStatusErrorArgs']]]] = None,
|
5213
|
+
last_error_time: Optional[pulumi.Input[str]] = None,
|
5214
|
+
last_replication_time: Optional[pulumi.Input[str]] = None):
|
5215
|
+
"""
|
5216
|
+
:param pulumi.Input[Sequence[pulumi.Input['ReservationReplicationStatusErrorArgs']]] errors: (Output)
|
5217
|
+
The last error encountered while trying to replicate changes from the primary to the
|
5218
|
+
secondary. This field is only available if the replication has not succeeded since.
|
5219
|
+
Structure is documented below.
|
5220
|
+
:param pulumi.Input[str] last_error_time: (Output)
|
5221
|
+
The time at which the last error was encountered while trying to replicate changes from
|
5222
|
+
the primary to the secondary. This field is only available if the replication has not
|
5223
|
+
succeeded since.
|
5224
|
+
:param pulumi.Input[str] last_replication_time: (Output)
|
5225
|
+
A timestamp corresponding to the last change on the primary that was successfully
|
5226
|
+
replicated to the secondary.
|
5227
|
+
"""
|
5228
|
+
if errors is not None:
|
5229
|
+
pulumi.set(__self__, "errors", errors)
|
5230
|
+
if last_error_time is not None:
|
5231
|
+
pulumi.set(__self__, "last_error_time", last_error_time)
|
5232
|
+
if last_replication_time is not None:
|
5233
|
+
pulumi.set(__self__, "last_replication_time", last_replication_time)
|
5234
|
+
|
5235
|
+
@property
|
5236
|
+
@pulumi.getter
|
5237
|
+
def errors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ReservationReplicationStatusErrorArgs']]]]:
|
5238
|
+
"""
|
5239
|
+
(Output)
|
5240
|
+
The last error encountered while trying to replicate changes from the primary to the
|
5241
|
+
secondary. This field is only available if the replication has not succeeded since.
|
5242
|
+
Structure is documented below.
|
5243
|
+
"""
|
5244
|
+
return pulumi.get(self, "errors")
|
5245
|
+
|
5246
|
+
@errors.setter
|
5247
|
+
def errors(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ReservationReplicationStatusErrorArgs']]]]):
|
5248
|
+
pulumi.set(self, "errors", value)
|
5249
|
+
|
5250
|
+
@property
|
5251
|
+
@pulumi.getter(name="lastErrorTime")
|
5252
|
+
def last_error_time(self) -> Optional[pulumi.Input[str]]:
|
5253
|
+
"""
|
5254
|
+
(Output)
|
5255
|
+
The time at which the last error was encountered while trying to replicate changes from
|
5256
|
+
the primary to the secondary. This field is only available if the replication has not
|
5257
|
+
succeeded since.
|
5258
|
+
"""
|
5259
|
+
return pulumi.get(self, "last_error_time")
|
5260
|
+
|
5261
|
+
@last_error_time.setter
|
5262
|
+
def last_error_time(self, value: Optional[pulumi.Input[str]]):
|
5263
|
+
pulumi.set(self, "last_error_time", value)
|
5264
|
+
|
5265
|
+
@property
|
5266
|
+
@pulumi.getter(name="lastReplicationTime")
|
5267
|
+
def last_replication_time(self) -> Optional[pulumi.Input[str]]:
|
5268
|
+
"""
|
5269
|
+
(Output)
|
5270
|
+
A timestamp corresponding to the last change on the primary that was successfully
|
5271
|
+
replicated to the secondary.
|
5272
|
+
"""
|
5273
|
+
return pulumi.get(self, "last_replication_time")
|
5274
|
+
|
5275
|
+
@last_replication_time.setter
|
5276
|
+
def last_replication_time(self, value: Optional[pulumi.Input[str]]):
|
5277
|
+
pulumi.set(self, "last_replication_time", value)
|
5278
|
+
|
5279
|
+
|
5280
|
+
if not MYPY:
|
5281
|
+
class ReservationReplicationStatusErrorArgsDict(TypedDict):
|
5282
|
+
code: NotRequired[pulumi.Input[int]]
|
5283
|
+
"""
|
5284
|
+
(Output)
|
5285
|
+
The status code, which should be an enum value of [google.rpc.Code](https://cloud.google.com/bigquery/docs/reference/reservations/rpc/google.rpc#google.rpc.Code).
|
5286
|
+
"""
|
5287
|
+
message: NotRequired[pulumi.Input[str]]
|
5288
|
+
"""
|
5289
|
+
(Output)
|
5290
|
+
A developer-facing error message, which should be in English.
|
5291
|
+
"""
|
5292
|
+
elif False:
|
5293
|
+
ReservationReplicationStatusErrorArgsDict: TypeAlias = Mapping[str, Any]
|
5294
|
+
|
5295
|
+
@pulumi.input_type
|
5296
|
+
class ReservationReplicationStatusErrorArgs:
|
5297
|
+
def __init__(__self__, *,
|
5298
|
+
code: Optional[pulumi.Input[int]] = None,
|
5299
|
+
message: Optional[pulumi.Input[str]] = None):
|
5300
|
+
"""
|
5301
|
+
:param pulumi.Input[int] code: (Output)
|
5302
|
+
The status code, which should be an enum value of [google.rpc.Code](https://cloud.google.com/bigquery/docs/reference/reservations/rpc/google.rpc#google.rpc.Code).
|
5303
|
+
:param pulumi.Input[str] message: (Output)
|
5304
|
+
A developer-facing error message, which should be in English.
|
5305
|
+
"""
|
5306
|
+
if code is not None:
|
5307
|
+
pulumi.set(__self__, "code", code)
|
5308
|
+
if message is not None:
|
5309
|
+
pulumi.set(__self__, "message", message)
|
5310
|
+
|
5311
|
+
@property
|
5312
|
+
@pulumi.getter
|
5313
|
+
def code(self) -> Optional[pulumi.Input[int]]:
|
5314
|
+
"""
|
5315
|
+
(Output)
|
5316
|
+
The status code, which should be an enum value of [google.rpc.Code](https://cloud.google.com/bigquery/docs/reference/reservations/rpc/google.rpc#google.rpc.Code).
|
5317
|
+
"""
|
5318
|
+
return pulumi.get(self, "code")
|
5319
|
+
|
5320
|
+
@code.setter
|
5321
|
+
def code(self, value: Optional[pulumi.Input[int]]):
|
5322
|
+
pulumi.set(self, "code", value)
|
5323
|
+
|
5324
|
+
@property
|
5325
|
+
@pulumi.getter
|
5326
|
+
def message(self) -> Optional[pulumi.Input[str]]:
|
5327
|
+
"""
|
5328
|
+
(Output)
|
5329
|
+
A developer-facing error message, which should be in English.
|
5330
|
+
"""
|
5331
|
+
return pulumi.get(self, "message")
|
5332
|
+
|
5333
|
+
@message.setter
|
5334
|
+
def message(self, value: Optional[pulumi.Input[str]]):
|
5335
|
+
pulumi.set(self, "message", value)
|
5336
|
+
|
5337
|
+
|
5180
5338
|
if not MYPY:
|
5181
5339
|
class RoutineArgumentArgsDict(TypedDict):
|
5182
5340
|
argument_kind: NotRequired[pulumi.Input[str]]
|
pulumi_gcp/bigquery/outputs.py
CHANGED
@@ -73,6 +73,8 @@ __all__ = [
|
|
73
73
|
'JobStatusError',
|
74
74
|
'JobStatusErrorResult',
|
75
75
|
'ReservationAutoscale',
|
76
|
+
'ReservationReplicationStatus',
|
77
|
+
'ReservationReplicationStatusError',
|
76
78
|
'RoutineArgument',
|
77
79
|
'RoutineRemoteFunctionOptions',
|
78
80
|
'RoutineSparkOptions',
|
@@ -4066,6 +4068,119 @@ class ReservationAutoscale(dict):
|
|
4066
4068
|
return pulumi.get(self, "max_slots")
|
4067
4069
|
|
4068
4070
|
|
4071
|
+
@pulumi.output_type
|
4072
|
+
class ReservationReplicationStatus(dict):
|
4073
|
+
@staticmethod
|
4074
|
+
def __key_warning(key: str):
|
4075
|
+
suggest = None
|
4076
|
+
if key == "lastErrorTime":
|
4077
|
+
suggest = "last_error_time"
|
4078
|
+
elif key == "lastReplicationTime":
|
4079
|
+
suggest = "last_replication_time"
|
4080
|
+
|
4081
|
+
if suggest:
|
4082
|
+
pulumi.log.warn(f"Key '{key}' not found in ReservationReplicationStatus. Access the value via the '{suggest}' property getter instead.")
|
4083
|
+
|
4084
|
+
def __getitem__(self, key: str) -> Any:
|
4085
|
+
ReservationReplicationStatus.__key_warning(key)
|
4086
|
+
return super().__getitem__(key)
|
4087
|
+
|
4088
|
+
def get(self, key: str, default = None) -> Any:
|
4089
|
+
ReservationReplicationStatus.__key_warning(key)
|
4090
|
+
return super().get(key, default)
|
4091
|
+
|
4092
|
+
def __init__(__self__, *,
|
4093
|
+
errors: Optional[Sequence['outputs.ReservationReplicationStatusError']] = None,
|
4094
|
+
last_error_time: Optional[str] = None,
|
4095
|
+
last_replication_time: Optional[str] = None):
|
4096
|
+
"""
|
4097
|
+
:param Sequence['ReservationReplicationStatusErrorArgs'] errors: (Output)
|
4098
|
+
The last error encountered while trying to replicate changes from the primary to the
|
4099
|
+
secondary. This field is only available if the replication has not succeeded since.
|
4100
|
+
Structure is documented below.
|
4101
|
+
:param str last_error_time: (Output)
|
4102
|
+
The time at which the last error was encountered while trying to replicate changes from
|
4103
|
+
the primary to the secondary. This field is only available if the replication has not
|
4104
|
+
succeeded since.
|
4105
|
+
:param str last_replication_time: (Output)
|
4106
|
+
A timestamp corresponding to the last change on the primary that was successfully
|
4107
|
+
replicated to the secondary.
|
4108
|
+
"""
|
4109
|
+
if errors is not None:
|
4110
|
+
pulumi.set(__self__, "errors", errors)
|
4111
|
+
if last_error_time is not None:
|
4112
|
+
pulumi.set(__self__, "last_error_time", last_error_time)
|
4113
|
+
if last_replication_time is not None:
|
4114
|
+
pulumi.set(__self__, "last_replication_time", last_replication_time)
|
4115
|
+
|
4116
|
+
@property
|
4117
|
+
@pulumi.getter
|
4118
|
+
def errors(self) -> Optional[Sequence['outputs.ReservationReplicationStatusError']]:
|
4119
|
+
"""
|
4120
|
+
(Output)
|
4121
|
+
The last error encountered while trying to replicate changes from the primary to the
|
4122
|
+
secondary. This field is only available if the replication has not succeeded since.
|
4123
|
+
Structure is documented below.
|
4124
|
+
"""
|
4125
|
+
return pulumi.get(self, "errors")
|
4126
|
+
|
4127
|
+
@property
|
4128
|
+
@pulumi.getter(name="lastErrorTime")
|
4129
|
+
def last_error_time(self) -> Optional[str]:
|
4130
|
+
"""
|
4131
|
+
(Output)
|
4132
|
+
The time at which the last error was encountered while trying to replicate changes from
|
4133
|
+
the primary to the secondary. This field is only available if the replication has not
|
4134
|
+
succeeded since.
|
4135
|
+
"""
|
4136
|
+
return pulumi.get(self, "last_error_time")
|
4137
|
+
|
4138
|
+
@property
|
4139
|
+
@pulumi.getter(name="lastReplicationTime")
|
4140
|
+
def last_replication_time(self) -> Optional[str]:
|
4141
|
+
"""
|
4142
|
+
(Output)
|
4143
|
+
A timestamp corresponding to the last change on the primary that was successfully
|
4144
|
+
replicated to the secondary.
|
4145
|
+
"""
|
4146
|
+
return pulumi.get(self, "last_replication_time")
|
4147
|
+
|
4148
|
+
|
4149
|
+
@pulumi.output_type
|
4150
|
+
class ReservationReplicationStatusError(dict):
|
4151
|
+
def __init__(__self__, *,
|
4152
|
+
code: Optional[int] = None,
|
4153
|
+
message: Optional[str] = None):
|
4154
|
+
"""
|
4155
|
+
:param int code: (Output)
|
4156
|
+
The status code, which should be an enum value of [google.rpc.Code](https://cloud.google.com/bigquery/docs/reference/reservations/rpc/google.rpc#google.rpc.Code).
|
4157
|
+
:param str message: (Output)
|
4158
|
+
A developer-facing error message, which should be in English.
|
4159
|
+
"""
|
4160
|
+
if code is not None:
|
4161
|
+
pulumi.set(__self__, "code", code)
|
4162
|
+
if message is not None:
|
4163
|
+
pulumi.set(__self__, "message", message)
|
4164
|
+
|
4165
|
+
@property
|
4166
|
+
@pulumi.getter
|
4167
|
+
def code(self) -> Optional[int]:
|
4168
|
+
"""
|
4169
|
+
(Output)
|
4170
|
+
The status code, which should be an enum value of [google.rpc.Code](https://cloud.google.com/bigquery/docs/reference/reservations/rpc/google.rpc#google.rpc.Code).
|
4171
|
+
"""
|
4172
|
+
return pulumi.get(self, "code")
|
4173
|
+
|
4174
|
+
@property
|
4175
|
+
@pulumi.getter
|
4176
|
+
def message(self) -> Optional[str]:
|
4177
|
+
"""
|
4178
|
+
(Output)
|
4179
|
+
A developer-facing error message, which should be in English.
|
4180
|
+
"""
|
4181
|
+
return pulumi.get(self, "message")
|
4182
|
+
|
4183
|
+
|
4069
4184
|
@pulumi.output_type
|
4070
4185
|
class RoutineArgument(dict):
|
4071
4186
|
@staticmethod
|