Skip to content
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
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<% autogen_exception -%>
package google

import (
Expand Down Expand Up @@ -251,6 +252,9 @@ func resourceComputeInstanceGroupManager() *schema.Resource {
Optional: true,
ValidateFunc: validation.IntBetween(0, 3600),
Description: `Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600].`,
<% if version == "ga" -%>
Deprecated: `This attribute is currently in beta and will be removed from the google provider. Please use the google-beta provider to continue using this attribute.`,
<% end -%>
},
"replacement_method": {
Type: schema.TypeString,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<% autogen_exception -%>
package google

import (
Expand Down Expand Up @@ -219,6 +220,9 @@ func resourceComputeRegionInstanceGroupManager() *schema.Resource {
ForceNew: true,
Computed: true,
Description: `The shape to which the group converges either proactively or on resize events (depending on the value set in updatePolicy.instanceRedistributionType).`,
<% if version == "ga" -%>
Deprecated: `This attribute is currently in beta and will be removed from the google provider. Please use the google-beta provider to continue using this attribute.`,
<% end -%>
},

"update_policy": {
Expand Down Expand Up @@ -280,6 +284,9 @@ func resourceComputeRegionInstanceGroupManager() *schema.Resource {
Optional: true,
ValidateFunc: validation.IntBetween(0, 3600),
Description: `Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600].`,
<% if version == "ga" -%>
Deprecated: `This attribute is currently in beta and will be removed from the google provider. Please use the google-beta provider to continue using this attribute.`,
<% end -%>
},
"instance_redistribution_type": {
Type: schema.TypeString,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -825,6 +825,9 @@ func resourceContainerCluster() *schema.Resource {
Optional: true,
MaxItems: 1,
Description: `Configuration for the PodSecurityPolicy feature.`,
<% if version == "ga" -%>
Deprecated: `This attribute is currently in beta and will be removed from the google provider. Please use the google-beta provider to continue using this attribute.`,
<% end -%>
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"enabled": {
Expand Down