pulumiverse-scaleway 1.35.0a1761031391__py3-none-any.whl → 1.36.0a1761749266__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.
- pulumiverse_scaleway/_inputs.py +105 -151
- pulumiverse_scaleway/baremetal_server.py +16 -0
- pulumiverse_scaleway/billing/get_consumptions.py +4 -0
- pulumiverse_scaleway/block/snapshot.py +8 -0
- pulumiverse_scaleway/block_snapshot.py +8 -0
- pulumiverse_scaleway/database_instance.py +34 -34
- pulumiverse_scaleway/databases/instance.py +34 -34
- pulumiverse_scaleway/edge_services_cache_stage.py +4 -0
- pulumiverse_scaleway/elasticmetal/server.py +16 -0
- pulumiverse_scaleway/file_filesystem.py +6 -2
- pulumiverse_scaleway/get_billing_consumptions.py +4 -0
- pulumiverse_scaleway/inference/deployment.py +4 -0
- pulumiverse_scaleway/inference_deployment.py +4 -0
- pulumiverse_scaleway/instance/_inputs.py +92 -138
- pulumiverse_scaleway/instance/image.py +94 -40
- pulumiverse_scaleway/instance/outputs.py +71 -88
- pulumiverse_scaleway/instance_image.py +94 -40
- pulumiverse_scaleway/key_manager_key.py +134 -25
- pulumiverse_scaleway/kubernetes/cluster.py +54 -0
- pulumiverse_scaleway/kubernetes_cluster.py +54 -0
- pulumiverse_scaleway/loadbalancers/_inputs.py +13 -13
- pulumiverse_scaleway/loadbalancers/outputs.py +9 -9
- pulumiverse_scaleway/outputs.py +80 -97
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- {pulumiverse_scaleway-1.35.0a1761031391.dist-info → pulumiverse_scaleway-1.36.0a1761749266.dist-info}/METADATA +1 -1
- {pulumiverse_scaleway-1.35.0a1761031391.dist-info → pulumiverse_scaleway-1.36.0a1761749266.dist-info}/RECORD +28 -28
- {pulumiverse_scaleway-1.35.0a1761031391.dist-info → pulumiverse_scaleway-1.36.0a1761749266.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.35.0a1761031391.dist-info → pulumiverse_scaleway-1.36.0a1761749266.dist-info}/top_level.txt +0 -0
pulumiverse_scaleway/_inputs.py
CHANGED
|
@@ -109,6 +109,8 @@ __all__ = [
|
|
|
109
109
|
'InferenceDeploymentPublicEndpointArgsDict',
|
|
110
110
|
'InstanceImageAdditionalVolumeArgs',
|
|
111
111
|
'InstanceImageAdditionalVolumeArgsDict',
|
|
112
|
+
'InstanceImageRootVolumeArgs',
|
|
113
|
+
'InstanceImageRootVolumeArgsDict',
|
|
112
114
|
'InstancePrivateNicPrivateIpArgs',
|
|
113
115
|
'InstancePrivateNicPrivateIpArgsDict',
|
|
114
116
|
'InstanceSecurityGroupInboundRuleArgs',
|
|
@@ -4035,34 +4037,14 @@ class InferenceDeploymentPublicEndpointArgs:
|
|
|
4035
4037
|
|
|
4036
4038
|
if not MYPY:
|
|
4037
4039
|
class InstanceImageAdditionalVolumeArgsDict(TypedDict):
|
|
4038
|
-
creation_date: NotRequired[pulumi.Input[_builtins.str]]
|
|
4039
|
-
"""
|
|
4040
|
-
Date of the volume creation.
|
|
4041
|
-
"""
|
|
4042
|
-
export_uri: NotRequired[pulumi.Input[_builtins.str]]
|
|
4043
|
-
"""
|
|
4044
|
-
The export URI of the volume.
|
|
4045
|
-
"""
|
|
4046
4040
|
id: NotRequired[pulumi.Input[_builtins.str]]
|
|
4047
4041
|
"""
|
|
4048
4042
|
ID of the server containing the volume.
|
|
4049
4043
|
"""
|
|
4050
|
-
modification_date: NotRequired[pulumi.Input[_builtins.str]]
|
|
4051
|
-
"""
|
|
4052
|
-
Date of volume latest update.
|
|
4053
|
-
"""
|
|
4054
4044
|
name: NotRequired[pulumi.Input[_builtins.str]]
|
|
4055
4045
|
"""
|
|
4056
4046
|
The name of the image. If not provided it will be randomly generated.
|
|
4057
4047
|
"""
|
|
4058
|
-
organization: NotRequired[pulumi.Input[_builtins.str]]
|
|
4059
|
-
"""
|
|
4060
|
-
The organization ID the volume is associated with.
|
|
4061
|
-
"""
|
|
4062
|
-
project: NotRequired[pulumi.Input[_builtins.str]]
|
|
4063
|
-
"""
|
|
4064
|
-
ID of the project the volume is associated with
|
|
4065
|
-
"""
|
|
4066
4048
|
server: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]
|
|
4067
4049
|
"""
|
|
4068
4050
|
Description of the server containing the volume (in case the image is a backup from a server).
|
|
@@ -4071,21 +4053,13 @@ if not MYPY:
|
|
|
4071
4053
|
"""
|
|
4072
4054
|
The size of the volume.
|
|
4073
4055
|
"""
|
|
4074
|
-
state: NotRequired[pulumi.Input[_builtins.str]]
|
|
4075
|
-
"""
|
|
4076
|
-
State of the volume.
|
|
4077
|
-
"""
|
|
4078
4056
|
tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
4079
4057
|
"""
|
|
4080
4058
|
A list of tags to apply to the image.
|
|
4081
4059
|
"""
|
|
4082
4060
|
volume_type: NotRequired[pulumi.Input[_builtins.str]]
|
|
4083
4061
|
"""
|
|
4084
|
-
The type of volume, possible values are `l_ssd` and `
|
|
4085
|
-
"""
|
|
4086
|
-
zone: NotRequired[pulumi.Input[_builtins.str]]
|
|
4087
|
-
"""
|
|
4088
|
-
The zone in which the image should be created.
|
|
4062
|
+
The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
|
|
4089
4063
|
"""
|
|
4090
4064
|
elif False:
|
|
4091
4065
|
InstanceImageAdditionalVolumeArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -4093,84 +4067,32 @@ elif False:
|
|
|
4093
4067
|
@pulumi.input_type
|
|
4094
4068
|
class InstanceImageAdditionalVolumeArgs:
|
|
4095
4069
|
def __init__(__self__, *,
|
|
4096
|
-
creation_date: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4097
|
-
export_uri: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4098
4070
|
id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4099
|
-
modification_date: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4100
4071
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4101
|
-
organization: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4102
|
-
project: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4103
4072
|
server: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
4104
4073
|
size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
4105
|
-
state: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4106
4074
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
4107
|
-
volume_type: Optional[pulumi.Input[_builtins.str]] = None
|
|
4108
|
-
zone: Optional[pulumi.Input[_builtins.str]] = None):
|
|
4075
|
+
volume_type: Optional[pulumi.Input[_builtins.str]] = None):
|
|
4109
4076
|
"""
|
|
4110
|
-
:param pulumi.Input[_builtins.str] creation_date: Date of the volume creation.
|
|
4111
|
-
:param pulumi.Input[_builtins.str] export_uri: The export URI of the volume.
|
|
4112
4077
|
:param pulumi.Input[_builtins.str] id: ID of the server containing the volume.
|
|
4113
|
-
:param pulumi.Input[_builtins.str] modification_date: Date of volume latest update.
|
|
4114
4078
|
:param pulumi.Input[_builtins.str] name: The name of the image. If not provided it will be randomly generated.
|
|
4115
|
-
:param pulumi.Input[_builtins.str] organization: The organization ID the volume is associated with.
|
|
4116
|
-
:param pulumi.Input[_builtins.str] project: ID of the project the volume is associated with
|
|
4117
4079
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] server: Description of the server containing the volume (in case the image is a backup from a server).
|
|
4118
4080
|
:param pulumi.Input[_builtins.int] size: The size of the volume.
|
|
4119
|
-
:param pulumi.Input[_builtins.str] state: State of the volume.
|
|
4120
4081
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: A list of tags to apply to the image.
|
|
4121
|
-
:param pulumi.Input[_builtins.str] volume_type: The type of volume, possible values are `l_ssd` and `
|
|
4122
|
-
:param pulumi.Input[_builtins.str] zone: The zone in which the image should be created.
|
|
4082
|
+
:param pulumi.Input[_builtins.str] volume_type: The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
|
|
4123
4083
|
"""
|
|
4124
|
-
if creation_date is not None:
|
|
4125
|
-
pulumi.set(__self__, "creation_date", creation_date)
|
|
4126
|
-
if export_uri is not None:
|
|
4127
|
-
pulumi.set(__self__, "export_uri", export_uri)
|
|
4128
4084
|
if id is not None:
|
|
4129
4085
|
pulumi.set(__self__, "id", id)
|
|
4130
|
-
if modification_date is not None:
|
|
4131
|
-
pulumi.set(__self__, "modification_date", modification_date)
|
|
4132
4086
|
if name is not None:
|
|
4133
4087
|
pulumi.set(__self__, "name", name)
|
|
4134
|
-
if organization is not None:
|
|
4135
|
-
pulumi.set(__self__, "organization", organization)
|
|
4136
|
-
if project is not None:
|
|
4137
|
-
pulumi.set(__self__, "project", project)
|
|
4138
4088
|
if server is not None:
|
|
4139
4089
|
pulumi.set(__self__, "server", server)
|
|
4140
4090
|
if size is not None:
|
|
4141
4091
|
pulumi.set(__self__, "size", size)
|
|
4142
|
-
if state is not None:
|
|
4143
|
-
pulumi.set(__self__, "state", state)
|
|
4144
4092
|
if tags is not None:
|
|
4145
4093
|
pulumi.set(__self__, "tags", tags)
|
|
4146
4094
|
if volume_type is not None:
|
|
4147
4095
|
pulumi.set(__self__, "volume_type", volume_type)
|
|
4148
|
-
if zone is not None:
|
|
4149
|
-
pulumi.set(__self__, "zone", zone)
|
|
4150
|
-
|
|
4151
|
-
@_builtins.property
|
|
4152
|
-
@pulumi.getter(name="creationDate")
|
|
4153
|
-
def creation_date(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4154
|
-
"""
|
|
4155
|
-
Date of the volume creation.
|
|
4156
|
-
"""
|
|
4157
|
-
return pulumi.get(self, "creation_date")
|
|
4158
|
-
|
|
4159
|
-
@creation_date.setter
|
|
4160
|
-
def creation_date(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4161
|
-
pulumi.set(self, "creation_date", value)
|
|
4162
|
-
|
|
4163
|
-
@_builtins.property
|
|
4164
|
-
@pulumi.getter(name="exportUri")
|
|
4165
|
-
def export_uri(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4166
|
-
"""
|
|
4167
|
-
The export URI of the volume.
|
|
4168
|
-
"""
|
|
4169
|
-
return pulumi.get(self, "export_uri")
|
|
4170
|
-
|
|
4171
|
-
@export_uri.setter
|
|
4172
|
-
def export_uri(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4173
|
-
pulumi.set(self, "export_uri", value)
|
|
4174
4096
|
|
|
4175
4097
|
@_builtins.property
|
|
4176
4098
|
@pulumi.getter
|
|
@@ -4184,18 +4106,6 @@ class InstanceImageAdditionalVolumeArgs:
|
|
|
4184
4106
|
def id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4185
4107
|
pulumi.set(self, "id", value)
|
|
4186
4108
|
|
|
4187
|
-
@_builtins.property
|
|
4188
|
-
@pulumi.getter(name="modificationDate")
|
|
4189
|
-
def modification_date(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4190
|
-
"""
|
|
4191
|
-
Date of volume latest update.
|
|
4192
|
-
"""
|
|
4193
|
-
return pulumi.get(self, "modification_date")
|
|
4194
|
-
|
|
4195
|
-
@modification_date.setter
|
|
4196
|
-
def modification_date(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4197
|
-
pulumi.set(self, "modification_date", value)
|
|
4198
|
-
|
|
4199
4109
|
@_builtins.property
|
|
4200
4110
|
@pulumi.getter
|
|
4201
4111
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -4208,30 +4118,6 @@ class InstanceImageAdditionalVolumeArgs:
|
|
|
4208
4118
|
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4209
4119
|
pulumi.set(self, "name", value)
|
|
4210
4120
|
|
|
4211
|
-
@_builtins.property
|
|
4212
|
-
@pulumi.getter
|
|
4213
|
-
def organization(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4214
|
-
"""
|
|
4215
|
-
The organization ID the volume is associated with.
|
|
4216
|
-
"""
|
|
4217
|
-
return pulumi.get(self, "organization")
|
|
4218
|
-
|
|
4219
|
-
@organization.setter
|
|
4220
|
-
def organization(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4221
|
-
pulumi.set(self, "organization", value)
|
|
4222
|
-
|
|
4223
|
-
@_builtins.property
|
|
4224
|
-
@pulumi.getter
|
|
4225
|
-
def project(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4226
|
-
"""
|
|
4227
|
-
ID of the project the volume is associated with
|
|
4228
|
-
"""
|
|
4229
|
-
return pulumi.get(self, "project")
|
|
4230
|
-
|
|
4231
|
-
@project.setter
|
|
4232
|
-
def project(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4233
|
-
pulumi.set(self, "project", value)
|
|
4234
|
-
|
|
4235
4121
|
@_builtins.property
|
|
4236
4122
|
@pulumi.getter
|
|
4237
4123
|
def server(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
@@ -4256,18 +4142,6 @@ class InstanceImageAdditionalVolumeArgs:
|
|
|
4256
4142
|
def size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
4257
4143
|
pulumi.set(self, "size", value)
|
|
4258
4144
|
|
|
4259
|
-
@_builtins.property
|
|
4260
|
-
@pulumi.getter
|
|
4261
|
-
def state(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4262
|
-
"""
|
|
4263
|
-
State of the volume.
|
|
4264
|
-
"""
|
|
4265
|
-
return pulumi.get(self, "state")
|
|
4266
|
-
|
|
4267
|
-
@state.setter
|
|
4268
|
-
def state(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4269
|
-
pulumi.set(self, "state", value)
|
|
4270
|
-
|
|
4271
4145
|
@_builtins.property
|
|
4272
4146
|
@pulumi.getter
|
|
4273
4147
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -4284,7 +4158,7 @@ class InstanceImageAdditionalVolumeArgs:
|
|
|
4284
4158
|
@pulumi.getter(name="volumeType")
|
|
4285
4159
|
def volume_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4286
4160
|
"""
|
|
4287
|
-
The type of volume, possible values are `l_ssd` and `
|
|
4161
|
+
The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
|
|
4288
4162
|
"""
|
|
4289
4163
|
return pulumi.get(self, "volume_type")
|
|
4290
4164
|
|
|
@@ -4292,17 +4166,97 @@ class InstanceImageAdditionalVolumeArgs:
|
|
|
4292
4166
|
def volume_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4293
4167
|
pulumi.set(self, "volume_type", value)
|
|
4294
4168
|
|
|
4169
|
+
|
|
4170
|
+
if not MYPY:
|
|
4171
|
+
class InstanceImageRootVolumeArgsDict(TypedDict):
|
|
4172
|
+
id: NotRequired[pulumi.Input[_builtins.str]]
|
|
4173
|
+
"""
|
|
4174
|
+
ID of the server containing the volume.
|
|
4175
|
+
"""
|
|
4176
|
+
name: NotRequired[pulumi.Input[_builtins.str]]
|
|
4177
|
+
"""
|
|
4178
|
+
The name of the image. If not provided it will be randomly generated.
|
|
4179
|
+
"""
|
|
4180
|
+
size: NotRequired[pulumi.Input[_builtins.int]]
|
|
4181
|
+
"""
|
|
4182
|
+
The size of the volume.
|
|
4183
|
+
"""
|
|
4184
|
+
volume_type: NotRequired[pulumi.Input[_builtins.str]]
|
|
4185
|
+
"""
|
|
4186
|
+
The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
|
|
4187
|
+
"""
|
|
4188
|
+
elif False:
|
|
4189
|
+
InstanceImageRootVolumeArgsDict: TypeAlias = Mapping[str, Any]
|
|
4190
|
+
|
|
4191
|
+
@pulumi.input_type
|
|
4192
|
+
class InstanceImageRootVolumeArgs:
|
|
4193
|
+
def __init__(__self__, *,
|
|
4194
|
+
id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4195
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4196
|
+
size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
4197
|
+
volume_type: Optional[pulumi.Input[_builtins.str]] = None):
|
|
4198
|
+
"""
|
|
4199
|
+
:param pulumi.Input[_builtins.str] id: ID of the server containing the volume.
|
|
4200
|
+
:param pulumi.Input[_builtins.str] name: The name of the image. If not provided it will be randomly generated.
|
|
4201
|
+
:param pulumi.Input[_builtins.int] size: The size of the volume.
|
|
4202
|
+
:param pulumi.Input[_builtins.str] volume_type: The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
|
|
4203
|
+
"""
|
|
4204
|
+
if id is not None:
|
|
4205
|
+
pulumi.set(__self__, "id", id)
|
|
4206
|
+
if name is not None:
|
|
4207
|
+
pulumi.set(__self__, "name", name)
|
|
4208
|
+
if size is not None:
|
|
4209
|
+
pulumi.set(__self__, "size", size)
|
|
4210
|
+
if volume_type is not None:
|
|
4211
|
+
pulumi.set(__self__, "volume_type", volume_type)
|
|
4212
|
+
|
|
4295
4213
|
@_builtins.property
|
|
4296
4214
|
@pulumi.getter
|
|
4297
|
-
def
|
|
4215
|
+
def id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4298
4216
|
"""
|
|
4299
|
-
|
|
4217
|
+
ID of the server containing the volume.
|
|
4300
4218
|
"""
|
|
4301
|
-
return pulumi.get(self, "
|
|
4219
|
+
return pulumi.get(self, "id")
|
|
4302
4220
|
|
|
4303
|
-
@
|
|
4304
|
-
def
|
|
4305
|
-
pulumi.set(self, "
|
|
4221
|
+
@id.setter
|
|
4222
|
+
def id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4223
|
+
pulumi.set(self, "id", value)
|
|
4224
|
+
|
|
4225
|
+
@_builtins.property
|
|
4226
|
+
@pulumi.getter
|
|
4227
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4228
|
+
"""
|
|
4229
|
+
The name of the image. If not provided it will be randomly generated.
|
|
4230
|
+
"""
|
|
4231
|
+
return pulumi.get(self, "name")
|
|
4232
|
+
|
|
4233
|
+
@name.setter
|
|
4234
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4235
|
+
pulumi.set(self, "name", value)
|
|
4236
|
+
|
|
4237
|
+
@_builtins.property
|
|
4238
|
+
@pulumi.getter
|
|
4239
|
+
def size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
4240
|
+
"""
|
|
4241
|
+
The size of the volume.
|
|
4242
|
+
"""
|
|
4243
|
+
return pulumi.get(self, "size")
|
|
4244
|
+
|
|
4245
|
+
@size.setter
|
|
4246
|
+
def size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
4247
|
+
pulumi.set(self, "size", value)
|
|
4248
|
+
|
|
4249
|
+
@_builtins.property
|
|
4250
|
+
@pulumi.getter(name="volumeType")
|
|
4251
|
+
def volume_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4252
|
+
"""
|
|
4253
|
+
The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
|
|
4254
|
+
"""
|
|
4255
|
+
return pulumi.get(self, "volume_type")
|
|
4256
|
+
|
|
4257
|
+
@volume_type.setter
|
|
4258
|
+
def volume_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4259
|
+
pulumi.set(self, "volume_type", value)
|
|
4306
4260
|
|
|
4307
4261
|
|
|
4308
4262
|
if not MYPY:
|
|
@@ -8209,7 +8163,7 @@ if not MYPY:
|
|
|
8209
8163
|
"""
|
|
8210
8164
|
IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
|
|
8211
8165
|
"""
|
|
8212
|
-
|
|
8166
|
+
static_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
8213
8167
|
"""
|
|
8214
8168
|
Define an IP address in the subnet of your private network that will be assigned to your load balancer instance
|
|
8215
8169
|
"""
|
|
@@ -8230,7 +8184,7 @@ class LoadbalancerPrivateNetworkArgs:
|
|
|
8230
8184
|
private_network_id: pulumi.Input[_builtins.str],
|
|
8231
8185
|
dhcp_config: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
8232
8186
|
ipam_ids: Optional[pulumi.Input[_builtins.str]] = None,
|
|
8233
|
-
|
|
8187
|
+
static_configs: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
8234
8188
|
status: Optional[pulumi.Input[_builtins.str]] = None,
|
|
8235
8189
|
zone: Optional[pulumi.Input[_builtins.str]] = None):
|
|
8236
8190
|
"""
|
|
@@ -8238,7 +8192,7 @@ class LoadbalancerPrivateNetworkArgs:
|
|
|
8238
8192
|
- > **Important:** Updates to `private_network` will recreate the attachment.
|
|
8239
8193
|
:param pulumi.Input[_builtins.bool] dhcp_config: Set to true if you want to let DHCP assign IP addresses
|
|
8240
8194
|
:param pulumi.Input[_builtins.str] ipam_ids: IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
|
|
8241
|
-
:param pulumi.Input[_builtins.str]
|
|
8195
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] static_configs: Define an IP address in the subnet of your private network that will be assigned to your load balancer instance
|
|
8242
8196
|
:param pulumi.Input[_builtins.str] status: The status of the private network connection.
|
|
8243
8197
|
:param pulumi.Input[_builtins.str] zone: `zone`) The zone of the Load Balancer.
|
|
8244
8198
|
"""
|
|
@@ -8250,11 +8204,11 @@ class LoadbalancerPrivateNetworkArgs:
|
|
|
8250
8204
|
pulumi.set(__self__, "dhcp_config", dhcp_config)
|
|
8251
8205
|
if ipam_ids is not None:
|
|
8252
8206
|
pulumi.set(__self__, "ipam_ids", ipam_ids)
|
|
8253
|
-
if
|
|
8207
|
+
if static_configs is not None:
|
|
8254
8208
|
warnings.warn("""static_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""", DeprecationWarning)
|
|
8255
|
-
pulumi.log.warn("""
|
|
8256
|
-
if
|
|
8257
|
-
pulumi.set(__self__, "
|
|
8209
|
+
pulumi.log.warn("""static_configs is deprecated: static_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""")
|
|
8210
|
+
if static_configs is not None:
|
|
8211
|
+
pulumi.set(__self__, "static_configs", static_configs)
|
|
8258
8212
|
if status is not None:
|
|
8259
8213
|
pulumi.set(__self__, "status", status)
|
|
8260
8214
|
if zone is not None:
|
|
@@ -8299,17 +8253,17 @@ class LoadbalancerPrivateNetworkArgs:
|
|
|
8299
8253
|
pulumi.set(self, "ipam_ids", value)
|
|
8300
8254
|
|
|
8301
8255
|
@_builtins.property
|
|
8302
|
-
@pulumi.getter(name="
|
|
8256
|
+
@pulumi.getter(name="staticConfigs")
|
|
8303
8257
|
@_utilities.deprecated("""static_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""")
|
|
8304
|
-
def
|
|
8258
|
+
def static_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
8305
8259
|
"""
|
|
8306
8260
|
Define an IP address in the subnet of your private network that will be assigned to your load balancer instance
|
|
8307
8261
|
"""
|
|
8308
|
-
return pulumi.get(self, "
|
|
8262
|
+
return pulumi.get(self, "static_configs")
|
|
8309
8263
|
|
|
8310
|
-
@
|
|
8311
|
-
def
|
|
8312
|
-
pulumi.set(self, "
|
|
8264
|
+
@static_configs.setter
|
|
8265
|
+
def static_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
8266
|
+
pulumi.set(self, "static_configs", value)
|
|
8313
8267
|
|
|
8314
8268
|
@_builtins.property
|
|
8315
8269
|
@pulumi.getter
|
|
@@ -866,6 +866,14 @@ class BaremetalServer(pulumi.CustomResource):
|
|
|
866
866
|
|
|
867
867
|
## Example Usage
|
|
868
868
|
|
|
869
|
+
### Basic
|
|
870
|
+
|
|
871
|
+
### With option
|
|
872
|
+
|
|
873
|
+
### With private network
|
|
874
|
+
|
|
875
|
+
### With IPAM IP IDs
|
|
876
|
+
|
|
869
877
|
### Without install config
|
|
870
878
|
|
|
871
879
|
```python
|
|
@@ -1008,6 +1016,14 @@ class BaremetalServer(pulumi.CustomResource):
|
|
|
1008
1016
|
|
|
1009
1017
|
## Example Usage
|
|
1010
1018
|
|
|
1019
|
+
### Basic
|
|
1020
|
+
|
|
1021
|
+
### With option
|
|
1022
|
+
|
|
1023
|
+
### With private network
|
|
1024
|
+
|
|
1025
|
+
### With IPAM IP IDs
|
|
1026
|
+
|
|
1011
1027
|
### Without install config
|
|
1012
1028
|
|
|
1013
1029
|
```python
|
|
@@ -100,6 +100,8 @@ def get_consumptions(project_id: Optional[_builtins.str] = None,
|
|
|
100
100
|
"""
|
|
101
101
|
Gets information about your Consumptions.
|
|
102
102
|
|
|
103
|
+
## Example Usage
|
|
104
|
+
|
|
103
105
|
|
|
104
106
|
:param _builtins.str project_id: `project_id`) The ID of the project the consumption list is associated with.
|
|
105
107
|
"""
|
|
@@ -119,6 +121,8 @@ def get_consumptions_output(project_id: Optional[pulumi.Input[Optional[_builtins
|
|
|
119
121
|
"""
|
|
120
122
|
Gets information about your Consumptions.
|
|
121
123
|
|
|
124
|
+
## Example Usage
|
|
125
|
+
|
|
122
126
|
|
|
123
127
|
:param _builtins.str project_id: `project_id`) The ID of the project the consumption list is associated with.
|
|
124
128
|
"""
|
|
@@ -296,6 +296,10 @@ class Snapshot(pulumi.CustomResource):
|
|
|
296
296
|
volume_id=block_volume.id)
|
|
297
297
|
```
|
|
298
298
|
|
|
299
|
+
### How to import from Object Storage
|
|
300
|
+
|
|
301
|
+
### How to export to Object Storage
|
|
302
|
+
|
|
299
303
|
## Import
|
|
300
304
|
|
|
301
305
|
This section explains how to import the snapshot of a Block Storage volume using the zoned ID format (`{zone}/{id}`).
|
|
@@ -346,6 +350,10 @@ class Snapshot(pulumi.CustomResource):
|
|
|
346
350
|
volume_id=block_volume.id)
|
|
347
351
|
```
|
|
348
352
|
|
|
353
|
+
### How to import from Object Storage
|
|
354
|
+
|
|
355
|
+
### How to export to Object Storage
|
|
356
|
+
|
|
349
357
|
## Import
|
|
350
358
|
|
|
351
359
|
This section explains how to import the snapshot of a Block Storage volume using the zoned ID format (`{zone}/{id}`).
|
|
@@ -301,6 +301,10 @@ class BlockSnapshot(pulumi.CustomResource):
|
|
|
301
301
|
volume_id=block_volume.id)
|
|
302
302
|
```
|
|
303
303
|
|
|
304
|
+
### How to import from Object Storage
|
|
305
|
+
|
|
306
|
+
### How to export to Object Storage
|
|
307
|
+
|
|
304
308
|
## Import
|
|
305
309
|
|
|
306
310
|
This section explains how to import the snapshot of a Block Storage volume using the zoned ID format (`{zone}/{id}`).
|
|
@@ -351,6 +355,10 @@ class BlockSnapshot(pulumi.CustomResource):
|
|
|
351
355
|
volume_id=block_volume.id)
|
|
352
356
|
```
|
|
353
357
|
|
|
358
|
+
### How to import from Object Storage
|
|
359
|
+
|
|
360
|
+
### How to export to Object Storage
|
|
361
|
+
|
|
354
362
|
## Import
|
|
355
363
|
|
|
356
364
|
This section explains how to import the snapshot of a Block Storage volume using the zoned ID format (`{zone}/{id}`).
|