22
22
using Aliyun . Acs . Core . Http ;
23
23
using Aliyun . Acs . Core . Transform ;
24
24
using Aliyun . Acs . Core . Utils ;
25
+ using Aliyun . Acs . saf ;
25
26
using Aliyun . Acs . saf . Transform ;
26
27
using Aliyun . Acs . saf . Transform . V20190521 ;
27
28
@@ -30,12 +31,12 @@ namespace Aliyun.Acs.saf.Model.V20190521
30
31
public class ExecuteRequestSGRequest : RpcAcsRequest < ExecuteRequestSGResponse >
31
32
{
32
33
public ExecuteRequestSGRequest ( )
33
- : base ( "saf" , "2019-05-21" , "ExecuteRequestSG" , "saf" , "openAPI" )
34
+ : base ( "saf" , "2019-05-21" , "ExecuteRequestSG" )
34
35
{
35
36
if ( this . GetType ( ) . GetProperty ( "ProductEndpointMap" ) != null && this . GetType ( ) . GetProperty ( "ProductEndpointType" ) != null )
36
37
{
37
- this . GetType ( ) . GetProperty ( "ProductEndpointMap" ) . SetValue ( this , Endpoint . endpointMap , null ) ;
38
- this . GetType ( ) . GetProperty ( "ProductEndpointType" ) . SetValue ( this , Endpoint . endpointRegionalType , null ) ;
38
+ this . GetType ( ) . GetProperty ( "ProductEndpointMap" ) . SetValue ( this , Aliyun . Acs . saf . Endpoint . endpointMap , null ) ;
39
+ this . GetType ( ) . GetProperty ( "ProductEndpointType" ) . SetValue ( this , Aliyun . Acs . saf . Endpoint . endpointRegionalType , null ) ;
39
40
}
40
41
Protocol = ProtocolType . HTTPS ;
41
42
Method = MethodType . POST ;
@@ -45,6 +46,8 @@ public ExecuteRequestSGRequest()
45
46
46
47
private string service ;
47
48
49
+ private string lang ;
50
+
48
51
public string ServiceParameters
49
52
{
50
53
get
@@ -69,6 +72,19 @@ public string Service
69
72
service = value ;
70
73
DictionaryUtil . Add ( QueryParameters , "Service" , value ) ;
71
74
}
75
+ }
76
+
77
+ public string Lang
78
+ {
79
+ get
80
+ {
81
+ return lang ;
82
+ }
83
+ set
84
+ {
85
+ lang = value ;
86
+ DictionaryUtil . Add ( QueryParameters , "Lang" , value ) ;
87
+ }
72
88
}
73
89
74
90
public override ExecuteRequestSGResponse GetResponse ( UnmarshallerContext unmarshallerContext )
0 commit comments