@@ -799,11 +799,11 @@ class AddressFilter extends ListFilter {
799799 }
800800
801801 /**
802- * Returns an equality filter for the given field and string value. For string fields,
802+ * Returns an equals filter for the given field and string value. For string fields,
803803 * {@code value} is interpreted as a regular expression using RE2 syntax. {@code value} must
804804 * match the entire field.
805805 *
806- * @see <a href="https://github.com/google/re2">RE2</a>
806+ * @see <a href="https://github.com/google/re2/wiki/Syntax ">RE2</a>
807807 */
808808 public static AddressFilter equals (AddressField field , String value ) {
809809 return new AddressFilter (checkNotNull (field ), ComparisonOperator .EQ , checkNotNull (value ));
@@ -855,7 +855,7 @@ private DiskTypeListOption(ComputeRpc.Option option, Object value) {
855855 }
856856
857857 /**
858- * Returns an option to specify a filter to the disk types being listed.
858+ * Returns an option to specify a filter on the disk types being listed.
859859 */
860860 public static DiskTypeListOption filter (DiskTypeFilter filter ) {
861861 return new DiskTypeListOption (ComputeRpc .Option .FILTER , filter .toPb ());
@@ -871,7 +871,7 @@ public static DiskTypeListOption pageSize(long pageSize) {
871871 /**
872872 * Returns an option to specify the page token from which to start listing disk types.
873873 */
874- public static DiskTypeListOption startPageToken (String pageToken ) {
874+ public static DiskTypeListOption pageToken (String pageToken ) {
875875 return new DiskTypeListOption (ComputeRpc .Option .PAGE_TOKEN , pageToken );
876876 }
877877
@@ -900,7 +900,7 @@ private DiskTypeAggregatedListOption(ComputeRpc.Option option, Object value) {
900900 }
901901
902902 /**
903- * Returns an option to specify a filter to the disk types being listed.
903+ * Returns an option to specify a filter on the disk types being listed.
904904 */
905905 public static DiskTypeAggregatedListOption filter (DiskTypeFilter filter ) {
906906 return new DiskTypeAggregatedListOption (ComputeRpc .Option .FILTER , filter .toPb ());
@@ -916,7 +916,7 @@ public static DiskTypeAggregatedListOption pageSize(long pageSize) {
916916 /**
917917 * Returns an option to specify the page token from which to start listing disk types.
918918 */
919- public static DiskTypeAggregatedListOption startPageToken (String pageToken ) {
919+ public static DiskTypeAggregatedListOption pageToken (String pageToken ) {
920920 return new DiskTypeAggregatedListOption (ComputeRpc .Option .PAGE_TOKEN , pageToken );
921921 }
922922 }
@@ -955,7 +955,7 @@ private MachineTypeListOption(ComputeRpc.Option option, Object value) {
955955 }
956956
957957 /**
958- * Returns an option to specify a filter to the machine types being listed.
958+ * Returns an option to specify a filter on the machine types being listed.
959959 */
960960 public static MachineTypeListOption filter (MachineTypeFilter filter ) {
961961 return new MachineTypeListOption (ComputeRpc .Option .FILTER , filter .toPb ());
@@ -971,7 +971,7 @@ public static MachineTypeListOption pageSize(long pageSize) {
971971 /**
972972 * Returns an option to specify the page token from which to start listing machine types.
973973 */
974- public static MachineTypeListOption startPageToken (String pageToken ) {
974+ public static MachineTypeListOption pageToken (String pageToken ) {
975975 return new MachineTypeListOption (ComputeRpc .Option .PAGE_TOKEN , pageToken );
976976 }
977977
@@ -1000,7 +1000,7 @@ private MachineTypeAggregatedListOption(ComputeRpc.Option option, Object value)
10001000 }
10011001
10021002 /**
1003- * Returns an option to specify a filter to the machine types being listed.
1003+ * Returns an option to specify a filter on the machine types being listed.
10041004 */
10051005 public static MachineTypeAggregatedListOption filter (MachineTypeFilter filter ) {
10061006 return new MachineTypeAggregatedListOption (ComputeRpc .Option .FILTER , filter .toPb ());
@@ -1016,7 +1016,7 @@ public static MachineTypeAggregatedListOption pageSize(long pageSize) {
10161016 /**
10171017 * Returns an option to specify the page token from which to start listing machine types.
10181018 */
1019- public static MachineTypeAggregatedListOption startPageToken (String pageToken ) {
1019+ public static MachineTypeAggregatedListOption pageToken (String pageToken ) {
10201020 return new MachineTypeAggregatedListOption (ComputeRpc .Option .PAGE_TOKEN , pageToken );
10211021 }
10221022 }
@@ -1055,7 +1055,7 @@ private RegionListOption(ComputeRpc.Option option, Object value) {
10551055 }
10561056
10571057 /**
1058- * Returns an option to specify a filter to the regions being listed.
1058+ * Returns an option to specify a filter on the regions being listed.
10591059 */
10601060 public static RegionListOption filter (RegionFilter filter ) {
10611061 return new RegionListOption (ComputeRpc .Option .FILTER , filter .toPb ());
@@ -1071,7 +1071,7 @@ public static RegionListOption pageSize(long pageSize) {
10711071 /**
10721072 * Returns an option to specify the page token from which to start listing regions.
10731073 */
1074- public static RegionListOption startPageToken (String pageToken ) {
1074+ public static RegionListOption pageToken (String pageToken ) {
10751075 return new RegionListOption (ComputeRpc .Option .PAGE_TOKEN , pageToken );
10761076 }
10771077
@@ -1122,7 +1122,7 @@ private ZoneListOption(ComputeRpc.Option option, Object value) {
11221122 }
11231123
11241124 /**
1125- * Returns an option to specify a filter to the zones being listed.
1125+ * Returns an option to specify a filter on the zones being listed.
11261126 */
11271127 public static ZoneListOption filter (ZoneFilter filter ) {
11281128 return new ZoneListOption (ComputeRpc .Option .FILTER , filter .toPb ());
@@ -1138,7 +1138,7 @@ public static ZoneListOption pageSize(long pageSize) {
11381138 /**
11391139 * Returns an option to specify the page token from which to start listing zones.
11401140 */
1141- public static ZoneListOption startPageToken (String pageToken ) {
1141+ public static ZoneListOption pageToken (String pageToken ) {
11421142 return new ZoneListOption (ComputeRpc .Option .PAGE_TOKEN , pageToken );
11431143 }
11441144
@@ -1211,7 +1211,7 @@ private OperationListOption(ComputeRpc.Option option, Object value) {
12111211 }
12121212
12131213 /**
1214- * Returns an option to specify a filter to the operations being listed.
1214+ * Returns an option to specify a filter on the operations being listed.
12151215 */
12161216 public static OperationListOption filter (OperationFilter filter ) {
12171217 return new OperationListOption (ComputeRpc .Option .FILTER , filter .toPb ());
@@ -1227,7 +1227,7 @@ public static OperationListOption pageSize(long pageSize) {
12271227 /**
12281228 * Returns an option to specify the page token from which to start listing operations.
12291229 */
1230- public static OperationListOption startPageToken (String pageToken ) {
1230+ public static OperationListOption pageToken (String pageToken ) {
12311231 return new OperationListOption (ComputeRpc .Option .PAGE_TOKEN , pageToken );
12321232 }
12331233
@@ -1278,7 +1278,7 @@ private AddressListOption(ComputeRpc.Option option, Object value) {
12781278 }
12791279
12801280 /**
1281- * Returns an option to specify a filter to the addresses being listed.
1281+ * Returns an option to specify a filter on the addresses being listed.
12821282 */
12831283 public static AddressListOption filter (AddressFilter filter ) {
12841284 return new AddressListOption (ComputeRpc .Option .FILTER , filter .toPb ());
@@ -1294,7 +1294,7 @@ public static AddressListOption pageSize(long pageSize) {
12941294 /**
12951295 * Returns an option to specify the page token from which to start listing addresses.
12961296 */
1297- public static AddressListOption startPageToken (String pageToken ) {
1297+ public static AddressListOption pageToken (String pageToken ) {
12981298 return new AddressListOption (ComputeRpc .Option .PAGE_TOKEN , pageToken );
12991299 }
13001300
@@ -1323,7 +1323,7 @@ private AddressAggregatedListOption(ComputeRpc.Option option, Object value) {
13231323 }
13241324
13251325 /**
1326- * Returns an option to specify a filter to the addresses being listed.
1326+ * Returns an option to specify a filter on the addresses being listed.
13271327 */
13281328 public static AddressAggregatedListOption filter (AddressFilter filter ) {
13291329 return new AddressAggregatedListOption (ComputeRpc .Option .FILTER , filter .toPb ());
@@ -1339,7 +1339,7 @@ public static AddressAggregatedListOption pageSize(long pageSize) {
13391339 /**
13401340 * Returns an option to specify the page token from which to start listing addresses.
13411341 */
1342- public static AddressAggregatedListOption startPageToken (String pageToken ) {
1342+ public static AddressAggregatedListOption pageToken (String pageToken ) {
13431343 return new AddressAggregatedListOption (ComputeRpc .Option .PAGE_TOKEN , pageToken );
13441344 }
13451345 }
@@ -1520,7 +1520,7 @@ public static AddressAggregatedListOption startPageToken(String pageToken) {
15201520 /**
15211521 * Deletes the requested address.
15221522 *
1523- * @return an operation if request was issued correctly, {@code null} if the address was not
1523+ * @return an operation if the request was issued correctly, {@code null} if the address was not
15241524 * found
15251525 * @throws ComputeException upon failure
15261526 */
0 commit comments