@@ -76,7 +76,7 @@ export type DeleteCallback = ApiResponseCallback;
76
76
* produced by the Apache Web Server, but the log
77
77
* `compute.googleapis.com/activity_log` is produced by Google Compute Engine.
78
78
*
79
- * @see [Introduction to Logs] {@link https://cloud.google.com/logging/docs/basic-concepts#logs}
79
+ * See {@link https://cloud.google.com/logging/docs/basic-concepts#logs|Introduction to Logs }
80
80
*
81
81
* @class
82
82
*
@@ -117,7 +117,7 @@ class Log implements LogSeverityFunctions {
117
117
/**
118
118
* Write a log entry with a severity of "ALERT".
119
119
*
120
- * This is a simple wrapper around {@link Log# write}. All arguments are
120
+ * This is a simple wrapper around {@link Log.write|Log. write}. All arguments are
121
121
* the same as documented there.
122
122
*
123
123
* @param {Entry|Entry[] } entry A log entry, or array of entries, to write.
@@ -164,7 +164,7 @@ class Log implements LogSeverityFunctions {
164
164
/**
165
165
* Write a log entry with a severity of "CRITICAL".
166
166
*
167
- * This is a simple wrapper around {@link Log# write}. All arguments are
167
+ * This is a simple wrapper around {@link Log.write|Log. write}. All arguments are
168
168
* the same as documented there.
169
169
*
170
170
* @param {Entry|Entry[] } entry A log entry, or array of entries, to write.
@@ -214,7 +214,7 @@ class Log implements LogSeverityFunctions {
214
214
/**
215
215
* Write a log entry with a severity of "DEBUG".
216
216
*
217
- * This is a simple wrapper around {@link Log# write}. All arguments are
217
+ * This is a simple wrapper around {@link Log.write|Log. write}. All arguments are
218
218
* the same as documented there.
219
219
*
220
220
* @param {Entry|Entry[] } entry A log entry, or array of entries, to write.
@@ -270,7 +270,7 @@ class Log implements LogSeverityFunctions {
270
270
/**
271
271
* Delete the log.
272
272
*
273
- * @see [projects.logs.delete API Documentation] {@link https://cloud.google.com/logging/docs/reference/v2/rest/v2/projects.logs/delete}
273
+ * See {@link https://cloud.google.com/logging/docs/reference/v2/rest/v2/projects.logs/delete|projects.logs.delete API Documentation }
274
274
*
275
275
* @param {object } [gaxOptions] Request configuration options, outlined
276
276
* here: https://googleapis.github.io/gax-nodejs/global.html#CallOptions.
@@ -321,7 +321,7 @@ class Log implements LogSeverityFunctions {
321
321
/**
322
322
* Write a log entry with a severity of "EMERGENCY".
323
323
*
324
- * This is a simple wrapper around {@link Log# write}. All arguments are
324
+ * This is a simple wrapper around {@link Log.write|Log. write}. All arguments are
325
325
* the same as documented there.
326
326
*
327
327
* @param {Entry|Entry[] } entry A log entry, or array of entries, to write.
@@ -371,12 +371,12 @@ class Log implements LogSeverityFunctions {
371
371
* the object returned in other API calls, such as
372
372
* {@link Log#write}.
373
373
*
374
- * Note, [Cloud Logging Quotas and limits] {@link https://cloud.google.com/logging/quotas}
374
+ * Note, {@link https://cloud.google.com/logging/quotas|Cloud Logging Quotas and limits }
375
375
* dictates that the maximum log entry size, including all
376
376
* [LogEntry Resource properties]{@link https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry},
377
377
* cannot exceed _approximately_ 256 KB.
378
378
*
379
- * @see [LogEntry JSON representation] {@link https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry}
379
+ * See {@link https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry|LogEntry JSON representation }
380
380
*
381
381
* @param {?object } metadata See a
382
382
* [LogEntry
@@ -444,7 +444,7 @@ class Log implements LogSeverityFunctions {
444
444
/**
445
445
* Write a log entry with a severity of "ERROR".
446
446
*
447
- * This is a simple wrapper around {@link Log# write}. All arguments are
447
+ * This is a simple wrapper around {@link Log.write|Log. write}. All arguments are
448
448
* the same as documented there.
449
449
*
450
450
* @param {Entry|Entry[] } entry A log entry, or array of entries, to write.
@@ -492,7 +492,7 @@ class Log implements LogSeverityFunctions {
492
492
* This method is a wrapper around {module:logging#getEntries}, but with a
493
493
* filter specified to only return entries from this log.
494
494
*
495
- * @see [entries.list API Documentation] {@link https://cloud.google.com/logging/docs/reference/v2/rest/v2/entries/list}
495
+ * See {@link https://cloud.google.com/logging/docs/reference/v2/rest/v2/entries/list|entries.list API Documentation }
496
496
*
497
497
* @param {GetEntriesRequest } [query] Query object for listing entries.
498
498
* @param {GetEntriesCallback } [callback] Callback function.
@@ -644,7 +644,7 @@ class Log implements LogSeverityFunctions {
644
644
/**
645
645
* Write a log entry with a severity of "INFO".
646
646
*
647
- * This is a simple wrapper around {@link Log# write}. All arguments are
647
+ * This is a simple wrapper around {@link Log.write|Log. write}. All arguments are
648
648
* the same as documented there.
649
649
*
650
650
* @param {Entry|Entry[] } entry A log entry, or array of entries, to write.
@@ -691,7 +691,7 @@ class Log implements LogSeverityFunctions {
691
691
/**
692
692
* Write a log entry with a severity of "NOTICE".
693
693
*
694
- * This is a simple wrapper around {@link Log# write}. All arguments are
694
+ * This is a simple wrapper around {@link Log.write|Log. write}. All arguments are
695
695
* the same as documented there.
696
696
*
697
697
* @param {Entry|Entry[] } entry A log entry, or array of entries, to write.
@@ -738,7 +738,7 @@ class Log implements LogSeverityFunctions {
738
738
/**
739
739
* Write a log entry with a severity of "WARNING".
740
740
*
741
- * This is a simple wrapper around {@link Log# write}. All arguments are
741
+ * This is a simple wrapper around {@link Log.write|Log. write}. All arguments are
742
742
* the same as documented there.
743
743
*
744
744
* @param {Entry|Entry[] } entry A log entry, or array of entries, to write.
@@ -809,12 +809,12 @@ class Log implements LogSeverityFunctions {
809
809
/**
810
810
* Write log entries to Cloud Logging.
811
811
*
812
- * Note, [Cloud Logging Quotas and limits] {@link https://cloud.google.com/logging/quotas}
812
+ * Note, {@link https://cloud.google.com/logging/quotas|Cloud Logging Quotas and limits }
813
813
* dictates that the maximum cumulative size of all entries per write,
814
814
* including all [LogEntry Resource properties]{@link https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry},
815
815
* cannot exceed _approximately_ 10 MB.
816
816
*
817
- * @see [entries.write API Documentation] {@link https://cloud.google.com/logging/docs/reference/v2/rest/v2/entries/write}
817
+ * See {@link https://cloud.google.com/logging/docs/reference/v2/rest/v2/entries/write|entries.write API Documentation }
818
818
*
819
819
* @param {Entry|Entry[] } entry A log entry, or array of entries, to write.
820
820
* @param {?WriteOptions } [options] Write options
0 commit comments