| OLD | NEW |
| 1 // This is a generated file (see the discoveryapis_generator project). | 1 // This is a generated file (see the discoveryapis_generator project). |
| 2 | 2 |
| 3 library googleapis.logging.v2; | 3 library googleapis.logging.v2; |
| 4 | 4 |
| 5 import 'dart:core' as core; | 5 import 'dart:core' as core; |
| 6 import 'dart:async' as async; | 6 import 'dart:async' as async; |
| 7 import 'dart:convert' as convert; | 7 import 'dart:convert' as convert; |
| 8 | 8 |
| 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; | 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; |
| 10 import 'package:http/http.dart' as http; | 10 import 'package:http/http.dart' as http; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 * Request parameters: | 120 * Request parameters: |
| 121 * | 121 * |
| 122 * [parent] - Required. The resource name that owns the logs: | 122 * [parent] - Required. The resource name that owns the logs: |
| 123 * "projects/[PROJECT_ID]" | 123 * "projects/[PROJECT_ID]" |
| 124 * "organizations/[ORGANIZATION_ID]" | 124 * "organizations/[ORGANIZATION_ID]" |
| 125 * "billingAccounts/[BILLING_ACCOUNT_ID]" | 125 * "billingAccounts/[BILLING_ACCOUNT_ID]" |
| 126 * "folders/[FOLDER_ID]" | 126 * "folders/[FOLDER_ID]" |
| 127 * | 127 * |
| 128 * Value must have pattern "^billingAccounts/[^/]+$". | 128 * Value must have pattern "^billingAccounts/[^/]+$". |
| 129 * | 129 * |
| 130 * [pageSize] - Optional. The maximum number of results to return from this |
| 131 * request. Non-positive values are ignored. The presence of nextPageToken in |
| 132 * the response indicates that more results might be available. |
| 133 * |
| 130 * [pageToken] - Optional. If present, then retrieve the next batch of results | 134 * [pageToken] - Optional. If present, then retrieve the next batch of results |
| 131 * from the preceding call to this method. pageToken must be the value of | 135 * from the preceding call to this method. pageToken must be the value of |
| 132 * nextPageToken from the previous response. The values of other method | 136 * nextPageToken from the previous response. The values of other method |
| 133 * parameters should be identical to those in the previous call. | 137 * parameters should be identical to those in the previous call. |
| 134 * | 138 * |
| 135 * [pageSize] - Optional. The maximum number of results to return from this | |
| 136 * request. Non-positive values are ignored. The presence of nextPageToken in | |
| 137 * the response indicates that more results might be available. | |
| 138 * | |
| 139 * Completes with a [ListLogsResponse]. | 139 * Completes with a [ListLogsResponse]. |
| 140 * | 140 * |
| 141 * Completes with a [commons.ApiRequestError] if the API endpoint returned an | 141 * Completes with a [commons.ApiRequestError] if the API endpoint returned an |
| 142 * error. | 142 * error. |
| 143 * | 143 * |
| 144 * If the used [http.Client] completes with an error when making a REST call, | 144 * If the used [http.Client] completes with an error when making a REST call, |
| 145 * this method will complete with the same error. | 145 * this method will complete with the same error. |
| 146 */ | 146 */ |
| 147 async.Future<ListLogsResponse> list(core.String parent, {core.String pageToken
, core.int pageSize}) { | 147 async.Future<ListLogsResponse> list(core.String parent, {core.int pageSize, co
re.String pageToken}) { |
| 148 var _url = null; | 148 var _url = null; |
| 149 var _queryParams = new core.Map(); | 149 var _queryParams = new core.Map(); |
| 150 var _uploadMedia = null; | 150 var _uploadMedia = null; |
| 151 var _uploadOptions = null; | 151 var _uploadOptions = null; |
| 152 var _downloadOptions = commons.DownloadOptions.Metadata; | 152 var _downloadOptions = commons.DownloadOptions.Metadata; |
| 153 var _body = null; | 153 var _body = null; |
| 154 | 154 |
| 155 if (parent == null) { | 155 if (parent == null) { |
| 156 throw new core.ArgumentError("Parameter parent is required."); | 156 throw new core.ArgumentError("Parameter parent is required."); |
| 157 } | 157 } |
| 158 if (pageSize != null) { |
| 159 _queryParams["pageSize"] = ["${pageSize}"]; |
| 160 } |
| 158 if (pageToken != null) { | 161 if (pageToken != null) { |
| 159 _queryParams["pageToken"] = [pageToken]; | 162 _queryParams["pageToken"] = [pageToken]; |
| 160 } | 163 } |
| 161 if (pageSize != null) { | |
| 162 _queryParams["pageSize"] = ["${pageSize}"]; | |
| 163 } | |
| 164 | 164 |
| 165 _url = 'v2/' + commons.Escaper.ecapeVariableReserved('$parent') + '/logs'; | 165 _url = 'v2/' + commons.Escaper.ecapeVariableReserved('$parent') + '/logs'; |
| 166 | 166 |
| 167 var _response = _requester.request(_url, | 167 var _response = _requester.request(_url, |
| 168 "GET", | 168 "GET", |
| 169 body: _body, | 169 body: _body, |
| 170 queryParams: _queryParams, | 170 queryParams: _queryParams, |
| 171 uploadOptions: _uploadOptions, | 171 uploadOptions: _uploadOptions, |
| 172 uploadMedia: _uploadMedia, | 172 uploadMedia: _uploadMedia, |
| 173 downloadOptions: _downloadOptions); | 173 downloadOptions: _downloadOptions); |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 * Request parameters: | 349 * Request parameters: |
| 350 * | 350 * |
| 351 * [parent] - Required. The parent resource whose sinks are to be listed: | 351 * [parent] - Required. The parent resource whose sinks are to be listed: |
| 352 * "projects/[PROJECT_ID]" | 352 * "projects/[PROJECT_ID]" |
| 353 * "organizations/[ORGANIZATION_ID]" | 353 * "organizations/[ORGANIZATION_ID]" |
| 354 * "billingAccounts/[BILLING_ACCOUNT_ID]" | 354 * "billingAccounts/[BILLING_ACCOUNT_ID]" |
| 355 * "folders/[FOLDER_ID]" | 355 * "folders/[FOLDER_ID]" |
| 356 * | 356 * |
| 357 * Value must have pattern "^billingAccounts/[^/]+$". | 357 * Value must have pattern "^billingAccounts/[^/]+$". |
| 358 * | 358 * |
| 359 * [pageSize] - Optional. The maximum number of results to return from this |
| 360 * request. Non-positive values are ignored. The presence of nextPageToken in |
| 361 * the response indicates that more results might be available. |
| 362 * |
| 359 * [pageToken] - Optional. If present, then retrieve the next batch of results | 363 * [pageToken] - Optional. If present, then retrieve the next batch of results |
| 360 * from the preceding call to this method. pageToken must be the value of | 364 * from the preceding call to this method. pageToken must be the value of |
| 361 * nextPageToken from the previous response. The values of other method | 365 * nextPageToken from the previous response. The values of other method |
| 362 * parameters should be identical to those in the previous call. | 366 * parameters should be identical to those in the previous call. |
| 363 * | 367 * |
| 364 * [pageSize] - Optional. The maximum number of results to return from this | |
| 365 * request. Non-positive values are ignored. The presence of nextPageToken in | |
| 366 * the response indicates that more results might be available. | |
| 367 * | |
| 368 * Completes with a [ListSinksResponse]. | 368 * Completes with a [ListSinksResponse]. |
| 369 * | 369 * |
| 370 * Completes with a [commons.ApiRequestError] if the API endpoint returned an | 370 * Completes with a [commons.ApiRequestError] if the API endpoint returned an |
| 371 * error. | 371 * error. |
| 372 * | 372 * |
| 373 * If the used [http.Client] completes with an error when making a REST call, | 373 * If the used [http.Client] completes with an error when making a REST call, |
| 374 * this method will complete with the same error. | 374 * this method will complete with the same error. |
| 375 */ | 375 */ |
| 376 async.Future<ListSinksResponse> list(core.String parent, {core.String pageToke
n, core.int pageSize}) { | 376 async.Future<ListSinksResponse> list(core.String parent, {core.int pageSize, c
ore.String pageToken}) { |
| 377 var _url = null; | 377 var _url = null; |
| 378 var _queryParams = new core.Map(); | 378 var _queryParams = new core.Map(); |
| 379 var _uploadMedia = null; | 379 var _uploadMedia = null; |
| 380 var _uploadOptions = null; | 380 var _uploadOptions = null; |
| 381 var _downloadOptions = commons.DownloadOptions.Metadata; | 381 var _downloadOptions = commons.DownloadOptions.Metadata; |
| 382 var _body = null; | 382 var _body = null; |
| 383 | 383 |
| 384 if (parent == null) { | 384 if (parent == null) { |
| 385 throw new core.ArgumentError("Parameter parent is required."); | 385 throw new core.ArgumentError("Parameter parent is required."); |
| 386 } | 386 } |
| 387 if (pageSize != null) { |
| 388 _queryParams["pageSize"] = ["${pageSize}"]; |
| 389 } |
| 387 if (pageToken != null) { | 390 if (pageToken != null) { |
| 388 _queryParams["pageToken"] = [pageToken]; | 391 _queryParams["pageToken"] = [pageToken]; |
| 389 } | 392 } |
| 390 if (pageSize != null) { | |
| 391 _queryParams["pageSize"] = ["${pageSize}"]; | |
| 392 } | |
| 393 | 393 |
| 394 _url = 'v2/' + commons.Escaper.ecapeVariableReserved('$parent') + '/sinks'; | 394 _url = 'v2/' + commons.Escaper.ecapeVariableReserved('$parent') + '/sinks'; |
| 395 | 395 |
| 396 var _response = _requester.request(_url, | 396 var _response = _requester.request(_url, |
| 397 "GET", | 397 "GET", |
| 398 body: _body, | 398 body: _body, |
| 399 queryParams: _queryParams, | 399 queryParams: _queryParams, |
| 400 uploadOptions: _uploadOptions, | 400 uploadOptions: _uploadOptions, |
| 401 uploadMedia: _uploadMedia, | 401 uploadMedia: _uploadMedia, |
| 402 downloadOptions: _downloadOptions); | 402 downloadOptions: _downloadOptions); |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 867 * Request parameters: | 867 * Request parameters: |
| 868 * | 868 * |
| 869 * [parent] - Required. The parent resource whose sinks are to be listed: | 869 * [parent] - Required. The parent resource whose sinks are to be listed: |
| 870 * "projects/[PROJECT_ID]" | 870 * "projects/[PROJECT_ID]" |
| 871 * "organizations/[ORGANIZATION_ID]" | 871 * "organizations/[ORGANIZATION_ID]" |
| 872 * "billingAccounts/[BILLING_ACCOUNT_ID]" | 872 * "billingAccounts/[BILLING_ACCOUNT_ID]" |
| 873 * "folders/[FOLDER_ID]" | 873 * "folders/[FOLDER_ID]" |
| 874 * | 874 * |
| 875 * Value must have pattern "^folders/[^/]+$". | 875 * Value must have pattern "^folders/[^/]+$". |
| 876 * | 876 * |
| 877 * [pageSize] - Optional. The maximum number of results to return from this |
| 878 * request. Non-positive values are ignored. The presence of nextPageToken in |
| 879 * the response indicates that more results might be available. |
| 880 * |
| 877 * [pageToken] - Optional. If present, then retrieve the next batch of results | 881 * [pageToken] - Optional. If present, then retrieve the next batch of results |
| 878 * from the preceding call to this method. pageToken must be the value of | 882 * from the preceding call to this method. pageToken must be the value of |
| 879 * nextPageToken from the previous response. The values of other method | 883 * nextPageToken from the previous response. The values of other method |
| 880 * parameters should be identical to those in the previous call. | 884 * parameters should be identical to those in the previous call. |
| 881 * | 885 * |
| 882 * [pageSize] - Optional. The maximum number of results to return from this | |
| 883 * request. Non-positive values are ignored. The presence of nextPageToken in | |
| 884 * the response indicates that more results might be available. | |
| 885 * | |
| 886 * Completes with a [ListSinksResponse]. | 886 * Completes with a [ListSinksResponse]. |
| 887 * | 887 * |
| 888 * Completes with a [commons.ApiRequestError] if the API endpoint returned an | 888 * Completes with a [commons.ApiRequestError] if the API endpoint returned an |
| 889 * error. | 889 * error. |
| 890 * | 890 * |
| 891 * If the used [http.Client] completes with an error when making a REST call, | 891 * If the used [http.Client] completes with an error when making a REST call, |
| 892 * this method will complete with the same error. | 892 * this method will complete with the same error. |
| 893 */ | 893 */ |
| 894 async.Future<ListSinksResponse> list(core.String parent, {core.String pageToke
n, core.int pageSize}) { | 894 async.Future<ListSinksResponse> list(core.String parent, {core.int pageSize, c
ore.String pageToken}) { |
| 895 var _url = null; | 895 var _url = null; |
| 896 var _queryParams = new core.Map(); | 896 var _queryParams = new core.Map(); |
| 897 var _uploadMedia = null; | 897 var _uploadMedia = null; |
| 898 var _uploadOptions = null; | 898 var _uploadOptions = null; |
| 899 var _downloadOptions = commons.DownloadOptions.Metadata; | 899 var _downloadOptions = commons.DownloadOptions.Metadata; |
| 900 var _body = null; | 900 var _body = null; |
| 901 | 901 |
| 902 if (parent == null) { | 902 if (parent == null) { |
| 903 throw new core.ArgumentError("Parameter parent is required."); | 903 throw new core.ArgumentError("Parameter parent is required."); |
| 904 } | 904 } |
| 905 if (pageSize != null) { |
| 906 _queryParams["pageSize"] = ["${pageSize}"]; |
| 907 } |
| 905 if (pageToken != null) { | 908 if (pageToken != null) { |
| 906 _queryParams["pageToken"] = [pageToken]; | 909 _queryParams["pageToken"] = [pageToken]; |
| 907 } | 910 } |
| 908 if (pageSize != null) { | |
| 909 _queryParams["pageSize"] = ["${pageSize}"]; | |
| 910 } | |
| 911 | 911 |
| 912 _url = 'v2/' + commons.Escaper.ecapeVariableReserved('$parent') + '/sinks'; | 912 _url = 'v2/' + commons.Escaper.ecapeVariableReserved('$parent') + '/sinks'; |
| 913 | 913 |
| 914 var _response = _requester.request(_url, | 914 var _response = _requester.request(_url, |
| 915 "GET", | 915 "GET", |
| 916 body: _body, | 916 body: _body, |
| 917 queryParams: _queryParams, | 917 queryParams: _queryParams, |
| 918 uploadOptions: _uploadOptions, | 918 uploadOptions: _uploadOptions, |
| 919 uploadMedia: _uploadMedia, | 919 uploadMedia: _uploadMedia, |
| 920 downloadOptions: _downloadOptions); | 920 downloadOptions: _downloadOptions); |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 999 | 999 |
| 1000 MonitoredResourceDescriptorsResourceApi(commons.ApiRequester client) : | 1000 MonitoredResourceDescriptorsResourceApi(commons.ApiRequester client) : |
| 1001 _requester = client; | 1001 _requester = client; |
| 1002 | 1002 |
| 1003 /** | 1003 /** |
| 1004 * Lists the descriptors for monitored resource types used by Stackdriver | 1004 * Lists the descriptors for monitored resource types used by Stackdriver |
| 1005 * Logging. | 1005 * Logging. |
| 1006 * | 1006 * |
| 1007 * Request parameters: | 1007 * Request parameters: |
| 1008 * | 1008 * |
| 1009 * [pageSize] - Optional. The maximum number of results to return from this |
| 1010 * request. Non-positive values are ignored. The presence of nextPageToken in |
| 1011 * the response indicates that more results might be available. |
| 1012 * |
| 1009 * [pageToken] - Optional. If present, then retrieve the next batch of results | 1013 * [pageToken] - Optional. If present, then retrieve the next batch of results |
| 1010 * from the preceding call to this method. pageToken must be the value of | 1014 * from the preceding call to this method. pageToken must be the value of |
| 1011 * nextPageToken from the previous response. The values of other method | 1015 * nextPageToken from the previous response. The values of other method |
| 1012 * parameters should be identical to those in the previous call. | 1016 * parameters should be identical to those in the previous call. |
| 1013 * | 1017 * |
| 1014 * [pageSize] - Optional. The maximum number of results to return from this | |
| 1015 * request. Non-positive values are ignored. The presence of nextPageToken in | |
| 1016 * the response indicates that more results might be available. | |
| 1017 * | |
| 1018 * Completes with a [ListMonitoredResourceDescriptorsResponse]. | 1018 * Completes with a [ListMonitoredResourceDescriptorsResponse]. |
| 1019 * | 1019 * |
| 1020 * Completes with a [commons.ApiRequestError] if the API endpoint returned an | 1020 * Completes with a [commons.ApiRequestError] if the API endpoint returned an |
| 1021 * error. | 1021 * error. |
| 1022 * | 1022 * |
| 1023 * If the used [http.Client] completes with an error when making a REST call, | 1023 * If the used [http.Client] completes with an error when making a REST call, |
| 1024 * this method will complete with the same error. | 1024 * this method will complete with the same error. |
| 1025 */ | 1025 */ |
| 1026 async.Future<ListMonitoredResourceDescriptorsResponse> list({core.String pageT
oken, core.int pageSize}) { | 1026 async.Future<ListMonitoredResourceDescriptorsResponse> list({core.int pageSize
, core.String pageToken}) { |
| 1027 var _url = null; | 1027 var _url = null; |
| 1028 var _queryParams = new core.Map(); | 1028 var _queryParams = new core.Map(); |
| 1029 var _uploadMedia = null; | 1029 var _uploadMedia = null; |
| 1030 var _uploadOptions = null; | 1030 var _uploadOptions = null; |
| 1031 var _downloadOptions = commons.DownloadOptions.Metadata; | 1031 var _downloadOptions = commons.DownloadOptions.Metadata; |
| 1032 var _body = null; | 1032 var _body = null; |
| 1033 | 1033 |
| 1034 if (pageSize != null) { |
| 1035 _queryParams["pageSize"] = ["${pageSize}"]; |
| 1036 } |
| 1034 if (pageToken != null) { | 1037 if (pageToken != null) { |
| 1035 _queryParams["pageToken"] = [pageToken]; | 1038 _queryParams["pageToken"] = [pageToken]; |
| 1036 } | 1039 } |
| 1037 if (pageSize != null) { | |
| 1038 _queryParams["pageSize"] = ["${pageSize}"]; | |
| 1039 } | |
| 1040 | 1040 |
| 1041 _url = 'v2/monitoredResourceDescriptors'; | 1041 _url = 'v2/monitoredResourceDescriptors'; |
| 1042 | 1042 |
| 1043 var _response = _requester.request(_url, | 1043 var _response = _requester.request(_url, |
| 1044 "GET", | 1044 "GET", |
| 1045 body: _body, | 1045 body: _body, |
| 1046 queryParams: _queryParams, | 1046 queryParams: _queryParams, |
| 1047 uploadOptions: _uploadOptions, | 1047 uploadOptions: _uploadOptions, |
| 1048 uploadMedia: _uploadMedia, | 1048 uploadMedia: _uploadMedia, |
| 1049 downloadOptions: _downloadOptions); | 1049 downloadOptions: _downloadOptions); |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1127 * Request parameters: | 1127 * Request parameters: |
| 1128 * | 1128 * |
| 1129 * [parent] - Required. The resource name that owns the logs: | 1129 * [parent] - Required. The resource name that owns the logs: |
| 1130 * "projects/[PROJECT_ID]" | 1130 * "projects/[PROJECT_ID]" |
| 1131 * "organizations/[ORGANIZATION_ID]" | 1131 * "organizations/[ORGANIZATION_ID]" |
| 1132 * "billingAccounts/[BILLING_ACCOUNT_ID]" | 1132 * "billingAccounts/[BILLING_ACCOUNT_ID]" |
| 1133 * "folders/[FOLDER_ID]" | 1133 * "folders/[FOLDER_ID]" |
| 1134 * | 1134 * |
| 1135 * Value must have pattern "^organizations/[^/]+$". | 1135 * Value must have pattern "^organizations/[^/]+$". |
| 1136 * | 1136 * |
| 1137 * [pageSize] - Optional. The maximum number of results to return from this | |
| 1138 * request. Non-positive values are ignored. The presence of nextPageToken in | |
| 1139 * the response indicates that more results might be available. | |
| 1140 * | |
| 1141 * [pageToken] - Optional. If present, then retrieve the next batch of results | 1137 * [pageToken] - Optional. If present, then retrieve the next batch of results |
| 1142 * from the preceding call to this method. pageToken must be the value of | 1138 * from the preceding call to this method. pageToken must be the value of |
| 1143 * nextPageToken from the previous response. The values of other method | 1139 * nextPageToken from the previous response. The values of other method |
| 1144 * parameters should be identical to those in the previous call. | 1140 * parameters should be identical to those in the previous call. |
| 1145 * | 1141 * |
| 1142 * [pageSize] - Optional. The maximum number of results to return from this |
| 1143 * request. Non-positive values are ignored. The presence of nextPageToken in |
| 1144 * the response indicates that more results might be available. |
| 1145 * |
| 1146 * Completes with a [ListLogsResponse]. | 1146 * Completes with a [ListLogsResponse]. |
| 1147 * | 1147 * |
| 1148 * Completes with a [commons.ApiRequestError] if the API endpoint returned an | 1148 * Completes with a [commons.ApiRequestError] if the API endpoint returned an |
| 1149 * error. | 1149 * error. |
| 1150 * | 1150 * |
| 1151 * If the used [http.Client] completes with an error when making a REST call, | 1151 * If the used [http.Client] completes with an error when making a REST call, |
| 1152 * this method will complete with the same error. | 1152 * this method will complete with the same error. |
| 1153 */ | 1153 */ |
| 1154 async.Future<ListLogsResponse> list(core.String parent, {core.int pageSize, co
re.String pageToken}) { | 1154 async.Future<ListLogsResponse> list(core.String parent, {core.String pageToken
, core.int pageSize}) { |
| 1155 var _url = null; | 1155 var _url = null; |
| 1156 var _queryParams = new core.Map(); | 1156 var _queryParams = new core.Map(); |
| 1157 var _uploadMedia = null; | 1157 var _uploadMedia = null; |
| 1158 var _uploadOptions = null; | 1158 var _uploadOptions = null; |
| 1159 var _downloadOptions = commons.DownloadOptions.Metadata; | 1159 var _downloadOptions = commons.DownloadOptions.Metadata; |
| 1160 var _body = null; | 1160 var _body = null; |
| 1161 | 1161 |
| 1162 if (parent == null) { | 1162 if (parent == null) { |
| 1163 throw new core.ArgumentError("Parameter parent is required."); | 1163 throw new core.ArgumentError("Parameter parent is required."); |
| 1164 } | 1164 } |
| 1165 if (pageToken != null) { |
| 1166 _queryParams["pageToken"] = [pageToken]; |
| 1167 } |
| 1165 if (pageSize != null) { | 1168 if (pageSize != null) { |
| 1166 _queryParams["pageSize"] = ["${pageSize}"]; | 1169 _queryParams["pageSize"] = ["${pageSize}"]; |
| 1167 } | 1170 } |
| 1168 if (pageToken != null) { | |
| 1169 _queryParams["pageToken"] = [pageToken]; | |
| 1170 } | |
| 1171 | 1171 |
| 1172 _url = 'v2/' + commons.Escaper.ecapeVariableReserved('$parent') + '/logs'; | 1172 _url = 'v2/' + commons.Escaper.ecapeVariableReserved('$parent') + '/logs'; |
| 1173 | 1173 |
| 1174 var _response = _requester.request(_url, | 1174 var _response = _requester.request(_url, |
| 1175 "GET", | 1175 "GET", |
| 1176 body: _body, | 1176 body: _body, |
| 1177 queryParams: _queryParams, | 1177 queryParams: _queryParams, |
| 1178 uploadOptions: _uploadOptions, | 1178 uploadOptions: _uploadOptions, |
| 1179 uploadMedia: _uploadMedia, | 1179 uploadMedia: _uploadMedia, |
| 1180 downloadOptions: _downloadOptions); | 1180 downloadOptions: _downloadOptions); |
| (...skipping 1992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3173 */ | 3173 */ |
| 3174 core.bool includeChildren; | 3174 core.bool includeChildren; |
| 3175 /** | 3175 /** |
| 3176 * Required. The client-assigned sink identifier, unique within the project. | 3176 * Required. The client-assigned sink identifier, unique within the project. |
| 3177 * Example: "my-syslog-errors-to-pubsub". Sink identifiers are limited to 100 | 3177 * Example: "my-syslog-errors-to-pubsub". Sink identifiers are limited to 100 |
| 3178 * characters and can include only the following characters: upper and | 3178 * characters and can include only the following characters: upper and |
| 3179 * lower-case alphanumeric characters, underscores, hyphens, and periods. | 3179 * lower-case alphanumeric characters, underscores, hyphens, and periods. |
| 3180 */ | 3180 */ |
| 3181 core.String name; | 3181 core.String name; |
| 3182 /** | 3182 /** |
| 3183 * Optional. The log entry format to use for this sink's exported log entries. | 3183 * Deprecated. The log entry format to use for this sink's exported log |
| 3184 * The v2 format is used by default. The v1 format is deprecated and should be | 3184 * entries. The v2 format is used by default and cannot be changed. |
| 3185 * used only as part of a migration effort to v2. See Migration to the v2 API. | |
| 3186 * Possible string values are: | 3185 * Possible string values are: |
| 3187 * - "VERSION_FORMAT_UNSPECIFIED" : An unspecified format version that will | 3186 * - "VERSION_FORMAT_UNSPECIFIED" : An unspecified format version that will |
| 3188 * default to V2. | 3187 * default to V2. |
| 3189 * - "V2" : LogEntry version 2 format. | 3188 * - "V2" : LogEntry version 2 format. |
| 3190 * - "V1" : LogEntry version 1 format. | 3189 * - "V1" : LogEntry version 1 format. |
| 3191 */ | 3190 */ |
| 3192 core.String outputVersionFormat; | 3191 core.String outputVersionFormat; |
| 3193 /** | 3192 /** |
| 3194 * Optional. The time at which this sink will begin exporting log entries. Log | 3193 * Optional. The time at which this sink will begin exporting log entries. Log |
| 3195 * entries are exported only if their timestamp is not earlier than the start | 3194 * entries are exported only if their timestamp is not earlier than the start |
| (...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3893 WriteLogEntriesResponse(); | 3892 WriteLogEntriesResponse(); |
| 3894 | 3893 |
| 3895 WriteLogEntriesResponse.fromJson(core.Map _json) { | 3894 WriteLogEntriesResponse.fromJson(core.Map _json) { |
| 3896 } | 3895 } |
| 3897 | 3896 |
| 3898 core.Map<core.String, core.Object> toJson() { | 3897 core.Map<core.String, core.Object> toJson() { |
| 3899 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); | 3898 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
| 3900 return _json; | 3899 return _json; |
| 3901 } | 3900 } |
| 3902 } | 3901 } |
| OLD | NEW |