-
Notifications
You must be signed in to change notification settings - Fork 625
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated 2022-12-01 for ResourceCenter.
- Loading branch information
Showing
63 changed files
with
3,759 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
...un-net-sdk-resourcecenter/ResourceCenter/Model/V20221201/AssociateDefaultFilterRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
using System.Collections.Generic; | ||
|
||
using Aliyun.Acs.Core; | ||
using Aliyun.Acs.Core.Http; | ||
using Aliyun.Acs.Core.Transform; | ||
using Aliyun.Acs.Core.Utils; | ||
using Aliyun.Acs.ResourceCenter; | ||
using Aliyun.Acs.ResourceCenter.Transform; | ||
using Aliyun.Acs.ResourceCenter.Transform.V20221201; | ||
|
||
namespace Aliyun.Acs.ResourceCenter.Model.V20221201 | ||
{ | ||
public class AssociateDefaultFilterRequest : RpcAcsRequest<AssociateDefaultFilterResponse> | ||
{ | ||
public AssociateDefaultFilterRequest() | ||
: base("ResourceCenter", "2022-12-01", "AssociateDefaultFilter") | ||
{ | ||
Method = MethodType.POST; | ||
} | ||
|
||
private string filterName; | ||
|
||
public string FilterName | ||
{ | ||
get | ||
{ | ||
return filterName; | ||
} | ||
set | ||
{ | ||
filterName = value; | ||
DictionaryUtil.Add(QueryParameters, "FilterName", value); | ||
} | ||
} | ||
|
||
public override bool CheckShowJsonItemName() | ||
{ | ||
return false; | ||
} | ||
|
||
public override AssociateDefaultFilterResponse GetResponse(UnmarshallerContext unmarshallerContext) | ||
{ | ||
return AssociateDefaultFilterResponseUnmarshaller.Unmarshall(unmarshallerContext); | ||
} | ||
} | ||
} |
42 changes: 42 additions & 0 deletions
42
...n-net-sdk-resourcecenter/ResourceCenter/Model/V20221201/AssociateDefaultFilterResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
using System.Collections.Generic; | ||
using Newtonsoft.Json; | ||
using Aliyun.Acs.Core; | ||
|
||
namespace Aliyun.Acs.ResourceCenter.Model.V20221201 | ||
{ | ||
public class AssociateDefaultFilterResponse : AcsResponse | ||
{ | ||
|
||
private string requestId; | ||
|
||
public string RequestId | ||
{ | ||
get | ||
{ | ||
return requestId; | ||
} | ||
set | ||
{ | ||
requestId = value; | ||
} | ||
} | ||
} | ||
} |
79 changes: 79 additions & 0 deletions
79
aliyun-net-sdk-resourcecenter/ResourceCenter/Model/V20221201/CreateFilterRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
using System.Collections.Generic; | ||
|
||
using Aliyun.Acs.Core; | ||
using Aliyun.Acs.Core.Http; | ||
using Aliyun.Acs.Core.Transform; | ||
using Aliyun.Acs.Core.Utils; | ||
using Aliyun.Acs.ResourceCenter; | ||
using Aliyun.Acs.ResourceCenter.Transform; | ||
using Aliyun.Acs.ResourceCenter.Transform.V20221201; | ||
|
||
namespace Aliyun.Acs.ResourceCenter.Model.V20221201 | ||
{ | ||
public class CreateFilterRequest : RpcAcsRequest<CreateFilterResponse> | ||
{ | ||
public CreateFilterRequest() | ||
: base("ResourceCenter", "2022-12-01", "CreateFilter") | ||
{ | ||
Method = MethodType.POST; | ||
} | ||
|
||
private string filterName; | ||
|
||
private string filterConfiguration; | ||
|
||
public string FilterName | ||
{ | ||
get | ||
{ | ||
return filterName; | ||
} | ||
set | ||
{ | ||
filterName = value; | ||
DictionaryUtil.Add(QueryParameters, "FilterName", value); | ||
} | ||
} | ||
|
||
public string FilterConfiguration | ||
{ | ||
get | ||
{ | ||
return filterConfiguration; | ||
} | ||
set | ||
{ | ||
filterConfiguration = value; | ||
DictionaryUtil.Add(QueryParameters, "FilterConfiguration", value); | ||
} | ||
} | ||
|
||
public override bool CheckShowJsonItemName() | ||
{ | ||
return false; | ||
} | ||
|
||
public override CreateFilterResponse GetResponse(UnmarshallerContext unmarshallerContext) | ||
{ | ||
return CreateFilterResponseUnmarshaller.Unmarshall(unmarshallerContext); | ||
} | ||
} | ||
} |
42 changes: 42 additions & 0 deletions
42
aliyun-net-sdk-resourcecenter/ResourceCenter/Model/V20221201/CreateFilterResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
using System.Collections.Generic; | ||
using Newtonsoft.Json; | ||
using Aliyun.Acs.Core; | ||
|
||
namespace Aliyun.Acs.ResourceCenter.Model.V20221201 | ||
{ | ||
public class CreateFilterResponse : AcsResponse | ||
{ | ||
|
||
private string requestId; | ||
|
||
public string RequestId | ||
{ | ||
get | ||
{ | ||
return requestId; | ||
} | ||
set | ||
{ | ||
requestId = value; | ||
} | ||
} | ||
} | ||
} |
95 changes: 95 additions & 0 deletions
95
aliyun-net-sdk-resourcecenter/ResourceCenter/Model/V20221201/CreateSavedQueryRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
using System.Collections.Generic; | ||
|
||
using Aliyun.Acs.Core; | ||
using Aliyun.Acs.Core.Http; | ||
using Aliyun.Acs.Core.Transform; | ||
using Aliyun.Acs.Core.Utils; | ||
using Aliyun.Acs.ResourceCenter; | ||
using Aliyun.Acs.ResourceCenter.Transform; | ||
using Aliyun.Acs.ResourceCenter.Transform.V20221201; | ||
|
||
namespace Aliyun.Acs.ResourceCenter.Model.V20221201 | ||
{ | ||
public class CreateSavedQueryRequest : RpcAcsRequest<CreateSavedQueryResponse> | ||
{ | ||
public CreateSavedQueryRequest() | ||
: base("ResourceCenter", "2022-12-01", "CreateSavedQuery") | ||
{ | ||
Protocol = ProtocolType.HTTPS; | ||
Method = MethodType.POST; | ||
} | ||
|
||
private string expression; | ||
|
||
private string description; | ||
|
||
private string name; | ||
|
||
public string Expression | ||
{ | ||
get | ||
{ | ||
return expression; | ||
} | ||
set | ||
{ | ||
expression = value; | ||
DictionaryUtil.Add(QueryParameters, "Expression", value); | ||
} | ||
} | ||
|
||
public string Description | ||
{ | ||
get | ||
{ | ||
return description; | ||
} | ||
set | ||
{ | ||
description = value; | ||
DictionaryUtil.Add(QueryParameters, "Description", value); | ||
} | ||
} | ||
|
||
public string Name | ||
{ | ||
get | ||
{ | ||
return name; | ||
} | ||
set | ||
{ | ||
name = value; | ||
DictionaryUtil.Add(QueryParameters, "Name", value); | ||
} | ||
} | ||
|
||
public override bool CheckShowJsonItemName() | ||
{ | ||
return false; | ||
} | ||
|
||
public override CreateSavedQueryResponse GetResponse(UnmarshallerContext unmarshallerContext) | ||
{ | ||
return CreateSavedQueryResponseUnmarshaller.Unmarshall(unmarshallerContext); | ||
} | ||
} | ||
} |
56 changes: 56 additions & 0 deletions
56
aliyun-net-sdk-resourcecenter/ResourceCenter/Model/V20221201/CreateSavedQueryResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
using System.Collections.Generic; | ||
using Newtonsoft.Json; | ||
using Aliyun.Acs.Core; | ||
|
||
namespace Aliyun.Acs.ResourceCenter.Model.V20221201 | ||
{ | ||
public class CreateSavedQueryResponse : AcsResponse | ||
{ | ||
|
||
private string requestId; | ||
|
||
private string queryId; | ||
|
||
public string RequestId | ||
{ | ||
get | ||
{ | ||
return requestId; | ||
} | ||
set | ||
{ | ||
requestId = value; | ||
} | ||
} | ||
|
||
public string QueryId | ||
{ | ||
get | ||
{ | ||
return queryId; | ||
} | ||
set | ||
{ | ||
queryId = value; | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.