| Index: generated/googleapis_beta/test/clouduseraccounts/beta_test.dart
|
| diff --git a/generated/googleapis_beta/test/clouduseraccounts/beta_test.dart b/generated/googleapis_beta/test/clouduseraccounts/beta_test.dart
|
| index 85d8f7f6a0662123ebacb04bb3a6746268d893a3..89bc92d446d3cb46691333c4797a83c39b59767d 100644
|
| --- a/generated/googleapis_beta/test/clouduseraccounts/beta_test.dart
|
| +++ b/generated/googleapis_beta/test/clouduseraccounts/beta_test.dart
|
| @@ -51,14 +51,14 @@ http.StreamedResponse stringResponse(
|
| return new http.StreamedResponse(stream, status, headers: headers);
|
| }
|
|
|
| -buildUnnamed3264() {
|
| +buildUnnamed3356() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3264(core.List<core.String> o) {
|
| +checkUnnamed3356(core.List<core.String> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| unittest.expect(o[0], unittest.equals('foo'));
|
| unittest.expect(o[1], unittest.equals('foo'));
|
| @@ -69,7 +69,7 @@ buildAuthorizedKeysView() {
|
| var o = new api.AuthorizedKeysView();
|
| buildCounterAuthorizedKeysView++;
|
| if (buildCounterAuthorizedKeysView < 3) {
|
| - o.keys = buildUnnamed3264();
|
| + o.keys = buildUnnamed3356();
|
| o.sudoer = true;
|
| }
|
| buildCounterAuthorizedKeysView--;
|
| @@ -79,20 +79,20 @@ buildAuthorizedKeysView() {
|
| checkAuthorizedKeysView(api.AuthorizedKeysView o) {
|
| buildCounterAuthorizedKeysView++;
|
| if (buildCounterAuthorizedKeysView < 3) {
|
| - checkUnnamed3264(o.keys);
|
| + checkUnnamed3356(o.keys);
|
| unittest.expect(o.sudoer, unittest.isTrue);
|
| }
|
| buildCounterAuthorizedKeysView--;
|
| }
|
|
|
| -buildUnnamed3265() {
|
| +buildUnnamed3357() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3265(core.List<core.String> o) {
|
| +checkUnnamed3357(core.List<core.String> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| unittest.expect(o[0], unittest.equals('foo'));
|
| unittest.expect(o[1], unittest.equals('foo'));
|
| @@ -107,7 +107,7 @@ buildGroup() {
|
| o.description = "foo";
|
| o.id = "foo";
|
| o.kind = "foo";
|
| - o.members = buildUnnamed3265();
|
| + o.members = buildUnnamed3357();
|
| o.name = "foo";
|
| o.selfLink = "foo";
|
| }
|
| @@ -122,21 +122,21 @@ checkGroup(api.Group o) {
|
| unittest.expect(o.description, unittest.equals('foo'));
|
| unittest.expect(o.id, unittest.equals('foo'));
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| - checkUnnamed3265(o.members);
|
| + checkUnnamed3357(o.members);
|
| unittest.expect(o.name, unittest.equals('foo'));
|
| unittest.expect(o.selfLink, unittest.equals('foo'));
|
| }
|
| buildCounterGroup--;
|
| }
|
|
|
| -buildUnnamed3266() {
|
| +buildUnnamed3358() {
|
| var o = new core.List<api.Group>();
|
| o.add(buildGroup());
|
| o.add(buildGroup());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3266(core.List<api.Group> o) {
|
| +checkUnnamed3358(core.List<api.Group> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkGroup(o[0]);
|
| checkGroup(o[1]);
|
| @@ -148,7 +148,7 @@ buildGroupList() {
|
| buildCounterGroupList++;
|
| if (buildCounterGroupList < 3) {
|
| o.id = "foo";
|
| - o.items = buildUnnamed3266();
|
| + o.items = buildUnnamed3358();
|
| o.kind = "foo";
|
| o.nextPageToken = "foo";
|
| o.selfLink = "foo";
|
| @@ -161,7 +161,7 @@ checkGroupList(api.GroupList o) {
|
| buildCounterGroupList++;
|
| if (buildCounterGroupList < 3) {
|
| unittest.expect(o.id, unittest.equals('foo'));
|
| - checkUnnamed3266(o.items);
|
| + checkUnnamed3358(o.items);
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| unittest.expect(o.nextPageToken, unittest.equals('foo'));
|
| unittest.expect(o.selfLink, unittest.equals('foo'));
|
| @@ -169,14 +169,14 @@ checkGroupList(api.GroupList o) {
|
| buildCounterGroupList--;
|
| }
|
|
|
| -buildUnnamed3267() {
|
| +buildUnnamed3359() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3267(core.List<core.String> o) {
|
| +checkUnnamed3359(core.List<core.String> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| unittest.expect(o[0], unittest.equals('foo'));
|
| unittest.expect(o[1], unittest.equals('foo'));
|
| @@ -187,7 +187,7 @@ buildGroupsAddMemberRequest() {
|
| var o = new api.GroupsAddMemberRequest();
|
| buildCounterGroupsAddMemberRequest++;
|
| if (buildCounterGroupsAddMemberRequest < 3) {
|
| - o.users = buildUnnamed3267();
|
| + o.users = buildUnnamed3359();
|
| }
|
| buildCounterGroupsAddMemberRequest--;
|
| return o;
|
| @@ -196,19 +196,19 @@ buildGroupsAddMemberRequest() {
|
| checkGroupsAddMemberRequest(api.GroupsAddMemberRequest o) {
|
| buildCounterGroupsAddMemberRequest++;
|
| if (buildCounterGroupsAddMemberRequest < 3) {
|
| - checkUnnamed3267(o.users);
|
| + checkUnnamed3359(o.users);
|
| }
|
| buildCounterGroupsAddMemberRequest--;
|
| }
|
|
|
| -buildUnnamed3268() {
|
| +buildUnnamed3360() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3268(core.List<core.String> o) {
|
| +checkUnnamed3360(core.List<core.String> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| unittest.expect(o[0], unittest.equals('foo'));
|
| unittest.expect(o[1], unittest.equals('foo'));
|
| @@ -219,7 +219,7 @@ buildGroupsRemoveMemberRequest() {
|
| var o = new api.GroupsRemoveMemberRequest();
|
| buildCounterGroupsRemoveMemberRequest++;
|
| if (buildCounterGroupsRemoveMemberRequest < 3) {
|
| - o.users = buildUnnamed3268();
|
| + o.users = buildUnnamed3360();
|
| }
|
| buildCounterGroupsRemoveMemberRequest--;
|
| return o;
|
| @@ -228,32 +228,32 @@ buildGroupsRemoveMemberRequest() {
|
| checkGroupsRemoveMemberRequest(api.GroupsRemoveMemberRequest o) {
|
| buildCounterGroupsRemoveMemberRequest++;
|
| if (buildCounterGroupsRemoveMemberRequest < 3) {
|
| - checkUnnamed3268(o.users);
|
| + checkUnnamed3360(o.users);
|
| }
|
| buildCounterGroupsRemoveMemberRequest--;
|
| }
|
|
|
| -buildUnnamed3269() {
|
| +buildUnnamed3361() {
|
| var o = new core.List<api.LinuxGroupView>();
|
| o.add(buildLinuxGroupView());
|
| o.add(buildLinuxGroupView());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3269(core.List<api.LinuxGroupView> o) {
|
| +checkUnnamed3361(core.List<api.LinuxGroupView> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkLinuxGroupView(o[0]);
|
| checkLinuxGroupView(o[1]);
|
| }
|
|
|
| -buildUnnamed3270() {
|
| +buildUnnamed3362() {
|
| var o = new core.List<api.LinuxUserView>();
|
| o.add(buildLinuxUserView());
|
| o.add(buildLinuxUserView());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3270(core.List<api.LinuxUserView> o) {
|
| +checkUnnamed3362(core.List<api.LinuxUserView> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkLinuxUserView(o[0]);
|
| checkLinuxUserView(o[1]);
|
| @@ -264,9 +264,9 @@ buildLinuxAccountViews() {
|
| var o = new api.LinuxAccountViews();
|
| buildCounterLinuxAccountViews++;
|
| if (buildCounterLinuxAccountViews < 3) {
|
| - o.groupViews = buildUnnamed3269();
|
| + o.groupViews = buildUnnamed3361();
|
| o.kind = "foo";
|
| - o.userViews = buildUnnamed3270();
|
| + o.userViews = buildUnnamed3362();
|
| }
|
| buildCounterLinuxAccountViews--;
|
| return o;
|
| @@ -275,9 +275,9 @@ buildLinuxAccountViews() {
|
| checkLinuxAccountViews(api.LinuxAccountViews o) {
|
| buildCounterLinuxAccountViews++;
|
| if (buildCounterLinuxAccountViews < 3) {
|
| - checkUnnamed3269(o.groupViews);
|
| + checkUnnamed3361(o.groupViews);
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| - checkUnnamed3270(o.userViews);
|
| + checkUnnamed3362(o.userViews);
|
| }
|
| buildCounterLinuxAccountViews--;
|
| }
|
| @@ -320,14 +320,14 @@ checkLinuxGetLinuxAccountViewsResponse(api.LinuxGetLinuxAccountViewsResponse o)
|
| buildCounterLinuxGetLinuxAccountViewsResponse--;
|
| }
|
|
|
| -buildUnnamed3271() {
|
| +buildUnnamed3363() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3271(core.List<core.String> o) {
|
| +checkUnnamed3363(core.List<core.String> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| unittest.expect(o[0], unittest.equals('foo'));
|
| unittest.expect(o[1], unittest.equals('foo'));
|
| @@ -340,7 +340,7 @@ buildLinuxGroupView() {
|
| if (buildCounterLinuxGroupView < 3) {
|
| o.gid = 42;
|
| o.groupName = "foo";
|
| - o.members = buildUnnamed3271();
|
| + o.members = buildUnnamed3363();
|
| }
|
| buildCounterLinuxGroupView--;
|
| return o;
|
| @@ -351,7 +351,7 @@ checkLinuxGroupView(api.LinuxGroupView o) {
|
| if (buildCounterLinuxGroupView < 3) {
|
| unittest.expect(o.gid, unittest.equals(42));
|
| unittest.expect(o.groupName, unittest.equals('foo'));
|
| - checkUnnamed3271(o.members);
|
| + checkUnnamed3363(o.members);
|
| }
|
| buildCounterLinuxGroupView--;
|
| }
|
| @@ -408,14 +408,14 @@ checkOperationErrorErrors(api.OperationErrorErrors o) {
|
| buildCounterOperationErrorErrors--;
|
| }
|
|
|
| -buildUnnamed3272() {
|
| +buildUnnamed3364() {
|
| var o = new core.List<api.OperationErrorErrors>();
|
| o.add(buildOperationErrorErrors());
|
| o.add(buildOperationErrorErrors());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3272(core.List<api.OperationErrorErrors> o) {
|
| +checkUnnamed3364(core.List<api.OperationErrorErrors> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkOperationErrorErrors(o[0]);
|
| checkOperationErrorErrors(o[1]);
|
| @@ -426,7 +426,7 @@ buildOperationError() {
|
| var o = new api.OperationError();
|
| buildCounterOperationError++;
|
| if (buildCounterOperationError < 3) {
|
| - o.errors = buildUnnamed3272();
|
| + o.errors = buildUnnamed3364();
|
| }
|
| buildCounterOperationError--;
|
| return o;
|
| @@ -435,7 +435,7 @@ buildOperationError() {
|
| checkOperationError(api.OperationError o) {
|
| buildCounterOperationError++;
|
| if (buildCounterOperationError < 3) {
|
| - checkUnnamed3272(o.errors);
|
| + checkUnnamed3364(o.errors);
|
| }
|
| buildCounterOperationError--;
|
| }
|
| @@ -461,14 +461,14 @@ checkOperationWarningsData(api.OperationWarningsData o) {
|
| buildCounterOperationWarningsData--;
|
| }
|
|
|
| -buildUnnamed3273() {
|
| +buildUnnamed3365() {
|
| var o = new core.List<api.OperationWarningsData>();
|
| o.add(buildOperationWarningsData());
|
| o.add(buildOperationWarningsData());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3273(core.List<api.OperationWarningsData> o) {
|
| +checkUnnamed3365(core.List<api.OperationWarningsData> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkOperationWarningsData(o[0]);
|
| checkOperationWarningsData(o[1]);
|
| @@ -480,7 +480,7 @@ buildOperationWarnings() {
|
| buildCounterOperationWarnings++;
|
| if (buildCounterOperationWarnings < 3) {
|
| o.code = "foo";
|
| - o.data = buildUnnamed3273();
|
| + o.data = buildUnnamed3365();
|
| o.message = "foo";
|
| }
|
| buildCounterOperationWarnings--;
|
| @@ -491,20 +491,20 @@ checkOperationWarnings(api.OperationWarnings o) {
|
| buildCounterOperationWarnings++;
|
| if (buildCounterOperationWarnings < 3) {
|
| unittest.expect(o.code, unittest.equals('foo'));
|
| - checkUnnamed3273(o.data);
|
| + checkUnnamed3365(o.data);
|
| unittest.expect(o.message, unittest.equals('foo'));
|
| }
|
| buildCounterOperationWarnings--;
|
| }
|
|
|
| -buildUnnamed3274() {
|
| +buildUnnamed3366() {
|
| var o = new core.List<api.OperationWarnings>();
|
| o.add(buildOperationWarnings());
|
| o.add(buildOperationWarnings());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3274(core.List<api.OperationWarnings> o) {
|
| +checkUnnamed3366(core.List<api.OperationWarnings> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkOperationWarnings(o[0]);
|
| checkOperationWarnings(o[1]);
|
| @@ -536,7 +536,7 @@ buildOperation() {
|
| o.targetId = "foo";
|
| o.targetLink = "foo";
|
| o.user = "foo";
|
| - o.warnings = buildUnnamed3274();
|
| + o.warnings = buildUnnamed3366();
|
| o.zone = "foo";
|
| }
|
| buildCounterOperation--;
|
| @@ -567,20 +567,20 @@ checkOperation(api.Operation o) {
|
| unittest.expect(o.targetId, unittest.equals('foo'));
|
| unittest.expect(o.targetLink, unittest.equals('foo'));
|
| unittest.expect(o.user, unittest.equals('foo'));
|
| - checkUnnamed3274(o.warnings);
|
| + checkUnnamed3366(o.warnings);
|
| unittest.expect(o.zone, unittest.equals('foo'));
|
| }
|
| buildCounterOperation--;
|
| }
|
|
|
| -buildUnnamed3275() {
|
| +buildUnnamed3367() {
|
| var o = new core.List<api.Operation>();
|
| o.add(buildOperation());
|
| o.add(buildOperation());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3275(core.List<api.Operation> o) {
|
| +checkUnnamed3367(core.List<api.Operation> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkOperation(o[0]);
|
| checkOperation(o[1]);
|
| @@ -592,7 +592,7 @@ buildOperationList() {
|
| buildCounterOperationList++;
|
| if (buildCounterOperationList < 3) {
|
| o.id = "foo";
|
| - o.items = buildUnnamed3275();
|
| + o.items = buildUnnamed3367();
|
| o.kind = "foo";
|
| o.nextPageToken = "foo";
|
| o.selfLink = "foo";
|
| @@ -605,7 +605,7 @@ checkOperationList(api.OperationList o) {
|
| buildCounterOperationList++;
|
| if (buildCounterOperationList < 3) {
|
| unittest.expect(o.id, unittest.equals('foo'));
|
| - checkUnnamed3275(o.items);
|
| + checkUnnamed3367(o.items);
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| unittest.expect(o.nextPageToken, unittest.equals('foo'));
|
| unittest.expect(o.selfLink, unittest.equals('foo'));
|
| @@ -640,27 +640,27 @@ checkPublicKey(api.PublicKey o) {
|
| buildCounterPublicKey--;
|
| }
|
|
|
| -buildUnnamed3276() {
|
| +buildUnnamed3368() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3276(core.List<core.String> o) {
|
| +checkUnnamed3368(core.List<core.String> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| unittest.expect(o[0], unittest.equals('foo'));
|
| unittest.expect(o[1], unittest.equals('foo'));
|
| }
|
|
|
| -buildUnnamed3277() {
|
| +buildUnnamed3369() {
|
| var o = new core.List<api.PublicKey>();
|
| o.add(buildPublicKey());
|
| o.add(buildPublicKey());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3277(core.List<api.PublicKey> o) {
|
| +checkUnnamed3369(core.List<api.PublicKey> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkPublicKey(o[0]);
|
| checkPublicKey(o[1]);
|
| @@ -673,12 +673,12 @@ buildUser() {
|
| if (buildCounterUser < 3) {
|
| o.creationTimestamp = "foo";
|
| o.description = "foo";
|
| - o.groups = buildUnnamed3276();
|
| + o.groups = buildUnnamed3368();
|
| o.id = "foo";
|
| o.kind = "foo";
|
| o.name = "foo";
|
| o.owner = "foo";
|
| - o.publicKeys = buildUnnamed3277();
|
| + o.publicKeys = buildUnnamed3369();
|
| o.selfLink = "foo";
|
| }
|
| buildCounterUser--;
|
| @@ -690,25 +690,25 @@ checkUser(api.User o) {
|
| if (buildCounterUser < 3) {
|
| unittest.expect(o.creationTimestamp, unittest.equals('foo'));
|
| unittest.expect(o.description, unittest.equals('foo'));
|
| - checkUnnamed3276(o.groups);
|
| + checkUnnamed3368(o.groups);
|
| unittest.expect(o.id, unittest.equals('foo'));
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| unittest.expect(o.name, unittest.equals('foo'));
|
| unittest.expect(o.owner, unittest.equals('foo'));
|
| - checkUnnamed3277(o.publicKeys);
|
| + checkUnnamed3369(o.publicKeys);
|
| unittest.expect(o.selfLink, unittest.equals('foo'));
|
| }
|
| buildCounterUser--;
|
| }
|
|
|
| -buildUnnamed3278() {
|
| +buildUnnamed3370() {
|
| var o = new core.List<api.User>();
|
| o.add(buildUser());
|
| o.add(buildUser());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3278(core.List<api.User> o) {
|
| +checkUnnamed3370(core.List<api.User> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkUser(o[0]);
|
| checkUser(o[1]);
|
| @@ -720,7 +720,7 @@ buildUserList() {
|
| buildCounterUserList++;
|
| if (buildCounterUserList < 3) {
|
| o.id = "foo";
|
| - o.items = buildUnnamed3278();
|
| + o.items = buildUnnamed3370();
|
| o.kind = "foo";
|
| o.nextPageToken = "foo";
|
| o.selfLink = "foo";
|
| @@ -733,7 +733,7 @@ checkUserList(api.UserList o) {
|
| buildCounterUserList++;
|
| if (buildCounterUserList < 3) {
|
| unittest.expect(o.id, unittest.equals('foo'));
|
| - checkUnnamed3278(o.items);
|
| + checkUnnamed3370(o.items);
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| unittest.expect(o.nextPageToken, unittest.equals('foo'));
|
| unittest.expect(o.selfLink, unittest.equals('foo'));
|
|
|