This repository was archived by the owner on Sep 21, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Failed to load files.
PrevPrevious commit
🦉 Updates from OwlBot
  • Loading branch information
@gcf-owl-bot
gcf-owl-bot[bot] committedOct 5, 2021
commit 458c306aba27b88407805b532d829a19585cf10a
Original file line numberDiff line numberDiff line change
Expand Up@@ -21,7 +21,6 @@
from .types.resources import AudioStream
from .types.resources import EditAtom
from .types.resources import ElementaryStream
from .types.resources import Encryption
from .types.resources import Input
from .types.resources import Job
from .types.resources import JobConfig
Expand DownExpand Up@@ -57,7 +56,6 @@
"DeleteJobTemplateRequest",
"EditAtom",
"ElementaryStream",
"Encryption",
"GetJobRequest",
"GetJobTemplateRequest",
"Input",
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -18,7 +18,6 @@
AudioStream,
EditAtom,
ElementaryStream,
Encryption,
Input,
Job,
JobConfig,
Expand DownExpand Up@@ -52,7 +51,6 @@
"AudioStream",
"EditAtom",
"ElementaryStream",
"Encryption",
"Input",
"Job",
"JobConfig",
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -96,9 +96,14 @@ class DeleteJobRequest(proto.Message):
name (str):
Required. The name of the job to delete. Format:
``projects/{project}/locations/{location}/jobs/{job}``
allow_missing (bool):
If set to true, and the job is not found, the
request will succeed but no action will be taken
on the server.
"""

name = proto.Field(proto.STRING, number=1,)
allow_missing = proto.Field(proto.BOOL, number=2,)


class ListJobsResponse(proto.Message):
Expand DownExpand Up@@ -190,9 +195,14 @@ class DeleteJobTemplateRequest(proto.Message):
name (str):
Required. The name of the job template to delete.
``projects/{project}/locations/{location}/jobTemplates/{job_template}``
allow_missing (bool):
If set to true, and the job template is not
found, the request will succeed but no action
will be taken on the server.
"""

name = proto.Field(proto.STRING, number=1,)
allow_missing = proto.Field(proto.BOOL, number=2,)


class ListJobTemplatesResponse(proto.Message):
Expand Down
Loading