Skip to content

Commit 149ed4c

Browse files
committed
Change ListCheckInstanceResult Public.
1 parent b2a4c56 commit 149ed4c

22 files changed

+1206
-1
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2022-07-29 Version: 1.1.24
2+
- Change ListCheckInstanceResult Public.
3+
14
2022-07-29 Version: 1.22.19
25
- AMP version.
36

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
using System.Collections.Generic;
20+
21+
using Aliyun.Acs.Core;
22+
using Aliyun.Acs.Core.Http;
23+
using Aliyun.Acs.Core.Transform;
24+
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.Sas;
26+
using Aliyun.Acs.Sas.Transform;
27+
using Aliyun.Acs.Sas.Transform.V20181203;
28+
29+
namespace Aliyun.Acs.Sas.Model.V20181203
30+
{
31+
public class AddInstallCodeRequest : RpcAcsRequest<AddInstallCodeResponse>
32+
{
33+
public AddInstallCodeRequest()
34+
: base("Sas", "2018-12-03", "AddInstallCode")
35+
{
36+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
37+
{
38+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Sas.Endpoint.endpointMap, null);
39+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Sas.Endpoint.endpointRegionalType, null);
40+
}
41+
Method = MethodType.POST;
42+
}
43+
44+
private long? expiredDate;
45+
46+
private string os;
47+
48+
private long? groupId;
49+
50+
private bool? onlyImage;
51+
52+
private string vendorName;
53+
54+
public long? ExpiredDate
55+
{
56+
get
57+
{
58+
return expiredDate;
59+
}
60+
set
61+
{
62+
expiredDate = value;
63+
DictionaryUtil.Add(QueryParameters, "ExpiredDate", value.ToString());
64+
}
65+
}
66+
67+
public string Os
68+
{
69+
get
70+
{
71+
return os;
72+
}
73+
set
74+
{
75+
os = value;
76+
DictionaryUtil.Add(QueryParameters, "Os", value);
77+
}
78+
}
79+
80+
public long? GroupId
81+
{
82+
get
83+
{
84+
return groupId;
85+
}
86+
set
87+
{
88+
groupId = value;
89+
DictionaryUtil.Add(QueryParameters, "GroupId", value.ToString());
90+
}
91+
}
92+
93+
public bool? OnlyImage
94+
{
95+
get
96+
{
97+
return onlyImage;
98+
}
99+
set
100+
{
101+
onlyImage = value;
102+
DictionaryUtil.Add(QueryParameters, "OnlyImage", value.ToString());
103+
}
104+
}
105+
106+
public string VendorName
107+
{
108+
get
109+
{
110+
return vendorName;
111+
}
112+
set
113+
{
114+
vendorName = value;
115+
DictionaryUtil.Add(QueryParameters, "VendorName", value);
116+
}
117+
}
118+
119+
public override bool CheckShowJsonItemName()
120+
{
121+
return false;
122+
}
123+
124+
public override AddInstallCodeResponse GetResponse(UnmarshallerContext unmarshallerContext)
125+
{
126+
return AddInstallCodeResponseUnmarshaller.Unmarshall(unmarshallerContext);
127+
}
128+
}
129+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
using System.Collections.Generic;
20+
using Newtonsoft.Json;
21+
using Aliyun.Acs.Core;
22+
23+
namespace Aliyun.Acs.Sas.Model.V20181203
24+
{
25+
public class AddInstallCodeResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
public string RequestId
31+
{
32+
get
33+
{
34+
return requestId;
35+
}
36+
set
37+
{
38+
requestId = value;
39+
}
40+
}
41+
}
42+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
using System.Collections.Generic;
20+
21+
using Aliyun.Acs.Core;
22+
using Aliyun.Acs.Core.Http;
23+
using Aliyun.Acs.Core.Transform;
24+
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.Sas;
26+
using Aliyun.Acs.Sas.Transform;
27+
using Aliyun.Acs.Sas.Transform.V20181203;
28+
29+
namespace Aliyun.Acs.Sas.Model.V20181203
30+
{
31+
public class DescribeCommonOverallConfigRequest : RpcAcsRequest<DescribeCommonOverallConfigResponse>
32+
{
33+
public DescribeCommonOverallConfigRequest()
34+
: base("Sas", "2018-12-03", "DescribeCommonOverallConfig")
35+
{
36+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
37+
{
38+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Sas.Endpoint.endpointMap, null);
39+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Sas.Endpoint.endpointRegionalType, null);
40+
}
41+
Method = MethodType.POST;
42+
}
43+
44+
private string type;
45+
46+
private string sourceIp;
47+
48+
public string Type
49+
{
50+
get
51+
{
52+
return type;
53+
}
54+
set
55+
{
56+
type = value;
57+
DictionaryUtil.Add(QueryParameters, "Type", value);
58+
}
59+
}
60+
61+
public string SourceIp
62+
{
63+
get
64+
{
65+
return sourceIp;
66+
}
67+
set
68+
{
69+
sourceIp = value;
70+
DictionaryUtil.Add(QueryParameters, "SourceIp", value);
71+
}
72+
}
73+
74+
public override bool CheckShowJsonItemName()
75+
{
76+
return false;
77+
}
78+
79+
public override DescribeCommonOverallConfigResponse GetResponse(UnmarshallerContext unmarshallerContext)
80+
{
81+
return DescribeCommonOverallConfigResponseUnmarshaller.Unmarshall(unmarshallerContext);
82+
}
83+
}
84+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
using System.Collections.Generic;
20+
using Newtonsoft.Json;
21+
using Aliyun.Acs.Core;
22+
23+
namespace Aliyun.Acs.Sas.Model.V20181203
24+
{
25+
public class DescribeCommonOverallConfigResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private DescribeCommonOverallConfig_OverallConfig overallConfig;
31+
32+
public string RequestId
33+
{
34+
get
35+
{
36+
return requestId;
37+
}
38+
set
39+
{
40+
requestId = value;
41+
}
42+
}
43+
44+
public DescribeCommonOverallConfig_OverallConfig OverallConfig
45+
{
46+
get
47+
{
48+
return overallConfig;
49+
}
50+
set
51+
{
52+
overallConfig = value;
53+
}
54+
}
55+
56+
public class DescribeCommonOverallConfig_OverallConfig
57+
{
58+
59+
private string type;
60+
61+
private string config;
62+
63+
public string Type
64+
{
65+
get
66+
{
67+
return type;
68+
}
69+
set
70+
{
71+
type = value;
72+
}
73+
}
74+
75+
public string Config
76+
{
77+
get
78+
{
79+
return config;
80+
}
81+
set
82+
{
83+
config = value;
84+
}
85+
}
86+
}
87+
}
88+
}

aliyun-net-sdk-sas/Sas/Model/V20181203/DescribeFieldStatisticsResponse.cs

+14
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ public class DescribeFieldStatistics_GroupedFields
9696

9797
private int? awsInstanceCount;
9898

99+
private int? outMachineInstanceCount;
100+
99101
public int? OfflineInstanceCount
100102
{
101103
get
@@ -335,6 +337,18 @@ public int? AwsInstanceCount
335337
awsInstanceCount = value;
336338
}
337339
}
340+
341+
public int? OutMachineInstanceCount
342+
{
343+
get
344+
{
345+
return outMachineInstanceCount;
346+
}
347+
set
348+
{
349+
outMachineInstanceCount = value;
350+
}
351+
}
338352
}
339353
}
340354
}

0 commit comments

Comments
 (0)