@pulumiverse/scaleway 1.40.0-alpha.1764842619 → 1.40.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.
- package/getKeyManagerKey.d.ts +132 -0
- package/getKeyManagerKey.js +102 -0
- package/getKeyManagerKey.js.map +1 -0
- package/index.d.ts +5 -1
- package/index.js +10 -5
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/s2svpn/connection.d.ts +361 -0
- package/s2svpn/connection.js +168 -0
- package/s2svpn/connection.js.map +1 -0
- package/s2svpn/customerGateway.d.ts +209 -0
- package/s2svpn/customerGateway.js +135 -0
- package/s2svpn/customerGateway.js.map +1 -0
- package/s2svpn/gateway.d.ts +235 -0
- package/s2svpn/gateway.js +120 -0
- package/s2svpn/gateway.js.map +1 -0
- package/s2svpn/index.d.ts +12 -0
- package/s2svpn/index.js +37 -0
- package/s2svpn/index.js.map +1 -0
- package/s2svpn/routingPolicy.d.ts +194 -0
- package/s2svpn/routingPolicy.js +117 -0
- package/s2svpn/routingPolicy.js.map +1 -0
- package/types/input.d.ts +96 -0
- package/types/output.d.ts +106 -0
package/types/output.d.ts
CHANGED
|
@@ -1685,6 +1685,16 @@ export interface GetIpamIpsResource {
|
|
|
1685
1685
|
*/
|
|
1686
1686
|
type: string;
|
|
1687
1687
|
}
|
|
1688
|
+
export interface GetKeyManagerKeyRotationPolicy {
|
|
1689
|
+
/**
|
|
1690
|
+
* Timestamp indicating the next scheduled rotation.
|
|
1691
|
+
*/
|
|
1692
|
+
nextRotationAt: string;
|
|
1693
|
+
/**
|
|
1694
|
+
* Time interval between two key rotations. The minimum duration is 24 hours and the maximum duration is 1 year (876000 hours).
|
|
1695
|
+
*/
|
|
1696
|
+
rotationPeriod: string;
|
|
1697
|
+
}
|
|
1688
1698
|
export interface GetKubernetesClusterAutoUpgrade {
|
|
1689
1699
|
/**
|
|
1690
1700
|
* True if Kubernetes patch version auto upgrades is enabled.
|
|
@@ -9900,6 +9910,102 @@ export declare namespace redis {
|
|
|
9900
9910
|
port: number;
|
|
9901
9911
|
}
|
|
9902
9912
|
}
|
|
9913
|
+
export declare namespace s2svpn {
|
|
9914
|
+
interface ConnectionBgpConfigIpv4 {
|
|
9915
|
+
/**
|
|
9916
|
+
* The BGP peer IP on customer side (within the tunnel).
|
|
9917
|
+
*/
|
|
9918
|
+
peerPrivateIp?: string;
|
|
9919
|
+
/**
|
|
9920
|
+
* The BGP peer IP on Scaleway side (within the tunnel).
|
|
9921
|
+
*/
|
|
9922
|
+
privateIp?: string;
|
|
9923
|
+
/**
|
|
9924
|
+
* The routing policy ID used for this BGP session.
|
|
9925
|
+
*/
|
|
9926
|
+
routingPolicyId: string;
|
|
9927
|
+
}
|
|
9928
|
+
interface ConnectionBgpConfigIpv6 {
|
|
9929
|
+
/**
|
|
9930
|
+
* The BGP peer IP on customer side (within the tunnel).
|
|
9931
|
+
*/
|
|
9932
|
+
peerPrivateIp?: string;
|
|
9933
|
+
/**
|
|
9934
|
+
* The BGP peer IP on Scaleway side (within the tunnel).
|
|
9935
|
+
*/
|
|
9936
|
+
privateIp?: string;
|
|
9937
|
+
/**
|
|
9938
|
+
* The routing policy ID used for this BGP session.
|
|
9939
|
+
*/
|
|
9940
|
+
routingPolicyId: string;
|
|
9941
|
+
}
|
|
9942
|
+
interface ConnectionBgpSessionIpv4 {
|
|
9943
|
+
/**
|
|
9944
|
+
* The BGP peer IP on customer side (within the tunnel).
|
|
9945
|
+
*/
|
|
9946
|
+
peerPrivateIp: string;
|
|
9947
|
+
/**
|
|
9948
|
+
* The BGP peer IP on Scaleway side (within the tunnel).
|
|
9949
|
+
*/
|
|
9950
|
+
privateIp: string;
|
|
9951
|
+
/**
|
|
9952
|
+
* The routing policy ID used for this BGP session.
|
|
9953
|
+
*/
|
|
9954
|
+
routingPolicyId: string;
|
|
9955
|
+
}
|
|
9956
|
+
interface ConnectionBgpSessionIpv6 {
|
|
9957
|
+
/**
|
|
9958
|
+
* The BGP peer IP on customer side (within the tunnel).
|
|
9959
|
+
*/
|
|
9960
|
+
peerPrivateIp: string;
|
|
9961
|
+
/**
|
|
9962
|
+
* The BGP peer IP on Scaleway side (within the tunnel).
|
|
9963
|
+
*/
|
|
9964
|
+
privateIp: string;
|
|
9965
|
+
/**
|
|
9966
|
+
* The routing policy ID used for this BGP session.
|
|
9967
|
+
*/
|
|
9968
|
+
routingPolicyId: string;
|
|
9969
|
+
}
|
|
9970
|
+
interface ConnectionEspCipher {
|
|
9971
|
+
/**
|
|
9972
|
+
* The Diffie-Hellman group
|
|
9973
|
+
*/
|
|
9974
|
+
dhGroup?: string;
|
|
9975
|
+
/**
|
|
9976
|
+
* The encryption algorithm
|
|
9977
|
+
*/
|
|
9978
|
+
encryption: string;
|
|
9979
|
+
/**
|
|
9980
|
+
* The integrity/hash algorithm
|
|
9981
|
+
*/
|
|
9982
|
+
integrity?: string;
|
|
9983
|
+
}
|
|
9984
|
+
interface ConnectionIkev2Cipher {
|
|
9985
|
+
/**
|
|
9986
|
+
* The Diffie-Hellman group
|
|
9987
|
+
*/
|
|
9988
|
+
dhGroup?: string;
|
|
9989
|
+
/**
|
|
9990
|
+
* The encryption algorithm
|
|
9991
|
+
*/
|
|
9992
|
+
encryption: string;
|
|
9993
|
+
/**
|
|
9994
|
+
* The integrity/hash algorithm
|
|
9995
|
+
*/
|
|
9996
|
+
integrity?: string;
|
|
9997
|
+
}
|
|
9998
|
+
interface GatewayPublicConfig {
|
|
9999
|
+
/**
|
|
10000
|
+
* The ID of the IPAM IPv4 address to use as the public IP for the VPN gateway.
|
|
10001
|
+
*/
|
|
10002
|
+
ipamIpv4Id?: string;
|
|
10003
|
+
/**
|
|
10004
|
+
* The ID of the IPAM IPv6 address to use as the public IP for the VPN gateway.
|
|
10005
|
+
*/
|
|
10006
|
+
ipamIpv6Id?: string;
|
|
10007
|
+
}
|
|
10008
|
+
}
|
|
9903
10009
|
export declare namespace secrets {
|
|
9904
10010
|
interface GetSecretEphemeralPolicy {
|
|
9905
10011
|
/**
|