File tree Expand file tree Collapse file tree 3 files changed +16
-5
lines changed
cmd/pulumi-resource-tencentcloud
sdk/dotnet/Tencentcloud/Tsf Expand file tree Collapse file tree 3 files changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -140504,7 +140504,12 @@
140504140504 },
140505140505 "taskState": {
140506140506 "type": "string",
140507- "description": "Whether to enable the task, ENABLED/DISABLED.\n"
140507+ "description": "Whether to enable the task, ENABLED/DISABLED.\n",
140508+ "language": {
140509+ "csharp": {
140510+ "name": "TsfTaskState"
140511+ }
140512+ }
140508140513 },
140509140514 "taskType": {
140510140515 "type": "string",
@@ -140703,7 +140708,12 @@
140703140708 },
140704140709 "taskState": {
140705140710 "type": "string",
140706- "description": "Whether to enable the task, ENABLED/DISABLED.\n"
140711+ "description": "Whether to enable the task, ENABLED/DISABLED.\n",
140712+ "language": {
140713+ "csharp": {
140714+ "name": "TsfTaskState"
140715+ }
140716+ }
140707140717 },
140708140718 "taskType": {
140709140719 "type": "string",
Original file line number Diff line number Diff line change 99
1010var hardCodedAlters = map [string ][]string {
1111 "tencentcloud_kms_keys" : {"key_state" , "KmsKeyState" },
12- "tencentcloud_kms_key" : {"key_state" , "KmsKeyState" },
12+ "tencentcloud_kms_key" : {"key_state" , "KmsKeyState" },
13+ "tencentcloud_tsf_task" : {"task_state" , "TsfTaskState" },
1314}
1415
1516func GetConflictFieldOfCsharpModule (key string , fields map [string ]* schema.Schema ) map [string ]string {
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ public partial class Task : Pulumi.CustomResource
168168 /// Whether to enable the task, ENABLED/DISABLED.
169169 /// </summary>
170170 [ Output ( "taskState" ) ]
171- public Output < string > TaskState { get ; private set ; } = null ! ;
171+ public Output < string > TsfTaskState { get ; private set ; } = null ! ;
172172
173173 /// <summary>
174174 /// task type, java.
@@ -474,7 +474,7 @@ public InputList<Inputs.TaskShardArgumentGetArgs> ShardArguments
474474 /// Whether to enable the task, ENABLED/DISABLED.
475475 /// </summary>
476476 [ Input ( "taskState" ) ]
477- public Input < string > ? TaskState { get ; set ; }
477+ public Input < string > ? TsfTaskState { get ; set ; }
478478
479479 /// <summary>
480480 /// task type, java.
You can’t perform that action at this time.
0 commit comments