File tree 3 files changed +13
-6
lines changed
3 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -70,12 +70,15 @@ export class Eventarc {
70
70
/**
71
71
* Creates a reference to the Eventarc channel using the provided channel resource name.
72
72
* The channel resource name can be either:
73
- * * A fully qualified channel resource name:
73
+ *
74
+ * - A fully qualified channel resource name:
74
75
* `projects/{project}/locations/{location}/channels/{channel-id}`
75
- * * A partial resource name with location and channel ID, in which case
76
+ *
77
+ * - A partial resource name with location and channel ID, in which case
76
78
* the runtime project ID of the function is used:
77
79
* `locations/{location}/channels/{channel-id}`
78
- * * A partial channel ID, in which case the runtime project ID of the
80
+ *
81
+ * - A partial channel ID, in which case the runtime project ID of the
79
82
* function and `us-central1` as location is used:
80
83
* `{channel-id}`
81
84
*
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ export interface AbsoluteDelivery {
42
42
43
43
/**
44
44
* Type representing delivery schedule options.
45
+ * `DeliverySchedule` is a union type of {@link DelayDelivery} and {@link AbsoluteDelivery} types.
45
46
*/
46
47
export type DeliverySchedule = DelayDelivery | AbsoluteDelivery
47
48
Original file line number Diff line number Diff line change @@ -39,12 +39,15 @@ export class Functions {
39
39
/**
40
40
* Creates a reference to a {@link TaskQueue} for a given function name.
41
41
* The function name can be either:
42
- * * A fully qualified function resource name:
42
+ *
43
+ * 1) A fully qualified function resource name:
43
44
* `projects/{project}/locations/{location}/functions/{functionName}`
44
- * * A partial resource name with location and function name, in which case
45
+ *
46
+ * 2) A partial resource name with location and function name, in which case
45
47
* the runtime project ID is used:
46
48
* `locations/{location}/functions/{functionName}`
47
- * * A partial function name, in which case the runtime project ID and the default location,
49
+ *
50
+ * 3) A partial function name, in which case the runtime project ID and the default location,
48
51
* `us-central1`, is used:
49
52
* `{functionName}`
50
53
*
You can’t perform that action at this time.
0 commit comments