You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: `The parent of the quota preference. Allowed parents are "projects/[project-id / number]" or "folders/[folder-id / number]" or "organizations/[org-id / number]".`,
59
+
Type: schema.TypeString,
60
+
Computed: true,
61
+
Optional: true,
62
+
ForceNew: true,
63
+
Description: `The parent of the quota preference. Allowed parent format is "projects/[project-id / number]".`,
65
64
},
66
65
"effective_container": {
67
66
Type: schema.TypeString,
68
67
Computed: true,
69
-
Description: `Fields to capture the hierarchy enablement.
70
-
The container (org/folder/project) that determines if the quota adjuster is set for this project/folder/org. We use the nearest-ancestor to determine the effective container.
71
-
The nearest ancestor (including this container) with 'enabled' set (either true or false) will be returned.`,
68
+
Description: `The resource container that determines if the quota adjuster is set for this project.
69
+
Expect this field to be empty currently.`,
72
70
},
73
71
"effective_enablement": {
74
-
Type: schema.TypeString,
75
-
Computed: true,
76
-
Description: `Based on the effective container's setting above, determines Whether this container has the quota adjuster enabled.`,
72
+
Type: schema.TypeString,
73
+
Computed: true,
74
+
Description: `Based on the effective container's setting above, determines Whether this resource container has the quota adjuster enabled.
QuotaAdjusterSettings represents the preferred quota configuration specified for a project, folder or organization.
17
+
QuotaAdjusterSettings resource represents your quota adjuster settings for a particular project.
18
18
---
19
19
20
20
# google_cloud_quotas_quota_adjuster_settings
21
21
22
-
QuotaAdjusterSettings represents the preferred quota configuration specified for a project, folder or organization. There is only one QuotaAdjusterSettings resource for a quota value targeting a unique set of dimensions.
22
+
QuotaAdjusterSettings resource represents your quota adjuster settings for a particular project. When enabled, the quota adjuster monitors your usage for the specified resources and issues quota adjustment requests when resource usage approaches its quota value.
23
23
24
24
~> **Warning:** This resource is in beta, and should be used with the terraform-provider-google-beta provider.
25
25
See [Provider Versions](https://terraform.io/docs/providers/google/guides/provider_versions.html) for more details on beta resources.
@@ -53,7 +53,7 @@ The following arguments are supported:
53
53
54
54
*`parent` -
55
55
(Required)
56
-
The parent of the quota preference. Allowed parents are "projects/[project-id / number]" or "folders/[folder-id / number]" or "organizations/[org-id / number]".
56
+
The parent of the quota preference. Allowed parent format is "projects/[project-id / number]".
57
57
58
58
59
59
- - -
@@ -67,12 +67,12 @@ In addition to the arguments listed above, the following computed attributes are
67
67
*`id` - an identifier for the resource with format `{{parent}}/locations/global/quotaAdjusterSettings`
68
68
69
69
*`effective_container` -
70
-
Fields to capture the hierarchy enablement.
71
-
The container (org/folder/project) that determines if the quota adjuster is set for this project/folder/org. We use the nearest-ancestor to determine the effective container.
72
-
The nearest ancestor (including this container) with `enabled` set (either true or false) will be returned.
70
+
The resource container that determines if the quota adjuster is set for this project.
71
+
Expect this field to be empty currently.
73
72
74
73
*`effective_enablement` -
75
-
Based on the effective container`s setting above, determines Whether this container has the quota adjuster enabled.
74
+
Based on the effective container`s setting above, determines Whether this resource container has the quota adjuster enabled.
0 commit comments