Skip to content

Commit 8a017d0

Browse files
authored
Merge branch 'main' into kaiyang_expansion_project
2 parents 0af7f90 + 06f4f2b commit 8a017d0

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

auth/end-user/web/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
google-auth==2.6.2
2-
google-auth-oauthlib==0.5.2
2+
google-auth-oauthlib==0.5.3
33
google-auth-httplib2==0.1.0
44
google-api-python-client==2.47.0
55
flask==2.1.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Pillow==9.1.1
22
apache-beam[gcp]==2.35.0
33
rasterio==1.3.0
4-
tensorflow==2.9.1
4+
tensorflow==2.9.2
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
pillow==9.2.0
22
apache-beam[gcp]==2.35.0
33
rasterio==1.3.0
4-
tensorflow==2.9.1
4+
tensorflow==2.9.2
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
apache-beam[gcp]==2.39.0
2-
tensorflow==2.9.1
2+
tensorflow==2.9.2

endpoints/getting-started/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ six==1.16.0
55
pyyaml==6.0
66
requests==2.27.1
77
google-auth==2.6.2
8-
google-auth-oauthlib==0.5.2
8+
google-auth-oauthlib==0.5.3

jobs/v3/api_client/batch_operation_sample.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# [END instantiate]
2525

2626

27-
# [START batch_job_create]
27+
# [START job_discovery_batch_job_create]
2828
def batch_job_create(client_service, company_name):
2929
import base_job_sample
3030
created_jobs = []
@@ -55,10 +55,10 @@ def job_create_callback(request_id, response, exception):
5555
batch.execute()
5656

5757
return created_jobs
58-
# [END batch_job_create]
58+
# [END job_discovery_batch_job_create]
5959

6060

61-
# [START batch_job_update]
61+
# [START job_discovery_batch_job_update]
6262
def batch_job_update(client_service, jobs_to_be_updated):
6363
updated_jobs = []
6464

@@ -91,10 +91,10 @@ def job_update_callback(request_id, response, exception):
9191
batch.execute()
9292

9393
return updated_jobs
94-
# [END batch_job_update]
94+
# [END job_discovery_batch_job_update]
9595

9696

97-
# [START batch_job_delete]
97+
# [START job_discovery_batch_job_delete]
9898
def batch_job_delete(client_service, jobs_to_be_deleted):
9999

100100
def job_delete_callback(request_id, response, exception):
@@ -113,7 +113,7 @@ def job_delete_callback(request_id, response, exception):
113113
callback=job_delete_callback)
114114

115115
batch.execute()
116-
# [END batch_job_delete]
116+
# [END job_discovery_batch_job_delete]
117117

118118

119119
def run_sample():

0 commit comments

Comments
 (0)