Skip to content

Commit c7a835f

Browse files
modular-magicianEdward Sun
and
Edward Sun
authored
increase max_sizes for EdgeCacheService (#8333) (#15168)
Signed-off-by: Modular Magician <[email protected]> Co-authored-by: Edward Sun <[email protected]>
1 parent e6a708c commit c7a835f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.changelog/8333.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:enhancement
2+
networkservices: increased max_size to 20 for both `included_query_parameters` and `excluded_query_parameters` on `google_network_services_edge_cache_service`
3+
```

google/services/networkservices/resource_network_services_edge_cache_service.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ included.`,
496496
Description: `Names of query string parameters to exclude from cache keys. All other parameters will be included.
497497
498498
Either specify includedQueryParameters or excludedQueryParameters, not both. '&' and '=' will be percent encoded and not treated as delimiters.`,
499-
MaxItems: 10,
499+
MaxItems: 20,
500500
Elem: &schema.Schema{
501501
Type: schema.TypeString,
502502
},
@@ -546,7 +546,7 @@ Note that specifying several headers, and/or headers that have a large range of
546546
Description: `Names of query string parameters to include in cache keys. All other parameters will be excluded.
547547
548548
Either specify includedQueryParameters or excludedQueryParameters, not both. '&' and '=' will be percent encoded and not treated as delimiters.`,
549-
MaxItems: 10,
549+
MaxItems: 20,
550550
Elem: &schema.Schema{
551551
Type: schema.TypeString,
552552
},

0 commit comments

Comments
 (0)