-
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.
Account management add SourceBiz parameters.
- Loading branch information
Showing
59 changed files
with
5,744 additions
and
68 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
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
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
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
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
218 changes: 218 additions & 0 deletions
218
aliyun-net-sdk-r-kvstore/R_kvstore/Model/V20150101/CreateParameterGroupRequest.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,218 @@ | ||
/* | ||
* 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.R_kvstore.Transform; | ||
using Aliyun.Acs.R_kvstore.Transform.V20150101; | ||
|
||
namespace Aliyun.Acs.R_kvstore.Model.V20150101 | ||
{ | ||
public class CreateParameterGroupRequest : RpcAcsRequest<CreateParameterGroupResponse> | ||
{ | ||
public CreateParameterGroupRequest() | ||
: base("R-kvstore", "2015-01-01", "CreateParameterGroup", "redisa", "openAPI") | ||
{ | ||
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null) | ||
{ | ||
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.R_kvstore.Endpoint.endpointMap, null); | ||
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.R_kvstore.Endpoint.endpointRegionalType, null); | ||
} | ||
Method = MethodType.POST; | ||
} | ||
|
||
private long? resourceOwnerId; | ||
|
||
private string engineVersion; | ||
|
||
private string securityToken; | ||
|
||
private string engineType; | ||
|
||
private string resourceOwnerAccount; | ||
|
||
private string ownerAccount; | ||
|
||
private long? ownerId; | ||
|
||
private string category; | ||
|
||
private string parameterGroupName; | ||
|
||
private string parameters; | ||
|
||
private string parameterGroupDesc; | ||
|
||
public long? ResourceOwnerId | ||
{ | ||
get | ||
{ | ||
return resourceOwnerId; | ||
} | ||
set | ||
{ | ||
resourceOwnerId = value; | ||
DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString()); | ||
} | ||
} | ||
|
||
public string EngineVersion | ||
{ | ||
get | ||
{ | ||
return engineVersion; | ||
} | ||
set | ||
{ | ||
engineVersion = value; | ||
DictionaryUtil.Add(QueryParameters, "EngineVersion", value); | ||
} | ||
} | ||
|
||
public string SecurityToken | ||
{ | ||
get | ||
{ | ||
return securityToken; | ||
} | ||
set | ||
{ | ||
securityToken = value; | ||
DictionaryUtil.Add(QueryParameters, "SecurityToken", value); | ||
} | ||
} | ||
|
||
public string EngineType | ||
{ | ||
get | ||
{ | ||
return engineType; | ||
} | ||
set | ||
{ | ||
engineType = value; | ||
DictionaryUtil.Add(QueryParameters, "EngineType", value); | ||
} | ||
} | ||
|
||
public string ResourceOwnerAccount | ||
{ | ||
get | ||
{ | ||
return resourceOwnerAccount; | ||
} | ||
set | ||
{ | ||
resourceOwnerAccount = value; | ||
DictionaryUtil.Add(QueryParameters, "ResourceOwnerAccount", value); | ||
} | ||
} | ||
|
||
public string OwnerAccount | ||
{ | ||
get | ||
{ | ||
return ownerAccount; | ||
} | ||
set | ||
{ | ||
ownerAccount = value; | ||
DictionaryUtil.Add(QueryParameters, "OwnerAccount", value); | ||
} | ||
} | ||
|
||
public long? OwnerId | ||
{ | ||
get | ||
{ | ||
return ownerId; | ||
} | ||
set | ||
{ | ||
ownerId = value; | ||
DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString()); | ||
} | ||
} | ||
|
||
public string Category | ||
{ | ||
get | ||
{ | ||
return category; | ||
} | ||
set | ||
{ | ||
category = value; | ||
DictionaryUtil.Add(QueryParameters, "Category", value); | ||
} | ||
} | ||
|
||
public string ParameterGroupName | ||
{ | ||
get | ||
{ | ||
return parameterGroupName; | ||
} | ||
set | ||
{ | ||
parameterGroupName = value; | ||
DictionaryUtil.Add(QueryParameters, "ParameterGroupName", value); | ||
} | ||
} | ||
|
||
public string Parameters | ||
{ | ||
get | ||
{ | ||
return parameters; | ||
} | ||
set | ||
{ | ||
parameters = value; | ||
DictionaryUtil.Add(QueryParameters, "Parameters", value); | ||
} | ||
} | ||
|
||
public string ParameterGroupDesc | ||
{ | ||
get | ||
{ | ||
return parameterGroupDesc; | ||
} | ||
set | ||
{ | ||
parameterGroupDesc = value; | ||
DictionaryUtil.Add(QueryParameters, "ParameterGroupDesc", value); | ||
} | ||
} | ||
|
||
public override bool CheckShowJsonItemName() | ||
{ | ||
return false; | ||
} | ||
|
||
public override CreateParameterGroupResponse GetResponse(UnmarshallerContext unmarshallerContext) | ||
{ | ||
return CreateParameterGroupResponseUnmarshaller.Unmarshall(unmarshallerContext); | ||
} | ||
} | ||
} |
Oops, something went wrong.