16
16
// to be loaded as the JS file.
17
17
18
18
/**
19
- * An object that describes the schema of a
20
- * MonitoredResource object using a type name
21
- * and a set of labels. For example, the monitored resource descriptor for
22
- * Google Compute Engine VM instances has a type of
19
+ * An object that describes the schema of a MonitoredResource object using a
20
+ * type name and a set of labels. For example, the monitored resource
21
+ * descriptor for Google Compute Engine VM instances has a type of
23
22
* `"gce_instance"` and specifies the use of the labels `"instance_id"` and
24
23
* `"zone"` to identify particular VM instances.
25
24
*
@@ -69,13 +68,11 @@ const MonitoredResourceDescriptor = {
69
68
* An object representing a resource that can be used for monitoring, logging,
70
69
* billing, or other purposes. Examples include virtual machine instances,
71
70
* databases, and storage devices such as disks. The `type` field identifies a
72
- * MonitoredResourceDescriptor object
73
- * that describes the resource's schema. Information in the `labels` field
74
- * identifies the actual resource and its attributes according to the schema.
75
- * For example, a particular Compute Engine VM instance could be represented by
76
- * the following object, because the
77
- * MonitoredResourceDescriptor for
78
- * `"gce_instance"` has labels
71
+ * MonitoredResourceDescriptor object that describes the resource's
72
+ * schema. Information in the `labels` field identifies the actual resource and
73
+ * its attributes according to the schema. For example, a particular Compute
74
+ * Engine VM instance could be represented by the following object, because the
75
+ * MonitoredResourceDescriptor for `"gce_instance"` has labels
79
76
* `"instance_id"` and `"zone"`:
80
77
*
81
78
* { "type": "gce_instance",
@@ -84,10 +81,8 @@ const MonitoredResourceDescriptor = {
84
81
*
85
82
* @property {string } type
86
83
* Required. The monitored resource type. This field must match
87
- * the `type` field of a
88
- * MonitoredResourceDescriptor
89
- * object. For example, the type of a Compute Engine VM instance is
90
- * `gce_instance`.
84
+ * the `type` field of a MonitoredResourceDescriptor object. For
85
+ * example, the type of a Compute Engine VM instance is `gce_instance`.
91
86
*
92
87
* @property {Object.<string, string> } labels
93
88
* Required. Values for all of the labels listed in the associated monitored
@@ -103,12 +98,12 @@ const MonitoredResource = {
103
98
} ;
104
99
105
100
/**
106
- * Auxiliary metadata for a MonitoredResource
107
- * object. MonitoredResource objects contain the
108
- * minimum set of information to uniquely identify a monitored resource
109
- * instance. There is some other useful auxiliary metadata. Monitoring and
110
- * Logging use an ingestion pipeline to extract metadata for cloud resources of
111
- * all types, and store the metadata in this message.
101
+ * Auxiliary metadata for a MonitoredResource object.
102
+ * MonitoredResource objects contain the minimum set of information to
103
+ * uniquely identify a monitored resource instance. There is some other useful
104
+ * auxiliary metadata. Monitoring and Logging use an ingestion
105
+ * pipeline to extract metadata for cloud resources of all types, and store
106
+ * the metadata in this message.
112
107
*
113
108
* @property {Object } systemLabels
114
109
* Output only. Values for predefined system metadata labels.
0 commit comments