| 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 18d28804f1d567e8bd2db150fa69f4e8dfe837aa..f865f92c3fec4b662dc11b748cb5da6082a54cba 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);
|
| }
|
|
|
| -buildUnnamed3139() {
|
| +buildUnnamed3238() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3139(core.List<core.String> o) {
|
| +checkUnnamed3238(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 = buildUnnamed3139();
|
| + o.keys = buildUnnamed3238();
|
| o.sudoer = true;
|
| }
|
| buildCounterAuthorizedKeysView--;
|
| @@ -79,20 +79,20 @@ buildAuthorizedKeysView() {
|
| checkAuthorizedKeysView(api.AuthorizedKeysView o) {
|
| buildCounterAuthorizedKeysView++;
|
| if (buildCounterAuthorizedKeysView < 3) {
|
| - checkUnnamed3139(o.keys);
|
| + checkUnnamed3238(o.keys);
|
| unittest.expect(o.sudoer, unittest.isTrue);
|
| }
|
| buildCounterAuthorizedKeysView--;
|
| }
|
|
|
| -buildUnnamed3140() {
|
| +buildUnnamed3239() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3140(core.List<core.String> o) {
|
| +checkUnnamed3239(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 = buildUnnamed3140();
|
| + o.members = buildUnnamed3239();
|
| 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'));
|
| - checkUnnamed3140(o.members);
|
| + checkUnnamed3239(o.members);
|
| unittest.expect(o.name, unittest.equals('foo'));
|
| unittest.expect(o.selfLink, unittest.equals('foo'));
|
| }
|
| buildCounterGroup--;
|
| }
|
|
|
| -buildUnnamed3141() {
|
| +buildUnnamed3240() {
|
| var o = new core.List<api.Group>();
|
| o.add(buildGroup());
|
| o.add(buildGroup());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3141(core.List<api.Group> o) {
|
| +checkUnnamed3240(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 = buildUnnamed3141();
|
| + o.items = buildUnnamed3240();
|
| 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'));
|
| - checkUnnamed3141(o.items);
|
| + checkUnnamed3240(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--;
|
| }
|
|
|
| -buildUnnamed3142() {
|
| +buildUnnamed3241() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3142(core.List<core.String> o) {
|
| +checkUnnamed3241(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 = buildUnnamed3142();
|
| + o.users = buildUnnamed3241();
|
| }
|
| buildCounterGroupsAddMemberRequest--;
|
| return o;
|
| @@ -196,19 +196,19 @@ buildGroupsAddMemberRequest() {
|
| checkGroupsAddMemberRequest(api.GroupsAddMemberRequest o) {
|
| buildCounterGroupsAddMemberRequest++;
|
| if (buildCounterGroupsAddMemberRequest < 3) {
|
| - checkUnnamed3142(o.users);
|
| + checkUnnamed3241(o.users);
|
| }
|
| buildCounterGroupsAddMemberRequest--;
|
| }
|
|
|
| -buildUnnamed3143() {
|
| +buildUnnamed3242() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3143(core.List<core.String> o) {
|
| +checkUnnamed3242(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 = buildUnnamed3143();
|
| + o.users = buildUnnamed3242();
|
| }
|
| buildCounterGroupsRemoveMemberRequest--;
|
| return o;
|
| @@ -228,32 +228,32 @@ buildGroupsRemoveMemberRequest() {
|
| checkGroupsRemoveMemberRequest(api.GroupsRemoveMemberRequest o) {
|
| buildCounterGroupsRemoveMemberRequest++;
|
| if (buildCounterGroupsRemoveMemberRequest < 3) {
|
| - checkUnnamed3143(o.users);
|
| + checkUnnamed3242(o.users);
|
| }
|
| buildCounterGroupsRemoveMemberRequest--;
|
| }
|
|
|
| -buildUnnamed3144() {
|
| +buildUnnamed3243() {
|
| var o = new core.List<api.LinuxGroupView>();
|
| o.add(buildLinuxGroupView());
|
| o.add(buildLinuxGroupView());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3144(core.List<api.LinuxGroupView> o) {
|
| +checkUnnamed3243(core.List<api.LinuxGroupView> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkLinuxGroupView(o[0]);
|
| checkLinuxGroupView(o[1]);
|
| }
|
|
|
| -buildUnnamed3145() {
|
| +buildUnnamed3244() {
|
| var o = new core.List<api.LinuxUserView>();
|
| o.add(buildLinuxUserView());
|
| o.add(buildLinuxUserView());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3145(core.List<api.LinuxUserView> o) {
|
| +checkUnnamed3244(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 = buildUnnamed3144();
|
| + o.groupViews = buildUnnamed3243();
|
| o.kind = "foo";
|
| - o.userViews = buildUnnamed3145();
|
| + o.userViews = buildUnnamed3244();
|
| }
|
| buildCounterLinuxAccountViews--;
|
| return o;
|
| @@ -275,9 +275,9 @@ buildLinuxAccountViews() {
|
| checkLinuxAccountViews(api.LinuxAccountViews o) {
|
| buildCounterLinuxAccountViews++;
|
| if (buildCounterLinuxAccountViews < 3) {
|
| - checkUnnamed3144(o.groupViews);
|
| + checkUnnamed3243(o.groupViews);
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| - checkUnnamed3145(o.userViews);
|
| + checkUnnamed3244(o.userViews);
|
| }
|
| buildCounterLinuxAccountViews--;
|
| }
|
| @@ -320,14 +320,14 @@ checkLinuxGetLinuxAccountViewsResponse(api.LinuxGetLinuxAccountViewsResponse o)
|
| buildCounterLinuxGetLinuxAccountViewsResponse--;
|
| }
|
|
|
| -buildUnnamed3146() {
|
| +buildUnnamed3245() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3146(core.List<core.String> o) {
|
| +checkUnnamed3245(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 = buildUnnamed3146();
|
| + o.members = buildUnnamed3245();
|
| }
|
| 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'));
|
| - checkUnnamed3146(o.members);
|
| + checkUnnamed3245(o.members);
|
| }
|
| buildCounterLinuxGroupView--;
|
| }
|
| @@ -408,14 +408,14 @@ checkOperationErrorErrors(api.OperationErrorErrors o) {
|
| buildCounterOperationErrorErrors--;
|
| }
|
|
|
| -buildUnnamed3147() {
|
| +buildUnnamed3246() {
|
| var o = new core.List<api.OperationErrorErrors>();
|
| o.add(buildOperationErrorErrors());
|
| o.add(buildOperationErrorErrors());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3147(core.List<api.OperationErrorErrors> o) {
|
| +checkUnnamed3246(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 = buildUnnamed3147();
|
| + o.errors = buildUnnamed3246();
|
| }
|
| buildCounterOperationError--;
|
| return o;
|
| @@ -435,7 +435,7 @@ buildOperationError() {
|
| checkOperationError(api.OperationError o) {
|
| buildCounterOperationError++;
|
| if (buildCounterOperationError < 3) {
|
| - checkUnnamed3147(o.errors);
|
| + checkUnnamed3246(o.errors);
|
| }
|
| buildCounterOperationError--;
|
| }
|
| @@ -461,14 +461,14 @@ checkOperationWarningsData(api.OperationWarningsData o) {
|
| buildCounterOperationWarningsData--;
|
| }
|
|
|
| -buildUnnamed3148() {
|
| +buildUnnamed3247() {
|
| var o = new core.List<api.OperationWarningsData>();
|
| o.add(buildOperationWarningsData());
|
| o.add(buildOperationWarningsData());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3148(core.List<api.OperationWarningsData> o) {
|
| +checkUnnamed3247(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 = buildUnnamed3148();
|
| + o.data = buildUnnamed3247();
|
| o.message = "foo";
|
| }
|
| buildCounterOperationWarnings--;
|
| @@ -491,20 +491,20 @@ checkOperationWarnings(api.OperationWarnings o) {
|
| buildCounterOperationWarnings++;
|
| if (buildCounterOperationWarnings < 3) {
|
| unittest.expect(o.code, unittest.equals('foo'));
|
| - checkUnnamed3148(o.data);
|
| + checkUnnamed3247(o.data);
|
| unittest.expect(o.message, unittest.equals('foo'));
|
| }
|
| buildCounterOperationWarnings--;
|
| }
|
|
|
| -buildUnnamed3149() {
|
| +buildUnnamed3248() {
|
| var o = new core.List<api.OperationWarnings>();
|
| o.add(buildOperationWarnings());
|
| o.add(buildOperationWarnings());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3149(core.List<api.OperationWarnings> o) {
|
| +checkUnnamed3248(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 = buildUnnamed3149();
|
| + o.warnings = buildUnnamed3248();
|
| 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'));
|
| - checkUnnamed3149(o.warnings);
|
| + checkUnnamed3248(o.warnings);
|
| unittest.expect(o.zone, unittest.equals('foo'));
|
| }
|
| buildCounterOperation--;
|
| }
|
|
|
| -buildUnnamed3150() {
|
| +buildUnnamed3249() {
|
| var o = new core.List<api.Operation>();
|
| o.add(buildOperation());
|
| o.add(buildOperation());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3150(core.List<api.Operation> o) {
|
| +checkUnnamed3249(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 = buildUnnamed3150();
|
| + o.items = buildUnnamed3249();
|
| 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'));
|
| - checkUnnamed3150(o.items);
|
| + checkUnnamed3249(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--;
|
| }
|
|
|
| -buildUnnamed3151() {
|
| +buildUnnamed3250() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed3151(core.List<core.String> o) {
|
| +checkUnnamed3250(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'));
|
| }
|
|
|
| -buildUnnamed3152() {
|
| +buildUnnamed3251() {
|
| var o = new core.List<api.PublicKey>();
|
| o.add(buildPublicKey());
|
| o.add(buildPublicKey());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3152(core.List<api.PublicKey> o) {
|
| +checkUnnamed3251(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 = buildUnnamed3151();
|
| + o.groups = buildUnnamed3250();
|
| o.id = "foo";
|
| o.kind = "foo";
|
| o.name = "foo";
|
| o.owner = "foo";
|
| - o.publicKeys = buildUnnamed3152();
|
| + o.publicKeys = buildUnnamed3251();
|
| 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'));
|
| - checkUnnamed3151(o.groups);
|
| + checkUnnamed3250(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'));
|
| - checkUnnamed3152(o.publicKeys);
|
| + checkUnnamed3251(o.publicKeys);
|
| unittest.expect(o.selfLink, unittest.equals('foo'));
|
| }
|
| buildCounterUser--;
|
| }
|
|
|
| -buildUnnamed3153() {
|
| +buildUnnamed3252() {
|
| var o = new core.List<api.User>();
|
| o.add(buildUser());
|
| o.add(buildUser());
|
| return o;
|
| }
|
|
|
| -checkUnnamed3153(core.List<api.User> o) {
|
| +checkUnnamed3252(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 = buildUnnamed3153();
|
| + o.items = buildUnnamed3252();
|
| 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'));
|
| - checkUnnamed3153(o.items);
|
| + checkUnnamed3252(o.items);
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| unittest.expect(o.nextPageToken, unittest.equals('foo'));
|
| unittest.expect(o.selfLink, unittest.equals('foo'));
|
|
|