-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow updating of resource policies in compute_disk
Signed-off-by: Modular Magician <[email protected]>
- Loading branch information
1 parent
43af0af
commit 619a91f
Showing
7 changed files
with
530 additions
and
10 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
349 changes: 349 additions & 0 deletions
349
google-beta/resource_compute_disk_resource_policy_attachment.go
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,349 @@ | ||
// ---------------------------------------------------------------------------- | ||
// | ||
// *** AUTO GENERATED CODE *** AUTO GENERATED CODE *** | ||
// | ||
// ---------------------------------------------------------------------------- | ||
// | ||
// This file is automatically generated by Magic Modules and manual | ||
// changes will be clobbered when the file is regenerated. | ||
// | ||
// Please read more about how to change this file in | ||
// .github/CONTRIBUTING.md. | ||
// | ||
// ---------------------------------------------------------------------------- | ||
|
||
package google | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"reflect" | ||
"time" | ||
|
||
"github.com/hashicorp/terraform/helper/schema" | ||
"google.golang.org/api/compute/v1" | ||
) | ||
|
||
func resourceComputeDiskResourcePolicyAttachment() *schema.Resource { | ||
return &schema.Resource{ | ||
Create: resourceComputeDiskResourcePolicyAttachmentCreate, | ||
Read: resourceComputeDiskResourcePolicyAttachmentRead, | ||
Delete: resourceComputeDiskResourcePolicyAttachmentDelete, | ||
|
||
Importer: &schema.ResourceImporter{ | ||
State: resourceComputeDiskResourcePolicyAttachmentImport, | ||
}, | ||
|
||
Timeouts: &schema.ResourceTimeout{ | ||
Create: schema.DefaultTimeout(4 * time.Minute), | ||
Delete: schema.DefaultTimeout(4 * time.Minute), | ||
}, | ||
|
||
Schema: map[string]*schema.Schema{ | ||
"disk": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
DiffSuppressFunc: compareSelfLinkOrResourceName, | ||
}, | ||
"name": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"zone": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
DiffSuppressFunc: compareSelfLinkOrResourceName, | ||
}, | ||
"project": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
Computed: true, | ||
ForceNew: true, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
func resourceComputeDiskResourcePolicyAttachmentCreate(d *schema.ResourceData, meta interface{}) error { | ||
config := meta.(*Config) | ||
|
||
obj := make(map[string]interface{}) | ||
nameProp, err := expandComputeDiskResourcePolicyAttachmentName(d.Get("name"), d, config) | ||
if err != nil { | ||
return err | ||
} else if v, ok := d.GetOkExists("name"); !isEmptyValue(reflect.ValueOf(nameProp)) && (ok || !reflect.DeepEqual(v, nameProp)) { | ||
obj["name"] = nameProp | ||
} | ||
|
||
obj, err = resourceComputeDiskResourcePolicyAttachmentEncoder(d, meta, obj) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
url, err := replaceVars(d, config, "{{ComputeBasePath}}projects/{{project}}/zones/{{zone}}/disks/{{disk}}/addResourcePolicies") | ||
if err != nil { | ||
return err | ||
} | ||
|
||
log.Printf("[DEBUG] Creating new DiskResourcePolicyAttachment: %#v", obj) | ||
project, err := getProject(d, config) | ||
if err != nil { | ||
return err | ||
} | ||
res, err := sendRequestWithTimeout(config, "POST", project, url, obj, d.Timeout(schema.TimeoutCreate)) | ||
if err != nil { | ||
return fmt.Errorf("Error creating DiskResourcePolicyAttachment: %s", err) | ||
} | ||
|
||
// Store the ID now | ||
id, err := replaceVars(d, config, "{{project}}/{{zone}}/{{disk}}/{{name}}") | ||
if err != nil { | ||
return fmt.Errorf("Error constructing id: %s", err) | ||
} | ||
d.SetId(id) | ||
|
||
op := &compute.Operation{} | ||
err = Convert(res, op) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
waitErr := computeOperationWaitTime( | ||
config.clientCompute, op, project, "Creating DiskResourcePolicyAttachment", | ||
int(d.Timeout(schema.TimeoutCreate).Minutes())) | ||
|
||
if waitErr != nil { | ||
// The resource didn't actually create | ||
d.SetId("") | ||
return fmt.Errorf("Error waiting to create DiskResourcePolicyAttachment: %s", waitErr) | ||
} | ||
|
||
log.Printf("[DEBUG] Finished creating DiskResourcePolicyAttachment %q: %#v", d.Id(), res) | ||
|
||
return resourceComputeDiskResourcePolicyAttachmentRead(d, meta) | ||
} | ||
|
||
func resourceComputeDiskResourcePolicyAttachmentRead(d *schema.ResourceData, meta interface{}) error { | ||
config := meta.(*Config) | ||
|
||
url, err := replaceVars(d, config, "{{ComputeBasePath}}projects/{{project}}/zones/{{zone}}/disks/{{disk}}") | ||
if err != nil { | ||
return err | ||
} | ||
|
||
project, err := getProject(d, config) | ||
if err != nil { | ||
return err | ||
} | ||
res, err := sendRequest(config, "GET", project, url, nil) | ||
if err != nil { | ||
return handleNotFoundError(err, d, fmt.Sprintf("ComputeDiskResourcePolicyAttachment %q", d.Id())) | ||
} | ||
|
||
res, err = flattenNestedComputeDiskResourcePolicyAttachment(d, meta, res) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
if res == nil { | ||
// Object isn't there any more - remove it from the state. | ||
log.Printf("[DEBUG] Removing ComputeDiskResourcePolicyAttachment because it couldn't be matched.") | ||
d.SetId("") | ||
return nil | ||
} | ||
|
||
res, err = resourceComputeDiskResourcePolicyAttachmentDecoder(d, meta, res) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
if res == nil { | ||
// Decoding the object has resulted in it being gone. It may be marked deleted | ||
log.Printf("[DEBUG] Removing ComputeDiskResourcePolicyAttachment because it no longer exists.") | ||
d.SetId("") | ||
return nil | ||
} | ||
|
||
if err := d.Set("project", project); err != nil { | ||
return fmt.Errorf("Error reading DiskResourcePolicyAttachment: %s", err) | ||
} | ||
|
||
if err := d.Set("name", flattenComputeDiskResourcePolicyAttachmentName(res["name"], d)); err != nil { | ||
return fmt.Errorf("Error reading DiskResourcePolicyAttachment: %s", err) | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func resourceComputeDiskResourcePolicyAttachmentDelete(d *schema.ResourceData, meta interface{}) error { | ||
config := meta.(*Config) | ||
|
||
project, err := getProject(d, config) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
url, err := replaceVars(d, config, "{{ComputeBasePath}}projects/{{project}}/zones/{{zone}}/disks/{{disk}}/removeResourcePolicies") | ||
if err != nil { | ||
return err | ||
} | ||
|
||
var obj map[string]interface{} | ||
obj = make(map[string]interface{}) | ||
|
||
// projects/{project}/regions/{region}/resourcePolicies/{resourceId} | ||
zone := d.Get("zone").(string) | ||
region := zone[:len(zone)-2] | ||
|
||
name, err := expandComputeDiskResourcePolicyAttachmentName(d.Get("name"), d, config) | ||
if err != nil { | ||
return err | ||
} else if v, ok := d.GetOkExists("name"); !isEmptyValue(reflect.ValueOf(name)) && (ok || !reflect.DeepEqual(v, name)) { | ||
obj["resourcePolicies"] = []interface{}{fmt.Sprintf("projects/%s/regions/%s/resourcePolicies/%s", project, region, name)} | ||
} | ||
log.Printf("[DEBUG] Deleting DiskResourcePolicyAttachment %q", d.Id()) | ||
|
||
res, err := sendRequestWithTimeout(config, "POST", project, url, obj, d.Timeout(schema.TimeoutDelete)) | ||
if err != nil { | ||
return handleNotFoundError(err, d, "DiskResourcePolicyAttachment") | ||
} | ||
|
||
op := &compute.Operation{} | ||
err = Convert(res, op) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
err = computeOperationWaitTime( | ||
config.clientCompute, op, project, "Deleting DiskResourcePolicyAttachment", | ||
int(d.Timeout(schema.TimeoutDelete).Minutes())) | ||
|
||
if err != nil { | ||
return err | ||
} | ||
|
||
log.Printf("[DEBUG] Finished deleting DiskResourcePolicyAttachment %q: %#v", d.Id(), res) | ||
return nil | ||
} | ||
|
||
func resourceComputeDiskResourcePolicyAttachmentImport(d *schema.ResourceData, meta interface{}) ([]*schema.ResourceData, error) { | ||
config := meta.(*Config) | ||
if err := parseImportId([]string{ | ||
"projects/(?P<project>[^/]+)/zones/(?P<zone>[^/]+)/disks/(?P<name>[^/]+)", | ||
"(?P<project>[^/]+)/(?P<zone>[^/]+)/(?P<name>[^/]+)", | ||
"(?P<zone>[^/]+)/(?P<name>[^/]+)", | ||
"(?P<name>[^/]+)", | ||
}, d, config); err != nil { | ||
return nil, err | ||
} | ||
|
||
// Replace import id for the resource id | ||
id, err := replaceVars(d, config, "{{project}}/{{zone}}/{{disk}}/{{name}}") | ||
if err != nil { | ||
return nil, fmt.Errorf("Error constructing id: %s", err) | ||
} | ||
d.SetId(id) | ||
|
||
return []*schema.ResourceData{d}, nil | ||
} | ||
|
||
func flattenComputeDiskResourcePolicyAttachmentName(v interface{}, d *schema.ResourceData) interface{} { | ||
return v | ||
} | ||
|
||
func expandComputeDiskResourcePolicyAttachmentName(v interface{}, d TerraformResourceData, config *Config) (interface{}, error) { | ||
return v, nil | ||
} | ||
|
||
func resourceComputeDiskResourcePolicyAttachmentEncoder(d *schema.ResourceData, meta interface{}, obj map[string]interface{}) (map[string]interface{}, error) { | ||
config := meta.(*Config) | ||
project, err := getProject(d, config) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
zone := d.Get("zone").(string) | ||
region := zone[:len(zone)-2] | ||
|
||
obj["resourcePolicies"] = []interface{}{fmt.Sprintf("projects/%s/regions/%s/resourcePolicies/%s", project, region, obj["name"])} | ||
delete(obj, "name") | ||
return obj, nil | ||
} | ||
|
||
func flattenNestedComputeDiskResourcePolicyAttachment(d *schema.ResourceData, meta interface{}, res map[string]interface{}) (map[string]interface{}, error) { | ||
var v interface{} | ||
var ok bool | ||
|
||
v, ok = res["resourcePolicies"] | ||
if !ok || v == nil { | ||
return nil, nil | ||
} | ||
|
||
switch v.(type) { | ||
case []interface{}: | ||
break | ||
case map[string]interface{}: | ||
// Construct list out of single nested resource | ||
v = []interface{}{v} | ||
default: | ||
return nil, fmt.Errorf("expected list or map for value resourcePolicies. Actual value: %v", v) | ||
} | ||
|
||
expectedName, err := expandComputeDiskResourcePolicyAttachmentName(d.Get("name"), d, meta.(*Config)) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
// Search list for this resource. | ||
items := v.([]interface{}) | ||
for _, itemRaw := range items { | ||
if itemRaw == nil { | ||
continue | ||
} | ||
// List response only contains the ID - construct a response object. | ||
item := map[string]interface{}{ | ||
"name": itemRaw, | ||
} | ||
|
||
// Decode list item before comparing. | ||
item, err := resourceComputeDiskResourcePolicyAttachmentDecoder(d, meta, item) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
itemName := flattenComputeDiskResourcePolicyAttachmentName(item["name"], d) | ||
if !reflect.DeepEqual(itemName, expectedName) { | ||
log.Printf("[DEBUG] Skipping item with name= %#v, looking for %#v)", itemName, expectedName) | ||
continue | ||
} | ||
log.Printf("[DEBUG] Found item for resource %q: %#v)", d.Id(), item) | ||
return item, nil | ||
} | ||
|
||
return nil, nil | ||
} | ||
|
||
func resourceComputeDiskResourcePolicyAttachmentDecoder(d *schema.ResourceData, meta interface{}, res map[string]interface{}) (map[string]interface{}, error) { | ||
config := meta.(*Config) | ||
project, err := getProject(d, config) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
zone := d.Get("zone").(string) | ||
region := zone[:len(zone)-2] | ||
|
||
name := d.Get("name") | ||
|
||
if v, ok := res["name"]; ok { | ||
selfLink := fmt.Sprintf("https://www.googleapis.com/compute/v1/projects/%s/regions/%s/resourcePolicies/%s", project, region, name) | ||
if selfLink == v { | ||
res["name"] = name | ||
} | ||
} | ||
|
||
return res, nil | ||
} |
Oops, something went wrong.