@pulumi/linode 4.20.0-alpha.1716961553 → 4.20.0

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.
@@ -20,6 +20,9 @@ export declare function getLkeCluster(args: GetLkeClusterArgs, opts?: pulumi.Inv
20
20
  * A collection of arguments for invoking getLkeCluster.
21
21
  */
22
22
  export interface GetLkeClusterArgs {
23
+ /**
24
+ * The settings for the Kubernetes Control Plane.
25
+ */
23
26
  controlPlanes?: inputs.GetLkeClusterControlPlane[];
24
27
  /**
25
28
  * The LKE Cluster's ID.
@@ -38,6 +41,9 @@ export interface GetLkeClusterResult {
38
41
  * The endpoints for the Kubernetes API server.
39
42
  */
40
43
  readonly apiEndpoints: string[];
44
+ /**
45
+ * The settings for the Kubernetes Control Plane.
46
+ */
41
47
  readonly controlPlanes?: outputs.GetLkeClusterControlPlane[];
42
48
  /**
43
49
  * When this Kubernetes cluster was created.
@@ -103,6 +109,9 @@ export declare function getLkeClusterOutput(args: GetLkeClusterOutputArgs, opts?
103
109
  * A collection of arguments for invoking getLkeCluster.
104
110
  */
105
111
  export interface GetLkeClusterOutputArgs {
112
+ /**
113
+ * The settings for the Kubernetes Control Plane.
114
+ */
106
115
  controlPlanes?: pulumi.Input<pulumi.Input<inputs.GetLkeClusterControlPlaneArgs>[]>;
107
116
  /**
108
117
  * The LKE Cluster's ID.
@@ -1 +1 @@
1
- {"version":3,"file":"getLkeCluster.js","sourceRoot":"","sources":["../getLkeCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAE9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,sCAQC;AAuED;;;;;;;;;;;;;GAaG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACxE,CAAC;AAFD,kDAEC"}
1
+ {"version":3,"file":"getLkeCluster.js","sourceRoot":"","sources":["../getLkeCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAE9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,sCAQC;AA6ED;;;;;;;;;;;;;GAaG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACxE,CAAC;AAFD,kDAEC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/linode",
3
- "version": "4.20.0-alpha.1716961553",
3
+ "version": "4.20.0",
4
4
  "description": "A Pulumi package for creating and managing linode cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "linode",
26
- "version": "4.20.0-alpha.1716961553"
26
+ "version": "4.20.0"
27
27
  }
28
28
  }
package/types/input.d.ts CHANGED
@@ -1545,17 +1545,65 @@ export interface GetKernelsKernelArgs {
1545
1545
  xen?: pulumi.Input<boolean>;
1546
1546
  }
1547
1547
  export interface GetLkeClusterControlPlane {
1548
+ /**
1549
+ * The ACL configuration for an LKE cluster's control plane.
1550
+ */
1551
+ acls?: inputs.GetLkeClusterControlPlaneAcl[];
1548
1552
  /**
1549
1553
  * Whether High Availability is enabled for the cluster Control Plane.
1550
1554
  */
1551
1555
  highAvailability?: boolean;
1552
1556
  }
1553
1557
  export interface GetLkeClusterControlPlaneArgs {
1558
+ /**
1559
+ * The ACL configuration for an LKE cluster's control plane.
1560
+ */
1561
+ acls?: pulumi.Input<pulumi.Input<inputs.GetLkeClusterControlPlaneAclArgs>[]>;
1554
1562
  /**
1555
1563
  * Whether High Availability is enabled for the cluster Control Plane.
1556
1564
  */
1557
1565
  highAvailability?: pulumi.Input<boolean>;
1558
1566
  }
1567
+ export interface GetLkeClusterControlPlaneAcl {
1568
+ /**
1569
+ * A list of ip addresses to allow.
1570
+ */
1571
+ addresses?: inputs.GetLkeClusterControlPlaneAclAddress[];
1572
+ /**
1573
+ * The default policy. A value of true means a default policy of DENY. A value of false means a default policy of ALLOW.
1574
+ */
1575
+ enabled?: boolean;
1576
+ }
1577
+ export interface GetLkeClusterControlPlaneAclArgs {
1578
+ /**
1579
+ * A list of ip addresses to allow.
1580
+ */
1581
+ addresses?: pulumi.Input<pulumi.Input<inputs.GetLkeClusterControlPlaneAclAddressArgs>[]>;
1582
+ /**
1583
+ * The default policy. A value of true means a default policy of DENY. A value of false means a default policy of ALLOW.
1584
+ */
1585
+ enabled?: pulumi.Input<boolean>;
1586
+ }
1587
+ export interface GetLkeClusterControlPlaneAclAddress {
1588
+ /**
1589
+ * A set of individual ipv4 addresses or CIDRs to ALLOW.
1590
+ */
1591
+ ipv4s?: string[];
1592
+ /**
1593
+ * A set of individual ipv6 addresses or CIDRs to ALLOW.
1594
+ */
1595
+ ipv6s?: string[];
1596
+ }
1597
+ export interface GetLkeClusterControlPlaneAclAddressArgs {
1598
+ /**
1599
+ * A set of individual ipv4 addresses or CIDRs to ALLOW.
1600
+ */
1601
+ ipv4s?: pulumi.Input<pulumi.Input<string>[]>;
1602
+ /**
1603
+ * A set of individual ipv6 addresses or CIDRs to ALLOW.
1604
+ */
1605
+ ipv6s?: pulumi.Input<pulumi.Input<string>[]>;
1606
+ }
1559
1607
  export interface GetLkeClusterPool {
1560
1608
  /**
1561
1609
  * The configuration options for the autoscaler. This field only contains an autoscaler configuration if autoscaling is enabled on this cluster.
@@ -1618,7 +1666,7 @@ export interface GetLkeClusterPoolArgs {
1618
1666
  }
1619
1667
  export interface GetLkeClusterPoolAutoscaler {
1620
1668
  /**
1621
- * Whether autoscaling is enabled for this Node Pool. Defaults to false.
1669
+ * The default policy. A value of true means a default policy of DENY. A value of false means a default policy of ALLOW.
1622
1670
  */
1623
1671
  enabled?: boolean;
1624
1672
  /**
@@ -1632,7 +1680,7 @@ export interface GetLkeClusterPoolAutoscaler {
1632
1680
  }
1633
1681
  export interface GetLkeClusterPoolAutoscalerArgs {
1634
1682
  /**
1635
- * Whether autoscaling is enabled for this Node Pool. Defaults to false.
1683
+ * The default policy. A value of true means a default policy of DENY. A value of false means a default policy of ALLOW.
1636
1684
  */
1637
1685
  enabled?: pulumi.Input<boolean>;
1638
1686
  /**
@@ -4334,11 +4382,39 @@ export interface InstanceSpecs {
4334
4382
  vcpus?: pulumi.Input<number>;
4335
4383
  }
4336
4384
  export interface LkeClusterControlPlane {
4385
+ /**
4386
+ * Defines the ACL configuration for an LKE cluster's control plane.
4387
+ */
4388
+ acl?: pulumi.Input<inputs.LkeClusterControlPlaneAcl>;
4337
4389
  /**
4338
4390
  * Defines whether High Availability is enabled for the cluster Control Plane. This is an **irreversible** change.
4391
+ *
4392
+ * * `acl` - (Optional) Defines the ACL configuration for an LKE cluster's control plane.
4339
4393
  */
4340
4394
  highAvailability?: pulumi.Input<boolean>;
4341
4395
  }
4396
+ export interface LkeClusterControlPlaneAcl {
4397
+ /**
4398
+ * A list of ip addresses to allow.
4399
+ */
4400
+ addresses?: pulumi.Input<pulumi.Input<inputs.LkeClusterControlPlaneAclAddress>[]>;
4401
+ /**
4402
+ * Defines default policy. A value of true results in a default policy of DENY. A value of false results in default policy of ALLOW, and has the same effect as delete the ACL configuration.
4403
+ *
4404
+ * * `addresses` - (Optional) A list of ip addresses to allow.
4405
+ */
4406
+ enabled?: pulumi.Input<boolean>;
4407
+ }
4408
+ export interface LkeClusterControlPlaneAclAddress {
4409
+ /**
4410
+ * A set of individual ipv4 addresses or CIDRs to ALLOW.
4411
+ */
4412
+ ipv4s?: pulumi.Input<pulumi.Input<string>[]>;
4413
+ /**
4414
+ * A set of individual ipv6 addresses or CIDRs to ALLOW.
4415
+ */
4416
+ ipv6s?: pulumi.Input<pulumi.Input<string>[]>;
4417
+ }
4342
4418
  export interface LkeClusterPool {
4343
4419
  /**
4344
4420
  * When specified, the number of nodes autoscales within the defined minimum and maximum values.
package/types/output.d.ts CHANGED
@@ -1982,11 +1982,35 @@ export interface GetKernelsKernel {
1982
1982
  xen: boolean;
1983
1983
  }
1984
1984
  export interface GetLkeClusterControlPlane {
1985
+ /**
1986
+ * The ACL configuration for an LKE cluster's control plane.
1987
+ */
1988
+ acls?: outputs.GetLkeClusterControlPlaneAcl[];
1985
1989
  /**
1986
1990
  * Whether High Availability is enabled for the cluster Control Plane.
1987
1991
  */
1988
1992
  highAvailability: boolean;
1989
1993
  }
1994
+ export interface GetLkeClusterControlPlaneAcl {
1995
+ /**
1996
+ * A list of ip addresses to allow.
1997
+ */
1998
+ addresses?: outputs.GetLkeClusterControlPlaneAclAddress[];
1999
+ /**
2000
+ * The default policy. A value of true means a default policy of DENY. A value of false means a default policy of ALLOW.
2001
+ */
2002
+ enabled: boolean;
2003
+ }
2004
+ export interface GetLkeClusterControlPlaneAclAddress {
2005
+ /**
2006
+ * A set of individual ipv4 addresses or CIDRs to ALLOW.
2007
+ */
2008
+ ipv4s: string[];
2009
+ /**
2010
+ * A set of individual ipv6 addresses or CIDRs to ALLOW.
2011
+ */
2012
+ ipv6s: string[];
2013
+ }
1990
2014
  export interface GetLkeClusterPool {
1991
2015
  /**
1992
2016
  * The configuration options for the autoscaler. This field only contains an autoscaler configuration if autoscaling is enabled on this cluster.
@@ -2019,7 +2043,7 @@ export interface GetLkeClusterPool {
2019
2043
  }
2020
2044
  export interface GetLkeClusterPoolAutoscaler {
2021
2045
  /**
2022
- * Whether autoscaling is enabled for this Node Pool. Defaults to false.
2046
+ * The default policy. A value of true means a default policy of DENY. A value of false means a default policy of ALLOW.
2023
2047
  */
2024
2048
  enabled: boolean;
2025
2049
  /**
@@ -3754,11 +3778,39 @@ export interface InstanceSpecs {
3754
3778
  vcpus: number;
3755
3779
  }
3756
3780
  export interface LkeClusterControlPlane {
3781
+ /**
3782
+ * Defines the ACL configuration for an LKE cluster's control plane.
3783
+ */
3784
+ acl: outputs.LkeClusterControlPlaneAcl;
3757
3785
  /**
3758
3786
  * Defines whether High Availability is enabled for the cluster Control Plane. This is an **irreversible** change.
3787
+ *
3788
+ * * `acl` - (Optional) Defines the ACL configuration for an LKE cluster's control plane.
3759
3789
  */
3760
3790
  highAvailability: boolean;
3761
3791
  }
3792
+ export interface LkeClusterControlPlaneAcl {
3793
+ /**
3794
+ * A list of ip addresses to allow.
3795
+ */
3796
+ addresses: outputs.LkeClusterControlPlaneAclAddress[];
3797
+ /**
3798
+ * Defines default policy. A value of true results in a default policy of DENY. A value of false results in default policy of ALLOW, and has the same effect as delete the ACL configuration.
3799
+ *
3800
+ * * `addresses` - (Optional) A list of ip addresses to allow.
3801
+ */
3802
+ enabled: boolean;
3803
+ }
3804
+ export interface LkeClusterControlPlaneAclAddress {
3805
+ /**
3806
+ * A set of individual ipv4 addresses or CIDRs to ALLOW.
3807
+ */
3808
+ ipv4s: string[];
3809
+ /**
3810
+ * A set of individual ipv6 addresses or CIDRs to ALLOW.
3811
+ */
3812
+ ipv6s: string[];
3813
+ }
3762
3814
  export interface LkeClusterPool {
3763
3815
  /**
3764
3816
  * When specified, the number of nodes autoscales within the defined minimum and maximum values.