Skip to content

Commit 98d740e

Browse files
committed
DeleteFlow、DeleteSchedule Parameters move to body.
1 parent 1ff2e4a commit 98d740e

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-03-26 Version: 1.8.3
2+
- DeleteFlow、DeleteSchedule Parameters move to body.
3+
14
2024-03-25 Version: 1.8.2
25
- update api
36

aliyun-net-sdk-fnf/Fnf/Model/V20190315/DeleteFlowRequest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public string Name
5151
set
5252
{
5353
name = value;
54-
DictionaryUtil.Add(QueryParameters, "Name", value);
54+
DictionaryUtil.Add(BodyParameters, "Name", value);
5555
}
5656
}
5757

aliyun-net-sdk-fnf/Fnf/Model/V20190315/DeleteScheduleRequest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public string ScheduleName
5353
set
5454
{
5555
scheduleName = value;
56-
DictionaryUtil.Add(QueryParameters, "ScheduleName", value);
56+
DictionaryUtil.Add(BodyParameters, "ScheduleName", value);
5757
}
5858
}
5959

@@ -66,7 +66,7 @@ public string FlowName
6666
set
6767
{
6868
flowName = value;
69-
DictionaryUtil.Add(QueryParameters, "FlowName", value);
69+
DictionaryUtil.Add(BodyParameters, "FlowName", value);
7070
}
7171
}
7272

aliyun-net-sdk-fnf/aliyun-net-sdk-fnf.vs2017.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
55
<RootNamespace>Aliyun.Acs.fnf</RootNamespace>
6-
<Version>1.8.2</Version>
6+
<Version>1.8.3</Version>
77
<Authors>Alibaba Cloud</Authors>
88
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
99
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

0 commit comments

Comments
 (0)