| 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 f97b1d9dfdcf224ebeeb8c7d892c449b6f274336..ff831ab7a4264fecfa936eaf52dd40cd5b8231a4 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);
|
| }
|
|
|
| -buildUnnamed3559() {
|
| +buildUnnamed3270() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3559(core.List<core.String> o) {
|
| +checkUnnamed3270(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 = buildUnnamed3559();
|
| + o.keys = buildUnnamed3270();
|
| o.sudoer = true;
|
| }
|
| buildCounterAuthorizedKeysView--;
|
| @@ -79,20 +79,20 @@ buildAuthorizedKeysView() {
|
| checkAuthorizedKeysView(api.AuthorizedKeysView o) {
|
| buildCounterAuthorizedKeysView++;
|
| if (buildCounterAuthorizedKeysView < 3) {
|
| - checkUnnamed3559(o.keys);
|
| + checkUnnamed3270(o.keys);
|
| unittest.expect(o.sudoer, unittest.isTrue);
|
| }
|
| buildCounterAuthorizedKeysView--;
|
| }
|
|
|
| -buildUnnamed3560() {
|
| +buildUnnamed3271() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3560(core.List<core.String> o) {
|
| +checkUnnamed3271(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 = buildUnnamed3560();
|
| + o.members = buildUnnamed3271();
|
| 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'));
|
| - checkUnnamed3560(o.members);
|
| + checkUnnamed3271(o.members);
|
| unittest.expect(o.name, unittest.equals('foo'));
|
| unittest.expect(o.selfLink, unittest.equals('foo'));
|
| }
|
| buildCounterGroup--;
|
| }
|
|
|
| -buildUnnamed3561() {
|
| +buildUnnamed3272() {
|
| var o = new core.List<api.Group>();
|
| o.add(buildGroup());
|
| o.add(buildGroup());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3561(core.List<api.Group> o) {
|
| +checkUnnamed3272(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 = buildUnnamed3561();
|
| + o.items = buildUnnamed3272();
|
| 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'));
|
| - checkUnnamed3561(o.items);
|
| + checkUnnamed3272(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--;
|
| }
|
|
|
| -buildUnnamed3562() {
|
| +buildUnnamed3273() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3562(core.List<core.String> o) {
|
| +checkUnnamed3273(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 = buildUnnamed3562();
|
| + o.users = buildUnnamed3273();
|
| }
|
| buildCounterGroupsAddMemberRequest--;
|
| return o;
|
| @@ -196,19 +196,19 @@ buildGroupsAddMemberRequest() {
|
| checkGroupsAddMemberRequest(api.GroupsAddMemberRequest o) {
|
| buildCounterGroupsAddMemberRequest++;
|
| if (buildCounterGroupsAddMemberRequest < 3) {
|
| - checkUnnamed3562(o.users);
|
| + checkUnnamed3273(o.users);
|
| }
|
| buildCounterGroupsAddMemberRequest--;
|
| }
|
|
|
| -buildUnnamed3563() {
|
| +buildUnnamed3274() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3563(core.List<core.String> o) {
|
| +checkUnnamed3274(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 = buildUnnamed3563();
|
| + o.users = buildUnnamed3274();
|
| }
|
| buildCounterGroupsRemoveMemberRequest--;
|
| return o;
|
| @@ -228,32 +228,32 @@ buildGroupsRemoveMemberRequest() {
|
| checkGroupsRemoveMemberRequest(api.GroupsRemoveMemberRequest o) {
|
| buildCounterGroupsRemoveMemberRequest++;
|
| if (buildCounterGroupsRemoveMemberRequest < 3) {
|
| - checkUnnamed3563(o.users);
|
| + checkUnnamed3274(o.users);
|
| }
|
| buildCounterGroupsRemoveMemberRequest--;
|
| }
|
|
|
| -buildUnnamed3564() {
|
| +buildUnnamed3275() {
|
| var o = new core.List<api.LinuxGroupView>();
|
| o.add(buildLinuxGroupView());
|
| o.add(buildLinuxGroupView());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3564(core.List<api.LinuxGroupView> o) {
|
| +checkUnnamed3275(core.List<api.LinuxGroupView> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkLinuxGroupView(o[0]);
|
| checkLinuxGroupView(o[1]);
|
| }
|
|
|
| -buildUnnamed3565() {
|
| +buildUnnamed3276() {
|
| var o = new core.List<api.LinuxUserView>();
|
| o.add(buildLinuxUserView());
|
| o.add(buildLinuxUserView());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3565(core.List<api.LinuxUserView> o) {
|
| +checkUnnamed3276(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 = buildUnnamed3564();
|
| + o.groupViews = buildUnnamed3275();
|
| o.kind = "foo";
|
| - o.userViews = buildUnnamed3565();
|
| + o.userViews = buildUnnamed3276();
|
| }
|
| buildCounterLinuxAccountViews--;
|
| return o;
|
| @@ -275,9 +275,9 @@ buildLinuxAccountViews() {
|
| checkLinuxAccountViews(api.LinuxAccountViews o) {
|
| buildCounterLinuxAccountViews++;
|
| if (buildCounterLinuxAccountViews < 3) {
|
| - checkUnnamed3564(o.groupViews);
|
| + checkUnnamed3275(o.groupViews);
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| - checkUnnamed3565(o.userViews);
|
| + checkUnnamed3276(o.userViews);
|
| }
|
| buildCounterLinuxAccountViews--;
|
| }
|
| @@ -320,14 +320,14 @@ checkLinuxGetLinuxAccountViewsResponse(api.LinuxGetLinuxAccountViewsResponse o)
|
| buildCounterLinuxGetLinuxAccountViewsResponse--;
|
| }
|
|
|
| -buildUnnamed3566() {
|
| +buildUnnamed3277() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3566(core.List<core.String> o) {
|
| +checkUnnamed3277(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 = buildUnnamed3566();
|
| + o.members = buildUnnamed3277();
|
| }
|
| 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'));
|
| - checkUnnamed3566(o.members);
|
| + checkUnnamed3277(o.members);
|
| }
|
| buildCounterLinuxGroupView--;
|
| }
|
| @@ -408,14 +408,14 @@ checkOperationErrorErrors(api.OperationErrorErrors o) {
|
| buildCounterOperationErrorErrors--;
|
| }
|
|
|
| -buildUnnamed3567() {
|
| +buildUnnamed3278() {
|
| var o = new core.List<api.OperationErrorErrors>();
|
| o.add(buildOperationErrorErrors());
|
| o.add(buildOperationErrorErrors());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3567(core.List<api.OperationErrorErrors> o) {
|
| +checkUnnamed3278(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 = buildUnnamed3567();
|
| + o.errors = buildUnnamed3278();
|
| }
|
| buildCounterOperationError--;
|
| return o;
|
| @@ -435,7 +435,7 @@ buildOperationError() {
|
| checkOperationError(api.OperationError o) {
|
| buildCounterOperationError++;
|
| if (buildCounterOperationError < 3) {
|
| - checkUnnamed3567(o.errors);
|
| + checkUnnamed3278(o.errors);
|
| }
|
| buildCounterOperationError--;
|
| }
|
| @@ -461,14 +461,14 @@ checkOperationWarningsData(api.OperationWarningsData o) {
|
| buildCounterOperationWarningsData--;
|
| }
|
|
|
| -buildUnnamed3568() {
|
| +buildUnnamed3279() {
|
| var o = new core.List<api.OperationWarningsData>();
|
| o.add(buildOperationWarningsData());
|
| o.add(buildOperationWarningsData());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3568(core.List<api.OperationWarningsData> o) {
|
| +checkUnnamed3279(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 = buildUnnamed3568();
|
| + o.data = buildUnnamed3279();
|
| o.message = "foo";
|
| }
|
| buildCounterOperationWarnings--;
|
| @@ -491,20 +491,20 @@ checkOperationWarnings(api.OperationWarnings o) {
|
| buildCounterOperationWarnings++;
|
| if (buildCounterOperationWarnings < 3) {
|
| unittest.expect(o.code, unittest.equals('foo'));
|
| - checkUnnamed3568(o.data);
|
| + checkUnnamed3279(o.data);
|
| unittest.expect(o.message, unittest.equals('foo'));
|
| }
|
| buildCounterOperationWarnings--;
|
| }
|
|
|
| -buildUnnamed3569() {
|
| +buildUnnamed3280() {
|
| var o = new core.List<api.OperationWarnings>();
|
| o.add(buildOperationWarnings());
|
| o.add(buildOperationWarnings());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3569(core.List<api.OperationWarnings> o) {
|
| +checkUnnamed3280(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 = buildUnnamed3569();
|
| + o.warnings = buildUnnamed3280();
|
| 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'));
|
| - checkUnnamed3569(o.warnings);
|
| + checkUnnamed3280(o.warnings);
|
| unittest.expect(o.zone, unittest.equals('foo'));
|
| }
|
| buildCounterOperation--;
|
| }
|
|
|
| -buildUnnamed3570() {
|
| +buildUnnamed3281() {
|
| var o = new core.List<api.Operation>();
|
| o.add(buildOperation());
|
| o.add(buildOperation());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3570(core.List<api.Operation> o) {
|
| +checkUnnamed3281(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 = buildUnnamed3570();
|
| + o.items = buildUnnamed3281();
|
| 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'));
|
| - checkUnnamed3570(o.items);
|
| + checkUnnamed3281(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--;
|
| }
|
|
|
| -buildUnnamed3571() {
|
| +buildUnnamed3282() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3571(core.List<core.String> o) {
|
| +checkUnnamed3282(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'));
|
| }
|
|
|
| -buildUnnamed3572() {
|
| +buildUnnamed3283() {
|
| var o = new core.List<api.PublicKey>();
|
| o.add(buildPublicKey());
|
| o.add(buildPublicKey());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3572(core.List<api.PublicKey> o) {
|
| +checkUnnamed3283(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 = buildUnnamed3571();
|
| + o.groups = buildUnnamed3282();
|
| o.id = "foo";
|
| o.kind = "foo";
|
| o.name = "foo";
|
| o.owner = "foo";
|
| - o.publicKeys = buildUnnamed3572();
|
| + o.publicKeys = buildUnnamed3283();
|
| 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'));
|
| - checkUnnamed3571(o.groups);
|
| + checkUnnamed3282(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'));
|
| - checkUnnamed3572(o.publicKeys);
|
| + checkUnnamed3283(o.publicKeys);
|
| unittest.expect(o.selfLink, unittest.equals('foo'));
|
| }
|
| buildCounterUser--;
|
| }
|
|
|
| -buildUnnamed3573() {
|
| +buildUnnamed3284() {
|
| var o = new core.List<api.User>();
|
| o.add(buildUser());
|
| o.add(buildUser());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3573(core.List<api.User> o) {
|
| +checkUnnamed3284(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 = buildUnnamed3573();
|
| + o.items = buildUnnamed3284();
|
| 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'));
|
| - checkUnnamed3573(o.items);
|
| + checkUnnamed3284(o.items);
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| unittest.expect(o.nextPageToken, unittest.equals('foo'));
|
| unittest.expect(o.selfLink, unittest.equals('foo'));
|
|
|