pulumi-linode 5.2.0a1756506768__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/__init__.py +1 -0
- pulumi_linode/_inputs.py +360 -5
- pulumi_linode/account_settings.py +47 -0
- pulumi_linode/get_account_settings.py +15 -1
- pulumi_linode/get_lke_cluster.py +47 -5
- pulumi_linode/get_maintenance_policies.py +129 -0
- pulumi_linode/instance.py +47 -0
- pulumi_linode/lke_cluster.py +144 -3
- pulumi_linode/lke_node_pool.py +47 -0
- pulumi_linode/outputs.py +224 -4
- pulumi_linode/pulumi-plugin.json +1 -1
- {pulumi_linode-5.2.0a1756506768.dist-info → pulumi_linode-5.3.0.dist-info}/METADATA +1 -1
- {pulumi_linode-5.2.0a1756506768.dist-info → pulumi_linode-5.3.0.dist-info}/RECORD +15 -14
- {pulumi_linode-5.2.0a1756506768.dist-info → pulumi_linode-5.3.0.dist-info}/WHEEL +0 -0
- {pulumi_linode-5.2.0a1756506768.dist-info → pulumi_linode-5.3.0.dist-info}/top_level.txt +0 -0
pulumi_linode/outputs.py
CHANGED
|
@@ -241,6 +241,8 @@ __all__ = [
|
|
|
241
241
|
'GetLkeTypesTypePriceResult',
|
|
242
242
|
'GetLkeTypesTypeRegionPriceResult',
|
|
243
243
|
'GetLkeVersionsVersionResult',
|
|
244
|
+
'GetMaintenancePoliciesFilterResult',
|
|
245
|
+
'GetMaintenancePoliciesMaintenancePolicyResult',
|
|
244
246
|
'GetNbTypesFilterResult',
|
|
245
247
|
'GetNbTypesTypeResult',
|
|
246
248
|
'GetNbTypesTypePriceResult',
|
|
@@ -3004,7 +3006,9 @@ class LkeClusterControlPlane(dict):
|
|
|
3004
3006
|
@staticmethod
|
|
3005
3007
|
def __key_warning(key: str):
|
|
3006
3008
|
suggest = None
|
|
3007
|
-
if key == "
|
|
3009
|
+
if key == "auditLogsEnabled":
|
|
3010
|
+
suggest = "audit_logs_enabled"
|
|
3011
|
+
elif key == "highAvailability":
|
|
3008
3012
|
suggest = "high_availability"
|
|
3009
3013
|
|
|
3010
3014
|
if suggest:
|
|
@@ -3020,15 +3024,19 @@ class LkeClusterControlPlane(dict):
|
|
|
3020
3024
|
|
|
3021
3025
|
def __init__(__self__, *,
|
|
3022
3026
|
acl: Optional['outputs.LkeClusterControlPlaneAcl'] = None,
|
|
3027
|
+
audit_logs_enabled: Optional[_builtins.bool] = None,
|
|
3023
3028
|
high_availability: Optional[_builtins.bool] = None):
|
|
3024
3029
|
"""
|
|
3025
3030
|
:param 'LkeClusterControlPlaneAclArgs' acl: Defines the ACL configuration for an LKE cluster's control plane.
|
|
3026
|
-
:param _builtins.bool
|
|
3031
|
+
:param _builtins.bool audit_logs_enabled: Enables audit logs on the cluster's control plane.
|
|
3027
3032
|
|
|
3028
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.
|
|
3029
3035
|
"""
|
|
3030
3036
|
if acl is not None:
|
|
3031
3037
|
pulumi.set(__self__, "acl", acl)
|
|
3038
|
+
if audit_logs_enabled is not None:
|
|
3039
|
+
pulumi.set(__self__, "audit_logs_enabled", audit_logs_enabled)
|
|
3032
3040
|
if high_availability is not None:
|
|
3033
3041
|
pulumi.set(__self__, "high_availability", high_availability)
|
|
3034
3042
|
|
|
@@ -3040,13 +3048,21 @@ class LkeClusterControlPlane(dict):
|
|
|
3040
3048
|
"""
|
|
3041
3049
|
return pulumi.get(self, "acl")
|
|
3042
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
|
+
|
|
3043
3061
|
@_builtins.property
|
|
3044
3062
|
@pulumi.getter(name="highAvailability")
|
|
3045
3063
|
def high_availability(self) -> Optional[_builtins.bool]:
|
|
3046
3064
|
"""
|
|
3047
3065
|
Defines whether High Availability is enabled for the cluster Control Plane. This is an **irreversible** change.
|
|
3048
|
-
|
|
3049
|
-
* `acl` - (Optional) Defines the ACL configuration for an LKE cluster's control plane.
|
|
3050
3066
|
"""
|
|
3051
3067
|
return pulumi.get(self, "high_availability")
|
|
3052
3068
|
|
|
@@ -3147,6 +3163,7 @@ class LkeClusterPool(dict):
|
|
|
3147
3163
|
disk_encryption: Optional[_builtins.str] = None,
|
|
3148
3164
|
id: Optional[_builtins.int] = None,
|
|
3149
3165
|
k8s_version: Optional[_builtins.str] = None,
|
|
3166
|
+
label: Optional[_builtins.str] = None,
|
|
3150
3167
|
labels: Optional[Mapping[str, _builtins.str]] = None,
|
|
3151
3168
|
nodes: Optional[Sequence['outputs.LkeClusterPoolNode']] = None,
|
|
3152
3169
|
tags: Optional[Sequence[_builtins.str]] = None,
|
|
@@ -3159,6 +3176,7 @@ class LkeClusterPool(dict):
|
|
|
3159
3176
|
:param _builtins.str disk_encryption: The disk encryption policy for nodes in this pool.
|
|
3160
3177
|
:param _builtins.int id: The ID of the node.
|
|
3161
3178
|
:param _builtins.str k8s_version: The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
3179
|
+
:param _builtins.str label: A label for the Node Pool. If not provided, it defaults to empty string.
|
|
3162
3180
|
:param Mapping[str, _builtins.str] labels: A map of key/value pairs to apply to all nodes in the pool. Labels are used to identify and organize Kubernetes resources within your cluster.
|
|
3163
3181
|
:param Sequence['LkeClusterPoolNodeArgs'] nodes: The nodes in the node pool.
|
|
3164
3182
|
:param Sequence[_builtins.str] tags: A set of tags applied to this node pool. Tags can be used to flag node pools as externally managed. See Externally Managed Node Pools for more details.
|
|
@@ -3176,6 +3194,8 @@ class LkeClusterPool(dict):
|
|
|
3176
3194
|
pulumi.set(__self__, "id", id)
|
|
3177
3195
|
if k8s_version is not None:
|
|
3178
3196
|
pulumi.set(__self__, "k8s_version", k8s_version)
|
|
3197
|
+
if label is not None:
|
|
3198
|
+
pulumi.set(__self__, "label", label)
|
|
3179
3199
|
if labels is not None:
|
|
3180
3200
|
pulumi.set(__self__, "labels", labels)
|
|
3181
3201
|
if nodes is not None:
|
|
@@ -3235,6 +3255,14 @@ class LkeClusterPool(dict):
|
|
|
3235
3255
|
"""
|
|
3236
3256
|
return pulumi.get(self, "k8s_version")
|
|
3237
3257
|
|
|
3258
|
+
@_builtins.property
|
|
3259
|
+
@pulumi.getter
|
|
3260
|
+
def label(self) -> Optional[_builtins.str]:
|
|
3261
|
+
"""
|
|
3262
|
+
A label for the Node Pool. If not provided, it defaults to empty string.
|
|
3263
|
+
"""
|
|
3264
|
+
return pulumi.get(self, "label")
|
|
3265
|
+
|
|
3238
3266
|
@_builtins.property
|
|
3239
3267
|
@pulumi.getter
|
|
3240
3268
|
def labels(self) -> Optional[Mapping[str, _builtins.str]]:
|
|
@@ -11294,6 +11322,7 @@ class GetInstancesInstanceResult(dict):
|
|
|
11294
11322
|
ipv6: _builtins.str,
|
|
11295
11323
|
label: _builtins.str,
|
|
11296
11324
|
lke_cluster_id: _builtins.int,
|
|
11325
|
+
maintenance_policy: _builtins.str,
|
|
11297
11326
|
placement_groups: Sequence['outputs.GetInstancesInstancePlacementGroupResult'],
|
|
11298
11327
|
private_ip_address: _builtins.str,
|
|
11299
11328
|
region: _builtins.str,
|
|
@@ -11320,6 +11349,7 @@ class GetInstancesInstanceResult(dict):
|
|
|
11320
11349
|
:param _builtins.str ipv6: This Linode's IPv6 SLAAC addresses. This address is specific to a Linode, and may not be shared. The prefix (`/128`) is included in this attribute.
|
|
11321
11350
|
:param _builtins.str label: The label of the Placement Group. This field can only contain ASCII letters, digits and dashes.
|
|
11322
11351
|
:param _builtins.int lke_cluster_id: If applicable, the ID of the LKE cluster this instance is a part of.
|
|
11352
|
+
:param _builtins.str maintenance_policy: The maintenance policy of this Linode instance. (**Note: v4beta only.**)
|
|
11323
11353
|
:param _builtins.str private_ip_address: This Linode's Private IPv4 Address, if enabled. The regional private IP address range, 192.168.128.0/17, is shared by all Linode Instances in a region.
|
|
11324
11354
|
:param _builtins.str region: This is the location where the Linode is deployed. Examples are `"us-east"`, `"us-west"`, `"ap-south"`, etc. See all regions [here](https://api.linode.com/v4/regions).
|
|
11325
11355
|
:param _builtins.str status: The status of the instance, indicating the current readiness state. (`running`, `offline`, ...)
|
|
@@ -11345,6 +11375,7 @@ class GetInstancesInstanceResult(dict):
|
|
|
11345
11375
|
pulumi.set(__self__, "ipv6", ipv6)
|
|
11346
11376
|
pulumi.set(__self__, "label", label)
|
|
11347
11377
|
pulumi.set(__self__, "lke_cluster_id", lke_cluster_id)
|
|
11378
|
+
pulumi.set(__self__, "maintenance_policy", maintenance_policy)
|
|
11348
11379
|
pulumi.set(__self__, "placement_groups", placement_groups)
|
|
11349
11380
|
pulumi.set(__self__, "private_ip_address", private_ip_address)
|
|
11350
11381
|
pulumi.set(__self__, "region", region)
|
|
@@ -11488,6 +11519,14 @@ class GetInstancesInstanceResult(dict):
|
|
|
11488
11519
|
"""
|
|
11489
11520
|
return pulumi.get(self, "lke_cluster_id")
|
|
11490
11521
|
|
|
11522
|
+
@_builtins.property
|
|
11523
|
+
@pulumi.getter(name="maintenancePolicy")
|
|
11524
|
+
def maintenance_policy(self) -> _builtins.str:
|
|
11525
|
+
"""
|
|
11526
|
+
The maintenance policy of this Linode instance. (**Note: v4beta only.**)
|
|
11527
|
+
"""
|
|
11528
|
+
return pulumi.get(self, "maintenance_policy")
|
|
11529
|
+
|
|
11491
11530
|
@_builtins.property
|
|
11492
11531
|
@pulumi.getter(name="placementGroups")
|
|
11493
11532
|
def placement_groups(self) -> Sequence['outputs.GetInstancesInstancePlacementGroupResult']:
|
|
@@ -12871,16 +12910,27 @@ class GetKernelsKernelResult(dict):
|
|
|
12871
12910
|
@pulumi.output_type
|
|
12872
12911
|
class GetLkeClusterControlPlaneResult(dict):
|
|
12873
12912
|
def __init__(__self__, *,
|
|
12913
|
+
audit_logs_enabled: _builtins.bool,
|
|
12874
12914
|
high_availability: _builtins.bool,
|
|
12875
12915
|
acls: Optional[Sequence['outputs.GetLkeClusterControlPlaneAclResult']] = None):
|
|
12876
12916
|
"""
|
|
12917
|
+
:param _builtins.bool audit_logs_enabled: Enables audit logs on the cluster's control plane.
|
|
12877
12918
|
:param _builtins.bool high_availability: Whether High Availability is enabled for the cluster Control Plane.
|
|
12878
12919
|
:param Sequence['GetLkeClusterControlPlaneAclArgs'] acls: The ACL configuration for an LKE cluster's control plane.
|
|
12879
12920
|
"""
|
|
12921
|
+
pulumi.set(__self__, "audit_logs_enabled", audit_logs_enabled)
|
|
12880
12922
|
pulumi.set(__self__, "high_availability", high_availability)
|
|
12881
12923
|
if acls is not None:
|
|
12882
12924
|
pulumi.set(__self__, "acls", acls)
|
|
12883
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
|
+
|
|
12884
12934
|
@_builtins.property
|
|
12885
12935
|
@pulumi.getter(name="highAvailability")
|
|
12886
12936
|
def high_availability(self) -> _builtins.bool:
|
|
@@ -12971,6 +13021,7 @@ class GetLkeClusterPoolResult(dict):
|
|
|
12971
13021
|
update_strategy: _builtins.str,
|
|
12972
13022
|
autoscalers: Optional[Sequence['outputs.GetLkeClusterPoolAutoscalerResult']] = None,
|
|
12973
13023
|
disks: Optional[Sequence['outputs.GetLkeClusterPoolDiskResult']] = None,
|
|
13024
|
+
label: Optional[_builtins.str] = None,
|
|
12974
13025
|
nodes: Optional[Sequence['outputs.GetLkeClusterPoolNodeResult']] = None):
|
|
12975
13026
|
"""
|
|
12976
13027
|
:param _builtins.int count: The number of nodes in the Node Pool.
|
|
@@ -12984,6 +13035,7 @@ class GetLkeClusterPoolResult(dict):
|
|
|
12984
13035
|
:param _builtins.str update_strategy: The strategy for updating the Node Pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
12985
13036
|
:param Sequence['GetLkeClusterPoolAutoscalerArgs'] autoscalers: The configuration options for the autoscaler. This field only contains an autoscaler configuration if autoscaling is enabled on this cluster.
|
|
12986
13037
|
:param Sequence['GetLkeClusterPoolDiskArgs'] disks: This Node Pool’s custom disk layout.
|
|
13038
|
+
:param _builtins.str label: The label of the Node Pool.
|
|
12987
13039
|
:param Sequence['GetLkeClusterPoolNodeArgs'] nodes: The nodes in the Node Pool.
|
|
12988
13040
|
"""
|
|
12989
13041
|
pulumi.set(__self__, "count", count)
|
|
@@ -12999,6 +13051,8 @@ class GetLkeClusterPoolResult(dict):
|
|
|
12999
13051
|
pulumi.set(__self__, "autoscalers", autoscalers)
|
|
13000
13052
|
if disks is not None:
|
|
13001
13053
|
pulumi.set(__self__, "disks", disks)
|
|
13054
|
+
if label is not None:
|
|
13055
|
+
pulumi.set(__self__, "label", label)
|
|
13002
13056
|
if nodes is not None:
|
|
13003
13057
|
pulumi.set(__self__, "nodes", nodes)
|
|
13004
13058
|
|
|
@@ -13090,6 +13144,14 @@ class GetLkeClusterPoolResult(dict):
|
|
|
13090
13144
|
"""
|
|
13091
13145
|
return pulumi.get(self, "disks")
|
|
13092
13146
|
|
|
13147
|
+
@_builtins.property
|
|
13148
|
+
@pulumi.getter
|
|
13149
|
+
def label(self) -> Optional[_builtins.str]:
|
|
13150
|
+
"""
|
|
13151
|
+
The label of the Node Pool.
|
|
13152
|
+
"""
|
|
13153
|
+
return pulumi.get(self, "label")
|
|
13154
|
+
|
|
13093
13155
|
@_builtins.property
|
|
13094
13156
|
@pulumi.getter
|
|
13095
13157
|
def nodes(self) -> Optional[Sequence['outputs.GetLkeClusterPoolNodeResult']]:
|
|
@@ -13298,10 +13360,13 @@ class GetLkeClustersLkeClusterResult(dict):
|
|
|
13298
13360
|
k8s_version: _builtins.str,
|
|
13299
13361
|
label: _builtins.str,
|
|
13300
13362
|
region: _builtins.str,
|
|
13363
|
+
stack_type: _builtins.str,
|
|
13301
13364
|
status: _builtins.str,
|
|
13365
|
+
subnet_id: _builtins.int,
|
|
13302
13366
|
tags: Sequence[_builtins.str],
|
|
13303
13367
|
tier: _builtins.str,
|
|
13304
13368
|
updated: _builtins.str,
|
|
13369
|
+
vpc_id: _builtins.int,
|
|
13305
13370
|
control_plane: Optional['outputs.GetLkeClustersLkeClusterControlPlaneResult'] = None):
|
|
13306
13371
|
"""
|
|
13307
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.
|
|
@@ -13310,10 +13375,13 @@ class GetLkeClustersLkeClusterResult(dict):
|
|
|
13310
13375
|
:param _builtins.str k8s_version: The Kubernetes version for this Kubernetes cluster in the format of `major.minor` (e.g. `1.17`).
|
|
13311
13376
|
:param _builtins.str label: The unique label for the cluster.
|
|
13312
13377
|
:param _builtins.str region: This Kubernetes cluster's location.
|
|
13378
|
+
:param _builtins.str stack_type: The networking stack type of the Kubernetes cluster.
|
|
13313
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).
|
|
13314
13381
|
:param Sequence[_builtins.str] tags: An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
|
|
13315
13382
|
:param _builtins.str tier: The desired Kubernetes tier. (**Note: v4beta only and may not currently be available to all users.**)
|
|
13316
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.
|
|
13317
13385
|
:param 'GetLkeClustersLkeClusterControlPlaneArgs' control_plane: Defines settings for the Kubernetes Control Plane.
|
|
13318
13386
|
"""
|
|
13319
13387
|
pulumi.set(__self__, "apl_enabled", apl_enabled)
|
|
@@ -13322,10 +13390,13 @@ class GetLkeClustersLkeClusterResult(dict):
|
|
|
13322
13390
|
pulumi.set(__self__, "k8s_version", k8s_version)
|
|
13323
13391
|
pulumi.set(__self__, "label", label)
|
|
13324
13392
|
pulumi.set(__self__, "region", region)
|
|
13393
|
+
pulumi.set(__self__, "stack_type", stack_type)
|
|
13325
13394
|
pulumi.set(__self__, "status", status)
|
|
13395
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
13326
13396
|
pulumi.set(__self__, "tags", tags)
|
|
13327
13397
|
pulumi.set(__self__, "tier", tier)
|
|
13328
13398
|
pulumi.set(__self__, "updated", updated)
|
|
13399
|
+
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
13329
13400
|
if control_plane is not None:
|
|
13330
13401
|
pulumi.set(__self__, "control_plane", control_plane)
|
|
13331
13402
|
|
|
@@ -13377,6 +13448,14 @@ class GetLkeClustersLkeClusterResult(dict):
|
|
|
13377
13448
|
"""
|
|
13378
13449
|
return pulumi.get(self, "region")
|
|
13379
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
|
+
|
|
13380
13459
|
@_builtins.property
|
|
13381
13460
|
@pulumi.getter
|
|
13382
13461
|
def status(self) -> _builtins.str:
|
|
@@ -13385,6 +13464,14 @@ class GetLkeClustersLkeClusterResult(dict):
|
|
|
13385
13464
|
"""
|
|
13386
13465
|
return pulumi.get(self, "status")
|
|
13387
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
|
+
|
|
13388
13475
|
@_builtins.property
|
|
13389
13476
|
@pulumi.getter
|
|
13390
13477
|
def tags(self) -> Sequence[_builtins.str]:
|
|
@@ -13409,6 +13496,14 @@ class GetLkeClustersLkeClusterResult(dict):
|
|
|
13409
13496
|
"""
|
|
13410
13497
|
return pulumi.get(self, "updated")
|
|
13411
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
|
+
|
|
13412
13507
|
@_builtins.property
|
|
13413
13508
|
@pulumi.getter(name="controlPlane")
|
|
13414
13509
|
def control_plane(self) -> Optional['outputs.GetLkeClustersLkeClusterControlPlaneResult']:
|
|
@@ -13421,12 +13516,23 @@ class GetLkeClustersLkeClusterResult(dict):
|
|
|
13421
13516
|
@pulumi.output_type
|
|
13422
13517
|
class GetLkeClustersLkeClusterControlPlaneResult(dict):
|
|
13423
13518
|
def __init__(__self__, *,
|
|
13519
|
+
audit_logs_enabled: _builtins.bool,
|
|
13424
13520
|
high_availability: _builtins.bool):
|
|
13425
13521
|
"""
|
|
13522
|
+
:param _builtins.bool audit_logs_enabled: Enables audit logs on the cluster's control plane.
|
|
13426
13523
|
:param _builtins.bool high_availability: Whether High Availability is enabled for the cluster Control Plane.
|
|
13427
13524
|
"""
|
|
13525
|
+
pulumi.set(__self__, "audit_logs_enabled", audit_logs_enabled)
|
|
13428
13526
|
pulumi.set(__self__, "high_availability", high_availability)
|
|
13429
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
|
+
|
|
13430
13536
|
@_builtins.property
|
|
13431
13537
|
@pulumi.getter(name="highAvailability")
|
|
13432
13538
|
def high_availability(self) -> _builtins.bool:
|
|
@@ -13629,6 +13735,120 @@ class GetLkeVersionsVersionResult(dict):
|
|
|
13629
13735
|
return pulumi.get(self, "tier")
|
|
13630
13736
|
|
|
13631
13737
|
|
|
13738
|
+
@pulumi.output_type
|
|
13739
|
+
class GetMaintenancePoliciesFilterResult(dict):
|
|
13740
|
+
def __init__(__self__, *,
|
|
13741
|
+
name: _builtins.str,
|
|
13742
|
+
values: Sequence[_builtins.str],
|
|
13743
|
+
match_by: Optional[_builtins.str] = None):
|
|
13744
|
+
"""
|
|
13745
|
+
:param _builtins.str name: The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
13746
|
+
:param Sequence[_builtins.str] values: A list of values for the filter to allow. These values should all be in string form.
|
|
13747
|
+
:param _builtins.str match_by: The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
13748
|
+
"""
|
|
13749
|
+
pulumi.set(__self__, "name", name)
|
|
13750
|
+
pulumi.set(__self__, "values", values)
|
|
13751
|
+
if match_by is not None:
|
|
13752
|
+
pulumi.set(__self__, "match_by", match_by)
|
|
13753
|
+
|
|
13754
|
+
@_builtins.property
|
|
13755
|
+
@pulumi.getter
|
|
13756
|
+
def name(self) -> _builtins.str:
|
|
13757
|
+
"""
|
|
13758
|
+
The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
13759
|
+
"""
|
|
13760
|
+
return pulumi.get(self, "name")
|
|
13761
|
+
|
|
13762
|
+
@_builtins.property
|
|
13763
|
+
@pulumi.getter
|
|
13764
|
+
def values(self) -> Sequence[_builtins.str]:
|
|
13765
|
+
"""
|
|
13766
|
+
A list of values for the filter to allow. These values should all be in string form.
|
|
13767
|
+
"""
|
|
13768
|
+
return pulumi.get(self, "values")
|
|
13769
|
+
|
|
13770
|
+
@_builtins.property
|
|
13771
|
+
@pulumi.getter(name="matchBy")
|
|
13772
|
+
def match_by(self) -> Optional[_builtins.str]:
|
|
13773
|
+
"""
|
|
13774
|
+
The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
13775
|
+
"""
|
|
13776
|
+
return pulumi.get(self, "match_by")
|
|
13777
|
+
|
|
13778
|
+
|
|
13779
|
+
@pulumi.output_type
|
|
13780
|
+
class GetMaintenancePoliciesMaintenancePolicyResult(dict):
|
|
13781
|
+
def __init__(__self__, *,
|
|
13782
|
+
description: _builtins.str,
|
|
13783
|
+
is_default: _builtins.bool,
|
|
13784
|
+
label: _builtins.str,
|
|
13785
|
+
notification_period_sec: _builtins.int,
|
|
13786
|
+
slug: _builtins.str,
|
|
13787
|
+
type: _builtins.str):
|
|
13788
|
+
"""
|
|
13789
|
+
:param _builtins.str description: Description of this policy
|
|
13790
|
+
:param _builtins.bool is_default: Whether this is the default policy for the account.
|
|
13791
|
+
:param _builtins.str label: The label for this policy.
|
|
13792
|
+
:param _builtins.int notification_period_sec: The notification lead time in seconds.
|
|
13793
|
+
:param _builtins.str slug: Unique identifier for this policy
|
|
13794
|
+
:param _builtins.str type: The type of action taken during maintenance.
|
|
13795
|
+
"""
|
|
13796
|
+
pulumi.set(__self__, "description", description)
|
|
13797
|
+
pulumi.set(__self__, "is_default", is_default)
|
|
13798
|
+
pulumi.set(__self__, "label", label)
|
|
13799
|
+
pulumi.set(__self__, "notification_period_sec", notification_period_sec)
|
|
13800
|
+
pulumi.set(__self__, "slug", slug)
|
|
13801
|
+
pulumi.set(__self__, "type", type)
|
|
13802
|
+
|
|
13803
|
+
@_builtins.property
|
|
13804
|
+
@pulumi.getter
|
|
13805
|
+
def description(self) -> _builtins.str:
|
|
13806
|
+
"""
|
|
13807
|
+
Description of this policy
|
|
13808
|
+
"""
|
|
13809
|
+
return pulumi.get(self, "description")
|
|
13810
|
+
|
|
13811
|
+
@_builtins.property
|
|
13812
|
+
@pulumi.getter(name="isDefault")
|
|
13813
|
+
def is_default(self) -> _builtins.bool:
|
|
13814
|
+
"""
|
|
13815
|
+
Whether this is the default policy for the account.
|
|
13816
|
+
"""
|
|
13817
|
+
return pulumi.get(self, "is_default")
|
|
13818
|
+
|
|
13819
|
+
@_builtins.property
|
|
13820
|
+
@pulumi.getter
|
|
13821
|
+
def label(self) -> _builtins.str:
|
|
13822
|
+
"""
|
|
13823
|
+
The label for this policy.
|
|
13824
|
+
"""
|
|
13825
|
+
return pulumi.get(self, "label")
|
|
13826
|
+
|
|
13827
|
+
@_builtins.property
|
|
13828
|
+
@pulumi.getter(name="notificationPeriodSec")
|
|
13829
|
+
def notification_period_sec(self) -> _builtins.int:
|
|
13830
|
+
"""
|
|
13831
|
+
The notification lead time in seconds.
|
|
13832
|
+
"""
|
|
13833
|
+
return pulumi.get(self, "notification_period_sec")
|
|
13834
|
+
|
|
13835
|
+
@_builtins.property
|
|
13836
|
+
@pulumi.getter
|
|
13837
|
+
def slug(self) -> _builtins.str:
|
|
13838
|
+
"""
|
|
13839
|
+
Unique identifier for this policy
|
|
13840
|
+
"""
|
|
13841
|
+
return pulumi.get(self, "slug")
|
|
13842
|
+
|
|
13843
|
+
@_builtins.property
|
|
13844
|
+
@pulumi.getter
|
|
13845
|
+
def type(self) -> _builtins.str:
|
|
13846
|
+
"""
|
|
13847
|
+
The type of action taken during maintenance.
|
|
13848
|
+
"""
|
|
13849
|
+
return pulumi.get(self, "type")
|
|
13850
|
+
|
|
13851
|
+
|
|
13632
13852
|
@pulumi.output_type
|
|
13633
13853
|
class GetNbTypesFilterResult(dict):
|
|
13634
13854
|
def __init__(__self__, *,
|
pulumi_linode/pulumi-plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
pulumi_linode/__init__.py,sha256
|
|
2
|
-
pulumi_linode/_inputs.py,sha256=
|
|
1
|
+
pulumi_linode/__init__.py,sha256=IWKSLOYMFhV5go6BzBGEnaXXpc5urphJe9zn6GosUyc,10586
|
|
2
|
+
pulumi_linode/_inputs.py,sha256=I87O1TWwJlCvyZz_tj7LrjvXFAexozNMW8SbqRL3Z0w,782313
|
|
3
3
|
pulumi_linode/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
|
-
pulumi_linode/account_settings.py,sha256=
|
|
4
|
+
pulumi_linode/account_settings.py,sha256=UWngx9uOVtGfI9IieEf8G6dGkPdyC88YxKWFAmMWCgo,20993
|
|
5
5
|
pulumi_linode/database_access_controls.py,sha256=I0F2ORRsi9ZMyJiVF0XLOTfbkGbl5aDu5EfshCx3oGw,13871
|
|
6
6
|
pulumi_linode/database_mysql.py,sha256=TQdE0eNJ_-Oir1Tmt1zad6kw6NBlVAPn4LWQL3KI2Ks,47614
|
|
7
7
|
pulumi_linode/database_mysql_v2.py,sha256=vJcshea9eQnCOCeqMW5HVDQn_5Ri-XEExrYtP1zepvQ,159077
|
|
@@ -16,7 +16,7 @@ pulumi_linode/get_account_availabilities.py,sha256=X99caadGZl_GL598LwgdtJkPeq6D2
|
|
|
16
16
|
pulumi_linode/get_account_availability.py,sha256=sXuPtXNW-KmC940Pq3oFqtZPEATAEb0K99hGTcL2bac,5609
|
|
17
17
|
pulumi_linode/get_account_login.py,sha256=2XHdNmVbZ3GlyLMidD5INXRHmlg53krA2WnYSKzfNTA,6160
|
|
18
18
|
pulumi_linode/get_account_logins.py,sha256=HCBaFy4gbFdyziSYMOUaVv8GBlAd01SKiEDlsp_eKV8,5785
|
|
19
|
-
pulumi_linode/get_account_settings.py,sha256=
|
|
19
|
+
pulumi_linode/get_account_settings.py,sha256=5RHOMwO9dh8pFz4dZMiatJI_qbJ3ipACMSQaawk1c0k,7319
|
|
20
20
|
pulumi_linode/get_child_account.py,sha256=4vIST5e8habmA70BJEFlrtIO-qLaHZ2qvG_ybMfVMaM,12449
|
|
21
21
|
pulumi_linode/get_child_accounts.py,sha256=smvVWP4FFoSh_gsBjau8EDnfszV36QLNQHfIHsvJQ0I,6872
|
|
22
22
|
pulumi_linode/get_database_backups.py,sha256=SBzz2Og4f4uF66ulvXObRJkH_xDgHV7LZYWUJ9QQlPc,11069
|
|
@@ -47,11 +47,12 @@ 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
|
|
54
54
|
pulumi_linode/get_lke_versions.py,sha256=3sEB1Jgvm2rbRa3BfpPzTwmTiJ2p1_OuO5VgzQ3-408,6763
|
|
55
|
+
pulumi_linode/get_maintenance_policies.py,sha256=Fa00Y8WyqFjB5c0KQLigxsBnk6W8pGSq_DHEW2FM6K4,6013
|
|
55
56
|
pulumi_linode/get_nb_types.py,sha256=t7szCjNY_2za9gYuWZpwdc6L_372ea9KH8PV--0DDKE,5294
|
|
56
57
|
pulumi_linode/get_network_transfer_prices.py,sha256=I3P56p6Q1l7oOnHyuMzsfI7PRxU75Pixdt2GcUlIvQU,6726
|
|
57
58
|
pulumi_linode/get_networking_ip.py,sha256=ESNgohwdR_FNvtxyqqHh4NaM7j7oFo2GSTL_uVoDaGM,9932
|
|
@@ -86,14 +87,14 @@ pulumi_linode/get_vpc_subnet.py,sha256=3Bn9dgHw9SP-BApXkw48UyaCuTPy-bLMhTlibXKJ_
|
|
|
86
87
|
pulumi_linode/get_vpc_subnets.py,sha256=zTavCk8b26AscarN-3aj7JvDFYMT88M9dfkdFW2BSjw,6564
|
|
87
88
|
pulumi_linode/get_vpcs.py,sha256=Bh1BaB91C2ISEXilEhFwin1pJBBqY0cIJ1KWT0RiK7g,4965
|
|
88
89
|
pulumi_linode/image.py,sha256=nBKTAd7T24-kLbJrWPW87zI5YEmEYPjF7JscVQVUCBA,54747
|
|
89
|
-
pulumi_linode/instance.py,sha256=
|
|
90
|
+
pulumi_linode/instance.py,sha256=4ymwcfdI-Hwi4dNvr-hlScA1r2lEahBScGgHf8lB6_A,141014
|
|
90
91
|
pulumi_linode/instance_config.py,sha256=XkUreQSaVptB1OtvTnmmLOFozTKgeoE_P1INFs4S73g,42141
|
|
91
92
|
pulumi_linode/instance_disk.py,sha256=d8IfpBkdsfd9qQPrgX80L-Ecl3oZYk9IX5NqrvWI1fM,40574
|
|
92
93
|
pulumi_linode/instance_ip.py,sha256=FlQYwITmNUjSWFwFmXkRKV8qlQvBoVgErZUMcwXEHMQ,22323
|
|
93
94
|
pulumi_linode/instance_shared_ips.py,sha256=IkNiLmaCJ8QPwXPg3Rs3sb8GsijGT8HKHSprgRPjHg4,14531
|
|
94
95
|
pulumi_linode/ipv6_range.py,sha256=6GwFTV7TeSkc6bF5bs_Jd7xwXrl4N5A2Xmqxw9uYss4,16060
|
|
95
|
-
pulumi_linode/lke_cluster.py,sha256=
|
|
96
|
-
pulumi_linode/lke_node_pool.py,sha256
|
|
96
|
+
pulumi_linode/lke_cluster.py,sha256=ot-L5sJpBHr2JOTHThHdFWL_LBWkDrzrrMGVmo-bW-s,41505
|
|
97
|
+
pulumi_linode/lke_node_pool.py,sha256=-1MvgVnNprFgA73KUK6odlCxmhWUVOxSuwe5nMsz7ek,38448
|
|
97
98
|
pulumi_linode/networking_ip.py,sha256=FCygbQlP1QGgtL_p3LXdIRttfS-9-ou5F8Wc5nB_qRQ,23921
|
|
98
99
|
pulumi_linode/networking_ip_assignment.py,sha256=dlmLRP8NhQjt9_fV5kU9qfa56sD7Dah_LfvjnhiYeTM,9650
|
|
99
100
|
pulumi_linode/node_balancer.py,sha256=yRYsAKAHplmbShap8Nt1Hw0-kKfMO5m4mQ_q8hhV4h8,31035
|
|
@@ -102,11 +103,11 @@ pulumi_linode/node_balancer_node.py,sha256=4tEdbLGfGTI09kFP6o9Pjwbu4W3hhlSlU30AW
|
|
|
102
103
|
pulumi_linode/object_storage_bucket.py,sha256=1KxXcawPw0XGJAn1A8BkgMdmbaIyMAc_u_ND1h_xAf0,48315
|
|
103
104
|
pulumi_linode/object_storage_key.py,sha256=DCwmYlnipDM_tsqW6GSKMGlYL7kKDiQyQySjBuBugZk,21932
|
|
104
105
|
pulumi_linode/object_storage_object.py,sha256=MQSDkOlFLNktHMmN1OcYm13E_t-XAaPCTUcQdZaE_UE,65505
|
|
105
|
-
pulumi_linode/outputs.py,sha256=
|
|
106
|
+
pulumi_linode/outputs.py,sha256=r0LnvglRPhaSxgR2LSo2O0WyfLMnLBIkkJoDIk5IGds,729109
|
|
106
107
|
pulumi_linode/placement_group.py,sha256=VMkn_ZWb7nyU2d9uvPDq9WtpaO4VtP1_tWEet0tXZZg,17909
|
|
107
108
|
pulumi_linode/placement_group_assignment.py,sha256=VS41EglL2bMz-OGO5ut-mI4qztJ1JOTwJdYYH_6T2rE,13127
|
|
108
109
|
pulumi_linode/provider.py,sha256=3u-3yR4HC0WM7nENM_fmVdnhTVkMVvofuNjqCek2dOY,31154
|
|
109
|
-
pulumi_linode/pulumi-plugin.json,sha256=
|
|
110
|
+
pulumi_linode/pulumi-plugin.json,sha256=hy6kkjqT2KT2CKvjofWpiHQtpaWyez-QhP0n_W3PCuU,65
|
|
110
111
|
pulumi_linode/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
112
|
pulumi_linode/rdns.py,sha256=KSsmS3FJ-LTPL1TJgryhPV0S73hgZ5d3MXn71o3n9uE,16875
|
|
112
113
|
pulumi_linode/reserved_ip_assignment.py,sha256=x0msvRRh3P4LocXq4FWGC_VMXUttMTzJMAISJ2O71qI,23494
|
|
@@ -120,7 +121,7 @@ pulumi_linode/vpc_subnet.py,sha256=8hnZ0Qgag4ukZ780J6QzoQYRVOvcMKnLQwLtMMQy3EA,1
|
|
|
120
121
|
pulumi_linode/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
121
122
|
pulumi_linode/config/__init__.pyi,sha256=LvOCsq3YYxRuU8teN4ZTDH2Nx_BlzOzM75EluLMpw80,2587
|
|
122
123
|
pulumi_linode/config/vars.py,sha256=Ypi1LOwkZcSV8Q4iq89-tWZGaG-4B8CAJCGefemZ-DY,5147
|
|
123
|
-
pulumi_linode-5.
|
|
124
|
-
pulumi_linode-5.
|
|
125
|
-
pulumi_linode-5.
|
|
126
|
-
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
|