alicloud/service_alicloud_click_house_v2.go (457 lines of code) (raw):
package alicloud
import (
"fmt"
"strings"
"time"
"github.com/PaesslerAG/jsonpath"
"github.com/aliyun/terraform-provider-alicloud/alicloud/connectivity"
"github.com/blues/jsonata-go"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
)
type ClickHouseServiceV2 struct {
client *connectivity.AliyunClient
}
// DescribeClickHouseEnterpriseDBCluster <<< Encapsulated get interface for ClickHouse EnterpriseDBCluster.
func (s *ClickHouseServiceV2) DescribeClickHouseEnterpriseDBCluster(id string) (object map[string]interface{}, err error) {
client := s.client
var request map[string]interface{}
var response map[string]interface{}
var query map[string]interface{}
request = make(map[string]interface{})
query = make(map[string]interface{})
request["DBInstanceId"] = id
request["RegionId"] = client.RegionId
action := "DescribeDBInstanceAttribute"
wait := incrementalWait(3*time.Second, 5*time.Second)
err = resource.Retry(1*time.Minute, func() *resource.RetryError {
response, err = client.RpcPost("clickhouse", "2023-05-22", action, query, request, true)
if err != nil {
if NeedRetry(err) {
wait()
return resource.RetryableError(err)
}
return resource.NonRetryableError(err)
}
return nil
})
addDebug(action, response, request)
if err != nil {
if IsExpectedErrors(err, []string{"InvalidDBInstanceId.NotFound"}) {
return object, WrapErrorf(NotFoundErr("EnterpriseDBCluster", id), NotFoundMsg, response)
}
return object, WrapErrorf(err, DefaultErrorMsg, id, action, AlibabaCloudSdkGoERROR)
}
v, err := jsonpath.Get("$.Data", response)
if err != nil {
return object, WrapErrorf(err, FailedGetAttributeMsg, id, "$.Data", response)
}
return v.(map[string]interface{}), nil
}
func (s *ClickHouseServiceV2) ClickHouseEnterpriseDBClusterStateRefreshFunc(id string, field string, failStates []string) resource.StateRefreshFunc {
return func() (interface{}, string, error) {
object, err := s.DescribeClickHouseEnterpriseDBCluster(id)
if err != nil {
if NotFoundError(err) {
return object, "", nil
}
return nil, "", WrapError(err)
}
v, err := jsonpath.Get(field, object)
currentStatus := fmt.Sprint(v)
if strings.HasPrefix(field, "#") {
v, _ := jsonpath.Get(strings.TrimPrefix(field, "#"), object)
if v != nil {
currentStatus = "#CHECKSET"
}
}
for _, failState := range failStates {
if currentStatus == failState {
return object, currentStatus, WrapError(Error(FailedToReachTargetStatus, currentStatus))
}
}
return object, currentStatus, nil
}
}
// DescribeClickHouseEnterpriseDBCluster >>> Encapsulated.
// DescribeClickHouseEnterpriseDBClusterAccount <<< Encapsulated get interface for ClickHouse EnterpriseDBClusterAccount.
func (s *ClickHouseServiceV2) DescribeClickHouseEnterpriseDBClusterAccount(id string) (object map[string]interface{}, err error) {
client := s.client
var request map[string]interface{}
var response map[string]interface{}
var query map[string]interface{}
parts := strings.Split(id, ":")
if len(parts) != 2 {
err = WrapError(fmt.Errorf("invalid Resource Id %s. Expected parts' length %d, got %d", id, 2, len(parts)))
}
request = make(map[string]interface{})
query = make(map[string]interface{})
request["Account"] = parts[1]
request["DBInstanceId"] = parts[0]
request["RegionId"] = client.RegionId
action := "DescribeAccountAuthority"
wait := incrementalWait(3*time.Second, 5*time.Second)
err = resource.Retry(1*time.Minute, func() *resource.RetryError {
response, err = client.RpcPost("clickhouse", "2023-05-22", action, query, request, true)
if err != nil {
if NeedRetry(err) {
wait()
return resource.RetryableError(err)
}
return resource.NonRetryableError(err)
}
return nil
})
addDebug(action, response, request)
if err != nil {
if IsExpectedErrors(err, []string{"InvalidAccountName.NotFound", "InvalidDBInstanceId.NotFound"}) {
return object, WrapErrorf(NotFoundErr("EnterpriseDBClusterAccount", id), NotFoundMsg, response)
}
return object, WrapErrorf(err, DefaultErrorMsg, id, action, AlibabaCloudSdkGoERROR)
}
v, err := jsonpath.Get("$.Data", response)
if err != nil {
return object, WrapErrorf(err, FailedGetAttributeMsg, id, "$.Data", response)
}
return v.(map[string]interface{}), nil
}
func (s *ClickHouseServiceV2) DescribeEnterpriseDBClusterAccountDescribeAccounts(id string) (object map[string]interface{}, err error) {
client := s.client
var request map[string]interface{}
var response map[string]interface{}
var query map[string]interface{}
parts := strings.Split(id, ":")
if len(parts) != 2 {
err = WrapError(fmt.Errorf("invalid Resource Id %s. Expected parts' length %d, got %d", id, 2, len(parts)))
}
request = make(map[string]interface{})
query = make(map[string]interface{})
request["DBInstanceId"] = parts[0]
request["RegionId"] = client.RegionId
action := "DescribeAccounts"
wait := incrementalWait(3*time.Second, 5*time.Second)
err = resource.Retry(1*time.Minute, func() *resource.RetryError {
response, err = client.RpcPost("clickhouse", "2023-05-22", action, query, request, true)
if err != nil {
if NeedRetry(err) {
wait()
return resource.RetryableError(err)
}
return resource.NonRetryableError(err)
}
return nil
})
addDebug(action, response, request)
if err != nil {
return object, WrapErrorf(err, DefaultErrorMsg, id, action, AlibabaCloudSdkGoERROR)
}
v, err := jsonpath.Get("$.Data.Accounts[*]", response)
if err != nil {
return object, WrapErrorf(err, FailedGetAttributeMsg, id, "$.Data.Accounts[*]", response)
}
if len(v.([]interface{})) == 0 {
return object, WrapErrorf(NotFoundErr("EnterpriseDBClusterAccount", id), NotFoundMsg, response)
}
result, _ := v.([]interface{})
for _, v := range result {
item := v.(map[string]interface{})
if fmt.Sprint(item["Account"]) != parts[1] {
continue
}
return item, nil
}
return object, WrapErrorf(NotFoundErr("EnterpriseDBClusterAccount", id), NotFoundMsg, response)
}
func (s *ClickHouseServiceV2) ClickHouseEnterpriseDBClusterAccountStateRefreshFunc(id string, field string, failStates []string) resource.StateRefreshFunc {
return func() (interface{}, string, error) {
object, err := s.DescribeClickHouseEnterpriseDBClusterAccount(id)
if err != nil {
if NotFoundError(err) {
return object, "", nil
}
return nil, "", WrapError(err)
}
v, err := jsonpath.Get(field, object)
currentStatus := fmt.Sprint(v)
if strings.HasPrefix(field, "#") {
v, _ := jsonpath.Get(strings.TrimPrefix(field, "#"), object)
if v != nil {
currentStatus = "#CHECKSET"
}
}
for _, failState := range failStates {
if currentStatus == failState {
return object, currentStatus, WrapError(Error(FailedToReachTargetStatus, currentStatus))
}
}
return object, currentStatus, nil
}
}
// DescribeClickHouseEnterpriseDBClusterAccount >>> Encapsulated.
// DescribeClickHouseEnterpriseDbClusterPublicEndpoint <<< Encapsulated get interface for ClickHouse EnterpriseDbClusterPublicEndpoint.
func (s *ClickHouseServiceV2) DescribeClickHouseEnterpriseDbClusterPublicEndpoint(id string) (object map[string]interface{}, err error) {
client := s.client
var request map[string]interface{}
var response map[string]interface{}
var query map[string]interface{}
parts := strings.Split(id, ":")
if len(parts) != 2 {
err = WrapError(fmt.Errorf("invalid Resource Id %s. Expected parts' length %d, got %d", id, 2, len(parts)))
}
request = make(map[string]interface{})
query = make(map[string]interface{})
request["DBInstanceId"] = parts[0]
request["RegionId"] = client.RegionId
action := "DescribeEndpoints"
wait := incrementalWait(3*time.Second, 5*time.Second)
err = resource.Retry(1*time.Minute, func() *resource.RetryError {
response, err = client.RpcPost("clickhouse", "2023-05-22", action, query, request, true)
if err != nil {
if NeedRetry(err) {
wait()
return resource.RetryableError(err)
}
return resource.NonRetryableError(err)
}
return nil
})
addDebug(action, response, request)
if err != nil {
return object, WrapErrorf(err, DefaultErrorMsg, id, action, AlibabaCloudSdkGoERROR)
}
v, err := jsonpath.Get("$.Data.Endpoints[*]", response)
if err != nil {
return object, WrapErrorf(NotFoundErr("EnterpriseDbClusterPublicEndpoint", id), NotFoundMsg, response)
}
if len(v.([]interface{})) == 0 {
return object, WrapErrorf(NotFoundErr("EnterpriseDbClusterPublicEndpoint", id), NotFoundMsg, response)
}
result, _ := v.([]interface{})
for _, v := range result {
item := v.(map[string]interface{})
if fmt.Sprint(convertClickHouseEnterpriseDbClusterPublicEndpointDataEndpointsNetTypeResponse(item["NetType"])) != parts[1] {
continue
}
return item, nil
}
return object, WrapErrorf(NotFoundErr("EnterpriseDbClusterPublicEndpoint", id), NotFoundMsg, response)
}
func (s *ClickHouseServiceV2) ClickHouseEnterpriseDbClusterPublicEndpointStateRefreshFunc(id string, field string, failStates []string) resource.StateRefreshFunc {
return func() (interface{}, string, error) {
object, err := s.DescribeClickHouseEnterpriseDbClusterPublicEndpoint(id)
if err != nil {
if NotFoundError(err) {
return object, "", nil
}
return nil, "", WrapError(err)
}
v, err := jsonpath.Get(field, object)
currentStatus := fmt.Sprint(v)
if field == "$.ConnectionString" {
e := jsonata.MustCompile("$substringBefore($.ConnectionString, '.')")
v, _ = e.Eval(object)
currentStatus = fmt.Sprint(v)
}
if strings.HasPrefix(field, "#") {
v, _ := jsonpath.Get(strings.TrimPrefix(field, "#"), object)
if v != nil {
currentStatus = "#CHECKSET"
}
}
for _, failState := range failStates {
if currentStatus == failState {
return object, currentStatus, WrapError(Error(FailedToReachTargetStatus, currentStatus))
}
}
return object, currentStatus, nil
}
}
func (s *ClickHouseServiceV2) DescribeAsyncClickHouseEnterpriseDbClusterPublicEndpointStateRefreshFunc(d *schema.ResourceData, res map[string]interface{}, field string, failStates []string) resource.StateRefreshFunc {
return func() (interface{}, string, error) {
object, err := s.DescribeAsyncDescribeDBInstanceAttribute(d, res)
if err != nil {
if NotFoundError(err) {
return object, "", nil
}
}
v, err := jsonpath.Get(field, object)
currentStatus := fmt.Sprint(v)
if field == "$.ConnectionString" {
e := jsonata.MustCompile("$substringBefore($.ConnectionString, '.')")
v, _ = e.Eval(object)
currentStatus = fmt.Sprint(v)
}
if strings.HasPrefix(field, "#") {
v, _ := jsonpath.Get(strings.TrimPrefix(field, "#"), object)
if v != nil {
currentStatus = "#CHECKSET"
}
}
for _, failState := range failStates {
if currentStatus == failState {
if _err, ok := object["error"]; ok {
return _err, currentStatus, WrapError(Error(FailedToReachTargetStatus, currentStatus))
}
return object, currentStatus, WrapError(Error(FailedToReachTargetStatus, currentStatus))
}
}
return object, currentStatus, nil
}
}
// DescribeClickHouseEnterpriseDbClusterPublicEndpoint >>> Encapsulated.
// DescribeAsyncDescribeDBInstanceAttribute <<< Encapsulated for ClickHouse.
func (s *ClickHouseServiceV2) DescribeAsyncDescribeDBInstanceAttribute(d *schema.ResourceData, res map[string]interface{}) (object map[string]interface{}, err error) {
client := s.client
id := d.Id()
var request map[string]interface{}
var response map[string]interface{}
var query map[string]interface{}
parts := strings.Split(id, ":")
if len(parts) != 2 {
err = WrapError(fmt.Errorf("invalid Resource Id %s. Expected parts' length %d, got %d", id, 2, len(parts)))
}
request = make(map[string]interface{})
query = make(map[string]interface{})
request["DBInstanceId"] = parts[0]
request["RegionId"] = client.RegionId
action := "DescribeDBInstanceAttribute"
wait := incrementalWait(3*time.Second, 5*time.Second)
err = resource.Retry(1*time.Minute, func() *resource.RetryError {
response, err = client.RpcPost("clickhouse", "2023-05-22", action, query, request, true)
if err != nil {
if NeedRetry(err) {
wait()
return resource.RetryableError(err)
}
return resource.NonRetryableError(err)
}
return nil
})
addDebug(action, response, request)
if err != nil {
return response, WrapErrorf(err, DefaultErrorMsg, id, action, AlibabaCloudSdkGoERROR)
}
return response, nil
}
// DescribeAsyncDescribeDBInstanceAttribute >>> Encapsulated.
// DescribeClickHouseEnterpriseDbClusterBackupPolicy <<< Encapsulated get interface for ClickHouse EnterpriseDbClusterBackupPolicy.
func (s *ClickHouseServiceV2) DescribeClickHouseEnterpriseDbClusterBackupPolicy(id string) (object map[string]interface{}, err error) {
client := s.client
var request map[string]interface{}
var response map[string]interface{}
var query map[string]interface{}
request = make(map[string]interface{})
query = make(map[string]interface{})
request["DBInstanceId"] = id
request["RegionId"] = client.RegionId
action := "DescribeBackupPolicy"
wait := incrementalWait(3*time.Second, 5*time.Second)
err = resource.Retry(1*time.Minute, func() *resource.RetryError {
response, err = client.RpcPost("clickhouse", "2023-05-22", action, query, request, true)
if err != nil {
if NeedRetry(err) {
wait()
return resource.RetryableError(err)
}
return resource.NonRetryableError(err)
}
return nil
})
addDebug(action, response, request)
if err != nil {
return object, WrapErrorf(err, DefaultErrorMsg, id, action, AlibabaCloudSdkGoERROR)
}
currentStatus := response["Switch"]
if fmt.Sprint(currentStatus) == "false" {
return object, WrapErrorf(NotFoundErr("EnterpriseDbClusterBackupPolicy", id), NotFoundMsg, response)
}
return response, nil
}
func (s *ClickHouseServiceV2) ClickHouseEnterpriseDbClusterBackupPolicyStateRefreshFunc(id string, field string, failStates []string) resource.StateRefreshFunc {
return func() (interface{}, string, error) {
object, err := s.DescribeClickHouseEnterpriseDbClusterBackupPolicy(id)
if err != nil {
if NotFoundError(err) {
return object, "", nil
}
return nil, "", WrapError(err)
}
v, err := jsonpath.Get(field, object)
currentStatus := fmt.Sprint(v)
if strings.HasPrefix(field, "#") {
v, _ := jsonpath.Get(strings.TrimPrefix(field, "#"), object)
if v != nil {
currentStatus = "#CHECKSET"
}
}
for _, failState := range failStates {
if currentStatus == failState {
return object, currentStatus, WrapError(Error(FailedToReachTargetStatus, currentStatus))
}
}
return object, currentStatus, nil
}
}
// DescribeClickHouseEnterpriseDbClusterBackupPolicy >>> Encapsulated.
// DescribeClickHouseEnterpriseDbClusterSecurityIP <<< Encapsulated get interface for ClickHouse EnterpriseDbClusterSecurityIP.
func (s *ClickHouseServiceV2) DescribeClickHouseEnterpriseDbClusterSecurityIP(id string) (object map[string]interface{}, err error) {
client := s.client
var request map[string]interface{}
var response map[string]interface{}
var query map[string]interface{}
parts := strings.Split(id, ":")
if len(parts) != 2 {
err = WrapError(fmt.Errorf("invalid Resource Id %s. Expected parts' length %d, got %d", id, 2, len(parts)))
}
request = make(map[string]interface{})
query = make(map[string]interface{})
request["DBInstanceId"] = parts[0]
request["RegionId"] = client.RegionId
action := "DescribeSecurityIPList"
wait := incrementalWait(3*time.Second, 5*time.Second)
err = resource.Retry(1*time.Minute, func() *resource.RetryError {
response, err = client.RpcPost("clickhouse", "2023-05-22", action, query, request, true)
if err != nil {
if NeedRetry(err) {
wait()
return resource.RetryableError(err)
}
return resource.NonRetryableError(err)
}
return nil
})
addDebug(action, response, request)
if err != nil {
return object, WrapErrorf(err, DefaultErrorMsg, id, action, AlibabaCloudSdkGoERROR)
}
v, err := jsonpath.Get("$.Data.GroupItems[*]", response)
if err != nil {
return object, WrapErrorf(err, FailedGetAttributeMsg, id, "$.Data.GroupItems[*]", response)
}
if len(v.([]interface{})) == 0 {
return object, WrapErrorf(NotFoundErr("EnterpriseDbClusterSecurityIP", id), NotFoundMsg, response)
}
result, _ := v.([]interface{})
for _, v := range result {
item := v.(map[string]interface{})
if fmt.Sprint(item["GroupName"]) != parts[1] {
continue
}
return item, nil
}
return object, WrapErrorf(NotFoundErr("EnterpriseDbClusterSecurityIP", id), NotFoundMsg, response)
}
func (s *ClickHouseServiceV2) ClickHouseEnterpriseDbClusterSecurityIPStateRefreshFunc(id string, field string, failStates []string) resource.StateRefreshFunc {
return func() (interface{}, string, error) {
object, err := s.DescribeClickHouseEnterpriseDbClusterSecurityIP(id)
if err != nil {
if NotFoundError(err) {
return object, "", nil
}
return nil, "", WrapError(err)
}
v, err := jsonpath.Get(field, object)
currentStatus := fmt.Sprint(v)
if strings.HasPrefix(field, "#") {
v, _ := jsonpath.Get(strings.TrimPrefix(field, "#"), object)
if v != nil {
currentStatus = "#CHECKSET"
}
}
for _, failState := range failStates {
if currentStatus == failState {
return object, currentStatus, WrapError(Error(FailedToReachTargetStatus, currentStatus))
}
}
return object, currentStatus, nil
}
}
// DescribeClickHouseEnterpriseDbClusterSecurityIP >>> Encapsulated.