Skip to content

Commit

Permalink
feat: Generate Google.Apis.Monitoring.v1 version 1.68.0.3633
Browse files Browse the repository at this point in the history
  • Loading branch information
amanda-tarafa authored and jskeet committed Dec 18, 2024
1 parent a7e9bd0 commit e4101d5
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 2 deletions.
36 changes: 35 additions & 1 deletion DiscoveryJson/monitoring.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@
}
}
},
"revision": "20241003",
"revision": "20241212",
"rootUrl": "https://monitoring.googleapis.com/",
"schemas": {
"Aggregation": {
Expand Down Expand Up @@ -1060,6 +1060,33 @@
},
"type": "object"
},
"ColumnSortingOptions": {
"description": "Data structure to storing column's sort strategy",
"id": "ColumnSortingOptions",
"properties": {
"column": {
"description": "Optional. Column name to sort data by",
"type": "string"
},
"direction": {
"description": "Optional. A sorting direction that determines ascending or descending order. This is a legacy field kept for backwards compatibility with table.",
"enum": [
"SORT_ORDER_UNSPECIFIED",
"SORT_ORDER_NONE",
"SORT_ORDER_ASCENDING",
"SORT_ORDER_DESCENDING"
],
"enumDescriptions": [
"An unspecified sort order. This option is invalid when sorting is required.",
"No sorting is applied.",
"The lowest-valued entries are selected first.",
"The highest-valued entries are selected first."
],
"type": "string"
}
},
"type": "object"
},
"Dashboard": {
"description": "A Google Stackdriver dashboard. Dashboards define the content and layout of pages in the Stackdriver web application.",
"id": "Dashboard",
Expand Down Expand Up @@ -1253,6 +1280,13 @@
],
"type": "string"
},
"sort": {
"description": "Optional. A collection of sort options, affects the order of the data and legend.",
"items": {
"$ref": "ColumnSortingOptions"
},
"type": "array"
},
"targetAxis": {
"description": "Optional. The target axis to use for plotting the metric.",
"enum": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2031,6 +2031,24 @@ public class ColumnSettings : Google.Apis.Requests.IDirectResponseSchema
public virtual string ETag { get; set; }
}

/// <summary>Data structure to storing column's sort strategy</summary>
public class ColumnSortingOptions : Google.Apis.Requests.IDirectResponseSchema
{
/// <summary>Optional. Column name to sort data by</summary>
[Newtonsoft.Json.JsonPropertyAttribute("column")]
public virtual string Column { get; set; }

/// <summary>
/// Optional. A sorting direction that determines ascending or descending order. This is a legacy field kept for
/// backwards compatibility with table.
/// </summary>
[Newtonsoft.Json.JsonPropertyAttribute("direction")]
public virtual string Direction { get; set; }

/// <summary>The ETag of the item.</summary>
public virtual string ETag { get; set; }
}

/// <summary>
/// A Google Stackdriver dashboard. Dashboards define the content and layout of pages in the Stackdriver web
/// application.
Expand Down Expand Up @@ -2205,6 +2223,10 @@ public class DataSet : Google.Apis.Requests.IDirectResponseSchema
[Newtonsoft.Json.JsonPropertyAttribute("plotType")]
public virtual string PlotType { get; set; }

/// <summary>Optional. A collection of sort options, affects the order of the data and legend.</summary>
[Newtonsoft.Json.JsonPropertyAttribute("sort")]
public virtual System.Collections.Generic.IList<ColumnSortingOptions> Sort { get; set; }

/// <summary>Optional. The target axis to use for plotting the metric.</summary>
[Newtonsoft.Json.JsonPropertyAttribute("targetAxis")]
public virtual string TargetAxis { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- nupkg information -->
<PropertyGroup>
<Title>Google.Apis.Monitoring.v1 Client Library</Title>
<Version>1.68.0.3563</Version>
<Version>1.68.0.3633</Version>
<Authors>Google LLC</Authors>
<Copyright>Copyright 2024 Google LLC</Copyright>
<PackageTags>Google</PackageTags>
Expand Down

0 comments on commit e4101d5

Please sign in to comment.