Skip to content

Commit

Permalink
feat(monitoring): update the api
Browse files Browse the repository at this point in the history
#### monitoring:v1

The following keys were added:
- schemas.OperationMetadata (Total Keys: 7)

#### monitoring:v3

The following keys were added:
- schemas.OperationMetadata (Total Keys: 7)
- schemas.ServiceLevelObjective.properties.userLabels (Total Keys: 2)
  • Loading branch information
yoshi-automation committed Jun 29, 2021
1 parent cf54d56 commit d1ffbfc
Show file tree
Hide file tree
Showing 3 changed files with 97 additions and 2 deletions.
18 changes: 18 additions & 0 deletions docs/dyn/monitoring_v3.services.serviceLevelObjectives.html
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,9 @@ <h3>Method Details</h3>
&quot;windowPeriod&quot;: &quot;A String&quot;, # Duration over which window quality is evaluated. Must be an integer fraction of a day and at least 60s.
},
},
&quot;userLabels&quot;: { # Labels which have been used to annotate the service-level objective. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.
&quot;a_key&quot;: &quot;A String&quot;,
},
}

serviceLevelObjectiveId: string, Optional. The ServiceLevelObjective id to use for this ServiceLevelObjective. If omitted, an id will be generated instead. Must match the pattern [a-z0-9\-]+
Expand Down Expand Up @@ -299,6 +302,9 @@ <h3>Method Details</h3>
&quot;windowPeriod&quot;: &quot;A String&quot;, # Duration over which window quality is evaluated. Must be an integer fraction of a day and at least 60s.
},
},
&quot;userLabels&quot;: { # Labels which have been used to annotate the service-level objective. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.
&quot;a_key&quot;: &quot;A String&quot;,
},
}</pre>
</div>

Expand Down Expand Up @@ -428,6 +434,9 @@ <h3>Method Details</h3>
&quot;windowPeriod&quot;: &quot;A String&quot;, # Duration over which window quality is evaluated. Must be an integer fraction of a day and at least 60s.
},
},
&quot;userLabels&quot;: { # Labels which have been used to annotate the service-level objective. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.
&quot;a_key&quot;: &quot;A String&quot;,
},
}</pre>
</div>

Expand Down Expand Up @@ -545,6 +554,9 @@ <h3>Method Details</h3>
&quot;windowPeriod&quot;: &quot;A String&quot;, # Duration over which window quality is evaluated. Must be an integer fraction of a day and at least 60s.
},
},
&quot;userLabels&quot;: { # Labels which have been used to annotate the service-level objective. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.
&quot;a_key&quot;: &quot;A String&quot;,
},
},
],
}</pre>
Expand Down Expand Up @@ -662,6 +674,9 @@ <h3>Method Details</h3>
&quot;windowPeriod&quot;: &quot;A String&quot;, # Duration over which window quality is evaluated. Must be an integer fraction of a day and at least 60s.
},
},
&quot;userLabels&quot;: { # Labels which have been used to annotate the service-level objective. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.
&quot;a_key&quot;: &quot;A String&quot;,
},
}

updateMask: string, A set of field paths defining which fields to use for the update.
Expand Down Expand Up @@ -762,6 +777,9 @@ <h3>Method Details</h3>
&quot;windowPeriod&quot;: &quot;A String&quot;, # Duration over which window quality is evaluated. Must be an integer fraction of a day and at least 60s.
},
},
&quot;userLabels&quot;: { # Labels which have been used to annotate the service-level objective. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.
&quot;a_key&quot;: &quot;A String&quot;,
},
}</pre>
</div>

Expand Down
37 changes: 36 additions & 1 deletion googleapiclient/discovery_cache/documents/monitoring.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@
}
}
},
"revision": "20210606",
"revision": "20210618",
"rootUrl": "https://monitoring.googleapis.com/",
"schemas": {
"Aggregation": {
Expand Down Expand Up @@ -742,6 +742,41 @@
},
"type": "object"
},
"OperationMetadata": {
"description": "Contains metadata for longrunning operation for the edit Metrics Scope endpoints.",
"id": "OperationMetadata",
"properties": {
"createTime": {
"description": "The time when the batch request was received.",
"format": "google-datetime",
"type": "string"
},
"state": {
"description": "Current state of the batch operation.",
"enum": [
"STATE_UNSPECIFIED",
"CREATED",
"RUNNING",
"DONE",
"CANCELLED"
],
"enumDescriptions": [
"Invalid.",
"Request has been received.",
"Request is actively being processed.",
"The batch processing is done.",
"The batch processing was cancelled."
],
"type": "string"
},
"updateTime": {
"description": "The time when the operation result was last updated.",
"format": "google-datetime",
"type": "string"
}
},
"type": "object"
},
"Option": {
"description": "A protocol buffer option, which can be attached to a message, field, enumeration, etc.",
"id": "Option",
Expand Down
44 changes: 43 additions & 1 deletion googleapiclient/discovery_cache/documents/monitoring.v3.json
Original file line number Diff line number Diff line change
Expand Up @@ -2541,7 +2541,7 @@
}
}
},
"revision": "20210606",
"revision": "20210618",
"rootUrl": "https://monitoring.googleapis.com/",
"schemas": {
"Aggregation": {
Expand Down Expand Up @@ -4453,6 +4453,41 @@
},
"type": "object"
},
"OperationMetadata": {
"description": "Contains metadata for longrunning operation for the edit Metrics Scope endpoints.",
"id": "OperationMetadata",
"properties": {
"createTime": {
"description": "The time when the batch request was received.",
"format": "google-datetime",
"type": "string"
},
"state": {
"description": "Current state of the batch operation.",
"enum": [
"STATE_UNSPECIFIED",
"CREATED",
"RUNNING",
"DONE",
"CANCELLED"
],
"enumDescriptions": [
"Invalid.",
"Request has been received.",
"Request is actively being processed.",
"The batch processing is done.",
"The batch processing was cancelled."
],
"type": "string"
},
"updateTime": {
"description": "The time when the operation result was last updated.",
"format": "google-datetime",
"type": "string"
}
},
"type": "object"
},
"Option": {
"description": "A protocol buffer option, which can be attached to a message, field, enumeration, etc.",
"id": "Option",
Expand Down Expand Up @@ -4748,6 +4783,13 @@
"serviceLevelIndicator": {
"$ref": "ServiceLevelIndicator",
"description": "The definition of good service, used to measure and calculate the quality of the Service's performance with respect to a single aspect of service quality."
},
"userLabels": {
"additionalProperties": {
"type": "string"
},
"description": "Labels which have been used to annotate the service-level objective. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.",
"type": "object"
}
},
"type": "object"
Expand Down

0 comments on commit d1ffbfc

Please sign in to comment.