Skip to content

Commit

Permalink
Generated 2022-12-01 for ResourceCenter.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Oct 8, 2024
1 parent 0d71b90 commit 46ed1fe
Show file tree
Hide file tree
Showing 63 changed files with 3,759 additions and 217 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-10-08 Version: 1.0.4
- Generated 2022-12-01 for `ResourceCenter`.

2024-09-29 Version: 1.0.0
- Generated 2021-12-21 for `wss`.

Expand Down
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);
}
}
}
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;
}
}
}
}
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);
}
}
}
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;
}
}
}
}
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);
}
}
}
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;
}
}
}
}
Loading

0 comments on commit 46ed1fe

Please sign in to comment.