Skip to content

Commit

Permalink
Support kibana Pvl private link operation.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jul 22, 2024
1 parent 5823c1a commit 739cf01
Show file tree
Hide file tree
Showing 464 changed files with 12,878 additions and 3,829 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-07-22 Version: 3.0.30
- Support kibana Pvl private link operation.

2024-07-19 Version: 2.20.8
- Account management add SourceBiz parameters.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ public ActivateZonesRequest()

private string clientToken;

private string body;

public string InstanceId
{
get
Expand All @@ -71,6 +73,19 @@ public string ClientToken
}
}

public string Body
{
get
{
return body;
}
set
{
body = value;
DictionaryUtil.Add(BodyParameters, "body", value);
}
}

public override bool CheckShowJsonItemName()
{
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,39 +17,39 @@
* under the License.
*/
using System.Collections.Generic;

using Newtonsoft.Json;
using Aliyun.Acs.Core;

namespace Aliyun.Acs.elasticsearch.Model.V20170613
{
public class ActivateZonesResponse : AcsResponse
{

private string requestId;

private bool? result;

public string RequestId
private string requestId;

public bool? Result
{
get
{
return requestId;
return result;
}
set
{
requestId = value;
result = value;
}
}

public bool? Result
public string RequestId
{
get
{
return result;
return requestId;
}
set
{
result = value;
requestId = value;
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ public AddConnectableClusterRequest()

private string clientToken;

private string body;

public string InstanceId
{
get
Expand All @@ -69,6 +71,19 @@ public string ClientToken
clientToken = value;
DictionaryUtil.Add(QueryParameters, "clientToken", value);
}
}

public string Body
{
get
{
return body;
}
set
{
body = value;
DictionaryUtil.Add(BodyParameters, "body", value);
}
}

public override AddConnectableClusterResponse GetResponse(UnmarshallerContext unmarshallerContext)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,39 +17,39 @@
* under the License.
*/
using System.Collections.Generic;

using Newtonsoft.Json;
using Aliyun.Acs.Core;

namespace Aliyun.Acs.elasticsearch.Model.V20170613
{
public class AddConnectableClusterResponse : AcsResponse
{

private string requestId;

private bool? result;

public string RequestId
private string requestId;

public bool? Result
{
get
{
return requestId;
return result;
}
set
{
requestId = value;
result = value;
}
}

public bool? Result
public string RequestId
{
get
{
return result;
return requestId;
}
set
{
result = value;
requestId = value;
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ public AddSnapshotRepoRequest()

private string instanceId;

private string body;

public string InstanceId
{
get
Expand All @@ -56,6 +58,19 @@ public string InstanceId
}
}

public string Body
{
get
{
return body;
}
set
{
body = value;
DictionaryUtil.Add(BodyParameters, "body", value);
}
}

public override bool CheckShowJsonItemName()
{
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,39 +17,39 @@
* under the License.
*/
using System.Collections.Generic;

using Newtonsoft.Json;
using Aliyun.Acs.Core;

namespace Aliyun.Acs.elasticsearch.Model.V20170613
{
public class AddSnapshotRepoResponse : AcsResponse
{

private string requestId;

private bool? result;

public string RequestId
private string requestId;

public bool? Result
{
get
{
return requestId;
return result;
}
set
{
requestId = value;
result = value;
}
}

public bool? Result
public string RequestId
{
get
{
return result;
return requestId;
}
set
{
result = value;
requestId = value;
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,39 +17,39 @@
* under the License.
*/
using System.Collections.Generic;

using Newtonsoft.Json;
using Aliyun.Acs.Core;

namespace Aliyun.Acs.elasticsearch.Model.V20170613
{
public class CancelDeletionResponse : AcsResponse
{

private string requestId;

private bool? result;

public string RequestId
private string requestId;

public bool? Result
{
get
{
return requestId;
return result;
}
set
{
requestId = value;
result = value;
}
}

public bool? Result
public string RequestId
{
get
{
return result;
return requestId;
}
set
{
result = value;
requestId = value;
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,39 +17,39 @@
* under the License.
*/
using System.Collections.Generic;

using Newtonsoft.Json;
using Aliyun.Acs.Core;

namespace Aliyun.Acs.elasticsearch.Model.V20170613
{
public class CancelLogstashDeletionResponse : AcsResponse
{

private string requestId;

private bool? result;

public string RequestId
private string requestId;

public bool? Result
{
get
{
return requestId;
return result;
}
set
{
requestId = value;
result = value;
}
}

public bool? Result
public string RequestId
{
get
{
return result;
return requestId;
}
set
{
result = value;
requestId = value;
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,39 +17,39 @@
* under the License.
*/
using System.Collections.Generic;

using Newtonsoft.Json;
using Aliyun.Acs.Core;

namespace Aliyun.Acs.elasticsearch.Model.V20170613
{
public class CancelTaskResponse : AcsResponse
{

private string requestId;

private bool? result;

public string RequestId
private string requestId;

public bool? Result
{
get
{
return requestId;
return result;
}
set
{
requestId = value;
result = value;
}
}

public bool? Result
public string RequestId
{
get
{
return result;
return requestId;
}
set
{
result = value;
requestId = value;
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/
using System.Collections.Generic;

using Newtonsoft.Json;
using Aliyun.Acs.Core;

namespace Aliyun.Acs.elasticsearch.Model.V20170613
Expand Down
Loading

0 comments on commit 739cf01

Please sign in to comment.