Skip to content

Commit

Permalink
feat(CodeArts/Deploy): support to get application groups
Browse files Browse the repository at this point in the history
  • Loading branch information
saf3dfsa committed Dec 24, 2024
1 parent 68dcbb7 commit e928c78
Show file tree
Hide file tree
Showing 4 changed files with 256 additions and 0 deletions.
60 changes: 60 additions & 0 deletions docs/data-sources/codearts_deploy_application_groups.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
---
subcategory: "CodeArts Deploy"
layout: "huaweicloud"
page_title: "HuaweiCloud: huaweicloud_codearts_deploy_application_groups"
description: |-
Use this data source to get the list of CodeArts deploy application groups.
---

# huaweicloud_codearts_deploy_application_groups

Use this data source to get the list of CodeArts deploy application groups.

## Example Usage

```hcl
variable "project_id" {}
data "huaweicloud_codearts_deploy_application_groups" "test" {
project_id = var.project_id
}
```

## Argument Reference

The following arguments are supported:

* `region` - (Optional, String) Specifies the region in which to query the resource.
If omitted, the provider-level region will be used.

* `project_id` - (Required, String) Specifies the project ID.

## Attribute Reference

In addition to all arguments above, the following attributes are exported:

* `id` - The data source ID.

* `groups` - Indicates the application group list.
The [groups](#attrblock--groups) structure is documented below.

<a name="attrblock--groups"></a>
The `groups` block supports:

* `id` - Indicates the application group ID.

* `name` - Indicates the application group name.

* `application_count` - Indicates the total number of applications in the group.

* `ordinal` - Indicates the group sorting field.

* `parent_id` - Indicates the parent application group ID.

* `path` - Indicates the group path.

* `children` - Indicates the child group name list.

* `created_by` - Indicates the ID of the group creator.

* `updated_by` - Indicates the ID of the user who last updates the group.
2 changes: 2 additions & 0 deletions huaweicloud/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,8 @@ func Provider() *schema.Provider {
"huaweicloud_compute_servergroups": ecs.DataSourceComputeServerGroups(),
"huaweicloud_compute_instance_remote_console": ecs.DataSourceComputeInstanceRemoteConsole(),

"huaweicloud_codearts_deploy_application_groups": codeartsdeploy.DataSourceCodeartsDeployApplicationGroups(),

"huaweicloud_cts_notifications": cts.DataSourceNotifications(),
"huaweicloud_cts_traces": cts.DataSourceCtsTraces(),
"huaweicloud_cts_trackers": cts.DataSourceCtsTrackers(),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
package codeartsdeploy

import (
"fmt"
"testing"

"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"

"github.com/huaweicloud/terraform-provider-huaweicloud/huaweicloud/services/acceptance"
)

func TestAccDataSourceCodeartsDeployApplicationGroups_basic(t *testing.T) {
dataSource := "data.huaweicloud_codearts_deploy_application_groups.test"
rName := acceptance.RandomAccResourceName()
dc := acceptance.InitDataSourceCheck(dataSource)

resource.ParallelTest(t, resource.TestCase{
PreCheck: func() {
acceptance.TestAccPreCheck(t)
},
ProviderFactories: acceptance.TestAccProviderFactories,
Steps: []resource.TestStep{
{
Config: testDataSourceCodeartsDeployApplicationGroups_basic(rName),
Check: resource.ComposeTestCheckFunc(
dc.CheckResourceExists(),
resource.TestCheckResourceAttr(dataSource, "groups.#", "3"),
resource.TestCheckResourceAttrSet(dataSource, "groups.0.id"),
resource.TestCheckResourceAttrSet(dataSource, "groups.0.name"),
resource.TestCheckResourceAttrSet(dataSource, "groups.0.path"),
resource.TestCheckResourceAttrSet(dataSource, "groups.0.ordinal"),
resource.TestCheckResourceAttrSet(dataSource, "groups.0.created_by"),
resource.TestCheckResourceAttrSet(dataSource, "groups.0.updated_by"),
resource.TestCheckResourceAttrSet(dataSource, "groups.0.application_count"),
resource.TestCheckResourceAttrSet(dataSource, "groups.0.children.0"),
),
},
},
})
}

func testDataSourceCodeartsDeployApplicationGroups_basic(name string) string {
return fmt.Sprintf(`
%[1]s
data "huaweicloud_codearts_deploy_application_groups" "test" {
depends_on = [huaweicloud_codearts_deploy_application_group.level2]
project_id = huaweicloud_codearts_project.test.id
}
`, testDeployApplicationGroup_secondLevel(name))
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
package codeartsdeploy

import (
"context"

"github.com/hashicorp/go-multierror"
"github.com/hashicorp/go-uuid"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"

"github.com/huaweicloud/terraform-provider-huaweicloud/huaweicloud/config"
"github.com/huaweicloud/terraform-provider-huaweicloud/huaweicloud/utils"
)

// @API CodeArtsDeploy GET /v1/projects/{project_id}/applications/groups
func DataSourceCodeartsDeployApplicationGroups() *schema.Resource {
return &schema.Resource{
ReadContext: dataSourceCodeartsDeployApplicationGroupsRead,

Schema: map[string]*schema.Schema{
"region": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Description: `Specifies the region in which to query the resource. If omitted, the provider-level region will be used.`,
},
"project_id": {
Type: schema.TypeString,
Required: true,
Description: `Specifies the project ID.`,
},
"groups": {
Type: schema.TypeList,
Computed: true,
Description: `Indicates the application group list.`,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"id": {
Type: schema.TypeString,
Computed: true,
Description: `Indicates the application group ID.`,
},
"name": {
Type: schema.TypeString,
Computed: true,
Description: `Indicates the application group name.`,
},
"parent_id": {
Type: schema.TypeString,
Computed: true,
Description: `Indicates the parent application group ID.`,
},
"path": {
Type: schema.TypeString,
Computed: true,
Description: `Indicates the group path.`,
},
"ordinal": {
Type: schema.TypeInt,
Computed: true,
Description: `Indicates the group sorting field.`,
},
"created_by": {
Type: schema.TypeString,
Computed: true,
Description: `Indicates the ID of the group creator.`,
},
"updated_by": {
Type: schema.TypeString,
Computed: true,
Description: `Indicates the ID of the user who last updates the group.`,
},
"application_count": {
Type: schema.TypeInt,
Computed: true,
Description: `Indicates the total number of applications in the group.`,
},
"children": {
Type: schema.TypeList,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
Description: `Indicates the child group name list.`,
},
},
},
},
},
}
}

func dataSourceCodeartsDeployApplicationGroupsRead(_ context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
cfg := meta.(*config.Config)
region := cfg.GetRegion(d)
client, err := cfg.NewServiceClient("codearts_deploy", region)
if err != nil {
return diag.Errorf("error creating CodeArts deploy client: %s", err)
}

groups, err := getDeployApplicationGroup(client, d)
if err != nil {
return diag.FromErr(err)
}

id, err := uuid.GenerateUUID()
if err != nil {
return diag.FromErr(err)
}
d.SetId(id)

mErr := multierror.Append(nil,
d.Set("region", region),
d.Set("groups", flattenCodeartsDeployApplicationGroups(groups.([]interface{}))),
)

return diag.FromErr(mErr.ErrorOrNil())
}

func flattenCodeartsDeployApplicationGroups(currentList []interface{}) []map[string]interface{} {
groups := currentList
rst := make([]map[string]interface{}, 0)

for _, group := range groups {
rst = append(rst, map[string]interface{}{
"id": utils.PathSearch("id", group, nil),
"name": utils.PathSearch("name", group, nil),
"parent_id": utils.PathSearch("parent_id", group, nil),
"path": utils.PathSearch("path", group, nil),
"ordinal": utils.PathSearch("ordinal", group, nil),
"application_count": utils.PathSearch("application_count", group, nil),
"children": utils.PathSearch("children[*].name", group, nil),
"updated_by": utils.PathSearch("last_update_user_id", group, nil),
"created_by": utils.PathSearch("create_user_id", group, nil),
})
}

children := utils.PathSearch("[*].children[]", currentList, make([]interface{}, 0)).([]interface{})
if len(children) != 0 {
rst = append(rst, flattenCodeartsDeployApplicationGroups(children)...)
}

return rst
}

0 comments on commit e928c78

Please sign in to comment.