| 397 | * @category Management |
| 398 | */ |
| 399 | export class EventingFunctionUrlAuthBearer implements EventingFunctionUrlAuth { |
| 400 | /** |
| 401 | * Sets the auth method to Bearer. |
| 402 | */ |
| 403 | method = EventingFunctionUrlAuthMethod.Bearer |
| 404 | |
| 405 | constructor(v: Omit<EventingFunctionUrlAuthBearer, 'method'>) { |
| 406 | this.key = v.key |
| 407 | } |
| 408 | |
| 409 | /** |
| 410 | * Specifies the bearer token to use. |
| 411 | */ |
| 412 | key: string |
| 413 | } |
| 414 | |
| 415 | /** |
| 416 | * Specifies a url binding for an eventing function. |
nothing calls this directly
no outgoing calls
no test coverage detected