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_beta.logging.v2beta1; | 3 library googleapis_beta.logging.v2beta1; |
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 2131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2142 */ | 2142 */ |
2143 core.bool includeChildren; | 2143 core.bool includeChildren; |
2144 /** | 2144 /** |
2145 * Required. The client-assigned sink identifier, unique within the project. | 2145 * Required. The client-assigned sink identifier, unique within the project. |
2146 * Example: "my-syslog-errors-to-pubsub". Sink identifiers are limited to 100 | 2146 * Example: "my-syslog-errors-to-pubsub". Sink identifiers are limited to 100 |
2147 * characters and can include only the following characters: upper and | 2147 * characters and can include only the following characters: upper and |
2148 * lower-case alphanumeric characters, underscores, hyphens, and periods. | 2148 * lower-case alphanumeric characters, underscores, hyphens, and periods. |
2149 */ | 2149 */ |
2150 core.String name; | 2150 core.String name; |
2151 /** | 2151 /** |
2152 * Optional. The log entry format to use for this sink's exported log entries. | 2152 * Deprecated. The log entry format to use for this sink's exported log |
2153 * The v2 format is used by default. The v1 format is deprecated and should be | 2153 * entries. The v2 format is used by default and cannot be changed. |
2154 * used only as part of a migration effort to v2. See Migration to the v2 API. | |
2155 * Possible string values are: | 2154 * Possible string values are: |
2156 * - "VERSION_FORMAT_UNSPECIFIED" : An unspecified format version that will | 2155 * - "VERSION_FORMAT_UNSPECIFIED" : An unspecified format version that will |
2157 * default to V2. | 2156 * default to V2. |
2158 * - "V2" : LogEntry version 2 format. | 2157 * - "V2" : LogEntry version 2 format. |
2159 * - "V1" : LogEntry version 1 format. | 2158 * - "V1" : LogEntry version 1 format. |
2160 */ | 2159 */ |
2161 core.String outputVersionFormat; | 2160 core.String outputVersionFormat; |
2162 /** | 2161 /** |
2163 * Optional. The time at which this sink will begin exporting log entries. Log | 2162 * Optional. The time at which this sink will begin exporting log entries. Log |
2164 * entries are exported only if their timestamp is not earlier than the start | 2163 * 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... |
2862 WriteLogEntriesResponse(); | 2861 WriteLogEntriesResponse(); |
2863 | 2862 |
2864 WriteLogEntriesResponse.fromJson(core.Map _json) { | 2863 WriteLogEntriesResponse.fromJson(core.Map _json) { |
2865 } | 2864 } |
2866 | 2865 |
2867 core.Map<core.String, core.Object> toJson() { | 2866 core.Map<core.String, core.Object> toJson() { |
2868 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); | 2867 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
2869 return _json; | 2868 return _json; |
2870 } | 2869 } |
2871 } | 2870 } |
OLD | NEW |