pulumi-spotinst 3.125.0a1759907052__py3-none-any.whl → 3.126.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-spotinst might be problematic. Click here for more details.
- pulumi_spotinst/_inputs.py +291 -0
- pulumi_spotinst/aws/_inputs.py +93 -0
- pulumi_spotinst/aws/mr_scalar.py +4 -0
- pulumi_spotinst/aws/ocean_launch_spec.py +47 -0
- pulumi_spotinst/aws/outputs.py +58 -1
- pulumi_spotinst/ecs/ocean.py +4 -0
- pulumi_spotinst/gke/_inputs.py +134 -0
- pulumi_spotinst/gke/ocean_launch_spec.py +71 -2
- pulumi_spotinst/gke/outputs.py +107 -0
- pulumi_spotinst/ocean_right_sizing_rule.py +348 -2
- pulumi_spotinst/outputs.py +180 -0
- pulumi_spotinst/pulumi-plugin.json +1 -1
- {pulumi_spotinst-3.125.0a1759907052.dist-info → pulumi_spotinst-3.126.0.dist-info}/METADATA +1 -1
- {pulumi_spotinst-3.125.0a1759907052.dist-info → pulumi_spotinst-3.126.0.dist-info}/RECORD +16 -16
- {pulumi_spotinst-3.125.0a1759907052.dist-info → pulumi_spotinst-3.126.0.dist-info}/WHEEL +0 -0
- {pulumi_spotinst-3.125.0a1759907052.dist-info → pulumi_spotinst-3.126.0.dist-info}/top_level.txt +0 -0
pulumi_spotinst/outputs.py
CHANGED
|
@@ -65,6 +65,7 @@ __all__ = [
|
|
|
65
65
|
'OceanRightSizingRuleAttachWorkloadNamespace',
|
|
66
66
|
'OceanRightSizingRuleAttachWorkloadNamespaceLabel',
|
|
67
67
|
'OceanRightSizingRuleAttachWorkloadNamespaceWorkload',
|
|
68
|
+
'OceanRightSizingRuleAutoApplyDefinition',
|
|
68
69
|
'OceanRightSizingRuleDetachWorkload',
|
|
69
70
|
'OceanRightSizingRuleDetachWorkloadNamespace',
|
|
70
71
|
'OceanRightSizingRuleDetachWorkloadNamespaceLabel',
|
|
@@ -2464,11 +2465,17 @@ class NotificationCenterSubscription(dict):
|
|
|
2464
2465
|
class OceanRightSizingRuleAttachWorkload(dict):
|
|
2465
2466
|
def __init__(__self__, *,
|
|
2466
2467
|
namespaces: Sequence['outputs.OceanRightSizingRuleAttachWorkloadNamespace']):
|
|
2468
|
+
"""
|
|
2469
|
+
:param Sequence['OceanRightSizingRuleAttachWorkloadNamespaceArgs'] namespaces: List of namespaces that match the auto-apply rule.
|
|
2470
|
+
"""
|
|
2467
2471
|
pulumi.set(__self__, "namespaces", namespaces)
|
|
2468
2472
|
|
|
2469
2473
|
@_builtins.property
|
|
2470
2474
|
@pulumi.getter
|
|
2471
2475
|
def namespaces(self) -> Sequence['outputs.OceanRightSizingRuleAttachWorkloadNamespace']:
|
|
2476
|
+
"""
|
|
2477
|
+
List of namespaces that match the auto-apply rule.
|
|
2478
|
+
"""
|
|
2472
2479
|
return pulumi.get(self, "namespaces")
|
|
2473
2480
|
|
|
2474
2481
|
|
|
@@ -2495,6 +2502,11 @@ class OceanRightSizingRuleAttachWorkloadNamespace(dict):
|
|
|
2495
2502
|
namespace_name: _builtins.str,
|
|
2496
2503
|
labels: Optional[Sequence['outputs.OceanRightSizingRuleAttachWorkloadNamespaceLabel']] = None,
|
|
2497
2504
|
workloads: Optional[Sequence['outputs.OceanRightSizingRuleAttachWorkloadNamespaceWorkload']] = None):
|
|
2505
|
+
"""
|
|
2506
|
+
:param Sequence['OceanRightSizingRuleAttachWorkloadNamespaceLabelArgs'] labels: A set of key-value label pairs used to automatically apply this rule to all workloads in the cluster that match these labels.
|
|
2507
|
+
|
|
2508
|
+
<a id="attach_workloads"></a>
|
|
2509
|
+
"""
|
|
2498
2510
|
pulumi.set(__self__, "namespace_name", namespace_name)
|
|
2499
2511
|
if labels is not None:
|
|
2500
2512
|
pulumi.set(__self__, "labels", labels)
|
|
@@ -2509,6 +2521,11 @@ class OceanRightSizingRuleAttachWorkloadNamespace(dict):
|
|
|
2509
2521
|
@_builtins.property
|
|
2510
2522
|
@pulumi.getter
|
|
2511
2523
|
def labels(self) -> Optional[Sequence['outputs.OceanRightSizingRuleAttachWorkloadNamespaceLabel']]:
|
|
2524
|
+
"""
|
|
2525
|
+
A set of key-value label pairs used to automatically apply this rule to all workloads in the cluster that match these labels.
|
|
2526
|
+
|
|
2527
|
+
<a id="attach_workloads"></a>
|
|
2528
|
+
"""
|
|
2512
2529
|
return pulumi.get(self, "labels")
|
|
2513
2530
|
|
|
2514
2531
|
@_builtins.property
|
|
@@ -2585,15 +2602,68 @@ class OceanRightSizingRuleAttachWorkloadNamespaceWorkload(dict):
|
|
|
2585
2602
|
return pulumi.get(self, "workload_name")
|
|
2586
2603
|
|
|
2587
2604
|
|
|
2605
|
+
@pulumi.output_type
|
|
2606
|
+
class OceanRightSizingRuleAutoApplyDefinition(dict):
|
|
2607
|
+
def __init__(__self__, *,
|
|
2608
|
+
enabled: Optional[_builtins.bool] = None,
|
|
2609
|
+
labels: Optional[Mapping[str, _builtins.str]] = None,
|
|
2610
|
+
namespaces: Optional[Sequence[_builtins.str]] = None):
|
|
2611
|
+
"""
|
|
2612
|
+
:param _builtins.bool enabled: Determines if auto apply is enabled.
|
|
2613
|
+
:param Mapping[str, _builtins.str] labels: A set of key-value label pairs used to automatically apply this rule to all workloads in the cluster that match these labels.
|
|
2614
|
+
|
|
2615
|
+
<a id="attach_workloads"></a>
|
|
2616
|
+
:param Sequence[_builtins.str] namespaces: List of namespaces that match the auto-apply rule.
|
|
2617
|
+
"""
|
|
2618
|
+
if enabled is not None:
|
|
2619
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
2620
|
+
if labels is not None:
|
|
2621
|
+
pulumi.set(__self__, "labels", labels)
|
|
2622
|
+
if namespaces is not None:
|
|
2623
|
+
pulumi.set(__self__, "namespaces", namespaces)
|
|
2624
|
+
|
|
2625
|
+
@_builtins.property
|
|
2626
|
+
@pulumi.getter
|
|
2627
|
+
def enabled(self) -> Optional[_builtins.bool]:
|
|
2628
|
+
"""
|
|
2629
|
+
Determines if auto apply is enabled.
|
|
2630
|
+
"""
|
|
2631
|
+
return pulumi.get(self, "enabled")
|
|
2632
|
+
|
|
2633
|
+
@_builtins.property
|
|
2634
|
+
@pulumi.getter
|
|
2635
|
+
def labels(self) -> Optional[Mapping[str, _builtins.str]]:
|
|
2636
|
+
"""
|
|
2637
|
+
A set of key-value label pairs used to automatically apply this rule to all workloads in the cluster that match these labels.
|
|
2638
|
+
|
|
2639
|
+
<a id="attach_workloads"></a>
|
|
2640
|
+
"""
|
|
2641
|
+
return pulumi.get(self, "labels")
|
|
2642
|
+
|
|
2643
|
+
@_builtins.property
|
|
2644
|
+
@pulumi.getter
|
|
2645
|
+
def namespaces(self) -> Optional[Sequence[_builtins.str]]:
|
|
2646
|
+
"""
|
|
2647
|
+
List of namespaces that match the auto-apply rule.
|
|
2648
|
+
"""
|
|
2649
|
+
return pulumi.get(self, "namespaces")
|
|
2650
|
+
|
|
2651
|
+
|
|
2588
2652
|
@pulumi.output_type
|
|
2589
2653
|
class OceanRightSizingRuleDetachWorkload(dict):
|
|
2590
2654
|
def __init__(__self__, *,
|
|
2591
2655
|
namespaces: Sequence['outputs.OceanRightSizingRuleDetachWorkloadNamespace']):
|
|
2656
|
+
"""
|
|
2657
|
+
:param Sequence['OceanRightSizingRuleDetachWorkloadNamespaceArgs'] namespaces: List of namespaces that match the auto-apply rule.
|
|
2658
|
+
"""
|
|
2592
2659
|
pulumi.set(__self__, "namespaces", namespaces)
|
|
2593
2660
|
|
|
2594
2661
|
@_builtins.property
|
|
2595
2662
|
@pulumi.getter
|
|
2596
2663
|
def namespaces(self) -> Sequence['outputs.OceanRightSizingRuleDetachWorkloadNamespace']:
|
|
2664
|
+
"""
|
|
2665
|
+
List of namespaces that match the auto-apply rule.
|
|
2666
|
+
"""
|
|
2597
2667
|
return pulumi.get(self, "namespaces")
|
|
2598
2668
|
|
|
2599
2669
|
|
|
@@ -2620,6 +2690,11 @@ class OceanRightSizingRuleDetachWorkloadNamespace(dict):
|
|
|
2620
2690
|
namespace_name: _builtins.str,
|
|
2621
2691
|
labels: Optional[Sequence['outputs.OceanRightSizingRuleDetachWorkloadNamespaceLabel']] = None,
|
|
2622
2692
|
workloads: Optional[Sequence['outputs.OceanRightSizingRuleDetachWorkloadNamespaceWorkload']] = None):
|
|
2693
|
+
"""
|
|
2694
|
+
:param Sequence['OceanRightSizingRuleDetachWorkloadNamespaceLabelArgs'] labels: A set of key-value label pairs used to automatically apply this rule to all workloads in the cluster that match these labels.
|
|
2695
|
+
|
|
2696
|
+
<a id="attach_workloads"></a>
|
|
2697
|
+
"""
|
|
2623
2698
|
pulumi.set(__self__, "namespace_name", namespace_name)
|
|
2624
2699
|
if labels is not None:
|
|
2625
2700
|
pulumi.set(__self__, "labels", labels)
|
|
@@ -2634,6 +2709,11 @@ class OceanRightSizingRuleDetachWorkloadNamespace(dict):
|
|
|
2634
2709
|
@_builtins.property
|
|
2635
2710
|
@pulumi.getter
|
|
2636
2711
|
def labels(self) -> Optional[Sequence['outputs.OceanRightSizingRuleDetachWorkloadNamespaceLabel']]:
|
|
2712
|
+
"""
|
|
2713
|
+
A set of key-value label pairs used to automatically apply this rule to all workloads in the cluster that match these labels.
|
|
2714
|
+
|
|
2715
|
+
<a id="attach_workloads"></a>
|
|
2716
|
+
"""
|
|
2637
2717
|
return pulumi.get(self, "labels")
|
|
2638
2718
|
|
|
2639
2719
|
@_builtins.property
|
|
@@ -2740,6 +2820,12 @@ class OceanRightSizingRuleRecommendationApplicationBoundary(dict):
|
|
|
2740
2820
|
cpu_min: Optional[_builtins.float] = None,
|
|
2741
2821
|
memory_max: Optional[_builtins.int] = None,
|
|
2742
2822
|
memory_min: Optional[_builtins.int] = None):
|
|
2823
|
+
"""
|
|
2824
|
+
:param _builtins.float cpu_max: the maximal value of cpu in vCpu.
|
|
2825
|
+
:param _builtins.float cpu_min: the minimal value of cpu in vCpu.
|
|
2826
|
+
:param _builtins.int memory_max: the maximal value of memory in Gib.
|
|
2827
|
+
:param _builtins.int memory_min: the minimal value of memory in Gib.
|
|
2828
|
+
"""
|
|
2743
2829
|
if cpu_max is not None:
|
|
2744
2830
|
pulumi.set(__self__, "cpu_max", cpu_max)
|
|
2745
2831
|
if cpu_min is not None:
|
|
@@ -2752,21 +2838,33 @@ class OceanRightSizingRuleRecommendationApplicationBoundary(dict):
|
|
|
2752
2838
|
@_builtins.property
|
|
2753
2839
|
@pulumi.getter(name="cpuMax")
|
|
2754
2840
|
def cpu_max(self) -> Optional[_builtins.float]:
|
|
2841
|
+
"""
|
|
2842
|
+
the maximal value of cpu in vCpu.
|
|
2843
|
+
"""
|
|
2755
2844
|
return pulumi.get(self, "cpu_max")
|
|
2756
2845
|
|
|
2757
2846
|
@_builtins.property
|
|
2758
2847
|
@pulumi.getter(name="cpuMin")
|
|
2759
2848
|
def cpu_min(self) -> Optional[_builtins.float]:
|
|
2849
|
+
"""
|
|
2850
|
+
the minimal value of cpu in vCpu.
|
|
2851
|
+
"""
|
|
2760
2852
|
return pulumi.get(self, "cpu_min")
|
|
2761
2853
|
|
|
2762
2854
|
@_builtins.property
|
|
2763
2855
|
@pulumi.getter(name="memoryMax")
|
|
2764
2856
|
def memory_max(self) -> Optional[_builtins.int]:
|
|
2857
|
+
"""
|
|
2858
|
+
the maximal value of memory in Gib.
|
|
2859
|
+
"""
|
|
2765
2860
|
return pulumi.get(self, "memory_max")
|
|
2766
2861
|
|
|
2767
2862
|
@_builtins.property
|
|
2768
2863
|
@pulumi.getter(name="memoryMin")
|
|
2769
2864
|
def memory_min(self) -> Optional[_builtins.int]:
|
|
2865
|
+
"""
|
|
2866
|
+
the minimal value of memory in Gib.
|
|
2867
|
+
"""
|
|
2770
2868
|
return pulumi.get(self, "memory_min")
|
|
2771
2869
|
|
|
2772
2870
|
|
|
@@ -2791,12 +2889,18 @@ class OceanRightSizingRuleRecommendationApplicationHpa(dict):
|
|
|
2791
2889
|
|
|
2792
2890
|
def __init__(__self__, *,
|
|
2793
2891
|
allow_hpa_recommendations: Optional[_builtins.bool] = None):
|
|
2892
|
+
"""
|
|
2893
|
+
:param _builtins.bool allow_hpa_recommendations: Determines by the rule if recommendation application is allowed for workloads with HPA definition.
|
|
2894
|
+
"""
|
|
2794
2895
|
if allow_hpa_recommendations is not None:
|
|
2795
2896
|
pulumi.set(__self__, "allow_hpa_recommendations", allow_hpa_recommendations)
|
|
2796
2897
|
|
|
2797
2898
|
@_builtins.property
|
|
2798
2899
|
@pulumi.getter(name="allowHpaRecommendations")
|
|
2799
2900
|
def allow_hpa_recommendations(self) -> Optional[_builtins.bool]:
|
|
2901
|
+
"""
|
|
2902
|
+
Determines by the rule if recommendation application is allowed for workloads with HPA definition.
|
|
2903
|
+
"""
|
|
2800
2904
|
return pulumi.get(self, "allow_hpa_recommendations")
|
|
2801
2905
|
|
|
2802
2906
|
|
|
@@ -2827,6 +2931,11 @@ class OceanRightSizingRuleRecommendationApplicationInterval(dict):
|
|
|
2827
2931
|
repetition_basis: _builtins.str,
|
|
2828
2932
|
monthly_repetition_bases: Optional[Sequence['outputs.OceanRightSizingRuleRecommendationApplicationIntervalMonthlyRepetitionBase']] = None,
|
|
2829
2933
|
weekly_repetition_bases: Optional[Sequence['outputs.OceanRightSizingRuleRecommendationApplicationIntervalWeeklyRepetitionBase']] = None):
|
|
2934
|
+
"""
|
|
2935
|
+
:param _builtins.str repetition_basis: Valid values: "WEEKLY" "MONTHLY". The repetition basis.
|
|
2936
|
+
:param Sequence['OceanRightSizingRuleRecommendationApplicationIntervalMonthlyRepetitionBaseArgs'] monthly_repetition_bases: Determines the Ocean Rightsizing rule monthly repetition basis.
|
|
2937
|
+
:param Sequence['OceanRightSizingRuleRecommendationApplicationIntervalWeeklyRepetitionBaseArgs'] weekly_repetition_bases: Determines the Ocean Rightsizing rule weekly repetition basis.
|
|
2938
|
+
"""
|
|
2830
2939
|
pulumi.set(__self__, "repetition_basis", repetition_basis)
|
|
2831
2940
|
if monthly_repetition_bases is not None:
|
|
2832
2941
|
pulumi.set(__self__, "monthly_repetition_bases", monthly_repetition_bases)
|
|
@@ -2836,16 +2945,25 @@ class OceanRightSizingRuleRecommendationApplicationInterval(dict):
|
|
|
2836
2945
|
@_builtins.property
|
|
2837
2946
|
@pulumi.getter(name="repetitionBasis")
|
|
2838
2947
|
def repetition_basis(self) -> _builtins.str:
|
|
2948
|
+
"""
|
|
2949
|
+
Valid values: "WEEKLY" "MONTHLY". The repetition basis.
|
|
2950
|
+
"""
|
|
2839
2951
|
return pulumi.get(self, "repetition_basis")
|
|
2840
2952
|
|
|
2841
2953
|
@_builtins.property
|
|
2842
2954
|
@pulumi.getter(name="monthlyRepetitionBases")
|
|
2843
2955
|
def monthly_repetition_bases(self) -> Optional[Sequence['outputs.OceanRightSizingRuleRecommendationApplicationIntervalMonthlyRepetitionBase']]:
|
|
2956
|
+
"""
|
|
2957
|
+
Determines the Ocean Rightsizing rule monthly repetition basis.
|
|
2958
|
+
"""
|
|
2844
2959
|
return pulumi.get(self, "monthly_repetition_bases")
|
|
2845
2960
|
|
|
2846
2961
|
@_builtins.property
|
|
2847
2962
|
@pulumi.getter(name="weeklyRepetitionBases")
|
|
2848
2963
|
def weekly_repetition_bases(self) -> Optional[Sequence['outputs.OceanRightSizingRuleRecommendationApplicationIntervalWeeklyRepetitionBase']]:
|
|
2964
|
+
"""
|
|
2965
|
+
Determines the Ocean Rightsizing rule weekly repetition basis.
|
|
2966
|
+
"""
|
|
2849
2967
|
return pulumi.get(self, "weekly_repetition_bases")
|
|
2850
2968
|
|
|
2851
2969
|
|
|
@@ -2876,6 +2994,11 @@ class OceanRightSizingRuleRecommendationApplicationIntervalMonthlyRepetitionBase
|
|
|
2876
2994
|
interval_months: Sequence[_builtins.int],
|
|
2877
2995
|
week_of_the_months: Sequence[_builtins.str],
|
|
2878
2996
|
weekly_repetition_bases: Optional[Sequence['outputs.OceanRightSizingRuleRecommendationApplicationIntervalMonthlyRepetitionBaseWeeklyRepetitionBase']] = None):
|
|
2997
|
+
"""
|
|
2998
|
+
:param Sequence[_builtins.int] interval_months: Array of the months (in number), when we want to trigger the apply recommendations.
|
|
2999
|
+
:param Sequence[_builtins.str] week_of_the_months: Valid values: "FIRST" "SECOND" "THIRD" "FOURTH" "LAST". Array of the weeks in the month, when we want to trigger the apply recommendations.
|
|
3000
|
+
:param Sequence['OceanRightSizingRuleRecommendationApplicationIntervalMonthlyRepetitionBaseWeeklyRepetitionBaseArgs'] weekly_repetition_bases: Determines the Ocean Rightsizing rule weekly repetition basis.
|
|
3001
|
+
"""
|
|
2879
3002
|
pulumi.set(__self__, "interval_months", interval_months)
|
|
2880
3003
|
pulumi.set(__self__, "week_of_the_months", week_of_the_months)
|
|
2881
3004
|
if weekly_repetition_bases is not None:
|
|
@@ -2884,16 +3007,25 @@ class OceanRightSizingRuleRecommendationApplicationIntervalMonthlyRepetitionBase
|
|
|
2884
3007
|
@_builtins.property
|
|
2885
3008
|
@pulumi.getter(name="intervalMonths")
|
|
2886
3009
|
def interval_months(self) -> Sequence[_builtins.int]:
|
|
3010
|
+
"""
|
|
3011
|
+
Array of the months (in number), when we want to trigger the apply recommendations.
|
|
3012
|
+
"""
|
|
2887
3013
|
return pulumi.get(self, "interval_months")
|
|
2888
3014
|
|
|
2889
3015
|
@_builtins.property
|
|
2890
3016
|
@pulumi.getter(name="weekOfTheMonths")
|
|
2891
3017
|
def week_of_the_months(self) -> Sequence[_builtins.str]:
|
|
3018
|
+
"""
|
|
3019
|
+
Valid values: "FIRST" "SECOND" "THIRD" "FOURTH" "LAST". Array of the weeks in the month, when we want to trigger the apply recommendations.
|
|
3020
|
+
"""
|
|
2892
3021
|
return pulumi.get(self, "week_of_the_months")
|
|
2893
3022
|
|
|
2894
3023
|
@_builtins.property
|
|
2895
3024
|
@pulumi.getter(name="weeklyRepetitionBases")
|
|
2896
3025
|
def weekly_repetition_bases(self) -> Optional[Sequence['outputs.OceanRightSizingRuleRecommendationApplicationIntervalMonthlyRepetitionBaseWeeklyRepetitionBase']]:
|
|
3026
|
+
"""
|
|
3027
|
+
Determines the Ocean Rightsizing rule weekly repetition basis.
|
|
3028
|
+
"""
|
|
2897
3029
|
return pulumi.get(self, "weekly_repetition_bases")
|
|
2898
3030
|
|
|
2899
3031
|
|
|
@@ -2924,6 +3056,11 @@ class OceanRightSizingRuleRecommendationApplicationIntervalMonthlyRepetitionBase
|
|
|
2924
3056
|
interval_days: Sequence[_builtins.str],
|
|
2925
3057
|
interval_hours_end_time: _builtins.str,
|
|
2926
3058
|
interval_hours_start_time: _builtins.str):
|
|
3059
|
+
"""
|
|
3060
|
+
:param Sequence[_builtins.str] interval_days: Valid values: "SUNDAY" "MONDAY" "TUESDAY" "WEDNESDAY" "THURSDAY" "FRIDAY" "SATURDAY". Array of the days of the week, when we want to trigger the apply recommendations.
|
|
3061
|
+
:param _builtins.str interval_hours_end_time: End time.
|
|
3062
|
+
:param _builtins.str interval_hours_start_time: Start time.
|
|
3063
|
+
"""
|
|
2927
3064
|
pulumi.set(__self__, "interval_days", interval_days)
|
|
2928
3065
|
pulumi.set(__self__, "interval_hours_end_time", interval_hours_end_time)
|
|
2929
3066
|
pulumi.set(__self__, "interval_hours_start_time", interval_hours_start_time)
|
|
@@ -2931,16 +3068,25 @@ class OceanRightSizingRuleRecommendationApplicationIntervalMonthlyRepetitionBase
|
|
|
2931
3068
|
@_builtins.property
|
|
2932
3069
|
@pulumi.getter(name="intervalDays")
|
|
2933
3070
|
def interval_days(self) -> Sequence[_builtins.str]:
|
|
3071
|
+
"""
|
|
3072
|
+
Valid values: "SUNDAY" "MONDAY" "TUESDAY" "WEDNESDAY" "THURSDAY" "FRIDAY" "SATURDAY". Array of the days of the week, when we want to trigger the apply recommendations.
|
|
3073
|
+
"""
|
|
2934
3074
|
return pulumi.get(self, "interval_days")
|
|
2935
3075
|
|
|
2936
3076
|
@_builtins.property
|
|
2937
3077
|
@pulumi.getter(name="intervalHoursEndTime")
|
|
2938
3078
|
def interval_hours_end_time(self) -> _builtins.str:
|
|
3079
|
+
"""
|
|
3080
|
+
End time.
|
|
3081
|
+
"""
|
|
2939
3082
|
return pulumi.get(self, "interval_hours_end_time")
|
|
2940
3083
|
|
|
2941
3084
|
@_builtins.property
|
|
2942
3085
|
@pulumi.getter(name="intervalHoursStartTime")
|
|
2943
3086
|
def interval_hours_start_time(self) -> _builtins.str:
|
|
3087
|
+
"""
|
|
3088
|
+
Start time.
|
|
3089
|
+
"""
|
|
2944
3090
|
return pulumi.get(self, "interval_hours_start_time")
|
|
2945
3091
|
|
|
2946
3092
|
|
|
@@ -2971,6 +3117,11 @@ class OceanRightSizingRuleRecommendationApplicationIntervalWeeklyRepetitionBase(
|
|
|
2971
3117
|
interval_days: Sequence[_builtins.str],
|
|
2972
3118
|
interval_hours_end_time: _builtins.str,
|
|
2973
3119
|
interval_hours_start_time: _builtins.str):
|
|
3120
|
+
"""
|
|
3121
|
+
:param Sequence[_builtins.str] interval_days: Valid values: "SUNDAY" "MONDAY" "TUESDAY" "WEDNESDAY" "THURSDAY" "FRIDAY" "SATURDAY". Array of the days of the week, when we want to trigger the apply recommendations.
|
|
3122
|
+
:param _builtins.str interval_hours_end_time: End time.
|
|
3123
|
+
:param _builtins.str interval_hours_start_time: Start time.
|
|
3124
|
+
"""
|
|
2974
3125
|
pulumi.set(__self__, "interval_days", interval_days)
|
|
2975
3126
|
pulumi.set(__self__, "interval_hours_end_time", interval_hours_end_time)
|
|
2976
3127
|
pulumi.set(__self__, "interval_hours_start_time", interval_hours_start_time)
|
|
@@ -2978,16 +3129,25 @@ class OceanRightSizingRuleRecommendationApplicationIntervalWeeklyRepetitionBase(
|
|
|
2978
3129
|
@_builtins.property
|
|
2979
3130
|
@pulumi.getter(name="intervalDays")
|
|
2980
3131
|
def interval_days(self) -> Sequence[_builtins.str]:
|
|
3132
|
+
"""
|
|
3133
|
+
Valid values: "SUNDAY" "MONDAY" "TUESDAY" "WEDNESDAY" "THURSDAY" "FRIDAY" "SATURDAY". Array of the days of the week, when we want to trigger the apply recommendations.
|
|
3134
|
+
"""
|
|
2981
3135
|
return pulumi.get(self, "interval_days")
|
|
2982
3136
|
|
|
2983
3137
|
@_builtins.property
|
|
2984
3138
|
@pulumi.getter(name="intervalHoursEndTime")
|
|
2985
3139
|
def interval_hours_end_time(self) -> _builtins.str:
|
|
3140
|
+
"""
|
|
3141
|
+
End time.
|
|
3142
|
+
"""
|
|
2986
3143
|
return pulumi.get(self, "interval_hours_end_time")
|
|
2987
3144
|
|
|
2988
3145
|
@_builtins.property
|
|
2989
3146
|
@pulumi.getter(name="intervalHoursStartTime")
|
|
2990
3147
|
def interval_hours_start_time(self) -> _builtins.str:
|
|
3148
|
+
"""
|
|
3149
|
+
Start time.
|
|
3150
|
+
"""
|
|
2991
3151
|
return pulumi.get(self, "interval_hours_start_time")
|
|
2992
3152
|
|
|
2993
3153
|
|
|
@@ -3015,6 +3175,10 @@ class OceanRightSizingRuleRecommendationApplicationMinThreshold(dict):
|
|
|
3015
3175
|
def __init__(__self__, *,
|
|
3016
3176
|
cpu_percentage: Optional[_builtins.float] = None,
|
|
3017
3177
|
memory_percentage: Optional[_builtins.float] = None):
|
|
3178
|
+
"""
|
|
3179
|
+
:param _builtins.float cpu_percentage: .
|
|
3180
|
+
:param _builtins.float memory_percentage: .
|
|
3181
|
+
"""
|
|
3018
3182
|
if cpu_percentage is not None:
|
|
3019
3183
|
pulumi.set(__self__, "cpu_percentage", cpu_percentage)
|
|
3020
3184
|
if memory_percentage is not None:
|
|
@@ -3023,11 +3187,17 @@ class OceanRightSizingRuleRecommendationApplicationMinThreshold(dict):
|
|
|
3023
3187
|
@_builtins.property
|
|
3024
3188
|
@pulumi.getter(name="cpuPercentage")
|
|
3025
3189
|
def cpu_percentage(self) -> Optional[_builtins.float]:
|
|
3190
|
+
"""
|
|
3191
|
+
.
|
|
3192
|
+
"""
|
|
3026
3193
|
return pulumi.get(self, "cpu_percentage")
|
|
3027
3194
|
|
|
3028
3195
|
@_builtins.property
|
|
3029
3196
|
@pulumi.getter(name="memoryPercentage")
|
|
3030
3197
|
def memory_percentage(self) -> Optional[_builtins.float]:
|
|
3198
|
+
"""
|
|
3199
|
+
.
|
|
3200
|
+
"""
|
|
3031
3201
|
return pulumi.get(self, "memory_percentage")
|
|
3032
3202
|
|
|
3033
3203
|
|
|
@@ -3055,6 +3225,10 @@ class OceanRightSizingRuleRecommendationApplicationOverheadValue(dict):
|
|
|
3055
3225
|
def __init__(__self__, *,
|
|
3056
3226
|
cpu_percentage: Optional[_builtins.float] = None,
|
|
3057
3227
|
memory_percentage: Optional[_builtins.float] = None):
|
|
3228
|
+
"""
|
|
3229
|
+
:param _builtins.float cpu_percentage: .
|
|
3230
|
+
:param _builtins.float memory_percentage: .
|
|
3231
|
+
"""
|
|
3058
3232
|
if cpu_percentage is not None:
|
|
3059
3233
|
pulumi.set(__self__, "cpu_percentage", cpu_percentage)
|
|
3060
3234
|
if memory_percentage is not None:
|
|
@@ -3063,11 +3237,17 @@ class OceanRightSizingRuleRecommendationApplicationOverheadValue(dict):
|
|
|
3063
3237
|
@_builtins.property
|
|
3064
3238
|
@pulumi.getter(name="cpuPercentage")
|
|
3065
3239
|
def cpu_percentage(self) -> Optional[_builtins.float]:
|
|
3240
|
+
"""
|
|
3241
|
+
.
|
|
3242
|
+
"""
|
|
3066
3243
|
return pulumi.get(self, "cpu_percentage")
|
|
3067
3244
|
|
|
3068
3245
|
@_builtins.property
|
|
3069
3246
|
@pulumi.getter(name="memoryPercentage")
|
|
3070
3247
|
def memory_percentage(self) -> Optional[_builtins.float]:
|
|
3248
|
+
"""
|
|
3249
|
+
.
|
|
3250
|
+
"""
|
|
3071
3251
|
return pulumi.get(self, "memory_percentage")
|
|
3072
3252
|
|
|
3073
3253
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
pulumi_spotinst/__init__.py,sha256=7z-WTGhCLkMBARWv5HBwYPwJmmUlZxkFV4e2-44vcOE,8962
|
|
2
|
-
pulumi_spotinst/_inputs.py,sha256=
|
|
2
|
+
pulumi_spotinst/_inputs.py,sha256=6vZhGXSo13HyLKitDmvvU4VvI1EkhIxkpIy5ulUG4wQ,254055
|
|
3
3
|
pulumi_spotinst/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
4
|
pulumi_spotinst/account.py,sha256=xZtina6f9EsvjCBy-m7ONNNTmiSLH83RnRW-hgyg6Tg,6564
|
|
5
5
|
pulumi_spotinst/credentials_azure.py,sha256=Oj8M5GWA-6qcBrA1-gs1aHyopd6QEsfPh_UFaaZMF_g,17554
|
|
@@ -8,25 +8,25 @@ pulumi_spotinst/data_integration.py,sha256=ATUa3lTPX4C0RL9RZAdok8s-FBXzLhTm8aLae
|
|
|
8
8
|
pulumi_spotinst/elastigroup_azure_v3.py,sha256=g-qo7lvdIKFZvHnnJpBRTQvdtx_QtGj3-emvcwvGB4U,78617
|
|
9
9
|
pulumi_spotinst/health_check.py,sha256=qAORI0qYkOKceI5yyKZXFLoppI0PkKevlhW1rYEM25Q,14253
|
|
10
10
|
pulumi_spotinst/notification_center.py,sha256=iwsxYdQT1XlD0tiG07LkH2-v6YnSL9RCCxQyF9zXQpg,16731
|
|
11
|
-
pulumi_spotinst/ocean_right_sizing_rule.py,sha256=
|
|
12
|
-
pulumi_spotinst/outputs.py,sha256
|
|
11
|
+
pulumi_spotinst/ocean_right_sizing_rule.py,sha256=KopoNhRYNZzdHLNQT-GYFD1scM055vFNb0XoIPinIVU,53044
|
|
12
|
+
pulumi_spotinst/outputs.py,sha256=-r8OaT1vK-Oaq3rd3z1O5HxRocz22F2gtrNAFuyIAQ8,201497
|
|
13
13
|
pulumi_spotinst/provider.py,sha256=FEjU0etSWrJlMWHpU0GNv18xgOjcxUbHQKkqj1z6ov0,8816
|
|
14
|
-
pulumi_spotinst/pulumi-plugin.json,sha256=
|
|
14
|
+
pulumi_spotinst/pulumi-plugin.json,sha256=IcB8v0eu425tslqDDDU5m0klrKVCHGkxlO76DpFudUg,69
|
|
15
15
|
pulumi_spotinst/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
pulumi_spotinst/stateful_node_azure.py,sha256=5va42CW56xGKyALV4WpfV55BI1feYH9c4KTT5AUhNiU,142477
|
|
17
17
|
pulumi_spotinst/subscription.py,sha256=WQXMOJYjm4DrTfxZ2VhzDi5aeJdkjEul8MeEtVBi4Fg,28774
|
|
18
18
|
pulumi_spotinst/aws/__init__.py,sha256=SWKWiKvOcvQqdCkmszayFXbFeZD4sXaG2z05d2LhIyE,614
|
|
19
|
-
pulumi_spotinst/aws/_inputs.py,sha256=
|
|
19
|
+
pulumi_spotinst/aws/_inputs.py,sha256=BPoXvjkDZwnkjz9KukTAaf46wMvEvDKz8izqBLJKsEg,649054
|
|
20
20
|
pulumi_spotinst/aws/account.py,sha256=WUfqiPur6NVF8p5bM2-BYZh_wNA8MDpx2JzHMoBlgZ0,6593
|
|
21
21
|
pulumi_spotinst/aws/beanstalk.py,sha256=kclK6IEKiSOx21Tf3X5HaJcZEhgtl7CyMF0-b1YgpU4,35871
|
|
22
22
|
pulumi_spotinst/aws/credentials.py,sha256=ZVCezkIUAP4JguLFznZs7N2yRjxSxZNEBVWEeLsIUas,9584
|
|
23
23
|
pulumi_spotinst/aws/elastigroup.py,sha256=_5jIwyfoRy2dk3FfEoNCLzEe90KJNyIEmsr5vjlgXk0,237912
|
|
24
24
|
pulumi_spotinst/aws/managed_instance.py,sha256=ngHzlb1QNvbg6V43My4yvjn5YOmD8s3Tfs5efVtDLM4,89302
|
|
25
|
-
pulumi_spotinst/aws/mr_scalar.py,sha256=
|
|
25
|
+
pulumi_spotinst/aws/mr_scalar.py,sha256=LKESBPU8WvgA_VIP7O5J-Zj_CDdDpmdnrLHuT370-R0,131071
|
|
26
26
|
pulumi_spotinst/aws/ocean.py,sha256=eW6WIBjydPPCA16-zdN6Znfod_DqM_FgE-OJiiQ1AVE,128237
|
|
27
27
|
pulumi_spotinst/aws/ocean_extended_resource_definition.py,sha256=vY9Idmkqs1yFGIY4KaQl_zvmau0kVJlSSqp_YgCPZns,11119
|
|
28
|
-
pulumi_spotinst/aws/ocean_launch_spec.py,sha256=
|
|
29
|
-
pulumi_spotinst/aws/outputs.py,sha256=
|
|
28
|
+
pulumi_spotinst/aws/ocean_launch_spec.py,sha256=ePppNFVRLuCABv6T8Mk9c_Fp5GjsTie1z2rHUDXXu3U,110420
|
|
29
|
+
pulumi_spotinst/aws/outputs.py,sha256=NBHfPy_qEZwNruWSb5q2wyxq80Xu0b96QHSvPJ4p44U,480325
|
|
30
30
|
pulumi_spotinst/aws/suspension.py,sha256=ma9_lzRrcTHExXu2RHNPT35KigSmncnt7de12QU0SSQ,9836
|
|
31
31
|
pulumi_spotinst/azure/__init__.py,sha256=UxJDd-yQgzdApWYWSVyS8oelVf9Ta8E2L07Cdqz0itc,392
|
|
32
32
|
pulumi_spotinst/azure/_inputs.py,sha256=5mwJ8lJPXlXyH7cnoWPMIQc4GTqu47S44dpagBFKxLI,131270
|
|
@@ -38,7 +38,7 @@ pulumi_spotinst/config/__init__.pyi,sha256=RiTrkI3RQXi_QRzK3PSfXwoUTaAL7s4NHOUYW
|
|
|
38
38
|
pulumi_spotinst/config/vars.py,sha256=iuIkM-ATaOBmJn3vhq5ToOYxBI5g6qT7q_ulvl9VY0o,1303
|
|
39
39
|
pulumi_spotinst/ecs/__init__.py,sha256=CLysCVh9rxUT2ffyh_NnUNdybP26mIqf-brCVJqjvqo,379
|
|
40
40
|
pulumi_spotinst/ecs/_inputs.py,sha256=YUrKXAmQelUuj2ILHPoOXdk8IpYv2veDHmzQiKQzUEs,114766
|
|
41
|
-
pulumi_spotinst/ecs/ocean.py,sha256=
|
|
41
|
+
pulumi_spotinst/ecs/ocean.py,sha256=pSfcNhKfNMolYkrbM-uuf35OSg2EBgDeKl7d44r23o0,87583
|
|
42
42
|
pulumi_spotinst/ecs/ocean_launch_spec.py,sha256=-eSFTr8fZst5A0FtI2CIMJ9vF6HejFMGpZq6K4uvOQA,63373
|
|
43
43
|
pulumi_spotinst/ecs/outputs.py,sha256=b1k0mU88oUhZFWCQd9aCpYqe2w2Ituz4ERPVa8N1UM8,86861
|
|
44
44
|
pulumi_spotinst/gcp/__init__.py,sha256=aumZUMhkw4EKoQn4eCtd7P32Km2N4DH5DQJjXSAGIiI,352
|
|
@@ -46,12 +46,12 @@ pulumi_spotinst/gcp/_inputs.py,sha256=QkxvxD25ZBK7clpn7ltLafmjmhaQJkDbdiBUdjqHlH
|
|
|
46
46
|
pulumi_spotinst/gcp/elastigroup.py,sha256=AS2pdjWeRfDuywLqkvarg18Ik5TWAN7wLMSqITzjC9g,124414
|
|
47
47
|
pulumi_spotinst/gcp/outputs.py,sha256=5zf1bgRclSAjkavtXQFos1eV23jGbFJ5vF0ZC_yAj3A,62653
|
|
48
48
|
pulumi_spotinst/gke/__init__.py,sha256=1N01YAyfVw7EkjfqgCu7F0BlOC8nJl4kuGrSUCSAEXY,453
|
|
49
|
-
pulumi_spotinst/gke/_inputs.py,sha256=
|
|
49
|
+
pulumi_spotinst/gke/_inputs.py,sha256=gkS4EefF0alaptY80h4hBXDkl_0uhIbz0ey6AyuOigw,172841
|
|
50
50
|
pulumi_spotinst/gke/elastigroup.py,sha256=adjijR3HsE6wUnCmansKAWppKiUn2Rg_sSWfw8DxZWQ,75125
|
|
51
51
|
pulumi_spotinst/gke/ocean_import.py,sha256=duNECsSKjQKrNhywasou1mxy3Qgtl5wcQPLmQVexl50,55604
|
|
52
|
-
pulumi_spotinst/gke/ocean_launch_spec.py,sha256=
|
|
52
|
+
pulumi_spotinst/gke/ocean_launch_spec.py,sha256=YYiYoBoyjOgUnHmqwkt_bsrHp-CmgB6K-UgADR7Bs4E,75536
|
|
53
53
|
pulumi_spotinst/gke/ocean_launch_spec_import.py,sha256=V8zRzgH_yiBbBX4zpZ_KyGhewFIXUshshERBNcqB7cE,9180
|
|
54
|
-
pulumi_spotinst/gke/outputs.py,sha256=
|
|
54
|
+
pulumi_spotinst/gke/outputs.py,sha256=NIKagwuNwEtiOAM5BEEtdzzKUPuS0dZnq6JNCDNIZbk,132789
|
|
55
55
|
pulumi_spotinst/oceancd/__init__.py,sha256=L8V4GflT2iyGQ1SIpOVYgQdjRkgjo9_y2UmXtLaXb3M,451
|
|
56
56
|
pulumi_spotinst/oceancd/_inputs.py,sha256=IYIPwaz7Mw9UuxdB8mY68_IhFb9U3lCOZigFPB5dyrQ,179048
|
|
57
57
|
pulumi_spotinst/oceancd/outputs.py,sha256=_S1Jjxbo0mdAZMdl4cJlkZG7ZQZnjzhQyW4EHgJD0vI,140324
|
|
@@ -71,7 +71,7 @@ pulumi_spotinst/spark/_inputs.py,sha256=XB8S6pZxnO4iNXdGVAAXb4JFZw-GuhuDl6O2yWWi
|
|
|
71
71
|
pulumi_spotinst/spark/ocean.py,sha256=A1XL91RkzkOH6_0cE-roTPVLz88dLCyeuQtPzy3JfdE,19953
|
|
72
72
|
pulumi_spotinst/spark/ocean_virtual_node_group.py,sha256=dzaQUXFtAihajDSuFD395x7WQ8zitgvcJhB-e3AN-Vw,8717
|
|
73
73
|
pulumi_spotinst/spark/outputs.py,sha256=1QDMtJQ-VQ2lsbBibWnO8FbUdPOUDDR6MfOjt-Sep-4,20785
|
|
74
|
-
pulumi_spotinst-3.
|
|
75
|
-
pulumi_spotinst-3.
|
|
76
|
-
pulumi_spotinst-3.
|
|
77
|
-
pulumi_spotinst-3.
|
|
74
|
+
pulumi_spotinst-3.126.0.dist-info/METADATA,sha256=vx4IdEob4l2tUb4sLoQlgS57B6gtWAnc0STABwXnH_Y,2713
|
|
75
|
+
pulumi_spotinst-3.126.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
76
|
+
pulumi_spotinst-3.126.0.dist-info/top_level.txt,sha256=B1HTsr4PliwgyZPJ-9Cmg9PELboV_GusiFDrxBSVHeI,16
|
|
77
|
+
pulumi_spotinst-3.126.0.dist-info/RECORD,,
|
|
File without changes
|
{pulumi_spotinst-3.125.0a1759907052.dist-info → pulumi_spotinst-3.126.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|