| Index: generated/googleapis/lib/serviceuser/v1.dart
|
| diff --git a/generated/googleapis/lib/serviceuser/v1.dart b/generated/googleapis/lib/serviceuser/v1.dart
|
| index d67f257e02e83e46c0574e54d680bcbb93960127..b5d00dce8c78567a03ebae2f8e1b924a6232c971 100644
|
| --- a/generated/googleapis/lib/serviceuser/v1.dart
|
| +++ b/generated/googleapis/lib/serviceuser/v1.dart
|
| @@ -4583,6 +4583,11 @@ class UsageRule {
|
| * Refer to selector for syntax details.
|
| */
|
| core.String selector;
|
| + /**
|
| + * True, if the method should skip service control. If so, no control plane
|
| + * feature (like quota and billing) will be enabled.
|
| + */
|
| + core.bool skipServiceControl;
|
|
|
| UsageRule();
|
|
|
| @@ -4593,6 +4598,9 @@ class UsageRule {
|
| if (_json.containsKey("selector")) {
|
| selector = _json["selector"];
|
| }
|
| + if (_json.containsKey("skipServiceControl")) {
|
| + skipServiceControl = _json["skipServiceControl"];
|
| + }
|
| }
|
|
|
| core.Map<core.String, core.Object> toJson() {
|
| @@ -4603,6 +4611,9 @@ class UsageRule {
|
| if (selector != null) {
|
| _json["selector"] = selector;
|
| }
|
| + if (skipServiceControl != null) {
|
| + _json["skipServiceControl"] = skipServiceControl;
|
| + }
|
| return _json;
|
| }
|
| }
|
|
|