Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

send empty value for [region]healthcheck description #4082

Merged
merged 1 commit into from
Oct 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions products/compute/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4146,6 +4146,7 @@ objects:
description: |
An optional description of this resource. Provide this property when
you create the resource.
send_empty_value: true
- !ruby/object:Api::Type::Integer
name: 'healthyThreshold'
description: |
Expand Down Expand Up @@ -11070,6 +11071,7 @@ objects:
description: |
An optional description of this resource. Provide this property when
you create the resource.
send_empty_value: true
- !ruby/object:Api::Type::Integer
name: 'healthyThreshold'
description: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ func testAccComputeHealthCheck_tcp_update(hckName string) string {
return fmt.Sprintf(`
resource "google_compute_health_check" "foobar" {
check_interval_sec = 3
description = "Resource updated for Terraform acceptance testing"
healthy_threshold = 10
name = "health-test-%s"
timeout_sec = 2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ func testAccComputeRegionHealthCheck_tcp_update(hckName string) string {
return fmt.Sprintf(`
resource "google_compute_region_health_check" "foobar" {
check_interval_sec = 3
description = "Resource updated for Terraform acceptance testing"
healthy_threshold = 10
name = "health-test-%s"
timeout_sec = 2
Expand Down