pulumi-alicloud 3.81.0a1750651450__py3-none-any.whl → 3.82.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-alicloud might be problematic. Click here for more details.
- pulumi_alicloud/__init__.py +32 -0
- pulumi_alicloud/alikafka/__init__.py +2 -0
- pulumi_alicloud/alikafka/_inputs.py +450 -0
- pulumi_alicloud/alikafka/instance.py +331 -95
- pulumi_alicloud/alikafka/outputs.py +346 -0
- pulumi_alicloud/cloudfirewall/__init__.py +1 -0
- pulumi_alicloud/cloudfirewall/policy_advanced_config.py +165 -0
- pulumi_alicloud/ecs/get_ecs_key_pairs.py +57 -13
- pulumi_alicloud/ecs/get_ecs_launch_templates.py +15 -14
- pulumi_alicloud/ecs/get_key_pairs.py +1 -1
- pulumi_alicloud/ecs/instance.py +115 -0
- pulumi_alicloud/ecs/outputs.py +128 -80
- pulumi_alicloud/emrv2/_inputs.py +74 -0
- pulumi_alicloud/emrv2/outputs.py +65 -0
- pulumi_alicloud/esa/__init__.py +2 -0
- pulumi_alicloud/esa/certificate.py +7 -28
- pulumi_alicloud/esa/custom_scene_policy.py +484 -0
- pulumi_alicloud/esa/version.py +406 -0
- pulumi_alicloud/gpdb/instance.py +28 -28
- pulumi_alicloud/hbr/__init__.py +1 -0
- pulumi_alicloud/hbr/get_udm_snapshots.py +282 -0
- pulumi_alicloud/hbr/outputs.py +96 -0
- pulumi_alicloud/kms/secret.py +42 -28
- pulumi_alicloud/maxcompute/_inputs.py +26 -6
- pulumi_alicloud/maxcompute/outputs.py +18 -4
- pulumi_alicloud/maxcompute/project.py +48 -1
- pulumi_alicloud/mongodb/instance.py +63 -16
- pulumi_alicloud/mongodb/sharding_instance.py +249 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/threatdetection/__init__.py +1 -0
- pulumi_alicloud/threatdetection/cycle_task.py +731 -0
- {pulumi_alicloud-3.81.0a1750651450.dist-info → pulumi_alicloud-3.82.0.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.81.0a1750651450.dist-info → pulumi_alicloud-3.82.0.dist-info}/RECORD +35 -28
- {pulumi_alicloud-3.81.0a1750651450.dist-info → pulumi_alicloud-3.82.0.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.81.0a1750651450.dist-info → pulumi_alicloud-3.82.0.dist-info}/top_level.txt +0 -0
pulumi_alicloud/emrv2/_inputs.py
CHANGED
|
@@ -62,6 +62,8 @@ __all__ = [
|
|
|
62
62
|
'ClusterNodeGroupCostOptimizedConfigArgsDict',
|
|
63
63
|
'ClusterNodeGroupDataDiskArgs',
|
|
64
64
|
'ClusterNodeGroupDataDiskArgsDict',
|
|
65
|
+
'ClusterNodeGroupPrivatePoolOptionsArgs',
|
|
66
|
+
'ClusterNodeGroupPrivatePoolOptionsArgsDict',
|
|
65
67
|
'ClusterNodeGroupSpotBidPriceArgs',
|
|
66
68
|
'ClusterNodeGroupSpotBidPriceArgsDict',
|
|
67
69
|
'ClusterNodeGroupSubscriptionConfigArgs',
|
|
@@ -782,6 +784,10 @@ if not MYPY:
|
|
|
782
784
|
"""
|
|
783
785
|
Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
784
786
|
"""
|
|
787
|
+
private_pool_options: NotRequired[pulumi.Input['ClusterNodeGroupPrivatePoolOptionsArgsDict']]
|
|
788
|
+
"""
|
|
789
|
+
The node group specific private pool resources. See `private_pool_options` below.
|
|
790
|
+
"""
|
|
785
791
|
spot_bid_prices: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupSpotBidPriceArgsDict']]]]
|
|
786
792
|
"""
|
|
787
793
|
The spot bid prices of a PayAsYouGo instance. See `spot_bid_prices` below.
|
|
@@ -826,6 +832,7 @@ class ClusterNodeGroupArgs:
|
|
|
826
832
|
graceful_shutdown: Optional[pulumi.Input[builtins.bool]] = None,
|
|
827
833
|
node_resize_strategy: Optional[pulumi.Input[builtins.str]] = None,
|
|
828
834
|
payment_type: Optional[pulumi.Input[builtins.str]] = None,
|
|
835
|
+
private_pool_options: Optional[pulumi.Input['ClusterNodeGroupPrivatePoolOptionsArgs']] = None,
|
|
829
836
|
spot_bid_prices: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupSpotBidPriceArgs']]]] = None,
|
|
830
837
|
spot_instance_remedy: Optional[pulumi.Input[builtins.bool]] = None,
|
|
831
838
|
spot_strategy: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -847,6 +854,7 @@ class ClusterNodeGroupArgs:
|
|
|
847
854
|
:param pulumi.Input[builtins.bool] graceful_shutdown: Enable emr cluster of task node graceful decommission, ’true’ or ‘false’ .
|
|
848
855
|
:param pulumi.Input[builtins.str] node_resize_strategy: Node resize strategy for this cluster node group. Supported value: PRIORITY, COST_OPTIMIZED.
|
|
849
856
|
:param pulumi.Input[builtins.str] payment_type: Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
857
|
+
:param pulumi.Input['ClusterNodeGroupPrivatePoolOptionsArgs'] private_pool_options: The node group specific private pool resources. See `private_pool_options` below.
|
|
850
858
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupSpotBidPriceArgs']]] spot_bid_prices: The spot bid prices of a PayAsYouGo instance. See `spot_bid_prices` below.
|
|
851
859
|
:param pulumi.Input[builtins.bool] spot_instance_remedy: Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
|
|
852
860
|
:param pulumi.Input[builtins.str] spot_strategy: The spot strategy configuration of emr cluster. Valid values: `NoSpot`, `SpotWithPriceLimit`, `SpotAsPriceGo`.
|
|
@@ -876,6 +884,8 @@ class ClusterNodeGroupArgs:
|
|
|
876
884
|
pulumi.set(__self__, "node_resize_strategy", node_resize_strategy)
|
|
877
885
|
if payment_type is not None:
|
|
878
886
|
pulumi.set(__self__, "payment_type", payment_type)
|
|
887
|
+
if private_pool_options is not None:
|
|
888
|
+
pulumi.set(__self__, "private_pool_options", private_pool_options)
|
|
879
889
|
if spot_bid_prices is not None:
|
|
880
890
|
pulumi.set(__self__, "spot_bid_prices", spot_bid_prices)
|
|
881
891
|
if spot_instance_remedy is not None:
|
|
@@ -1057,6 +1067,18 @@ class ClusterNodeGroupArgs:
|
|
|
1057
1067
|
def payment_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
1058
1068
|
pulumi.set(self, "payment_type", value)
|
|
1059
1069
|
|
|
1070
|
+
@property
|
|
1071
|
+
@pulumi.getter(name="privatePoolOptions")
|
|
1072
|
+
def private_pool_options(self) -> Optional[pulumi.Input['ClusterNodeGroupPrivatePoolOptionsArgs']]:
|
|
1073
|
+
"""
|
|
1074
|
+
The node group specific private pool resources. See `private_pool_options` below.
|
|
1075
|
+
"""
|
|
1076
|
+
return pulumi.get(self, "private_pool_options")
|
|
1077
|
+
|
|
1078
|
+
@private_pool_options.setter
|
|
1079
|
+
def private_pool_options(self, value: Optional[pulumi.Input['ClusterNodeGroupPrivatePoolOptionsArgs']]):
|
|
1080
|
+
pulumi.set(self, "private_pool_options", value)
|
|
1081
|
+
|
|
1060
1082
|
@property
|
|
1061
1083
|
@pulumi.getter(name="spotBidPrices")
|
|
1062
1084
|
def spot_bid_prices(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeGroupSpotBidPriceArgs']]]]:
|
|
@@ -2831,6 +2853,58 @@ class ClusterNodeGroupDataDiskArgs:
|
|
|
2831
2853
|
pulumi.set(self, "performance_level", value)
|
|
2832
2854
|
|
|
2833
2855
|
|
|
2856
|
+
if not MYPY:
|
|
2857
|
+
class ClusterNodeGroupPrivatePoolOptionsArgsDict(TypedDict):
|
|
2858
|
+
match_criteria: NotRequired[pulumi.Input[builtins.str]]
|
|
2859
|
+
"""
|
|
2860
|
+
The node group specific private pool resource match criteria. Valid values: `Open`, `Target`, `None`.
|
|
2861
|
+
"""
|
|
2862
|
+
private_pool_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
|
2863
|
+
"""
|
|
2864
|
+
The node group specific private pool resource ids.
|
|
2865
|
+
"""
|
|
2866
|
+
elif False:
|
|
2867
|
+
ClusterNodeGroupPrivatePoolOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
|
2868
|
+
|
|
2869
|
+
@pulumi.input_type
|
|
2870
|
+
class ClusterNodeGroupPrivatePoolOptionsArgs:
|
|
2871
|
+
def __init__(__self__, *,
|
|
2872
|
+
match_criteria: Optional[pulumi.Input[builtins.str]] = None,
|
|
2873
|
+
private_pool_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None):
|
|
2874
|
+
"""
|
|
2875
|
+
:param pulumi.Input[builtins.str] match_criteria: The node group specific private pool resource match criteria. Valid values: `Open`, `Target`, `None`.
|
|
2876
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] private_pool_ids: The node group specific private pool resource ids.
|
|
2877
|
+
"""
|
|
2878
|
+
if match_criteria is not None:
|
|
2879
|
+
pulumi.set(__self__, "match_criteria", match_criteria)
|
|
2880
|
+
if private_pool_ids is not None:
|
|
2881
|
+
pulumi.set(__self__, "private_pool_ids", private_pool_ids)
|
|
2882
|
+
|
|
2883
|
+
@property
|
|
2884
|
+
@pulumi.getter(name="matchCriteria")
|
|
2885
|
+
def match_criteria(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
2886
|
+
"""
|
|
2887
|
+
The node group specific private pool resource match criteria. Valid values: `Open`, `Target`, `None`.
|
|
2888
|
+
"""
|
|
2889
|
+
return pulumi.get(self, "match_criteria")
|
|
2890
|
+
|
|
2891
|
+
@match_criteria.setter
|
|
2892
|
+
def match_criteria(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
2893
|
+
pulumi.set(self, "match_criteria", value)
|
|
2894
|
+
|
|
2895
|
+
@property
|
|
2896
|
+
@pulumi.getter(name="privatePoolIds")
|
|
2897
|
+
def private_pool_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
|
2898
|
+
"""
|
|
2899
|
+
The node group specific private pool resource ids.
|
|
2900
|
+
"""
|
|
2901
|
+
return pulumi.get(self, "private_pool_ids")
|
|
2902
|
+
|
|
2903
|
+
@private_pool_ids.setter
|
|
2904
|
+
def private_pool_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
|
2905
|
+
pulumi.set(self, "private_pool_ids", value)
|
|
2906
|
+
|
|
2907
|
+
|
|
2834
2908
|
if not MYPY:
|
|
2835
2909
|
class ClusterNodeGroupSpotBidPriceArgsDict(TypedDict):
|
|
2836
2910
|
bid_price: pulumi.Input[builtins.int]
|
pulumi_alicloud/emrv2/outputs.py
CHANGED
|
@@ -40,6 +40,7 @@ __all__ = [
|
|
|
40
40
|
'ClusterNodeGroupAutoScalingPolicyScalingRuleTimeTrigger',
|
|
41
41
|
'ClusterNodeGroupCostOptimizedConfig',
|
|
42
42
|
'ClusterNodeGroupDataDisk',
|
|
43
|
+
'ClusterNodeGroupPrivatePoolOptions',
|
|
43
44
|
'ClusterNodeGroupSpotBidPrice',
|
|
44
45
|
'ClusterNodeGroupSubscriptionConfig',
|
|
45
46
|
'ClusterNodeGroupSystemDisk',
|
|
@@ -581,6 +582,8 @@ class ClusterNodeGroup(dict):
|
|
|
581
582
|
suggest = "node_resize_strategy"
|
|
582
583
|
elif key == "paymentType":
|
|
583
584
|
suggest = "payment_type"
|
|
585
|
+
elif key == "privatePoolOptions":
|
|
586
|
+
suggest = "private_pool_options"
|
|
584
587
|
elif key == "spotBidPrices":
|
|
585
588
|
suggest = "spot_bid_prices"
|
|
586
589
|
elif key == "spotInstanceRemedy":
|
|
@@ -620,6 +623,7 @@ class ClusterNodeGroup(dict):
|
|
|
620
623
|
graceful_shutdown: Optional[builtins.bool] = None,
|
|
621
624
|
node_resize_strategy: Optional[builtins.str] = None,
|
|
622
625
|
payment_type: Optional[builtins.str] = None,
|
|
626
|
+
private_pool_options: Optional['outputs.ClusterNodeGroupPrivatePoolOptions'] = None,
|
|
623
627
|
spot_bid_prices: Optional[Sequence['outputs.ClusterNodeGroupSpotBidPrice']] = None,
|
|
624
628
|
spot_instance_remedy: Optional[builtins.bool] = None,
|
|
625
629
|
spot_strategy: Optional[builtins.str] = None,
|
|
@@ -641,6 +645,7 @@ class ClusterNodeGroup(dict):
|
|
|
641
645
|
:param builtins.bool graceful_shutdown: Enable emr cluster of task node graceful decommission, ’true’ or ‘false’ .
|
|
642
646
|
:param builtins.str node_resize_strategy: Node resize strategy for this cluster node group. Supported value: PRIORITY, COST_OPTIMIZED.
|
|
643
647
|
:param builtins.str payment_type: Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
648
|
+
:param 'ClusterNodeGroupPrivatePoolOptionsArgs' private_pool_options: The node group specific private pool resources. See `private_pool_options` below.
|
|
644
649
|
:param Sequence['ClusterNodeGroupSpotBidPriceArgs'] spot_bid_prices: The spot bid prices of a PayAsYouGo instance. See `spot_bid_prices` below.
|
|
645
650
|
:param builtins.bool spot_instance_remedy: Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
|
|
646
651
|
:param builtins.str spot_strategy: The spot strategy configuration of emr cluster. Valid values: `NoSpot`, `SpotWithPriceLimit`, `SpotAsPriceGo`.
|
|
@@ -670,6 +675,8 @@ class ClusterNodeGroup(dict):
|
|
|
670
675
|
pulumi.set(__self__, "node_resize_strategy", node_resize_strategy)
|
|
671
676
|
if payment_type is not None:
|
|
672
677
|
pulumi.set(__self__, "payment_type", payment_type)
|
|
678
|
+
if private_pool_options is not None:
|
|
679
|
+
pulumi.set(__self__, "private_pool_options", private_pool_options)
|
|
673
680
|
if spot_bid_prices is not None:
|
|
674
681
|
pulumi.set(__self__, "spot_bid_prices", spot_bid_prices)
|
|
675
682
|
if spot_instance_remedy is not None:
|
|
@@ -795,6 +802,14 @@ class ClusterNodeGroup(dict):
|
|
|
795
802
|
"""
|
|
796
803
|
return pulumi.get(self, "payment_type")
|
|
797
804
|
|
|
805
|
+
@property
|
|
806
|
+
@pulumi.getter(name="privatePoolOptions")
|
|
807
|
+
def private_pool_options(self) -> Optional['outputs.ClusterNodeGroupPrivatePoolOptions']:
|
|
808
|
+
"""
|
|
809
|
+
The node group specific private pool resources. See `private_pool_options` below.
|
|
810
|
+
"""
|
|
811
|
+
return pulumi.get(self, "private_pool_options")
|
|
812
|
+
|
|
798
813
|
@property
|
|
799
814
|
@pulumi.getter(name="spotBidPrices")
|
|
800
815
|
def spot_bid_prices(self) -> Optional[Sequence['outputs.ClusterNodeGroupSpotBidPrice']]:
|
|
@@ -2102,6 +2117,56 @@ class ClusterNodeGroupDataDisk(dict):
|
|
|
2102
2117
|
return pulumi.get(self, "performance_level")
|
|
2103
2118
|
|
|
2104
2119
|
|
|
2120
|
+
@pulumi.output_type
|
|
2121
|
+
class ClusterNodeGroupPrivatePoolOptions(dict):
|
|
2122
|
+
@staticmethod
|
|
2123
|
+
def __key_warning(key: str):
|
|
2124
|
+
suggest = None
|
|
2125
|
+
if key == "matchCriteria":
|
|
2126
|
+
suggest = "match_criteria"
|
|
2127
|
+
elif key == "privatePoolIds":
|
|
2128
|
+
suggest = "private_pool_ids"
|
|
2129
|
+
|
|
2130
|
+
if suggest:
|
|
2131
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterNodeGroupPrivatePoolOptions. Access the value via the '{suggest}' property getter instead.")
|
|
2132
|
+
|
|
2133
|
+
def __getitem__(self, key: str) -> Any:
|
|
2134
|
+
ClusterNodeGroupPrivatePoolOptions.__key_warning(key)
|
|
2135
|
+
return super().__getitem__(key)
|
|
2136
|
+
|
|
2137
|
+
def get(self, key: str, default = None) -> Any:
|
|
2138
|
+
ClusterNodeGroupPrivatePoolOptions.__key_warning(key)
|
|
2139
|
+
return super().get(key, default)
|
|
2140
|
+
|
|
2141
|
+
def __init__(__self__, *,
|
|
2142
|
+
match_criteria: Optional[builtins.str] = None,
|
|
2143
|
+
private_pool_ids: Optional[Sequence[builtins.str]] = None):
|
|
2144
|
+
"""
|
|
2145
|
+
:param builtins.str match_criteria: The node group specific private pool resource match criteria. Valid values: `Open`, `Target`, `None`.
|
|
2146
|
+
:param Sequence[builtins.str] private_pool_ids: The node group specific private pool resource ids.
|
|
2147
|
+
"""
|
|
2148
|
+
if match_criteria is not None:
|
|
2149
|
+
pulumi.set(__self__, "match_criteria", match_criteria)
|
|
2150
|
+
if private_pool_ids is not None:
|
|
2151
|
+
pulumi.set(__self__, "private_pool_ids", private_pool_ids)
|
|
2152
|
+
|
|
2153
|
+
@property
|
|
2154
|
+
@pulumi.getter(name="matchCriteria")
|
|
2155
|
+
def match_criteria(self) -> Optional[builtins.str]:
|
|
2156
|
+
"""
|
|
2157
|
+
The node group specific private pool resource match criteria. Valid values: `Open`, `Target`, `None`.
|
|
2158
|
+
"""
|
|
2159
|
+
return pulumi.get(self, "match_criteria")
|
|
2160
|
+
|
|
2161
|
+
@property
|
|
2162
|
+
@pulumi.getter(name="privatePoolIds")
|
|
2163
|
+
def private_pool_ids(self) -> Optional[Sequence[builtins.str]]:
|
|
2164
|
+
"""
|
|
2165
|
+
The node group specific private pool resource ids.
|
|
2166
|
+
"""
|
|
2167
|
+
return pulumi.get(self, "private_pool_ids")
|
|
2168
|
+
|
|
2169
|
+
|
|
2105
2170
|
@pulumi.output_type
|
|
2106
2171
|
class ClusterNodeGroupSpotBidPrice(dict):
|
|
2107
2172
|
@staticmethod
|
pulumi_alicloud/esa/__init__.py
CHANGED
|
@@ -12,6 +12,7 @@ from .certificate import *
|
|
|
12
12
|
from .client_ca_certificate import *
|
|
13
13
|
from .client_certificate import *
|
|
14
14
|
from .compression_rule import *
|
|
15
|
+
from .custom_scene_policy import *
|
|
15
16
|
from .edge_container_app import *
|
|
16
17
|
from .edge_container_app_record import *
|
|
17
18
|
from .get_sites import *
|
|
@@ -37,6 +38,7 @@ from .scheduled_preload_execution import *
|
|
|
37
38
|
from .scheduled_preload_job import *
|
|
38
39
|
from .site import *
|
|
39
40
|
from .site_delivery_task import *
|
|
41
|
+
from .version import *
|
|
40
42
|
from .video_processing import *
|
|
41
43
|
from .waiting_room import *
|
|
42
44
|
from .waiting_room_event import *
|
|
@@ -40,10 +40,7 @@ class CertificateArgs:
|
|
|
40
40
|
:param pulumi.Input[builtins.str] cas_id: Cloud certificate ID.
|
|
41
41
|
:param pulumi.Input[builtins.str] cert_id: The certificate Id.
|
|
42
42
|
:param pulumi.Input[builtins.str] cert_name: The certificate name.
|
|
43
|
-
:param pulumi.Input[builtins.str] certificate:
|
|
44
|
-
|
|
45
|
-
- cas: a certificate purchased by using Certificate Management Service.
|
|
46
|
-
- upload: a custom certificate that you upload.
|
|
43
|
+
:param pulumi.Input[builtins.str] certificate: Certificate content.
|
|
47
44
|
:param pulumi.Input[builtins.str] domains: A list of domain names. Multiple domain names are separated by commas.
|
|
48
45
|
:param pulumi.Input[builtins.str] private_key: The certificate private key.
|
|
49
46
|
:param pulumi.Input[builtins.str] region: Geographical information.
|
|
@@ -135,10 +132,7 @@ class CertificateArgs:
|
|
|
135
132
|
@pulumi.getter
|
|
136
133
|
def certificate(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
137
134
|
"""
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
- cas: a certificate purchased by using Certificate Management Service.
|
|
141
|
-
- upload: a custom certificate that you upload.
|
|
135
|
+
Certificate content.
|
|
142
136
|
"""
|
|
143
137
|
return pulumi.get(self, "certificate")
|
|
144
138
|
|
|
@@ -215,10 +209,7 @@ class _CertificateState:
|
|
|
215
209
|
:param pulumi.Input[builtins.str] cas_id: Cloud certificate ID.
|
|
216
210
|
:param pulumi.Input[builtins.str] cert_id: The certificate Id.
|
|
217
211
|
:param pulumi.Input[builtins.str] cert_name: The certificate name.
|
|
218
|
-
:param pulumi.Input[builtins.str] certificate:
|
|
219
|
-
|
|
220
|
-
- cas: a certificate purchased by using Certificate Management Service.
|
|
221
|
-
- upload: a custom certificate that you upload.
|
|
212
|
+
:param pulumi.Input[builtins.str] certificate: Certificate content.
|
|
222
213
|
:param pulumi.Input[builtins.str] create_time: Creation time.
|
|
223
214
|
:param pulumi.Input[builtins.str] created_type: The certificate type.
|
|
224
215
|
- cas (Certificate Center Certificate)
|
|
@@ -296,10 +287,7 @@ class _CertificateState:
|
|
|
296
287
|
@pulumi.getter
|
|
297
288
|
def certificate(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
298
289
|
"""
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
- cas: a certificate purchased by using Certificate Management Service.
|
|
302
|
-
- upload: a custom certificate that you upload.
|
|
290
|
+
Certificate content.
|
|
303
291
|
"""
|
|
304
292
|
return pulumi.get(self, "certificate")
|
|
305
293
|
|
|
@@ -461,10 +449,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
461
449
|
:param pulumi.Input[builtins.str] cas_id: Cloud certificate ID.
|
|
462
450
|
:param pulumi.Input[builtins.str] cert_id: The certificate Id.
|
|
463
451
|
:param pulumi.Input[builtins.str] cert_name: The certificate name.
|
|
464
|
-
:param pulumi.Input[builtins.str] certificate:
|
|
465
|
-
|
|
466
|
-
- cas: a certificate purchased by using Certificate Management Service.
|
|
467
|
-
- upload: a custom certificate that you upload.
|
|
452
|
+
:param pulumi.Input[builtins.str] certificate: Certificate content.
|
|
468
453
|
:param pulumi.Input[builtins.str] created_type: The certificate type.
|
|
469
454
|
- cas (Certificate Center Certificate)
|
|
470
455
|
- upload (custom upload certificate)
|
|
@@ -595,10 +580,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
595
580
|
:param pulumi.Input[builtins.str] cas_id: Cloud certificate ID.
|
|
596
581
|
:param pulumi.Input[builtins.str] cert_id: The certificate Id.
|
|
597
582
|
:param pulumi.Input[builtins.str] cert_name: The certificate name.
|
|
598
|
-
:param pulumi.Input[builtins.str] certificate:
|
|
599
|
-
|
|
600
|
-
- cas: a certificate purchased by using Certificate Management Service.
|
|
601
|
-
- upload: a custom certificate that you upload.
|
|
583
|
+
:param pulumi.Input[builtins.str] certificate: Certificate content.
|
|
602
584
|
:param pulumi.Input[builtins.str] create_time: Creation time.
|
|
603
585
|
:param pulumi.Input[builtins.str] created_type: The certificate type.
|
|
604
586
|
- cas (Certificate Center Certificate)
|
|
@@ -657,10 +639,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
657
639
|
@pulumi.getter
|
|
658
640
|
def certificate(self) -> pulumi.Output[builtins.str]:
|
|
659
641
|
"""
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
- cas: a certificate purchased by using Certificate Management Service.
|
|
663
|
-
- upload: a custom certificate that you upload.
|
|
642
|
+
Certificate content.
|
|
664
643
|
"""
|
|
665
644
|
return pulumi.get(self, "certificate")
|
|
666
645
|
|