pulumi-linode 5.2.0a1757042899__py3-none-any.whl → 5.3.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.
Potentially problematic release.
This version of pulumi-linode might be problematic. Click here for more details.
- pulumi_linode/_inputs.py +120 -5
- pulumi_linode/get_lke_cluster.py +46 -4
- pulumi_linode/lke_cluster.py +144 -3
- pulumi_linode/outputs.py +73 -4
- pulumi_linode/pulumi-plugin.json +1 -1
- {pulumi_linode-5.2.0a1757042899.dist-info → pulumi_linode-5.3.0.dist-info}/METADATA +1 -1
- {pulumi_linode-5.2.0a1757042899.dist-info → pulumi_linode-5.3.0.dist-info}/RECORD +9 -9
- {pulumi_linode-5.2.0a1757042899.dist-info → pulumi_linode-5.3.0.dist-info}/WHEEL +0 -0
- {pulumi_linode-5.2.0a1757042899.dist-info → pulumi_linode-5.3.0.dist-info}/top_level.txt +0 -0
pulumi_linode/_inputs.py
CHANGED
|
@@ -4044,12 +4044,16 @@ if not MYPY:
|
|
|
4044
4044
|
"""
|
|
4045
4045
|
Defines the ACL configuration for an LKE cluster's control plane.
|
|
4046
4046
|
"""
|
|
4047
|
-
|
|
4047
|
+
audit_logs_enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
|
4048
4048
|
"""
|
|
4049
|
-
|
|
4049
|
+
Enables audit logs on the cluster's control plane.
|
|
4050
4050
|
|
|
4051
4051
|
* `acl` - (Optional) Defines the ACL configuration for an LKE cluster's control plane.
|
|
4052
4052
|
"""
|
|
4053
|
+
high_availability: NotRequired[pulumi.Input[_builtins.bool]]
|
|
4054
|
+
"""
|
|
4055
|
+
Defines whether High Availability is enabled for the cluster Control Plane. This is an **irreversible** change.
|
|
4056
|
+
"""
|
|
4053
4057
|
elif False:
|
|
4054
4058
|
LkeClusterControlPlaneArgsDict: TypeAlias = Mapping[str, Any]
|
|
4055
4059
|
|
|
@@ -4057,15 +4061,19 @@ elif False:
|
|
|
4057
4061
|
class LkeClusterControlPlaneArgs:
|
|
4058
4062
|
def __init__(__self__, *,
|
|
4059
4063
|
acl: Optional[pulumi.Input['LkeClusterControlPlaneAclArgs']] = None,
|
|
4064
|
+
audit_logs_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
4060
4065
|
high_availability: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
4061
4066
|
"""
|
|
4062
4067
|
:param pulumi.Input['LkeClusterControlPlaneAclArgs'] acl: Defines the ACL configuration for an LKE cluster's control plane.
|
|
4063
|
-
:param pulumi.Input[_builtins.bool]
|
|
4068
|
+
:param pulumi.Input[_builtins.bool] audit_logs_enabled: Enables audit logs on the cluster's control plane.
|
|
4064
4069
|
|
|
4065
4070
|
* `acl` - (Optional) Defines the ACL configuration for an LKE cluster's control plane.
|
|
4071
|
+
:param pulumi.Input[_builtins.bool] high_availability: Defines whether High Availability is enabled for the cluster Control Plane. This is an **irreversible** change.
|
|
4066
4072
|
"""
|
|
4067
4073
|
if acl is not None:
|
|
4068
4074
|
pulumi.set(__self__, "acl", acl)
|
|
4075
|
+
if audit_logs_enabled is not None:
|
|
4076
|
+
pulumi.set(__self__, "audit_logs_enabled", audit_logs_enabled)
|
|
4069
4077
|
if high_availability is not None:
|
|
4070
4078
|
pulumi.set(__self__, "high_availability", high_availability)
|
|
4071
4079
|
|
|
@@ -4081,13 +4089,25 @@ class LkeClusterControlPlaneArgs:
|
|
|
4081
4089
|
def acl(self, value: Optional[pulumi.Input['LkeClusterControlPlaneAclArgs']]):
|
|
4082
4090
|
pulumi.set(self, "acl", value)
|
|
4083
4091
|
|
|
4092
|
+
@_builtins.property
|
|
4093
|
+
@pulumi.getter(name="auditLogsEnabled")
|
|
4094
|
+
def audit_logs_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
4095
|
+
"""
|
|
4096
|
+
Enables audit logs on the cluster's control plane.
|
|
4097
|
+
|
|
4098
|
+
* `acl` - (Optional) Defines the ACL configuration for an LKE cluster's control plane.
|
|
4099
|
+
"""
|
|
4100
|
+
return pulumi.get(self, "audit_logs_enabled")
|
|
4101
|
+
|
|
4102
|
+
@audit_logs_enabled.setter
|
|
4103
|
+
def audit_logs_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
4104
|
+
pulumi.set(self, "audit_logs_enabled", value)
|
|
4105
|
+
|
|
4084
4106
|
@_builtins.property
|
|
4085
4107
|
@pulumi.getter(name="highAvailability")
|
|
4086
4108
|
def high_availability(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
4087
4109
|
"""
|
|
4088
4110
|
Defines whether High Availability is enabled for the cluster Control Plane. This is an **irreversible** change.
|
|
4089
|
-
|
|
4090
|
-
* `acl` - (Optional) Defines the ACL configuration for an LKE cluster's control plane.
|
|
4091
4111
|
"""
|
|
4092
4112
|
return pulumi.get(self, "high_availability")
|
|
4093
4113
|
|
|
@@ -11328,6 +11348,10 @@ class GetKernelsKernelArgs:
|
|
|
11328
11348
|
|
|
11329
11349
|
if not MYPY:
|
|
11330
11350
|
class GetLkeClusterControlPlaneArgsDict(TypedDict):
|
|
11351
|
+
audit_logs_enabled: _builtins.bool
|
|
11352
|
+
"""
|
|
11353
|
+
Enables audit logs on the cluster's control plane.
|
|
11354
|
+
"""
|
|
11331
11355
|
high_availability: _builtins.bool
|
|
11332
11356
|
"""
|
|
11333
11357
|
Whether High Availability is enabled for the cluster Control Plane.
|
|
@@ -11342,16 +11366,31 @@ elif False:
|
|
|
11342
11366
|
@pulumi.input_type
|
|
11343
11367
|
class GetLkeClusterControlPlaneArgs:
|
|
11344
11368
|
def __init__(__self__, *,
|
|
11369
|
+
audit_logs_enabled: _builtins.bool,
|
|
11345
11370
|
high_availability: _builtins.bool,
|
|
11346
11371
|
acls: Optional[Sequence['GetLkeClusterControlPlaneAclArgs']] = None):
|
|
11347
11372
|
"""
|
|
11373
|
+
:param _builtins.bool audit_logs_enabled: Enables audit logs on the cluster's control plane.
|
|
11348
11374
|
:param _builtins.bool high_availability: Whether High Availability is enabled for the cluster Control Plane.
|
|
11349
11375
|
:param Sequence['GetLkeClusterControlPlaneAclArgs'] acls: The ACL configuration for an LKE cluster's control plane.
|
|
11350
11376
|
"""
|
|
11377
|
+
pulumi.set(__self__, "audit_logs_enabled", audit_logs_enabled)
|
|
11351
11378
|
pulumi.set(__self__, "high_availability", high_availability)
|
|
11352
11379
|
if acls is not None:
|
|
11353
11380
|
pulumi.set(__self__, "acls", acls)
|
|
11354
11381
|
|
|
11382
|
+
@_builtins.property
|
|
11383
|
+
@pulumi.getter(name="auditLogsEnabled")
|
|
11384
|
+
def audit_logs_enabled(self) -> _builtins.bool:
|
|
11385
|
+
"""
|
|
11386
|
+
Enables audit logs on the cluster's control plane.
|
|
11387
|
+
"""
|
|
11388
|
+
return pulumi.get(self, "audit_logs_enabled")
|
|
11389
|
+
|
|
11390
|
+
@audit_logs_enabled.setter
|
|
11391
|
+
def audit_logs_enabled(self, value: _builtins.bool):
|
|
11392
|
+
pulumi.set(self, "audit_logs_enabled", value)
|
|
11393
|
+
|
|
11355
11394
|
@_builtins.property
|
|
11356
11395
|
@pulumi.getter(name="highAvailability")
|
|
11357
11396
|
def high_availability(self) -> _builtins.bool:
|
|
@@ -12094,10 +12133,18 @@ if not MYPY:
|
|
|
12094
12133
|
"""
|
|
12095
12134
|
This Kubernetes cluster's location.
|
|
12096
12135
|
"""
|
|
12136
|
+
stack_type: _builtins.str
|
|
12137
|
+
"""
|
|
12138
|
+
The networking stack type of the Kubernetes cluster.
|
|
12139
|
+
"""
|
|
12097
12140
|
status: _builtins.str
|
|
12098
12141
|
"""
|
|
12099
12142
|
The status of the cluster.
|
|
12100
12143
|
"""
|
|
12144
|
+
subnet_id: _builtins.int
|
|
12145
|
+
"""
|
|
12146
|
+
The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled).
|
|
12147
|
+
"""
|
|
12101
12148
|
tags: Sequence[_builtins.str]
|
|
12102
12149
|
"""
|
|
12103
12150
|
An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
|
|
@@ -12110,6 +12157,10 @@ if not MYPY:
|
|
|
12110
12157
|
"""
|
|
12111
12158
|
When this Kubernetes cluster was updated.
|
|
12112
12159
|
"""
|
|
12160
|
+
vpc_id: _builtins.int
|
|
12161
|
+
"""
|
|
12162
|
+
The ID of the VPC to use for the Kubernetes cluster.
|
|
12163
|
+
"""
|
|
12113
12164
|
control_plane: NotRequired['GetLkeClustersLkeClusterControlPlaneArgsDict']
|
|
12114
12165
|
"""
|
|
12115
12166
|
Defines settings for the Kubernetes Control Plane.
|
|
@@ -12126,10 +12177,13 @@ class GetLkeClustersLkeClusterArgs:
|
|
|
12126
12177
|
k8s_version: _builtins.str,
|
|
12127
12178
|
label: _builtins.str,
|
|
12128
12179
|
region: _builtins.str,
|
|
12180
|
+
stack_type: _builtins.str,
|
|
12129
12181
|
status: _builtins.str,
|
|
12182
|
+
subnet_id: _builtins.int,
|
|
12130
12183
|
tags: Sequence[_builtins.str],
|
|
12131
12184
|
tier: _builtins.str,
|
|
12132
12185
|
updated: _builtins.str,
|
|
12186
|
+
vpc_id: _builtins.int,
|
|
12133
12187
|
control_plane: Optional['GetLkeClustersLkeClusterControlPlaneArgs'] = None):
|
|
12134
12188
|
"""
|
|
12135
12189
|
:param _builtins.bool apl_enabled: Enables the App Platform Layer for this cluster. Note: v4beta only and may not currently be available to all users.
|
|
@@ -12138,10 +12192,13 @@ class GetLkeClustersLkeClusterArgs:
|
|
|
12138
12192
|
:param _builtins.str k8s_version: The Kubernetes version for this Kubernetes cluster in the format of `major.minor` (e.g. `1.17`).
|
|
12139
12193
|
:param _builtins.str label: The unique label for the cluster.
|
|
12140
12194
|
:param _builtins.str region: This Kubernetes cluster's location.
|
|
12195
|
+
:param _builtins.str stack_type: The networking stack type of the Kubernetes cluster.
|
|
12141
12196
|
:param _builtins.str status: The status of the cluster.
|
|
12197
|
+
:param _builtins.int subnet_id: The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled).
|
|
12142
12198
|
:param Sequence[_builtins.str] tags: An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
|
|
12143
12199
|
:param _builtins.str tier: The desired Kubernetes tier. (**Note: v4beta only and may not currently be available to all users.**)
|
|
12144
12200
|
:param _builtins.str updated: When this Kubernetes cluster was updated.
|
|
12201
|
+
:param _builtins.int vpc_id: The ID of the VPC to use for the Kubernetes cluster.
|
|
12145
12202
|
:param 'GetLkeClustersLkeClusterControlPlaneArgs' control_plane: Defines settings for the Kubernetes Control Plane.
|
|
12146
12203
|
"""
|
|
12147
12204
|
pulumi.set(__self__, "apl_enabled", apl_enabled)
|
|
@@ -12150,10 +12207,13 @@ class GetLkeClustersLkeClusterArgs:
|
|
|
12150
12207
|
pulumi.set(__self__, "k8s_version", k8s_version)
|
|
12151
12208
|
pulumi.set(__self__, "label", label)
|
|
12152
12209
|
pulumi.set(__self__, "region", region)
|
|
12210
|
+
pulumi.set(__self__, "stack_type", stack_type)
|
|
12153
12211
|
pulumi.set(__self__, "status", status)
|
|
12212
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
12154
12213
|
pulumi.set(__self__, "tags", tags)
|
|
12155
12214
|
pulumi.set(__self__, "tier", tier)
|
|
12156
12215
|
pulumi.set(__self__, "updated", updated)
|
|
12216
|
+
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
12157
12217
|
if control_plane is not None:
|
|
12158
12218
|
pulumi.set(__self__, "control_plane", control_plane)
|
|
12159
12219
|
|
|
@@ -12229,6 +12289,18 @@ class GetLkeClustersLkeClusterArgs:
|
|
|
12229
12289
|
def region(self, value: _builtins.str):
|
|
12230
12290
|
pulumi.set(self, "region", value)
|
|
12231
12291
|
|
|
12292
|
+
@_builtins.property
|
|
12293
|
+
@pulumi.getter(name="stackType")
|
|
12294
|
+
def stack_type(self) -> _builtins.str:
|
|
12295
|
+
"""
|
|
12296
|
+
The networking stack type of the Kubernetes cluster.
|
|
12297
|
+
"""
|
|
12298
|
+
return pulumi.get(self, "stack_type")
|
|
12299
|
+
|
|
12300
|
+
@stack_type.setter
|
|
12301
|
+
def stack_type(self, value: _builtins.str):
|
|
12302
|
+
pulumi.set(self, "stack_type", value)
|
|
12303
|
+
|
|
12232
12304
|
@_builtins.property
|
|
12233
12305
|
@pulumi.getter
|
|
12234
12306
|
def status(self) -> _builtins.str:
|
|
@@ -12241,6 +12313,18 @@ class GetLkeClustersLkeClusterArgs:
|
|
|
12241
12313
|
def status(self, value: _builtins.str):
|
|
12242
12314
|
pulumi.set(self, "status", value)
|
|
12243
12315
|
|
|
12316
|
+
@_builtins.property
|
|
12317
|
+
@pulumi.getter(name="subnetId")
|
|
12318
|
+
def subnet_id(self) -> _builtins.int:
|
|
12319
|
+
"""
|
|
12320
|
+
The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled).
|
|
12321
|
+
"""
|
|
12322
|
+
return pulumi.get(self, "subnet_id")
|
|
12323
|
+
|
|
12324
|
+
@subnet_id.setter
|
|
12325
|
+
def subnet_id(self, value: _builtins.int):
|
|
12326
|
+
pulumi.set(self, "subnet_id", value)
|
|
12327
|
+
|
|
12244
12328
|
@_builtins.property
|
|
12245
12329
|
@pulumi.getter
|
|
12246
12330
|
def tags(self) -> Sequence[_builtins.str]:
|
|
@@ -12277,6 +12361,18 @@ class GetLkeClustersLkeClusterArgs:
|
|
|
12277
12361
|
def updated(self, value: _builtins.str):
|
|
12278
12362
|
pulumi.set(self, "updated", value)
|
|
12279
12363
|
|
|
12364
|
+
@_builtins.property
|
|
12365
|
+
@pulumi.getter(name="vpcId")
|
|
12366
|
+
def vpc_id(self) -> _builtins.int:
|
|
12367
|
+
"""
|
|
12368
|
+
The ID of the VPC to use for the Kubernetes cluster.
|
|
12369
|
+
"""
|
|
12370
|
+
return pulumi.get(self, "vpc_id")
|
|
12371
|
+
|
|
12372
|
+
@vpc_id.setter
|
|
12373
|
+
def vpc_id(self, value: _builtins.int):
|
|
12374
|
+
pulumi.set(self, "vpc_id", value)
|
|
12375
|
+
|
|
12280
12376
|
@_builtins.property
|
|
12281
12377
|
@pulumi.getter(name="controlPlane")
|
|
12282
12378
|
def control_plane(self) -> Optional['GetLkeClustersLkeClusterControlPlaneArgs']:
|
|
@@ -12292,6 +12388,10 @@ class GetLkeClustersLkeClusterArgs:
|
|
|
12292
12388
|
|
|
12293
12389
|
if not MYPY:
|
|
12294
12390
|
class GetLkeClustersLkeClusterControlPlaneArgsDict(TypedDict):
|
|
12391
|
+
audit_logs_enabled: _builtins.bool
|
|
12392
|
+
"""
|
|
12393
|
+
Enables audit logs on the cluster's control plane.
|
|
12394
|
+
"""
|
|
12295
12395
|
high_availability: _builtins.bool
|
|
12296
12396
|
"""
|
|
12297
12397
|
Whether High Availability is enabled for the cluster Control Plane.
|
|
@@ -12302,12 +12402,27 @@ elif False:
|
|
|
12302
12402
|
@pulumi.input_type
|
|
12303
12403
|
class GetLkeClustersLkeClusterControlPlaneArgs:
|
|
12304
12404
|
def __init__(__self__, *,
|
|
12405
|
+
audit_logs_enabled: _builtins.bool,
|
|
12305
12406
|
high_availability: _builtins.bool):
|
|
12306
12407
|
"""
|
|
12408
|
+
:param _builtins.bool audit_logs_enabled: Enables audit logs on the cluster's control plane.
|
|
12307
12409
|
:param _builtins.bool high_availability: Whether High Availability is enabled for the cluster Control Plane.
|
|
12308
12410
|
"""
|
|
12411
|
+
pulumi.set(__self__, "audit_logs_enabled", audit_logs_enabled)
|
|
12309
12412
|
pulumi.set(__self__, "high_availability", high_availability)
|
|
12310
12413
|
|
|
12414
|
+
@_builtins.property
|
|
12415
|
+
@pulumi.getter(name="auditLogsEnabled")
|
|
12416
|
+
def audit_logs_enabled(self) -> _builtins.bool:
|
|
12417
|
+
"""
|
|
12418
|
+
Enables audit logs on the cluster's control plane.
|
|
12419
|
+
"""
|
|
12420
|
+
return pulumi.get(self, "audit_logs_enabled")
|
|
12421
|
+
|
|
12422
|
+
@audit_logs_enabled.setter
|
|
12423
|
+
def audit_logs_enabled(self, value: _builtins.bool):
|
|
12424
|
+
pulumi.set(self, "audit_logs_enabled", value)
|
|
12425
|
+
|
|
12311
12426
|
@_builtins.property
|
|
12312
12427
|
@pulumi.getter(name="highAvailability")
|
|
12313
12428
|
def high_availability(self) -> _builtins.bool:
|
pulumi_linode/get_lke_cluster.py
CHANGED
|
@@ -28,7 +28,7 @@ class GetLkeClusterResult:
|
|
|
28
28
|
"""
|
|
29
29
|
A collection of values returned by getLkeCluster.
|
|
30
30
|
"""
|
|
31
|
-
def __init__(__self__, api_endpoints=None, apl_enabled=None, control_planes=None, created=None, dashboard_url=None, id=None, k8s_version=None, kubeconfig=None, label=None, pools=None, region=None, status=None, tags=None, tier=None, updated=None):
|
|
31
|
+
def __init__(__self__, api_endpoints=None, apl_enabled=None, control_planes=None, created=None, dashboard_url=None, id=None, k8s_version=None, kubeconfig=None, label=None, pools=None, region=None, stack_type=None, status=None, subnet_id=None, tags=None, tier=None, updated=None, vpc_id=None):
|
|
32
32
|
if api_endpoints and not isinstance(api_endpoints, list):
|
|
33
33
|
raise TypeError("Expected argument 'api_endpoints' to be a list")
|
|
34
34
|
pulumi.set(__self__, "api_endpoints", api_endpoints)
|
|
@@ -62,9 +62,15 @@ class GetLkeClusterResult:
|
|
|
62
62
|
if region and not isinstance(region, str):
|
|
63
63
|
raise TypeError("Expected argument 'region' to be a str")
|
|
64
64
|
pulumi.set(__self__, "region", region)
|
|
65
|
+
if stack_type and not isinstance(stack_type, str):
|
|
66
|
+
raise TypeError("Expected argument 'stack_type' to be a str")
|
|
67
|
+
pulumi.set(__self__, "stack_type", stack_type)
|
|
65
68
|
if status and not isinstance(status, str):
|
|
66
69
|
raise TypeError("Expected argument 'status' to be a str")
|
|
67
70
|
pulumi.set(__self__, "status", status)
|
|
71
|
+
if subnet_id and not isinstance(subnet_id, int):
|
|
72
|
+
raise TypeError("Expected argument 'subnet_id' to be a int")
|
|
73
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
68
74
|
if tags and not isinstance(tags, list):
|
|
69
75
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
70
76
|
pulumi.set(__self__, "tags", tags)
|
|
@@ -74,6 +80,9 @@ class GetLkeClusterResult:
|
|
|
74
80
|
if updated and not isinstance(updated, str):
|
|
75
81
|
raise TypeError("Expected argument 'updated' to be a str")
|
|
76
82
|
pulumi.set(__self__, "updated", updated)
|
|
83
|
+
if vpc_id and not isinstance(vpc_id, int):
|
|
84
|
+
raise TypeError("Expected argument 'vpc_id' to be a int")
|
|
85
|
+
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
77
86
|
|
|
78
87
|
@_builtins.property
|
|
79
88
|
@pulumi.getter(name="apiEndpoints")
|
|
@@ -163,6 +172,14 @@ class GetLkeClusterResult:
|
|
|
163
172
|
"""
|
|
164
173
|
return pulumi.get(self, "region")
|
|
165
174
|
|
|
175
|
+
@_builtins.property
|
|
176
|
+
@pulumi.getter(name="stackType")
|
|
177
|
+
def stack_type(self) -> _builtins.str:
|
|
178
|
+
"""
|
|
179
|
+
The networking stack type of the Kubernetes cluster.
|
|
180
|
+
"""
|
|
181
|
+
return pulumi.get(self, "stack_type")
|
|
182
|
+
|
|
166
183
|
@_builtins.property
|
|
167
184
|
@pulumi.getter
|
|
168
185
|
def status(self) -> _builtins.str:
|
|
@@ -171,6 +188,14 @@ class GetLkeClusterResult:
|
|
|
171
188
|
"""
|
|
172
189
|
return pulumi.get(self, "status")
|
|
173
190
|
|
|
191
|
+
@_builtins.property
|
|
192
|
+
@pulumi.getter(name="subnetId")
|
|
193
|
+
def subnet_id(self) -> _builtins.int:
|
|
194
|
+
"""
|
|
195
|
+
The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled).
|
|
196
|
+
"""
|
|
197
|
+
return pulumi.get(self, "subnet_id")
|
|
198
|
+
|
|
174
199
|
@_builtins.property
|
|
175
200
|
@pulumi.getter
|
|
176
201
|
def tags(self) -> Sequence[_builtins.str]:
|
|
@@ -195,6 +220,14 @@ class GetLkeClusterResult:
|
|
|
195
220
|
"""
|
|
196
221
|
return pulumi.get(self, "updated")
|
|
197
222
|
|
|
223
|
+
@_builtins.property
|
|
224
|
+
@pulumi.getter(name="vpcId")
|
|
225
|
+
def vpc_id(self) -> _builtins.int:
|
|
226
|
+
"""
|
|
227
|
+
The ID of the VPC to use for the Kubernetes cluster.
|
|
228
|
+
"""
|
|
229
|
+
return pulumi.get(self, "vpc_id")
|
|
230
|
+
|
|
198
231
|
|
|
199
232
|
class AwaitableGetLkeClusterResult(GetLkeClusterResult):
|
|
200
233
|
# pylint: disable=using-constant-test
|
|
@@ -213,10 +246,13 @@ class AwaitableGetLkeClusterResult(GetLkeClusterResult):
|
|
|
213
246
|
label=self.label,
|
|
214
247
|
pools=self.pools,
|
|
215
248
|
region=self.region,
|
|
249
|
+
stack_type=self.stack_type,
|
|
216
250
|
status=self.status,
|
|
251
|
+
subnet_id=self.subnet_id,
|
|
217
252
|
tags=self.tags,
|
|
218
253
|
tier=self.tier,
|
|
219
|
-
updated=self.updated
|
|
254
|
+
updated=self.updated,
|
|
255
|
+
vpc_id=self.vpc_id)
|
|
220
256
|
|
|
221
257
|
|
|
222
258
|
def get_lke_cluster(control_planes: Optional[Sequence[Union['GetLkeClusterControlPlaneArgs', 'GetLkeClusterControlPlaneArgsDict']]] = None,
|
|
@@ -260,10 +296,13 @@ def get_lke_cluster(control_planes: Optional[Sequence[Union['GetLkeClusterContro
|
|
|
260
296
|
label=pulumi.get(__ret__, 'label'),
|
|
261
297
|
pools=pulumi.get(__ret__, 'pools'),
|
|
262
298
|
region=pulumi.get(__ret__, 'region'),
|
|
299
|
+
stack_type=pulumi.get(__ret__, 'stack_type'),
|
|
263
300
|
status=pulumi.get(__ret__, 'status'),
|
|
301
|
+
subnet_id=pulumi.get(__ret__, 'subnet_id'),
|
|
264
302
|
tags=pulumi.get(__ret__, 'tags'),
|
|
265
303
|
tier=pulumi.get(__ret__, 'tier'),
|
|
266
|
-
updated=pulumi.get(__ret__, 'updated')
|
|
304
|
+
updated=pulumi.get(__ret__, 'updated'),
|
|
305
|
+
vpc_id=pulumi.get(__ret__, 'vpc_id'))
|
|
267
306
|
def get_lke_cluster_output(control_planes: Optional[pulumi.Input[Optional[Sequence[Union['GetLkeClusterControlPlaneArgs', 'GetLkeClusterControlPlaneArgsDict']]]]] = None,
|
|
268
307
|
id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
269
308
|
pools: Optional[pulumi.Input[Optional[Sequence[Union['GetLkeClusterPoolArgs', 'GetLkeClusterPoolArgsDict']]]]] = None,
|
|
@@ -304,7 +343,10 @@ def get_lke_cluster_output(control_planes: Optional[pulumi.Input[Optional[Sequen
|
|
|
304
343
|
label=pulumi.get(__response__, 'label'),
|
|
305
344
|
pools=pulumi.get(__response__, 'pools'),
|
|
306
345
|
region=pulumi.get(__response__, 'region'),
|
|
346
|
+
stack_type=pulumi.get(__response__, 'stack_type'),
|
|
307
347
|
status=pulumi.get(__response__, 'status'),
|
|
348
|
+
subnet_id=pulumi.get(__response__, 'subnet_id'),
|
|
308
349
|
tags=pulumi.get(__response__, 'tags'),
|
|
309
350
|
tier=pulumi.get(__response__, 'tier'),
|
|
310
|
-
updated=pulumi.get(__response__, 'updated')
|
|
351
|
+
updated=pulumi.get(__response__, 'updated'),
|
|
352
|
+
vpc_id=pulumi.get(__response__, 'vpc_id')))
|
pulumi_linode/lke_cluster.py
CHANGED
|
@@ -28,8 +28,11 @@ class LkeClusterArgs:
|
|
|
28
28
|
apl_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
29
29
|
control_plane: Optional[pulumi.Input['LkeClusterControlPlaneArgs']] = None,
|
|
30
30
|
external_pool_tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
31
|
+
stack_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
32
|
+
subnet_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
31
33
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
32
|
-
tier: Optional[pulumi.Input[_builtins.str]] = None
|
|
34
|
+
tier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
35
|
+
vpc_id: Optional[pulumi.Input[_builtins.int]] = None):
|
|
33
36
|
"""
|
|
34
37
|
The set of arguments for constructing a LkeCluster resource.
|
|
35
38
|
:param pulumi.Input[_builtins.str] k8s_version: The desired Kubernetes version for this Kubernetes cluster in the format of `major.minor` (e.g. `1.21`), and the latest supported patch version will be deployed.
|
|
@@ -43,8 +46,11 @@ class LkeClusterArgs:
|
|
|
43
46
|
:param pulumi.Input[_builtins.bool] apl_enabled: Enables the App Platform Layer
|
|
44
47
|
:param pulumi.Input['LkeClusterControlPlaneArgs'] control_plane: Defines settings for the Kubernetes Control Plane.
|
|
45
48
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] external_pool_tags: A set of node pool tags to ignore when planning and applying this cluster. This prevents externally managed node pools from being deleted or unintentionally updated on subsequent applies. See Externally Managed Node Pools for more details.
|
|
49
|
+
:param pulumi.Input[_builtins.str] stack_type: The networking stack type of the Kubernetes cluster.
|
|
50
|
+
:param pulumi.Input[_builtins.int] subnet_id: The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled). (**Note: v4beta only and may not currently be available to all users.**)
|
|
46
51
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: An array of tags applied to the Kubernetes cluster. Tags are case-insensitive and are for organizational purposes only.
|
|
47
52
|
:param pulumi.Input[_builtins.str] tier: The desired Kubernetes tier. (**Note: v4beta only and may not currently be available to all users.**)
|
|
53
|
+
:param pulumi.Input[_builtins.int] vpc_id: The ID of the VPC to use for the Kubernetes cluster.
|
|
48
54
|
"""
|
|
49
55
|
pulumi.set(__self__, "k8s_version", k8s_version)
|
|
50
56
|
pulumi.set(__self__, "label", label)
|
|
@@ -56,10 +62,16 @@ class LkeClusterArgs:
|
|
|
56
62
|
pulumi.set(__self__, "control_plane", control_plane)
|
|
57
63
|
if external_pool_tags is not None:
|
|
58
64
|
pulumi.set(__self__, "external_pool_tags", external_pool_tags)
|
|
65
|
+
if stack_type is not None:
|
|
66
|
+
pulumi.set(__self__, "stack_type", stack_type)
|
|
67
|
+
if subnet_id is not None:
|
|
68
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
59
69
|
if tags is not None:
|
|
60
70
|
pulumi.set(__self__, "tags", tags)
|
|
61
71
|
if tier is not None:
|
|
62
72
|
pulumi.set(__self__, "tier", tier)
|
|
73
|
+
if vpc_id is not None:
|
|
74
|
+
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
63
75
|
|
|
64
76
|
@_builtins.property
|
|
65
77
|
@pulumi.getter(name="k8sVersion")
|
|
@@ -149,6 +161,30 @@ class LkeClusterArgs:
|
|
|
149
161
|
def external_pool_tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
150
162
|
pulumi.set(self, "external_pool_tags", value)
|
|
151
163
|
|
|
164
|
+
@_builtins.property
|
|
165
|
+
@pulumi.getter(name="stackType")
|
|
166
|
+
def stack_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
167
|
+
"""
|
|
168
|
+
The networking stack type of the Kubernetes cluster.
|
|
169
|
+
"""
|
|
170
|
+
return pulumi.get(self, "stack_type")
|
|
171
|
+
|
|
172
|
+
@stack_type.setter
|
|
173
|
+
def stack_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
174
|
+
pulumi.set(self, "stack_type", value)
|
|
175
|
+
|
|
176
|
+
@_builtins.property
|
|
177
|
+
@pulumi.getter(name="subnetId")
|
|
178
|
+
def subnet_id(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
179
|
+
"""
|
|
180
|
+
The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled). (**Note: v4beta only and may not currently be available to all users.**)
|
|
181
|
+
"""
|
|
182
|
+
return pulumi.get(self, "subnet_id")
|
|
183
|
+
|
|
184
|
+
@subnet_id.setter
|
|
185
|
+
def subnet_id(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
186
|
+
pulumi.set(self, "subnet_id", value)
|
|
187
|
+
|
|
152
188
|
@_builtins.property
|
|
153
189
|
@pulumi.getter
|
|
154
190
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -173,6 +209,18 @@ class LkeClusterArgs:
|
|
|
173
209
|
def tier(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
174
210
|
pulumi.set(self, "tier", value)
|
|
175
211
|
|
|
212
|
+
@_builtins.property
|
|
213
|
+
@pulumi.getter(name="vpcId")
|
|
214
|
+
def vpc_id(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
215
|
+
"""
|
|
216
|
+
The ID of the VPC to use for the Kubernetes cluster.
|
|
217
|
+
"""
|
|
218
|
+
return pulumi.get(self, "vpc_id")
|
|
219
|
+
|
|
220
|
+
@vpc_id.setter
|
|
221
|
+
def vpc_id(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
222
|
+
pulumi.set(self, "vpc_id", value)
|
|
223
|
+
|
|
176
224
|
|
|
177
225
|
@pulumi.input_type
|
|
178
226
|
class _LkeClusterState:
|
|
@@ -187,9 +235,12 @@ class _LkeClusterState:
|
|
|
187
235
|
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
188
236
|
pools: Optional[pulumi.Input[Sequence[pulumi.Input['LkeClusterPoolArgs']]]] = None,
|
|
189
237
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
238
|
+
stack_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
190
239
|
status: Optional[pulumi.Input[_builtins.str]] = None,
|
|
240
|
+
subnet_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
191
241
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
192
|
-
tier: Optional[pulumi.Input[_builtins.str]] = None
|
|
242
|
+
tier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
243
|
+
vpc_id: Optional[pulumi.Input[_builtins.int]] = None):
|
|
193
244
|
"""
|
|
194
245
|
Input properties used for looking up and filtering LkeCluster resources.
|
|
195
246
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] api_endpoints: The endpoints for the Kubernetes API server.
|
|
@@ -206,9 +257,12 @@ class _LkeClusterState:
|
|
|
206
257
|
* `pool` - (Required) The Node Pool specifications for the Kubernetes cluster. At least one Node Pool is required.
|
|
207
258
|
|
|
208
259
|
* `control_plane` (Optional) Defines settings for the Kubernetes Control Plane.
|
|
260
|
+
:param pulumi.Input[_builtins.str] stack_type: The networking stack type of the Kubernetes cluster.
|
|
209
261
|
:param pulumi.Input[_builtins.str] status: The status of the node. (`ready`, `not_ready`)
|
|
262
|
+
:param pulumi.Input[_builtins.int] subnet_id: The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled). (**Note: v4beta only and may not currently be available to all users.**)
|
|
210
263
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: An array of tags applied to the Kubernetes cluster. Tags are case-insensitive and are for organizational purposes only.
|
|
211
264
|
:param pulumi.Input[_builtins.str] tier: The desired Kubernetes tier. (**Note: v4beta only and may not currently be available to all users.**)
|
|
265
|
+
:param pulumi.Input[_builtins.int] vpc_id: The ID of the VPC to use for the Kubernetes cluster.
|
|
212
266
|
"""
|
|
213
267
|
if api_endpoints is not None:
|
|
214
268
|
pulumi.set(__self__, "api_endpoints", api_endpoints)
|
|
@@ -230,12 +284,18 @@ class _LkeClusterState:
|
|
|
230
284
|
pulumi.set(__self__, "pools", pools)
|
|
231
285
|
if region is not None:
|
|
232
286
|
pulumi.set(__self__, "region", region)
|
|
287
|
+
if stack_type is not None:
|
|
288
|
+
pulumi.set(__self__, "stack_type", stack_type)
|
|
233
289
|
if status is not None:
|
|
234
290
|
pulumi.set(__self__, "status", status)
|
|
291
|
+
if subnet_id is not None:
|
|
292
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
235
293
|
if tags is not None:
|
|
236
294
|
pulumi.set(__self__, "tags", tags)
|
|
237
295
|
if tier is not None:
|
|
238
296
|
pulumi.set(__self__, "tier", tier)
|
|
297
|
+
if vpc_id is not None:
|
|
298
|
+
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
239
299
|
|
|
240
300
|
@_builtins.property
|
|
241
301
|
@pulumi.getter(name="apiEndpoints")
|
|
@@ -361,6 +421,18 @@ class _LkeClusterState:
|
|
|
361
421
|
def region(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
362
422
|
pulumi.set(self, "region", value)
|
|
363
423
|
|
|
424
|
+
@_builtins.property
|
|
425
|
+
@pulumi.getter(name="stackType")
|
|
426
|
+
def stack_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
427
|
+
"""
|
|
428
|
+
The networking stack type of the Kubernetes cluster.
|
|
429
|
+
"""
|
|
430
|
+
return pulumi.get(self, "stack_type")
|
|
431
|
+
|
|
432
|
+
@stack_type.setter
|
|
433
|
+
def stack_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
434
|
+
pulumi.set(self, "stack_type", value)
|
|
435
|
+
|
|
364
436
|
@_builtins.property
|
|
365
437
|
@pulumi.getter
|
|
366
438
|
def status(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -373,6 +445,18 @@ class _LkeClusterState:
|
|
|
373
445
|
def status(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
374
446
|
pulumi.set(self, "status", value)
|
|
375
447
|
|
|
448
|
+
@_builtins.property
|
|
449
|
+
@pulumi.getter(name="subnetId")
|
|
450
|
+
def subnet_id(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
451
|
+
"""
|
|
452
|
+
The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled). (**Note: v4beta only and may not currently be available to all users.**)
|
|
453
|
+
"""
|
|
454
|
+
return pulumi.get(self, "subnet_id")
|
|
455
|
+
|
|
456
|
+
@subnet_id.setter
|
|
457
|
+
def subnet_id(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
458
|
+
pulumi.set(self, "subnet_id", value)
|
|
459
|
+
|
|
376
460
|
@_builtins.property
|
|
377
461
|
@pulumi.getter
|
|
378
462
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -397,6 +481,18 @@ class _LkeClusterState:
|
|
|
397
481
|
def tier(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
398
482
|
pulumi.set(self, "tier", value)
|
|
399
483
|
|
|
484
|
+
@_builtins.property
|
|
485
|
+
@pulumi.getter(name="vpcId")
|
|
486
|
+
def vpc_id(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
487
|
+
"""
|
|
488
|
+
The ID of the VPC to use for the Kubernetes cluster.
|
|
489
|
+
"""
|
|
490
|
+
return pulumi.get(self, "vpc_id")
|
|
491
|
+
|
|
492
|
+
@vpc_id.setter
|
|
493
|
+
def vpc_id(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
494
|
+
pulumi.set(self, "vpc_id", value)
|
|
495
|
+
|
|
400
496
|
|
|
401
497
|
@pulumi.type_token("linode:index/lkeCluster:LkeCluster")
|
|
402
498
|
class LkeCluster(pulumi.CustomResource):
|
|
@@ -411,8 +507,11 @@ class LkeCluster(pulumi.CustomResource):
|
|
|
411
507
|
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
412
508
|
pools: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LkeClusterPoolArgs', 'LkeClusterPoolArgsDict']]]]] = None,
|
|
413
509
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
510
|
+
stack_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
511
|
+
subnet_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
414
512
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
415
513
|
tier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
514
|
+
vpc_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
416
515
|
__props__=None):
|
|
417
516
|
"""
|
|
418
517
|
## Import
|
|
@@ -436,8 +535,11 @@ class LkeCluster(pulumi.CustomResource):
|
|
|
436
535
|
* `pool` - (Required) The Node Pool specifications for the Kubernetes cluster. At least one Node Pool is required.
|
|
437
536
|
|
|
438
537
|
* `control_plane` (Optional) Defines settings for the Kubernetes Control Plane.
|
|
538
|
+
:param pulumi.Input[_builtins.str] stack_type: The networking stack type of the Kubernetes cluster.
|
|
539
|
+
:param pulumi.Input[_builtins.int] subnet_id: The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled). (**Note: v4beta only and may not currently be available to all users.**)
|
|
439
540
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: An array of tags applied to the Kubernetes cluster. Tags are case-insensitive and are for organizational purposes only.
|
|
440
541
|
:param pulumi.Input[_builtins.str] tier: The desired Kubernetes tier. (**Note: v4beta only and may not currently be available to all users.**)
|
|
542
|
+
:param pulumi.Input[_builtins.int] vpc_id: The ID of the VPC to use for the Kubernetes cluster.
|
|
441
543
|
"""
|
|
442
544
|
...
|
|
443
545
|
@overload
|
|
@@ -476,8 +578,11 @@ class LkeCluster(pulumi.CustomResource):
|
|
|
476
578
|
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
477
579
|
pools: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LkeClusterPoolArgs', 'LkeClusterPoolArgsDict']]]]] = None,
|
|
478
580
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
581
|
+
stack_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
582
|
+
subnet_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
479
583
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
480
584
|
tier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
585
|
+
vpc_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
481
586
|
__props__=None):
|
|
482
587
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
483
588
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -502,8 +607,11 @@ class LkeCluster(pulumi.CustomResource):
|
|
|
502
607
|
if region is None and not opts.urn:
|
|
503
608
|
raise TypeError("Missing required property 'region'")
|
|
504
609
|
__props__.__dict__["region"] = region
|
|
610
|
+
__props__.__dict__["stack_type"] = stack_type
|
|
611
|
+
__props__.__dict__["subnet_id"] = subnet_id
|
|
505
612
|
__props__.__dict__["tags"] = tags
|
|
506
613
|
__props__.__dict__["tier"] = tier
|
|
614
|
+
__props__.__dict__["vpc_id"] = vpc_id
|
|
507
615
|
__props__.__dict__["api_endpoints"] = None
|
|
508
616
|
__props__.__dict__["dashboard_url"] = None
|
|
509
617
|
__props__.__dict__["kubeconfig"] = None
|
|
@@ -530,9 +638,12 @@ class LkeCluster(pulumi.CustomResource):
|
|
|
530
638
|
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
531
639
|
pools: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LkeClusterPoolArgs', 'LkeClusterPoolArgsDict']]]]] = None,
|
|
532
640
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
641
|
+
stack_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
533
642
|
status: Optional[pulumi.Input[_builtins.str]] = None,
|
|
643
|
+
subnet_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
534
644
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
535
|
-
tier: Optional[pulumi.Input[_builtins.str]] = None
|
|
645
|
+
tier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
646
|
+
vpc_id: Optional[pulumi.Input[_builtins.int]] = None) -> 'LkeCluster':
|
|
536
647
|
"""
|
|
537
648
|
Get an existing LkeCluster resource's state with the given name, id, and optional extra
|
|
538
649
|
properties used to qualify the lookup.
|
|
@@ -554,9 +665,12 @@ class LkeCluster(pulumi.CustomResource):
|
|
|
554
665
|
* `pool` - (Required) The Node Pool specifications for the Kubernetes cluster. At least one Node Pool is required.
|
|
555
666
|
|
|
556
667
|
* `control_plane` (Optional) Defines settings for the Kubernetes Control Plane.
|
|
668
|
+
:param pulumi.Input[_builtins.str] stack_type: The networking stack type of the Kubernetes cluster.
|
|
557
669
|
:param pulumi.Input[_builtins.str] status: The status of the node. (`ready`, `not_ready`)
|
|
670
|
+
:param pulumi.Input[_builtins.int] subnet_id: The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled). (**Note: v4beta only and may not currently be available to all users.**)
|
|
558
671
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: An array of tags applied to the Kubernetes cluster. Tags are case-insensitive and are for organizational purposes only.
|
|
559
672
|
:param pulumi.Input[_builtins.str] tier: The desired Kubernetes tier. (**Note: v4beta only and may not currently be available to all users.**)
|
|
673
|
+
:param pulumi.Input[_builtins.int] vpc_id: The ID of the VPC to use for the Kubernetes cluster.
|
|
560
674
|
"""
|
|
561
675
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
562
676
|
|
|
@@ -572,9 +686,12 @@ class LkeCluster(pulumi.CustomResource):
|
|
|
572
686
|
__props__.__dict__["label"] = label
|
|
573
687
|
__props__.__dict__["pools"] = pools
|
|
574
688
|
__props__.__dict__["region"] = region
|
|
689
|
+
__props__.__dict__["stack_type"] = stack_type
|
|
575
690
|
__props__.__dict__["status"] = status
|
|
691
|
+
__props__.__dict__["subnet_id"] = subnet_id
|
|
576
692
|
__props__.__dict__["tags"] = tags
|
|
577
693
|
__props__.__dict__["tier"] = tier
|
|
694
|
+
__props__.__dict__["vpc_id"] = vpc_id
|
|
578
695
|
return LkeCluster(resource_name, opts=opts, __props__=__props__)
|
|
579
696
|
|
|
580
697
|
@_builtins.property
|
|
@@ -661,6 +778,14 @@ class LkeCluster(pulumi.CustomResource):
|
|
|
661
778
|
"""
|
|
662
779
|
return pulumi.get(self, "region")
|
|
663
780
|
|
|
781
|
+
@_builtins.property
|
|
782
|
+
@pulumi.getter(name="stackType")
|
|
783
|
+
def stack_type(self) -> pulumi.Output[_builtins.str]:
|
|
784
|
+
"""
|
|
785
|
+
The networking stack type of the Kubernetes cluster.
|
|
786
|
+
"""
|
|
787
|
+
return pulumi.get(self, "stack_type")
|
|
788
|
+
|
|
664
789
|
@_builtins.property
|
|
665
790
|
@pulumi.getter
|
|
666
791
|
def status(self) -> pulumi.Output[_builtins.str]:
|
|
@@ -669,6 +794,14 @@ class LkeCluster(pulumi.CustomResource):
|
|
|
669
794
|
"""
|
|
670
795
|
return pulumi.get(self, "status")
|
|
671
796
|
|
|
797
|
+
@_builtins.property
|
|
798
|
+
@pulumi.getter(name="subnetId")
|
|
799
|
+
def subnet_id(self) -> pulumi.Output[_builtins.int]:
|
|
800
|
+
"""
|
|
801
|
+
The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled). (**Note: v4beta only and may not currently be available to all users.**)
|
|
802
|
+
"""
|
|
803
|
+
return pulumi.get(self, "subnet_id")
|
|
804
|
+
|
|
672
805
|
@_builtins.property
|
|
673
806
|
@pulumi.getter
|
|
674
807
|
def tags(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
|
@@ -685,3 +818,11 @@ class LkeCluster(pulumi.CustomResource):
|
|
|
685
818
|
"""
|
|
686
819
|
return pulumi.get(self, "tier")
|
|
687
820
|
|
|
821
|
+
@_builtins.property
|
|
822
|
+
@pulumi.getter(name="vpcId")
|
|
823
|
+
def vpc_id(self) -> pulumi.Output[_builtins.int]:
|
|
824
|
+
"""
|
|
825
|
+
The ID of the VPC to use for the Kubernetes cluster.
|
|
826
|
+
"""
|
|
827
|
+
return pulumi.get(self, "vpc_id")
|
|
828
|
+
|
pulumi_linode/outputs.py
CHANGED
|
@@ -3006,7 +3006,9 @@ class LkeClusterControlPlane(dict):
|
|
|
3006
3006
|
@staticmethod
|
|
3007
3007
|
def __key_warning(key: str):
|
|
3008
3008
|
suggest = None
|
|
3009
|
-
if key == "
|
|
3009
|
+
if key == "auditLogsEnabled":
|
|
3010
|
+
suggest = "audit_logs_enabled"
|
|
3011
|
+
elif key == "highAvailability":
|
|
3010
3012
|
suggest = "high_availability"
|
|
3011
3013
|
|
|
3012
3014
|
if suggest:
|
|
@@ -3022,15 +3024,19 @@ class LkeClusterControlPlane(dict):
|
|
|
3022
3024
|
|
|
3023
3025
|
def __init__(__self__, *,
|
|
3024
3026
|
acl: Optional['outputs.LkeClusterControlPlaneAcl'] = None,
|
|
3027
|
+
audit_logs_enabled: Optional[_builtins.bool] = None,
|
|
3025
3028
|
high_availability: Optional[_builtins.bool] = None):
|
|
3026
3029
|
"""
|
|
3027
3030
|
:param 'LkeClusterControlPlaneAclArgs' acl: Defines the ACL configuration for an LKE cluster's control plane.
|
|
3028
|
-
:param _builtins.bool
|
|
3031
|
+
:param _builtins.bool audit_logs_enabled: Enables audit logs on the cluster's control plane.
|
|
3029
3032
|
|
|
3030
3033
|
* `acl` - (Optional) Defines the ACL configuration for an LKE cluster's control plane.
|
|
3034
|
+
:param _builtins.bool high_availability: Defines whether High Availability is enabled for the cluster Control Plane. This is an **irreversible** change.
|
|
3031
3035
|
"""
|
|
3032
3036
|
if acl is not None:
|
|
3033
3037
|
pulumi.set(__self__, "acl", acl)
|
|
3038
|
+
if audit_logs_enabled is not None:
|
|
3039
|
+
pulumi.set(__self__, "audit_logs_enabled", audit_logs_enabled)
|
|
3034
3040
|
if high_availability is not None:
|
|
3035
3041
|
pulumi.set(__self__, "high_availability", high_availability)
|
|
3036
3042
|
|
|
@@ -3042,13 +3048,21 @@ class LkeClusterControlPlane(dict):
|
|
|
3042
3048
|
"""
|
|
3043
3049
|
return pulumi.get(self, "acl")
|
|
3044
3050
|
|
|
3051
|
+
@_builtins.property
|
|
3052
|
+
@pulumi.getter(name="auditLogsEnabled")
|
|
3053
|
+
def audit_logs_enabled(self) -> Optional[_builtins.bool]:
|
|
3054
|
+
"""
|
|
3055
|
+
Enables audit logs on the cluster's control plane.
|
|
3056
|
+
|
|
3057
|
+
* `acl` - (Optional) Defines the ACL configuration for an LKE cluster's control plane.
|
|
3058
|
+
"""
|
|
3059
|
+
return pulumi.get(self, "audit_logs_enabled")
|
|
3060
|
+
|
|
3045
3061
|
@_builtins.property
|
|
3046
3062
|
@pulumi.getter(name="highAvailability")
|
|
3047
3063
|
def high_availability(self) -> Optional[_builtins.bool]:
|
|
3048
3064
|
"""
|
|
3049
3065
|
Defines whether High Availability is enabled for the cluster Control Plane. This is an **irreversible** change.
|
|
3050
|
-
|
|
3051
|
-
* `acl` - (Optional) Defines the ACL configuration for an LKE cluster's control plane.
|
|
3052
3066
|
"""
|
|
3053
3067
|
return pulumi.get(self, "high_availability")
|
|
3054
3068
|
|
|
@@ -12896,16 +12910,27 @@ class GetKernelsKernelResult(dict):
|
|
|
12896
12910
|
@pulumi.output_type
|
|
12897
12911
|
class GetLkeClusterControlPlaneResult(dict):
|
|
12898
12912
|
def __init__(__self__, *,
|
|
12913
|
+
audit_logs_enabled: _builtins.bool,
|
|
12899
12914
|
high_availability: _builtins.bool,
|
|
12900
12915
|
acls: Optional[Sequence['outputs.GetLkeClusterControlPlaneAclResult']] = None):
|
|
12901
12916
|
"""
|
|
12917
|
+
:param _builtins.bool audit_logs_enabled: Enables audit logs on the cluster's control plane.
|
|
12902
12918
|
:param _builtins.bool high_availability: Whether High Availability is enabled for the cluster Control Plane.
|
|
12903
12919
|
:param Sequence['GetLkeClusterControlPlaneAclArgs'] acls: The ACL configuration for an LKE cluster's control plane.
|
|
12904
12920
|
"""
|
|
12921
|
+
pulumi.set(__self__, "audit_logs_enabled", audit_logs_enabled)
|
|
12905
12922
|
pulumi.set(__self__, "high_availability", high_availability)
|
|
12906
12923
|
if acls is not None:
|
|
12907
12924
|
pulumi.set(__self__, "acls", acls)
|
|
12908
12925
|
|
|
12926
|
+
@_builtins.property
|
|
12927
|
+
@pulumi.getter(name="auditLogsEnabled")
|
|
12928
|
+
def audit_logs_enabled(self) -> _builtins.bool:
|
|
12929
|
+
"""
|
|
12930
|
+
Enables audit logs on the cluster's control plane.
|
|
12931
|
+
"""
|
|
12932
|
+
return pulumi.get(self, "audit_logs_enabled")
|
|
12933
|
+
|
|
12909
12934
|
@_builtins.property
|
|
12910
12935
|
@pulumi.getter(name="highAvailability")
|
|
12911
12936
|
def high_availability(self) -> _builtins.bool:
|
|
@@ -13335,10 +13360,13 @@ class GetLkeClustersLkeClusterResult(dict):
|
|
|
13335
13360
|
k8s_version: _builtins.str,
|
|
13336
13361
|
label: _builtins.str,
|
|
13337
13362
|
region: _builtins.str,
|
|
13363
|
+
stack_type: _builtins.str,
|
|
13338
13364
|
status: _builtins.str,
|
|
13365
|
+
subnet_id: _builtins.int,
|
|
13339
13366
|
tags: Sequence[_builtins.str],
|
|
13340
13367
|
tier: _builtins.str,
|
|
13341
13368
|
updated: _builtins.str,
|
|
13369
|
+
vpc_id: _builtins.int,
|
|
13342
13370
|
control_plane: Optional['outputs.GetLkeClustersLkeClusterControlPlaneResult'] = None):
|
|
13343
13371
|
"""
|
|
13344
13372
|
:param _builtins.bool apl_enabled: Enables the App Platform Layer for this cluster. Note: v4beta only and may not currently be available to all users.
|
|
@@ -13347,10 +13375,13 @@ class GetLkeClustersLkeClusterResult(dict):
|
|
|
13347
13375
|
:param _builtins.str k8s_version: The Kubernetes version for this Kubernetes cluster in the format of `major.minor` (e.g. `1.17`).
|
|
13348
13376
|
:param _builtins.str label: The unique label for the cluster.
|
|
13349
13377
|
:param _builtins.str region: This Kubernetes cluster's location.
|
|
13378
|
+
:param _builtins.str stack_type: The networking stack type of the Kubernetes cluster.
|
|
13350
13379
|
:param _builtins.str status: The status of the cluster.
|
|
13380
|
+
:param _builtins.int subnet_id: The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled).
|
|
13351
13381
|
:param Sequence[_builtins.str] tags: An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
|
|
13352
13382
|
:param _builtins.str tier: The desired Kubernetes tier. (**Note: v4beta only and may not currently be available to all users.**)
|
|
13353
13383
|
:param _builtins.str updated: When this Kubernetes cluster was updated.
|
|
13384
|
+
:param _builtins.int vpc_id: The ID of the VPC to use for the Kubernetes cluster.
|
|
13354
13385
|
:param 'GetLkeClustersLkeClusterControlPlaneArgs' control_plane: Defines settings for the Kubernetes Control Plane.
|
|
13355
13386
|
"""
|
|
13356
13387
|
pulumi.set(__self__, "apl_enabled", apl_enabled)
|
|
@@ -13359,10 +13390,13 @@ class GetLkeClustersLkeClusterResult(dict):
|
|
|
13359
13390
|
pulumi.set(__self__, "k8s_version", k8s_version)
|
|
13360
13391
|
pulumi.set(__self__, "label", label)
|
|
13361
13392
|
pulumi.set(__self__, "region", region)
|
|
13393
|
+
pulumi.set(__self__, "stack_type", stack_type)
|
|
13362
13394
|
pulumi.set(__self__, "status", status)
|
|
13395
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
13363
13396
|
pulumi.set(__self__, "tags", tags)
|
|
13364
13397
|
pulumi.set(__self__, "tier", tier)
|
|
13365
13398
|
pulumi.set(__self__, "updated", updated)
|
|
13399
|
+
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
13366
13400
|
if control_plane is not None:
|
|
13367
13401
|
pulumi.set(__self__, "control_plane", control_plane)
|
|
13368
13402
|
|
|
@@ -13414,6 +13448,14 @@ class GetLkeClustersLkeClusterResult(dict):
|
|
|
13414
13448
|
"""
|
|
13415
13449
|
return pulumi.get(self, "region")
|
|
13416
13450
|
|
|
13451
|
+
@_builtins.property
|
|
13452
|
+
@pulumi.getter(name="stackType")
|
|
13453
|
+
def stack_type(self) -> _builtins.str:
|
|
13454
|
+
"""
|
|
13455
|
+
The networking stack type of the Kubernetes cluster.
|
|
13456
|
+
"""
|
|
13457
|
+
return pulumi.get(self, "stack_type")
|
|
13458
|
+
|
|
13417
13459
|
@_builtins.property
|
|
13418
13460
|
@pulumi.getter
|
|
13419
13461
|
def status(self) -> _builtins.str:
|
|
@@ -13422,6 +13464,14 @@ class GetLkeClustersLkeClusterResult(dict):
|
|
|
13422
13464
|
"""
|
|
13423
13465
|
return pulumi.get(self, "status")
|
|
13424
13466
|
|
|
13467
|
+
@_builtins.property
|
|
13468
|
+
@pulumi.getter(name="subnetId")
|
|
13469
|
+
def subnet_id(self) -> _builtins.int:
|
|
13470
|
+
"""
|
|
13471
|
+
The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled).
|
|
13472
|
+
"""
|
|
13473
|
+
return pulumi.get(self, "subnet_id")
|
|
13474
|
+
|
|
13425
13475
|
@_builtins.property
|
|
13426
13476
|
@pulumi.getter
|
|
13427
13477
|
def tags(self) -> Sequence[_builtins.str]:
|
|
@@ -13446,6 +13496,14 @@ class GetLkeClustersLkeClusterResult(dict):
|
|
|
13446
13496
|
"""
|
|
13447
13497
|
return pulumi.get(self, "updated")
|
|
13448
13498
|
|
|
13499
|
+
@_builtins.property
|
|
13500
|
+
@pulumi.getter(name="vpcId")
|
|
13501
|
+
def vpc_id(self) -> _builtins.int:
|
|
13502
|
+
"""
|
|
13503
|
+
The ID of the VPC to use for the Kubernetes cluster.
|
|
13504
|
+
"""
|
|
13505
|
+
return pulumi.get(self, "vpc_id")
|
|
13506
|
+
|
|
13449
13507
|
@_builtins.property
|
|
13450
13508
|
@pulumi.getter(name="controlPlane")
|
|
13451
13509
|
def control_plane(self) -> Optional['outputs.GetLkeClustersLkeClusterControlPlaneResult']:
|
|
@@ -13458,12 +13516,23 @@ class GetLkeClustersLkeClusterResult(dict):
|
|
|
13458
13516
|
@pulumi.output_type
|
|
13459
13517
|
class GetLkeClustersLkeClusterControlPlaneResult(dict):
|
|
13460
13518
|
def __init__(__self__, *,
|
|
13519
|
+
audit_logs_enabled: _builtins.bool,
|
|
13461
13520
|
high_availability: _builtins.bool):
|
|
13462
13521
|
"""
|
|
13522
|
+
:param _builtins.bool audit_logs_enabled: Enables audit logs on the cluster's control plane.
|
|
13463
13523
|
:param _builtins.bool high_availability: Whether High Availability is enabled for the cluster Control Plane.
|
|
13464
13524
|
"""
|
|
13525
|
+
pulumi.set(__self__, "audit_logs_enabled", audit_logs_enabled)
|
|
13465
13526
|
pulumi.set(__self__, "high_availability", high_availability)
|
|
13466
13527
|
|
|
13528
|
+
@_builtins.property
|
|
13529
|
+
@pulumi.getter(name="auditLogsEnabled")
|
|
13530
|
+
def audit_logs_enabled(self) -> _builtins.bool:
|
|
13531
|
+
"""
|
|
13532
|
+
Enables audit logs on the cluster's control plane.
|
|
13533
|
+
"""
|
|
13534
|
+
return pulumi.get(self, "audit_logs_enabled")
|
|
13535
|
+
|
|
13467
13536
|
@_builtins.property
|
|
13468
13537
|
@pulumi.getter(name="highAvailability")
|
|
13469
13538
|
def high_availability(self) -> _builtins.bool:
|
pulumi_linode/pulumi-plugin.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
pulumi_linode/__init__.py,sha256=IWKSLOYMFhV5go6BzBGEnaXXpc5urphJe9zn6GosUyc,10586
|
|
2
|
-
pulumi_linode/_inputs.py,sha256=
|
|
2
|
+
pulumi_linode/_inputs.py,sha256=I87O1TWwJlCvyZz_tj7LrjvXFAexozNMW8SbqRL3Z0w,782313
|
|
3
3
|
pulumi_linode/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
4
|
pulumi_linode/account_settings.py,sha256=UWngx9uOVtGfI9IieEf8G6dGkPdyC88YxKWFAmMWCgo,20993
|
|
5
5
|
pulumi_linode/database_access_controls.py,sha256=I0F2ORRsi9ZMyJiVF0XLOTfbkGbl5aDu5EfshCx3oGw,13871
|
|
@@ -47,7 +47,7 @@ pulumi_linode/get_ipv6_ranges.py,sha256=29bLPyf0N9YEuRca06pZ3fpcRAfV-lWwRQytFz9L
|
|
|
47
47
|
pulumi_linode/get_kernel.py,sha256=JsbxgYihjjfbts2hK5LTKVO_uyfdIXa4_T4Bjaw1hQI,7334
|
|
48
48
|
pulumi_linode/get_kernels.py,sha256=yyaQhU04Y26LwJsmf7k69iDSUDJvXlHmjI0nIsj14bo,7328
|
|
49
49
|
pulumi_linode/get_linode_object_storage_bucket.py,sha256=36puiAf4yRX-1xAupDi3fUkhAwmiLzHhMnn7V6M-i9A,9321
|
|
50
|
-
pulumi_linode/get_lke_cluster.py,sha256=
|
|
50
|
+
pulumi_linode/get_lke_cluster.py,sha256=UmbFJOAHw-9dOd8Eut5fHh4pzZvBY13g2q1uuY8HjIU,14410
|
|
51
51
|
pulumi_linode/get_lke_clusters.py,sha256=hUEIGwa52g_Za-zE19liPtByW7DTAK3CRUWIRxmtUjo,7498
|
|
52
52
|
pulumi_linode/get_lke_types.py,sha256=n7Dac-0shTPa-dF5ObXxWhdNJr2lTbc5ngidO9qjVUY,6144
|
|
53
53
|
pulumi_linode/get_lke_version.py,sha256=I7hmk-rXmmWJvYBVUNVlWvxVxQTpmV5rZD7oSl21PGk,5646
|
|
@@ -93,7 +93,7 @@ pulumi_linode/instance_disk.py,sha256=d8IfpBkdsfd9qQPrgX80L-Ecl3oZYk9IX5NqrvWI1f
|
|
|
93
93
|
pulumi_linode/instance_ip.py,sha256=FlQYwITmNUjSWFwFmXkRKV8qlQvBoVgErZUMcwXEHMQ,22323
|
|
94
94
|
pulumi_linode/instance_shared_ips.py,sha256=IkNiLmaCJ8QPwXPg3Rs3sb8GsijGT8HKHSprgRPjHg4,14531
|
|
95
95
|
pulumi_linode/ipv6_range.py,sha256=6GwFTV7TeSkc6bF5bs_Jd7xwXrl4N5A2Xmqxw9uYss4,16060
|
|
96
|
-
pulumi_linode/lke_cluster.py,sha256=
|
|
96
|
+
pulumi_linode/lke_cluster.py,sha256=ot-L5sJpBHr2JOTHThHdFWL_LBWkDrzrrMGVmo-bW-s,41505
|
|
97
97
|
pulumi_linode/lke_node_pool.py,sha256=-1MvgVnNprFgA73KUK6odlCxmhWUVOxSuwe5nMsz7ek,38448
|
|
98
98
|
pulumi_linode/networking_ip.py,sha256=FCygbQlP1QGgtL_p3LXdIRttfS-9-ou5F8Wc5nB_qRQ,23921
|
|
99
99
|
pulumi_linode/networking_ip_assignment.py,sha256=dlmLRP8NhQjt9_fV5kU9qfa56sD7Dah_LfvjnhiYeTM,9650
|
|
@@ -103,11 +103,11 @@ pulumi_linode/node_balancer_node.py,sha256=4tEdbLGfGTI09kFP6o9Pjwbu4W3hhlSlU30AW
|
|
|
103
103
|
pulumi_linode/object_storage_bucket.py,sha256=1KxXcawPw0XGJAn1A8BkgMdmbaIyMAc_u_ND1h_xAf0,48315
|
|
104
104
|
pulumi_linode/object_storage_key.py,sha256=DCwmYlnipDM_tsqW6GSKMGlYL7kKDiQyQySjBuBugZk,21932
|
|
105
105
|
pulumi_linode/object_storage_object.py,sha256=MQSDkOlFLNktHMmN1OcYm13E_t-XAaPCTUcQdZaE_UE,65505
|
|
106
|
-
pulumi_linode/outputs.py,sha256=
|
|
106
|
+
pulumi_linode/outputs.py,sha256=r0LnvglRPhaSxgR2LSo2O0WyfLMnLBIkkJoDIk5IGds,729109
|
|
107
107
|
pulumi_linode/placement_group.py,sha256=VMkn_ZWb7nyU2d9uvPDq9WtpaO4VtP1_tWEet0tXZZg,17909
|
|
108
108
|
pulumi_linode/placement_group_assignment.py,sha256=VS41EglL2bMz-OGO5ut-mI4qztJ1JOTwJdYYH_6T2rE,13127
|
|
109
109
|
pulumi_linode/provider.py,sha256=3u-3yR4HC0WM7nENM_fmVdnhTVkMVvofuNjqCek2dOY,31154
|
|
110
|
-
pulumi_linode/pulumi-plugin.json,sha256=
|
|
110
|
+
pulumi_linode/pulumi-plugin.json,sha256=hy6kkjqT2KT2CKvjofWpiHQtpaWyez-QhP0n_W3PCuU,65
|
|
111
111
|
pulumi_linode/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
112
|
pulumi_linode/rdns.py,sha256=KSsmS3FJ-LTPL1TJgryhPV0S73hgZ5d3MXn71o3n9uE,16875
|
|
113
113
|
pulumi_linode/reserved_ip_assignment.py,sha256=x0msvRRh3P4LocXq4FWGC_VMXUttMTzJMAISJ2O71qI,23494
|
|
@@ -121,7 +121,7 @@ pulumi_linode/vpc_subnet.py,sha256=8hnZ0Qgag4ukZ780J6QzoQYRVOvcMKnLQwLtMMQy3EA,1
|
|
|
121
121
|
pulumi_linode/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
122
122
|
pulumi_linode/config/__init__.pyi,sha256=LvOCsq3YYxRuU8teN4ZTDH2Nx_BlzOzM75EluLMpw80,2587
|
|
123
123
|
pulumi_linode/config/vars.py,sha256=Ypi1LOwkZcSV8Q4iq89-tWZGaG-4B8CAJCGefemZ-DY,5147
|
|
124
|
-
pulumi_linode-5.
|
|
125
|
-
pulumi_linode-5.
|
|
126
|
-
pulumi_linode-5.
|
|
127
|
-
pulumi_linode-5.
|
|
124
|
+
pulumi_linode-5.3.0.dist-info/METADATA,sha256=VSvk-zzz-rY8Py7S0_d7rF8v4QU-p4kg7e2Vi6Ov4zo,2886
|
|
125
|
+
pulumi_linode-5.3.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
126
|
+
pulumi_linode-5.3.0.dist-info/top_level.txt,sha256=AWbmZiRcnH6wR1iM52uHc3e-Dy7bdm_0fyCSbLQVI84,14
|
|
127
|
+
pulumi_linode-5.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|