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.monitoring.v3; | 3 library googleapis.monitoring.v3; |
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 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 /** | 628 /** |
629 * Lists metric descriptors that match a filter. This method does not require | 629 * Lists metric descriptors that match a filter. This method does not require |
630 * a Stackdriver account. | 630 * a Stackdriver account. |
631 * | 631 * |
632 * Request parameters: | 632 * Request parameters: |
633 * | 633 * |
634 * [name] - The project on which to execute the request. The format is | 634 * [name] - The project on which to execute the request. The format is |
635 * "projects/{project_id_or_number}". | 635 * "projects/{project_id_or_number}". |
636 * Value must have pattern "^projects/[^/]+$". | 636 * Value must have pattern "^projects/[^/]+$". |
637 * | 637 * |
| 638 * [filter] - If this field is empty, all custom and system-defined metric |
| 639 * descriptors are returned. Otherwise, the filter specifies which metric |
| 640 * descriptors are to be returned. For example, the following filter matches |
| 641 * all custom metrics: |
| 642 * metric.type = starts_with("custom.googleapis.com/") |
| 643 * |
638 * [pageToken] - If this field is not empty then it must contain the | 644 * [pageToken] - If this field is not empty then it must contain the |
639 * nextPageToken value returned by a previous call to this method. Using this | 645 * nextPageToken value returned by a previous call to this method. Using this |
640 * field causes the method to return additional results from the previous | 646 * field causes the method to return additional results from the previous |
641 * method call. | 647 * method call. |
642 * | 648 * |
643 * [pageSize] - A positive number that is the maximum number of results to | 649 * [pageSize] - A positive number that is the maximum number of results to |
644 * return. | 650 * return. |
645 * | 651 * |
646 * [filter] - If this field is empty, all custom and system-defined metric | |
647 * descriptors are returned. Otherwise, the filter specifies which metric | |
648 * descriptors are to be returned. For example, the following filter matches | |
649 * all custom metrics: | |
650 * metric.type = starts_with("custom.googleapis.com/") | |
651 * | |
652 * Completes with a [ListMetricDescriptorsResponse]. | 652 * Completes with a [ListMetricDescriptorsResponse]. |
653 * | 653 * |
654 * Completes with a [commons.ApiRequestError] if the API endpoint returned an | 654 * Completes with a [commons.ApiRequestError] if the API endpoint returned an |
655 * error. | 655 * error. |
656 * | 656 * |
657 * If the used [http.Client] completes with an error when making a REST call, | 657 * If the used [http.Client] completes with an error when making a REST call, |
658 * this method will complete with the same error. | 658 * this method will complete with the same error. |
659 */ | 659 */ |
660 async.Future<ListMetricDescriptorsResponse> list(core.String name, {core.Strin
g pageToken, core.int pageSize, core.String filter}) { | 660 async.Future<ListMetricDescriptorsResponse> list(core.String name, {core.Strin
g filter, core.String pageToken, core.int pageSize}) { |
661 var _url = null; | 661 var _url = null; |
662 var _queryParams = new core.Map(); | 662 var _queryParams = new core.Map(); |
663 var _uploadMedia = null; | 663 var _uploadMedia = null; |
664 var _uploadOptions = null; | 664 var _uploadOptions = null; |
665 var _downloadOptions = commons.DownloadOptions.Metadata; | 665 var _downloadOptions = commons.DownloadOptions.Metadata; |
666 var _body = null; | 666 var _body = null; |
667 | 667 |
668 if (name == null) { | 668 if (name == null) { |
669 throw new core.ArgumentError("Parameter name is required."); | 669 throw new core.ArgumentError("Parameter name is required."); |
670 } | 670 } |
| 671 if (filter != null) { |
| 672 _queryParams["filter"] = [filter]; |
| 673 } |
671 if (pageToken != null) { | 674 if (pageToken != null) { |
672 _queryParams["pageToken"] = [pageToken]; | 675 _queryParams["pageToken"] = [pageToken]; |
673 } | 676 } |
674 if (pageSize != null) { | 677 if (pageSize != null) { |
675 _queryParams["pageSize"] = ["${pageSize}"]; | 678 _queryParams["pageSize"] = ["${pageSize}"]; |
676 } | 679 } |
677 if (filter != null) { | |
678 _queryParams["filter"] = [filter]; | |
679 } | |
680 | 680 |
681 _url = 'v3/' + commons.Escaper.ecapeVariableReserved('$name') + '/metricDesc
riptors'; | 681 _url = 'v3/' + commons.Escaper.ecapeVariableReserved('$name') + '/metricDesc
riptors'; |
682 | 682 |
683 var _response = _requester.request(_url, | 683 var _response = _requester.request(_url, |
684 "GET", | 684 "GET", |
685 body: _body, | 685 body: _body, |
686 queryParams: _queryParams, | 686 queryParams: _queryParams, |
687 uploadOptions: _uploadOptions, | 687 uploadOptions: _uploadOptions, |
688 uploadMedia: _uploadMedia, | 688 uploadMedia: _uploadMedia, |
689 downloadOptions: _downloadOptions); | 689 downloadOptions: _downloadOptions); |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
869 /** | 869 /** |
870 * Lists time series that match a filter. This method does not require a | 870 * Lists time series that match a filter. This method does not require a |
871 * Stackdriver account. | 871 * Stackdriver account. |
872 * | 872 * |
873 * Request parameters: | 873 * Request parameters: |
874 * | 874 * |
875 * [name] - The project on which to execute the request. The format is | 875 * [name] - The project on which to execute the request. The format is |
876 * "projects/{project_id_or_number}". | 876 * "projects/{project_id_or_number}". |
877 * Value must have pattern "^projects/[^/]+$". | 877 * Value must have pattern "^projects/[^/]+$". |
878 * | 878 * |
879 * [aggregation_groupByFields] - The set of fields to preserve when | |
880 * crossSeriesReducer is specified. The groupByFields determine how the time | |
881 * series are partitioned into subsets prior to applying the aggregation | |
882 * function. Each subset contains time series that have the same value for | |
883 * each of the grouping fields. Each individual time series is a member of | |
884 * exactly one subset. The crossSeriesReducer is applied to each subset of | |
885 * time series. It is not possible to reduce across different resource types, | |
886 * so this field implicitly contains resource.type. Fields not specified in | |
887 * groupByFields are aggregated away. If groupByFields is not specified and | |
888 * all the time series have the same resource type, then the time series are | |
889 * aggregated into a single output time series. If crossSeriesReducer is not | |
890 * defined, this field is ignored. | |
891 * | |
892 * [interval_endTime] - Required. The end of the time interval. | |
893 * | |
894 * [aggregation_alignmentPeriod] - The alignment period for per-time series | |
895 * alignment. If present, alignmentPeriod must be at least 60 seconds. After | |
896 * per-time series alignment, each time series will contain data points only | |
897 * on the period boundaries. If perSeriesAligner is not specified or equals | |
898 * ALIGN_NONE, then this field is ignored. If perSeriesAligner is specified | |
899 * and does not equal ALIGN_NONE, then this field must be defined; otherwise | |
900 * an error is returned. | |
901 * | |
902 * [pageSize] - A positive number that is the maximum number of results to | |
903 * return. When view field sets to FULL, it limits the number of Points server | |
904 * will return; if view field is HEADERS, it limits the number of TimeSeries | |
905 * server will return. | |
906 * | |
907 * [orderBy] - Specifies the order in which the points of the time series | 879 * [orderBy] - Specifies the order in which the points of the time series |
908 * should be returned. By default, results are not ordered. Currently, this | 880 * should be returned. By default, results are not ordered. Currently, this |
909 * field must be left blank. | 881 * field must be left blank. |
910 * | 882 * |
911 * [aggregation_crossSeriesReducer] - The approach to be used to combine time | 883 * [aggregation_crossSeriesReducer] - The approach to be used to combine time |
912 * series. Not all reducer functions may be applied to all time series, | 884 * series. Not all reducer functions may be applied to all time series, |
913 * depending on the metric type and the value type of the original time | 885 * depending on the metric type and the value type of the original time |
914 * series. Reduction may change the metric type of value type of the time | 886 * series. Reduction may change the metric type of value type of the time |
915 * series.Time series data must be aligned in order to perform cross-time | 887 * series.Time series data must be aligned in order to perform cross-time |
916 * series reduction. If crossSeriesReducer is specified, then perSeriesAligner | 888 * series reduction. If crossSeriesReducer is specified, then perSeriesAligner |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
971 * | 943 * |
972 * [interval_startTime] - Optional. The beginning of the time interval. The | 944 * [interval_startTime] - Optional. The beginning of the time interval. The |
973 * default value for the start time is the end time. The start time must not | 945 * default value for the start time is the end time. The start time must not |
974 * be later than the end time. | 946 * be later than the end time. |
975 * | 947 * |
976 * [view] - Specifies which information is returned about the time series. | 948 * [view] - Specifies which information is returned about the time series. |
977 * Possible string values are: | 949 * Possible string values are: |
978 * - "FULL" : A FULL. | 950 * - "FULL" : A FULL. |
979 * - "HEADERS" : A HEADERS. | 951 * - "HEADERS" : A HEADERS. |
980 * | 952 * |
| 953 * [secondaryAggregation_crossSeriesReducer] - The approach to be used to |
| 954 * combine time series. Not all reducer functions may be applied to all time |
| 955 * series, depending on the metric type and the value type of the original |
| 956 * time series. Reduction may change the metric type of value type of the time |
| 957 * series.Time series data must be aligned in order to perform cross-time |
| 958 * series reduction. If crossSeriesReducer is specified, then perSeriesAligner |
| 959 * must be specified and not equal ALIGN_NONE and alignmentPeriod must be |
| 960 * specified; otherwise, an error is returned. |
| 961 * Possible string values are: |
| 962 * - "REDUCE_NONE" : A REDUCE_NONE. |
| 963 * - "REDUCE_MEAN" : A REDUCE_MEAN. |
| 964 * - "REDUCE_MIN" : A REDUCE_MIN. |
| 965 * - "REDUCE_MAX" : A REDUCE_MAX. |
| 966 * - "REDUCE_SUM" : A REDUCE_SUM. |
| 967 * - "REDUCE_STDDEV" : A REDUCE_STDDEV. |
| 968 * - "REDUCE_COUNT" : A REDUCE_COUNT. |
| 969 * - "REDUCE_COUNT_TRUE" : A REDUCE_COUNT_TRUE. |
| 970 * - "REDUCE_FRACTION_TRUE" : A REDUCE_FRACTION_TRUE. |
| 971 * - "REDUCE_PERCENTILE_99" : A REDUCE_PERCENTILE_99. |
| 972 * - "REDUCE_PERCENTILE_95" : A REDUCE_PERCENTILE_95. |
| 973 * - "REDUCE_PERCENTILE_50" : A REDUCE_PERCENTILE_50. |
| 974 * - "REDUCE_PERCENTILE_05" : A REDUCE_PERCENTILE_05. |
| 975 * |
| 976 * [secondaryAggregation_groupByFields] - The set of fields to preserve when |
| 977 * crossSeriesReducer is specified. The groupByFields determine how the time |
| 978 * series are partitioned into subsets prior to applying the aggregation |
| 979 * function. Each subset contains time series that have the same value for |
| 980 * each of the grouping fields. Each individual time series is a member of |
| 981 * exactly one subset. The crossSeriesReducer is applied to each subset of |
| 982 * time series. It is not possible to reduce across different resource types, |
| 983 * so this field implicitly contains resource.type. Fields not specified in |
| 984 * groupByFields are aggregated away. If groupByFields is not specified and |
| 985 * all the time series have the same resource type, then the time series are |
| 986 * aggregated into a single output time series. If crossSeriesReducer is not |
| 987 * defined, this field is ignored. |
| 988 * |
| 989 * [aggregation_groupByFields] - The set of fields to preserve when |
| 990 * crossSeriesReducer is specified. The groupByFields determine how the time |
| 991 * series are partitioned into subsets prior to applying the aggregation |
| 992 * function. Each subset contains time series that have the same value for |
| 993 * each of the grouping fields. Each individual time series is a member of |
| 994 * exactly one subset. The crossSeriesReducer is applied to each subset of |
| 995 * time series. It is not possible to reduce across different resource types, |
| 996 * so this field implicitly contains resource.type. Fields not specified in |
| 997 * groupByFields are aggregated away. If groupByFields is not specified and |
| 998 * all the time series have the same resource type, then the time series are |
| 999 * aggregated into a single output time series. If crossSeriesReducer is not |
| 1000 * defined, this field is ignored. |
| 1001 * |
| 1002 * [interval_endTime] - Required. The end of the time interval. |
| 1003 * |
| 1004 * [aggregation_alignmentPeriod] - The alignment period for per-time series |
| 1005 * alignment. If present, alignmentPeriod must be at least 60 seconds. After |
| 1006 * per-time series alignment, each time series will contain data points only |
| 1007 * on the period boundaries. If perSeriesAligner is not specified or equals |
| 1008 * ALIGN_NONE, then this field is ignored. If perSeriesAligner is specified |
| 1009 * and does not equal ALIGN_NONE, then this field must be defined; otherwise |
| 1010 * an error is returned. |
| 1011 * |
| 1012 * [secondaryAggregation_alignmentPeriod] - The alignment period for per-time |
| 1013 * series alignment. If present, alignmentPeriod must be at least 60 seconds. |
| 1014 * After per-time series alignment, each time series will contain data points |
| 1015 * only on the period boundaries. If perSeriesAligner is not specified or |
| 1016 * equals ALIGN_NONE, then this field is ignored. If perSeriesAligner is |
| 1017 * specified and does not equal ALIGN_NONE, then this field must be defined; |
| 1018 * otherwise an error is returned. |
| 1019 * |
| 1020 * [pageSize] - A positive number that is the maximum number of results to |
| 1021 * return. When view field sets to FULL, it limits the number of Points server |
| 1022 * will return; if view field is HEADERS, it limits the number of TimeSeries |
| 1023 * server will return. |
| 1024 * |
| 1025 * [secondaryAggregation_perSeriesAligner] - The approach to be used to align |
| 1026 * individual time series. Not all alignment functions may be applied to all |
| 1027 * time series, depending on the metric type and value type of the original |
| 1028 * time series. Alignment may change the metric type or the value type of the |
| 1029 * time series.Time series data must be aligned in order to perform cross-time |
| 1030 * series reduction. If crossSeriesReducer is specified, then perSeriesAligner |
| 1031 * must be specified and not equal ALIGN_NONE and alignmentPeriod must be |
| 1032 * specified; otherwise, an error is returned. |
| 1033 * Possible string values are: |
| 1034 * - "ALIGN_NONE" : A ALIGN_NONE. |
| 1035 * - "ALIGN_DELTA" : A ALIGN_DELTA. |
| 1036 * - "ALIGN_RATE" : A ALIGN_RATE. |
| 1037 * - "ALIGN_INTERPOLATE" : A ALIGN_INTERPOLATE. |
| 1038 * - "ALIGN_NEXT_OLDER" : A ALIGN_NEXT_OLDER. |
| 1039 * - "ALIGN_MIN" : A ALIGN_MIN. |
| 1040 * - "ALIGN_MAX" : A ALIGN_MAX. |
| 1041 * - "ALIGN_MEAN" : A ALIGN_MEAN. |
| 1042 * - "ALIGN_COUNT" : A ALIGN_COUNT. |
| 1043 * - "ALIGN_SUM" : A ALIGN_SUM. |
| 1044 * - "ALIGN_STDDEV" : A ALIGN_STDDEV. |
| 1045 * - "ALIGN_COUNT_TRUE" : A ALIGN_COUNT_TRUE. |
| 1046 * - "ALIGN_FRACTION_TRUE" : A ALIGN_FRACTION_TRUE. |
| 1047 * - "ALIGN_PERCENTILE_99" : A ALIGN_PERCENTILE_99. |
| 1048 * - "ALIGN_PERCENTILE_95" : A ALIGN_PERCENTILE_95. |
| 1049 * - "ALIGN_PERCENTILE_50" : A ALIGN_PERCENTILE_50. |
| 1050 * - "ALIGN_PERCENTILE_05" : A ALIGN_PERCENTILE_05. |
| 1051 * |
981 * Completes with a [ListTimeSeriesResponse]. | 1052 * Completes with a [ListTimeSeriesResponse]. |
982 * | 1053 * |
983 * Completes with a [commons.ApiRequestError] if the API endpoint returned an | 1054 * Completes with a [commons.ApiRequestError] if the API endpoint returned an |
984 * error. | 1055 * error. |
985 * | 1056 * |
986 * If the used [http.Client] completes with an error when making a REST call, | 1057 * If the used [http.Client] completes with an error when making a REST call, |
987 * this method will complete with the same error. | 1058 * this method will complete with the same error. |
988 */ | 1059 */ |
989 async.Future<ListTimeSeriesResponse> list(core.String name, {core.List<core.St
ring> aggregation_groupByFields, core.String interval_endTime, core.String aggre
gation_alignmentPeriod, core.int pageSize, core.String orderBy, core.String aggr
egation_crossSeriesReducer, core.String filter, core.String pageToken, core.Stri
ng aggregation_perSeriesAligner, core.String interval_startTime, core.String vie
w}) { | 1060 async.Future<ListTimeSeriesResponse> list(core.String name, {core.String order
By, core.String aggregation_crossSeriesReducer, core.String filter, core.String
pageToken, core.String aggregation_perSeriesAligner, core.String interval_startT
ime, core.String view, core.String secondaryAggregation_crossSeriesReducer, core
.List<core.String> secondaryAggregation_groupByFields, core.List<core.String> ag
gregation_groupByFields, core.String interval_endTime, core.String aggregation_a
lignmentPeriod, core.String secondaryAggregation_alignmentPeriod, core.int pageS
ize, core.String secondaryAggregation_perSeriesAligner}) { |
990 var _url = null; | 1061 var _url = null; |
991 var _queryParams = new core.Map(); | 1062 var _queryParams = new core.Map(); |
992 var _uploadMedia = null; | 1063 var _uploadMedia = null; |
993 var _uploadOptions = null; | 1064 var _uploadOptions = null; |
994 var _downloadOptions = commons.DownloadOptions.Metadata; | 1065 var _downloadOptions = commons.DownloadOptions.Metadata; |
995 var _body = null; | 1066 var _body = null; |
996 | 1067 |
997 if (name == null) { | 1068 if (name == null) { |
998 throw new core.ArgumentError("Parameter name is required."); | 1069 throw new core.ArgumentError("Parameter name is required."); |
999 } | 1070 } |
1000 if (aggregation_groupByFields != null) { | |
1001 _queryParams["aggregation.groupByFields"] = aggregation_groupByFields; | |
1002 } | |
1003 if (interval_endTime != null) { | |
1004 _queryParams["interval.endTime"] = [interval_endTime]; | |
1005 } | |
1006 if (aggregation_alignmentPeriod != null) { | |
1007 _queryParams["aggregation.alignmentPeriod"] = [aggregation_alignmentPeriod
]; | |
1008 } | |
1009 if (pageSize != null) { | |
1010 _queryParams["pageSize"] = ["${pageSize}"]; | |
1011 } | |
1012 if (orderBy != null) { | 1071 if (orderBy != null) { |
1013 _queryParams["orderBy"] = [orderBy]; | 1072 _queryParams["orderBy"] = [orderBy]; |
1014 } | 1073 } |
1015 if (aggregation_crossSeriesReducer != null) { | 1074 if (aggregation_crossSeriesReducer != null) { |
1016 _queryParams["aggregation.crossSeriesReducer"] = [aggregation_crossSeriesR
educer]; | 1075 _queryParams["aggregation.crossSeriesReducer"] = [aggregation_crossSeriesR
educer]; |
1017 } | 1076 } |
1018 if (filter != null) { | 1077 if (filter != null) { |
1019 _queryParams["filter"] = [filter]; | 1078 _queryParams["filter"] = [filter]; |
1020 } | 1079 } |
1021 if (pageToken != null) { | 1080 if (pageToken != null) { |
1022 _queryParams["pageToken"] = [pageToken]; | 1081 _queryParams["pageToken"] = [pageToken]; |
1023 } | 1082 } |
1024 if (aggregation_perSeriesAligner != null) { | 1083 if (aggregation_perSeriesAligner != null) { |
1025 _queryParams["aggregation.perSeriesAligner"] = [aggregation_perSeriesAlign
er]; | 1084 _queryParams["aggregation.perSeriesAligner"] = [aggregation_perSeriesAlign
er]; |
1026 } | 1085 } |
1027 if (interval_startTime != null) { | 1086 if (interval_startTime != null) { |
1028 _queryParams["interval.startTime"] = [interval_startTime]; | 1087 _queryParams["interval.startTime"] = [interval_startTime]; |
1029 } | 1088 } |
1030 if (view != null) { | 1089 if (view != null) { |
1031 _queryParams["view"] = [view]; | 1090 _queryParams["view"] = [view]; |
1032 } | 1091 } |
| 1092 if (secondaryAggregation_crossSeriesReducer != null) { |
| 1093 _queryParams["secondaryAggregation.crossSeriesReducer"] = [secondaryAggreg
ation_crossSeriesReducer]; |
| 1094 } |
| 1095 if (secondaryAggregation_groupByFields != null) { |
| 1096 _queryParams["secondaryAggregation.groupByFields"] = secondaryAggregation_
groupByFields; |
| 1097 } |
| 1098 if (aggregation_groupByFields != null) { |
| 1099 _queryParams["aggregation.groupByFields"] = aggregation_groupByFields; |
| 1100 } |
| 1101 if (interval_endTime != null) { |
| 1102 _queryParams["interval.endTime"] = [interval_endTime]; |
| 1103 } |
| 1104 if (aggregation_alignmentPeriod != null) { |
| 1105 _queryParams["aggregation.alignmentPeriod"] = [aggregation_alignmentPeriod
]; |
| 1106 } |
| 1107 if (secondaryAggregation_alignmentPeriod != null) { |
| 1108 _queryParams["secondaryAggregation.alignmentPeriod"] = [secondaryAggregati
on_alignmentPeriod]; |
| 1109 } |
| 1110 if (pageSize != null) { |
| 1111 _queryParams["pageSize"] = ["${pageSize}"]; |
| 1112 } |
| 1113 if (secondaryAggregation_perSeriesAligner != null) { |
| 1114 _queryParams["secondaryAggregation.perSeriesAligner"] = [secondaryAggregat
ion_perSeriesAligner]; |
| 1115 } |
1033 | 1116 |
1034 _url = 'v3/' + commons.Escaper.ecapeVariableReserved('$name') + '/timeSeries
'; | 1117 _url = 'v3/' + commons.Escaper.ecapeVariableReserved('$name') + '/timeSeries
'; |
1035 | 1118 |
1036 var _response = _requester.request(_url, | 1119 var _response = _requester.request(_url, |
1037 "GET", | 1120 "GET", |
1038 body: _body, | 1121 body: _body, |
1039 queryParams: _queryParams, | 1122 queryParams: _queryParams, |
1040 uploadOptions: _uploadOptions, | 1123 uploadOptions: _uploadOptions, |
1041 uploadMedia: _uploadMedia, | 1124 uploadMedia: _uploadMedia, |
1042 downloadOptions: _downloadOptions); | 1125 downloadOptions: _downloadOptions); |
(...skipping 884 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1927 if (metricDescriptors != null) { | 2010 if (metricDescriptors != null) { |
1928 _json["metricDescriptors"] = metricDescriptors.map((value) => (value).toJs
on()).toList(); | 2011 _json["metricDescriptors"] = metricDescriptors.map((value) => (value).toJs
on()).toList(); |
1929 } | 2012 } |
1930 if (nextPageToken != null) { | 2013 if (nextPageToken != null) { |
1931 _json["nextPageToken"] = nextPageToken; | 2014 _json["nextPageToken"] = nextPageToken; |
1932 } | 2015 } |
1933 return _json; | 2016 return _json; |
1934 } | 2017 } |
1935 } | 2018 } |
1936 | 2019 |
1937 /** The ListMonitoredResourcDescriptors response. */ | 2020 /** The ListMonitoredResourceDescriptors response. */ |
1938 class ListMonitoredResourceDescriptorsResponse { | 2021 class ListMonitoredResourceDescriptorsResponse { |
1939 /** | 2022 /** |
1940 * If there are more results than have been returned, then this field is set | 2023 * If there are more results than have been returned, then this field is set |
1941 * to a non-empty value. To see the additional results, use that value as | 2024 * to a non-empty value. To see the additional results, use that value as |
1942 * pageToken in the next call to this method. | 2025 * pageToken in the next call to this method. |
1943 */ | 2026 */ |
1944 core.String nextPageToken; | 2027 core.String nextPageToken; |
1945 /** | 2028 /** |
1946 * The monitored resource descriptors that are available to this project and | 2029 * The monitored resource descriptors that are available to this project and |
1947 * that match filter, if present. | 2030 * that match filter, if present. |
(...skipping 819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2767 } | 2850 } |
2768 if (int64Value != null) { | 2851 if (int64Value != null) { |
2769 _json["int64Value"] = int64Value; | 2852 _json["int64Value"] = int64Value; |
2770 } | 2853 } |
2771 if (stringValue != null) { | 2854 if (stringValue != null) { |
2772 _json["stringValue"] = stringValue; | 2855 _json["stringValue"] = stringValue; |
2773 } | 2856 } |
2774 return _json; | 2857 return _json; |
2775 } | 2858 } |
2776 } | 2859 } |
OLD | NEW |