@@ -919,17 +919,23 @@ public GetExecutable setName(java.lang.String name) {
919
919
return this ;
920
920
}
921
921
922
- /** The requested runtime executable version. Defaults to FIREBASE_RULES_EXECUTABLE_V1. */
922
+ /**
923
+ * Optional. The requested runtime executable version. Defaults to
924
+ * FIREBASE_RULES_EXECUTABLE_V1.
925
+ */
923
926
@ com .google .api .client .util .Key
924
927
private java .lang .String executableVersion ;
925
928
926
- /** The requested runtime executable version. Defaults to FIREBASE_RULES_EXECUTABLE_V1.
929
+ /** Optional. The requested runtime executable version. Defaults to FIREBASE_RULES_EXECUTABLE_V1.
927
930
*/
928
931
public java .lang .String getExecutableVersion () {
929
932
return executableVersion ;
930
933
}
931
934
932
- /** The requested runtime executable version. Defaults to FIREBASE_RULES_EXECUTABLE_V1. */
935
+ /**
936
+ * Optional. The requested runtime executable version. Defaults to
937
+ * FIREBASE_RULES_EXECUTABLE_V1.
938
+ */
933
939
public GetExecutable setExecutableVersion (java .lang .String executableVersion ) {
934
940
this .executableVersion = executableVersion ;
935
941
return this ;
@@ -1076,7 +1082,7 @@ public List setName(java.lang.String name) {
1076
1082
}
1077
1083
1078
1084
/**
1079
- * `Release` filter. The list method supports filters with restrictions on the
1085
+ * Optional. `Release` filter. The list method supports filters with restrictions on the
1080
1086
* `Release.name`, and `Release.ruleset_name`. Example 1: A filter of 'name=prod*' might
1081
1087
* return `Release`s with names within 'projects/foo' prefixed with 'prod': Name -> Ruleset
1082
1088
* Name: * projects/foo/releases/prod -> projects/foo/rulesets/uuid1234 *
@@ -1092,25 +1098,23 @@ public List setName(java.lang.String name) {
1092
1098
@ com .google .api .client .util .Key
1093
1099
private java .lang .String filter ;
1094
1100
1095
- /**` Release` filter. The list method supports filters with restrictions on the `Release.name`, and
1096
- ` `Release.ruleset_name`. Example 1: A filter of 'name=prod*' might return `Release`s with names
1097
- ` within 'projects/foo' prefixed with 'prod': Name -> Ruleset Name: * projects/foo/releases/prod ->
1098
- ` projects/foo/rulesets/uuid1234 * projects/foo/releases/prod/v1 -> projects/foo/rulesets/uuid1234 *
1099
- ` projects/foo/releases/prod/v2 -> projects/foo/rulesets/uuid8888 Example 2: A filter of `name=prod*
1100
- ` ruleset_name=uuid1234` would return only `Release` instances for 'projects/foo' with names
1101
- ` prefixed with 'prod' referring to the same `Ruleset` name of 'uuid1234': Name -> Ruleset Name: *
1102
- ` projects/foo/releases/prod -> projects/foo/rulesets/1234 * projects/foo/releases/prod/v1 ->
1103
- ` projects/foo/rulesets/1234 In the examples, the filter parameters refer to the search filters are
1104
- ` relative to the project. Fully qualified prefixed may also be used.
1105
- `
1106
-
1101
+ /** Optional. `Release` filter. The list method supports filters with restrictions on the
1102
+ `Release.name`, and `Release.ruleset_name`. Example 1: A filter of 'name=prod*' might return
1103
+ `Release`s with names within 'projects/foo' prefixed with 'prod': Name -> Ruleset Name: *
1104
+ projects/foo/releases/prod -> projects/foo/rulesets/uuid1234 * projects/foo/releases/prod/v1 ->
1105
+ projects/foo/rulesets/uuid1234 * projects/foo/releases/prod/v2 -> projects/foo/rulesets/uuid8888
1106
+ Example 2: A filter of `name=prod* ruleset_name=uuid1234` would return only `Release` instances for
1107
+ 'projects/foo' with names prefixed with 'prod' referring to the same `Ruleset` name of 'uuid1234':
1108
+ Name -> Ruleset Name: * projects/foo/releases/prod -> projects/foo/rulesets/1234 *
1109
+ projects/foo/releases/prod/v1 -> projects/foo/rulesets/1234 In the examples, the filter parameters
1110
+ refer to the search filters are relative to the project. Fully qualified prefixed may also be used.
1107
1111
*/
1108
1112
public java .lang .String getFilter () {
1109
1113
return filter ;
1110
1114
}
1111
1115
1112
1116
/**
1113
- * `Release` filter. The list method supports filters with restrictions on the
1117
+ * Optional. `Release` filter. The list method supports filters with restrictions on the
1114
1118
* `Release.name`, and `Release.ruleset_name`. Example 1: A filter of 'name=prod*' might
1115
1119
* return `Release`s with names within 'projects/foo' prefixed with 'prod': Name -> Ruleset
1116
1120
* Name: * projects/foo/releases/prod -> projects/foo/rulesets/uuid1234 *
@@ -1129,44 +1133,45 @@ public List setFilter(java.lang.String filter) {
1129
1133
}
1130
1134
1131
1135
/**
1132
- * Page size to load. Maximum of 100. Defaults to 10. Note: `page_size` is just a hint and
1133
- * the service may choose to load fewer than `page_size` results due to the size of the
1134
- * output. To traverse all of the releases, the caller should iterate until the `page_token`
1135
- * on the response is empty.
1136
+ * Optional. Page size to load. Maximum of 100. Defaults to 10. Note: `page_size` is just a
1137
+ * hint and the service may choose to load fewer than `page_size` results due to the size of
1138
+ * the output. To traverse all of the releases, the caller should iterate until the
1139
+ * `page_token` on the response is empty.
1136
1140
*/
1137
1141
@ com .google .api .client .util .Key
1138
1142
private java .lang .Integer pageSize ;
1139
1143
1140
- /** Page size to load. Maximum of 100. Defaults to 10. Note: `page_size` is just a hint and the service
1141
- may choose to load fewer than `page_size` results due to the size of the output. To traverse all of
1142
- the releases, the caller should iterate until the `page_token` on the response is empty.
1144
+ /** Optional. Page size to load. Maximum of 100. Defaults to 10. Note: `page_size` is just a hint and
1145
+ the service may choose to load fewer than `page_size` results due to the size of the output. To
1146
+ traverse all of the releases, the caller should iterate until the `page_token` on the response is
1147
+ empty.
1143
1148
*/
1144
1149
public java .lang .Integer getPageSize () {
1145
1150
return pageSize ;
1146
1151
}
1147
1152
1148
1153
/**
1149
- * Page size to load. Maximum of 100. Defaults to 10. Note: `page_size` is just a hint and
1150
- * the service may choose to load fewer than `page_size` results due to the size of the
1151
- * output. To traverse all of the releases, the caller should iterate until the `page_token`
1152
- * on the response is empty.
1154
+ * Optional. Page size to load. Maximum of 100. Defaults to 10. Note: `page_size` is just a
1155
+ * hint and the service may choose to load fewer than `page_size` results due to the size of
1156
+ * the output. To traverse all of the releases, the caller should iterate until the
1157
+ * `page_token` on the response is empty.
1153
1158
*/
1154
1159
public List setPageSize (java .lang .Integer pageSize ) {
1155
1160
this .pageSize = pageSize ;
1156
1161
return this ;
1157
1162
}
1158
1163
1159
- /** Next page token for the next batch of `Release` instances. */
1164
+ /** Optional. Next page token for the next batch of `Release` instances. */
1160
1165
@ com .google .api .client .util .Key
1161
1166
private java .lang .String pageToken ;
1162
1167
1163
- /** Next page token for the next batch of `Release` instances.
1168
+ /** Optional. Next page token for the next batch of `Release` instances.
1164
1169
*/
1165
1170
public java .lang .String getPageToken () {
1166
1171
return pageToken ;
1167
1172
}
1168
1173
1169
- /** Next page token for the next batch of `Release` instances. */
1174
+ /** Optional. Next page token for the next batch of `Release` instances. */
1170
1175
public List setPageToken (java .lang .String pageToken ) {
1171
1176
this .pageToken = pageToken ;
1172
1177
return this ;
@@ -1904,73 +1909,73 @@ public List setName(java.lang.String name) {
1904
1909
}
1905
1910
1906
1911
/**
1907
- * `Ruleset` filter. The list method supports filters with restrictions on `Ruleset.name`.
1908
- * Filters on `Ruleset.create_time` should use the `date` function which parses strings that
1909
- * conform to the RFC 3339 date/time specifications. Example: `create_time >
1910
- * date("2017-01-01T00:00:00Z") AND name=UUID-*`
1912
+ * Optional. `Ruleset` filter. The list method supports filters with restrictions on
1913
+ * `Ruleset.name`. Filters on `Ruleset.create_time` should use the `date` function which
1914
+ * parses strings that conform to the RFC 3339 date/time specifications. Example:
1915
+ * `create_time > date("2017-01-01T00:00:00Z") AND name=UUID-*`
1911
1916
*/
1912
1917
@ com .google .api .client .util .Key
1913
1918
private java .lang .String filter ;
1914
1919
1915
- /**` Ruleset` filter. The list method supports filters with restrictions on `Ruleset.name`. Filters on
1916
- ` `Ruleset.create_time` should use the `date` function which parses strings that conform to the RFC
1917
- ` 3339 date/time specifications. Example: `create_time > date("2017-01-01T00:00:00Z") AND
1918
- ` name=UUID-*`
1919
- `
1920
-
1920
+ /** Optional. `Ruleset` filter. The list method supports filters with restrictions on `Ruleset.name`.
1921
+ Filters on `Ruleset.create_time` should use the `date` function which parses strings that conform
1922
+ to the RFC 3339 date/time specifications. Example: `create_time > date("2017-01-01T00:00:00Z") AND
1923
+ name=UUID-*`
1921
1924
*/
1922
1925
public java .lang .String getFilter () {
1923
1926
return filter ;
1924
1927
}
1925
1928
1926
1929
/**
1927
- * `Ruleset` filter. The list method supports filters with restrictions on `Ruleset.name`.
1928
- * Filters on `Ruleset.create_time` should use the `date` function which parses strings that
1929
- * conform to the RFC 3339 date/time specifications. Example: `create_time >
1930
- * date("2017-01-01T00:00:00Z") AND name=UUID-*`
1930
+ * Optional. `Ruleset` filter. The list method supports filters with restrictions on
1931
+ * `Ruleset.name`. Filters on `Ruleset.create_time` should use the `date` function which
1932
+ * parses strings that conform to the RFC 3339 date/time specifications. Example:
1933
+ * `create_time > date("2017-01-01T00:00:00Z") AND name=UUID-*`
1931
1934
*/
1932
1935
public List setFilter (java .lang .String filter ) {
1933
1936
this .filter = filter ;
1934
1937
return this ;
1935
1938
}
1936
1939
1937
1940
/**
1938
- * Page size to load. Maximum of 100. Defaults to 10. Note: `page_size` is just a hint and
1939
- * the service may choose to load less than `page_size` due to the size of the output. To
1940
- * traverse all of the releases, caller should iterate until the `page_token` is empty.
1941
+ * Optional. Page size to load. Maximum of 100. Defaults to 10. Note: `page_size` is just a
1942
+ * hint and the service may choose to load less than `page_size` due to the size of the
1943
+ * output. To traverse all of the releases, caller should iterate until the `page_token` is
1944
+ * empty.
1941
1945
*/
1942
1946
@ com .google .api .client .util .Key
1943
1947
private java .lang .Integer pageSize ;
1944
1948
1945
- /** Page size to load. Maximum of 100. Defaults to 10. Note: `page_size` is just a hint and the service
1946
- may choose to load less than `page_size` due to the size of the output. To traverse all of the
1947
- releases, caller should iterate until the `page_token` is empty.
1949
+ /** Optional. Page size to load. Maximum of 100. Defaults to 10. Note: `page_size` is just a hint and
1950
+ the service may choose to load less than `page_size` due to the size of the output. To traverse all
1951
+ of the releases, caller should iterate until the `page_token` is empty.
1948
1952
*/
1949
1953
public java .lang .Integer getPageSize () {
1950
1954
return pageSize ;
1951
1955
}
1952
1956
1953
1957
/**
1954
- * Page size to load. Maximum of 100. Defaults to 10. Note: `page_size` is just a hint and
1955
- * the service may choose to load less than `page_size` due to the size of the output. To
1956
- * traverse all of the releases, caller should iterate until the `page_token` is empty.
1958
+ * Optional. Page size to load. Maximum of 100. Defaults to 10. Note: `page_size` is just a
1959
+ * hint and the service may choose to load less than `page_size` due to the size of the
1960
+ * output. To traverse all of the releases, caller should iterate until the `page_token` is
1961
+ * empty.
1957
1962
*/
1958
1963
public List setPageSize (java .lang .Integer pageSize ) {
1959
1964
this .pageSize = pageSize ;
1960
1965
return this ;
1961
1966
}
1962
1967
1963
- /** Next page token for loading the next batch of `Ruleset` instances. */
1968
+ /** Optional. Next page token for loading the next batch of `Ruleset` instances. */
1964
1969
@ com .google .api .client .util .Key
1965
1970
private java .lang .String pageToken ;
1966
1971
1967
- /** Next page token for loading the next batch of `Ruleset` instances.
1972
+ /** Optional. Next page token for loading the next batch of `Ruleset` instances.
1968
1973
*/
1969
1974
public java .lang .String getPageToken () {
1970
1975
return pageToken ;
1971
1976
}
1972
1977
1973
- /** Next page token for loading the next batch of `Ruleset` instances. */
1978
+ /** Optional. Next page token for loading the next batch of `Ruleset` instances. */
1974
1979
public List setPageToken (java .lang .String pageToken ) {
1975
1980
this .pageToken = pageToken ;
1976
1981
return this ;
0 commit comments