This repository has been archived by the owner on Dec 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 140
/
rest.py
1333 lines (1094 loc) · 51 KB
/
rest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- coding: utf-8 -*-
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import dataclasses
import json # type: ignore
import re
from typing import Any, Callable, Dict, List, Optional, Sequence, Tuple, Union
import warnings
from google.api_core import gapic_v1, path_template, rest_helpers, rest_streaming
from google.api_core import exceptions as core_exceptions
from google.api_core import retry as retries
from google.auth import credentials as ga_credentials # type: ignore
from google.auth.transport.grpc import SslCredentials # type: ignore
from google.auth.transport.requests import AuthorizedSession # type: ignore
from google.cloud.location import locations_pb2 # type: ignore
from google.longrunning import operations_pb2
from google.protobuf import json_format
import grpc # type: ignore
from requests import __version__ as requests_version
try:
OptionalRetry = Union[retries.Retry, gapic_v1.method._MethodDefault]
except AttributeError: # pragma: NO COVER
OptionalRetry = Union[retries.Retry, object] # type: ignore
from google.protobuf import empty_pb2 # type: ignore
from google.cloud.dialogflow_v2.types import version
from google.cloud.dialogflow_v2.types import version as gcd_version
from .base import DEFAULT_CLIENT_INFO as BASE_DEFAULT_CLIENT_INFO
from .base import VersionsTransport
DEFAULT_CLIENT_INFO = gapic_v1.client_info.ClientInfo(
gapic_version=BASE_DEFAULT_CLIENT_INFO.gapic_version,
grpc_version=None,
rest_version=requests_version,
)
class VersionsRestInterceptor:
"""Interceptor for Versions.
Interceptors are used to manipulate requests, request metadata, and responses
in arbitrary ways.
Example use cases include:
* Logging
* Verifying requests according to service or custom semantics
* Stripping extraneous information from responses
These use cases and more can be enabled by injecting an
instance of a custom subclass when constructing the VersionsRestTransport.
.. code-block:: python
class MyCustomVersionsInterceptor(VersionsRestInterceptor):
def pre_create_version(self, request, metadata):
logging.log(f"Received request: {request}")
return request, metadata
def post_create_version(self, response):
logging.log(f"Received response: {response}")
return response
def pre_delete_version(self, request, metadata):
logging.log(f"Received request: {request}")
return request, metadata
def pre_get_version(self, request, metadata):
logging.log(f"Received request: {request}")
return request, metadata
def post_get_version(self, response):
logging.log(f"Received response: {response}")
return response
def pre_list_versions(self, request, metadata):
logging.log(f"Received request: {request}")
return request, metadata
def post_list_versions(self, response):
logging.log(f"Received response: {response}")
return response
def pre_update_version(self, request, metadata):
logging.log(f"Received request: {request}")
return request, metadata
def post_update_version(self, response):
logging.log(f"Received response: {response}")
return response
transport = VersionsRestTransport(interceptor=MyCustomVersionsInterceptor())
client = VersionsClient(transport=transport)
"""
def pre_create_version(
self,
request: gcd_version.CreateVersionRequest,
metadata: Sequence[Tuple[str, str]],
) -> Tuple[gcd_version.CreateVersionRequest, Sequence[Tuple[str, str]]]:
"""Pre-rpc interceptor for create_version
Override in a subclass to manipulate the request or metadata
before they are sent to the Versions server.
"""
return request, metadata
def post_create_version(self, response: gcd_version.Version) -> gcd_version.Version:
"""Post-rpc interceptor for create_version
Override in a subclass to manipulate the response
after it is returned by the Versions server but before
it is returned to user code.
"""
return response
def pre_delete_version(
self, request: version.DeleteVersionRequest, metadata: Sequence[Tuple[str, str]]
) -> Tuple[version.DeleteVersionRequest, Sequence[Tuple[str, str]]]:
"""Pre-rpc interceptor for delete_version
Override in a subclass to manipulate the request or metadata
before they are sent to the Versions server.
"""
return request, metadata
def pre_get_version(
self, request: version.GetVersionRequest, metadata: Sequence[Tuple[str, str]]
) -> Tuple[version.GetVersionRequest, Sequence[Tuple[str, str]]]:
"""Pre-rpc interceptor for get_version
Override in a subclass to manipulate the request or metadata
before they are sent to the Versions server.
"""
return request, metadata
def post_get_version(self, response: version.Version) -> version.Version:
"""Post-rpc interceptor for get_version
Override in a subclass to manipulate the response
after it is returned by the Versions server but before
it is returned to user code.
"""
return response
def pre_list_versions(
self, request: version.ListVersionsRequest, metadata: Sequence[Tuple[str, str]]
) -> Tuple[version.ListVersionsRequest, Sequence[Tuple[str, str]]]:
"""Pre-rpc interceptor for list_versions
Override in a subclass to manipulate the request or metadata
before they are sent to the Versions server.
"""
return request, metadata
def post_list_versions(
self, response: version.ListVersionsResponse
) -> version.ListVersionsResponse:
"""Post-rpc interceptor for list_versions
Override in a subclass to manipulate the response
after it is returned by the Versions server but before
it is returned to user code.
"""
return response
def pre_update_version(
self,
request: gcd_version.UpdateVersionRequest,
metadata: Sequence[Tuple[str, str]],
) -> Tuple[gcd_version.UpdateVersionRequest, Sequence[Tuple[str, str]]]:
"""Pre-rpc interceptor for update_version
Override in a subclass to manipulate the request or metadata
before they are sent to the Versions server.
"""
return request, metadata
def post_update_version(self, response: gcd_version.Version) -> gcd_version.Version:
"""Post-rpc interceptor for update_version
Override in a subclass to manipulate the response
after it is returned by the Versions server but before
it is returned to user code.
"""
return response
def pre_get_location(
self,
request: locations_pb2.GetLocationRequest,
metadata: Sequence[Tuple[str, str]],
) -> Tuple[locations_pb2.GetLocationRequest, Sequence[Tuple[str, str]]]:
"""Pre-rpc interceptor for get_location
Override in a subclass to manipulate the request or metadata
before they are sent to the Versions server.
"""
return request, metadata
def post_get_location(
self, response: locations_pb2.Location
) -> locations_pb2.Location:
"""Post-rpc interceptor for get_location
Override in a subclass to manipulate the response
after it is returned by the Versions server but before
it is returned to user code.
"""
return response
def pre_list_locations(
self,
request: locations_pb2.ListLocationsRequest,
metadata: Sequence[Tuple[str, str]],
) -> Tuple[locations_pb2.ListLocationsRequest, Sequence[Tuple[str, str]]]:
"""Pre-rpc interceptor for list_locations
Override in a subclass to manipulate the request or metadata
before they are sent to the Versions server.
"""
return request, metadata
def post_list_locations(
self, response: locations_pb2.ListLocationsResponse
) -> locations_pb2.ListLocationsResponse:
"""Post-rpc interceptor for list_locations
Override in a subclass to manipulate the response
after it is returned by the Versions server but before
it is returned to user code.
"""
return response
def pre_cancel_operation(
self,
request: operations_pb2.CancelOperationRequest,
metadata: Sequence[Tuple[str, str]],
) -> Tuple[operations_pb2.CancelOperationRequest, Sequence[Tuple[str, str]]]:
"""Pre-rpc interceptor for cancel_operation
Override in a subclass to manipulate the request or metadata
before they are sent to the Versions server.
"""
return request, metadata
def post_cancel_operation(self, response: None) -> None:
"""Post-rpc interceptor for cancel_operation
Override in a subclass to manipulate the response
after it is returned by the Versions server but before
it is returned to user code.
"""
return response
def pre_get_operation(
self,
request: operations_pb2.GetOperationRequest,
metadata: Sequence[Tuple[str, str]],
) -> Tuple[operations_pb2.GetOperationRequest, Sequence[Tuple[str, str]]]:
"""Pre-rpc interceptor for get_operation
Override in a subclass to manipulate the request or metadata
before they are sent to the Versions server.
"""
return request, metadata
def post_get_operation(
self, response: operations_pb2.Operation
) -> operations_pb2.Operation:
"""Post-rpc interceptor for get_operation
Override in a subclass to manipulate the response
after it is returned by the Versions server but before
it is returned to user code.
"""
return response
def pre_list_operations(
self,
request: operations_pb2.ListOperationsRequest,
metadata: Sequence[Tuple[str, str]],
) -> Tuple[operations_pb2.ListOperationsRequest, Sequence[Tuple[str, str]]]:
"""Pre-rpc interceptor for list_operations
Override in a subclass to manipulate the request or metadata
before they are sent to the Versions server.
"""
return request, metadata
def post_list_operations(
self, response: operations_pb2.ListOperationsResponse
) -> operations_pb2.ListOperationsResponse:
"""Post-rpc interceptor for list_operations
Override in a subclass to manipulate the response
after it is returned by the Versions server but before
it is returned to user code.
"""
return response
@dataclasses.dataclass
class VersionsRestStub:
_session: AuthorizedSession
_host: str
_interceptor: VersionsRestInterceptor
class VersionsRestTransport(VersionsTransport):
"""REST backend transport for Versions.
Service for managing [Versions][google.cloud.dialogflow.v2.Version].
This class defines the same methods as the primary client, so the
primary client can load the underlying transport implementation
and call it.
It sends JSON representations of protocol buffers over HTTP/1.1
"""
def __init__(
self,
*,
host: str = "dialogflow.googleapis.com",
credentials: Optional[ga_credentials.Credentials] = None,
credentials_file: Optional[str] = None,
scopes: Optional[Sequence[str]] = None,
client_cert_source_for_mtls: Optional[Callable[[], Tuple[bytes, bytes]]] = None,
quota_project_id: Optional[str] = None,
client_info: gapic_v1.client_info.ClientInfo = DEFAULT_CLIENT_INFO,
always_use_jwt_access: Optional[bool] = False,
url_scheme: str = "https",
interceptor: Optional[VersionsRestInterceptor] = None,
api_audience: Optional[str] = None,
) -> None:
"""Instantiate the transport.
Args:
host (Optional[str]):
The hostname to connect to.
credentials (Optional[google.auth.credentials.Credentials]): The
authorization credentials to attach to requests. These
credentials identify the application to the service; if none
are specified, the client will attempt to ascertain the
credentials from the environment.
credentials_file (Optional[str]): A file with credentials that can
be loaded with :func:`google.auth.load_credentials_from_file`.
This argument is ignored if ``channel`` is provided.
scopes (Optional(Sequence[str])): A list of scopes. This argument is
ignored if ``channel`` is provided.
client_cert_source_for_mtls (Callable[[], Tuple[bytes, bytes]]): Client
certificate to configure mutual TLS HTTP channel. It is ignored
if ``channel`` is provided.
quota_project_id (Optional[str]): An optional project to use for billing
and quota.
client_info (google.api_core.gapic_v1.client_info.ClientInfo):
The client info used to send a user-agent string along with
API requests. If ``None``, then default info will be used.
Generally, you only need to set this if you are developing
your own client library.
always_use_jwt_access (Optional[bool]): Whether self signed JWT should
be used for service account credentials.
url_scheme: the protocol scheme for the API endpoint. Normally
"https", but for testing or local servers,
"http" can be specified.
"""
# Run the base constructor
# TODO(yon-mg): resolve other ctor params i.e. scopes, quota, etc.
# TODO: When custom host (api_endpoint) is set, `scopes` must *also* be set on the
# credentials object
maybe_url_match = re.match("^(?P<scheme>http(?:s)?://)?(?P<host>.*)$", host)
if maybe_url_match is None:
raise ValueError(
f"Unexpected hostname structure: {host}"
) # pragma: NO COVER
url_match_items = maybe_url_match.groupdict()
host = f"{url_scheme}://{host}" if not url_match_items["scheme"] else host
super().__init__(
host=host,
credentials=credentials,
client_info=client_info,
always_use_jwt_access=always_use_jwt_access,
api_audience=api_audience,
)
self._session = AuthorizedSession(
self._credentials, default_host=self.DEFAULT_HOST
)
if client_cert_source_for_mtls:
self._session.configure_mtls_channel(client_cert_source_for_mtls)
self._interceptor = interceptor or VersionsRestInterceptor()
self._prep_wrapped_messages(client_info)
class _CreateVersion(VersionsRestStub):
def __hash__(self):
return hash("CreateVersion")
__REQUIRED_FIELDS_DEFAULT_VALUES: Dict[str, Any] = {}
@classmethod
def _get_unset_required_fields(cls, message_dict):
return {
k: v
for k, v in cls.__REQUIRED_FIELDS_DEFAULT_VALUES.items()
if k not in message_dict
}
def __call__(
self,
request: gcd_version.CreateVersionRequest,
*,
retry: OptionalRetry = gapic_v1.method.DEFAULT,
timeout: Optional[float] = None,
metadata: Sequence[Tuple[str, str]] = (),
) -> gcd_version.Version:
r"""Call the create version method over HTTP.
Args:
request (~.gcd_version.CreateVersionRequest):
The request object. The request message for
[Versions.CreateVersion][google.cloud.dialogflow.v2.Versions.CreateVersion].
retry (google.api_core.retry.Retry): Designation of what errors, if any,
should be retried.
timeout (float): The timeout for this request.
metadata (Sequence[Tuple[str, str]]): Strings which should be
sent along with the request as metadata.
Returns:
~.gcd_version.Version:
You can create multiple versions of your agent and
publish them to separate environments.
When you edit an agent, you are editing the draft agent.
At any point, you can save the draft agent as an agent
version, which is an immutable snapshot of your agent.
When you save the draft agent, it is published to the
default environment. When you create agent versions, you
can publish them to custom environments. You can create
a variety of custom environments for:
- testing
- development
- production
- etc.
For more information, see the `versions and environments
guide <https://cloud.google.com/dialogflow/docs/agents-versions>`__.
"""
http_options: List[Dict[str, str]] = [
{
"method": "post",
"uri": "/v2/{parent=projects/*/agent}/versions",
"body": "version",
},
{
"method": "post",
"uri": "/v2/{parent=projects/*/locations/*/agent}/versions",
"body": "version",
},
]
request, metadata = self._interceptor.pre_create_version(request, metadata)
pb_request = gcd_version.CreateVersionRequest.pb(request)
transcoded_request = path_template.transcode(http_options, pb_request)
# Jsonify the request body
body = json_format.MessageToJson(
transcoded_request["body"],
including_default_value_fields=False,
use_integers_for_enums=True,
)
uri = transcoded_request["uri"]
method = transcoded_request["method"]
# Jsonify the query params
query_params = json.loads(
json_format.MessageToJson(
transcoded_request["query_params"],
including_default_value_fields=False,
use_integers_for_enums=True,
)
)
query_params.update(self._get_unset_required_fields(query_params))
query_params["$alt"] = "json;enum-encoding=int"
# Send the request
headers = dict(metadata)
headers["Content-Type"] = "application/json"
response = getattr(self._session, method)(
"{host}{uri}".format(host=self._host, uri=uri),
timeout=timeout,
headers=headers,
params=rest_helpers.flatten_query_params(query_params, strict=True),
data=body,
)
# In case of error, raise the appropriate core_exceptions.GoogleAPICallError exception
# subclass.
if response.status_code >= 400:
raise core_exceptions.from_http_response(response)
# Return the response
resp = gcd_version.Version()
pb_resp = gcd_version.Version.pb(resp)
json_format.Parse(response.content, pb_resp, ignore_unknown_fields=True)
resp = self._interceptor.post_create_version(resp)
return resp
class _DeleteVersion(VersionsRestStub):
def __hash__(self):
return hash("DeleteVersion")
__REQUIRED_FIELDS_DEFAULT_VALUES: Dict[str, Any] = {}
@classmethod
def _get_unset_required_fields(cls, message_dict):
return {
k: v
for k, v in cls.__REQUIRED_FIELDS_DEFAULT_VALUES.items()
if k not in message_dict
}
def __call__(
self,
request: version.DeleteVersionRequest,
*,
retry: OptionalRetry = gapic_v1.method.DEFAULT,
timeout: Optional[float] = None,
metadata: Sequence[Tuple[str, str]] = (),
):
r"""Call the delete version method over HTTP.
Args:
request (~.version.DeleteVersionRequest):
The request object. The request message for
[Versions.DeleteVersion][google.cloud.dialogflow.v2.Versions.DeleteVersion].
retry (google.api_core.retry.Retry): Designation of what errors, if any,
should be retried.
timeout (float): The timeout for this request.
metadata (Sequence[Tuple[str, str]]): Strings which should be
sent along with the request as metadata.
"""
http_options: List[Dict[str, str]] = [
{
"method": "delete",
"uri": "/v2/{name=projects/*/agent/versions/*}",
},
{
"method": "delete",
"uri": "/v2/{name=projects/*/locations/*/agent/versions/*}",
},
]
request, metadata = self._interceptor.pre_delete_version(request, metadata)
pb_request = version.DeleteVersionRequest.pb(request)
transcoded_request = path_template.transcode(http_options, pb_request)
uri = transcoded_request["uri"]
method = transcoded_request["method"]
# Jsonify the query params
query_params = json.loads(
json_format.MessageToJson(
transcoded_request["query_params"],
including_default_value_fields=False,
use_integers_for_enums=True,
)
)
query_params.update(self._get_unset_required_fields(query_params))
query_params["$alt"] = "json;enum-encoding=int"
# Send the request
headers = dict(metadata)
headers["Content-Type"] = "application/json"
response = getattr(self._session, method)(
"{host}{uri}".format(host=self._host, uri=uri),
timeout=timeout,
headers=headers,
params=rest_helpers.flatten_query_params(query_params, strict=True),
)
# In case of error, raise the appropriate core_exceptions.GoogleAPICallError exception
# subclass.
if response.status_code >= 400:
raise core_exceptions.from_http_response(response)
class _GetVersion(VersionsRestStub):
def __hash__(self):
return hash("GetVersion")
__REQUIRED_FIELDS_DEFAULT_VALUES: Dict[str, Any] = {}
@classmethod
def _get_unset_required_fields(cls, message_dict):
return {
k: v
for k, v in cls.__REQUIRED_FIELDS_DEFAULT_VALUES.items()
if k not in message_dict
}
def __call__(
self,
request: version.GetVersionRequest,
*,
retry: OptionalRetry = gapic_v1.method.DEFAULT,
timeout: Optional[float] = None,
metadata: Sequence[Tuple[str, str]] = (),
) -> version.Version:
r"""Call the get version method over HTTP.
Args:
request (~.version.GetVersionRequest):
The request object. The request message for
[Versions.GetVersion][google.cloud.dialogflow.v2.Versions.GetVersion].
retry (google.api_core.retry.Retry): Designation of what errors, if any,
should be retried.
timeout (float): The timeout for this request.
metadata (Sequence[Tuple[str, str]]): Strings which should be
sent along with the request as metadata.
Returns:
~.version.Version:
You can create multiple versions of your agent and
publish them to separate environments.
When you edit an agent, you are editing the draft agent.
At any point, you can save the draft agent as an agent
version, which is an immutable snapshot of your agent.
When you save the draft agent, it is published to the
default environment. When you create agent versions, you
can publish them to custom environments. You can create
a variety of custom environments for:
- testing
- development
- production
- etc.
For more information, see the `versions and environments
guide <https://cloud.google.com/dialogflow/docs/agents-versions>`__.
"""
http_options: List[Dict[str, str]] = [
{
"method": "get",
"uri": "/v2/{name=projects/*/agent/versions/*}",
},
{
"method": "get",
"uri": "/v2/{name=projects/*/locations/*/agent/versions/*}",
},
]
request, metadata = self._interceptor.pre_get_version(request, metadata)
pb_request = version.GetVersionRequest.pb(request)
transcoded_request = path_template.transcode(http_options, pb_request)
uri = transcoded_request["uri"]
method = transcoded_request["method"]
# Jsonify the query params
query_params = json.loads(
json_format.MessageToJson(
transcoded_request["query_params"],
including_default_value_fields=False,
use_integers_for_enums=True,
)
)
query_params.update(self._get_unset_required_fields(query_params))
query_params["$alt"] = "json;enum-encoding=int"
# Send the request
headers = dict(metadata)
headers["Content-Type"] = "application/json"
response = getattr(self._session, method)(
"{host}{uri}".format(host=self._host, uri=uri),
timeout=timeout,
headers=headers,
params=rest_helpers.flatten_query_params(query_params, strict=True),
)
# In case of error, raise the appropriate core_exceptions.GoogleAPICallError exception
# subclass.
if response.status_code >= 400:
raise core_exceptions.from_http_response(response)
# Return the response
resp = version.Version()
pb_resp = version.Version.pb(resp)
json_format.Parse(response.content, pb_resp, ignore_unknown_fields=True)
resp = self._interceptor.post_get_version(resp)
return resp
class _ListVersions(VersionsRestStub):
def __hash__(self):
return hash("ListVersions")
__REQUIRED_FIELDS_DEFAULT_VALUES: Dict[str, Any] = {}
@classmethod
def _get_unset_required_fields(cls, message_dict):
return {
k: v
for k, v in cls.__REQUIRED_FIELDS_DEFAULT_VALUES.items()
if k not in message_dict
}
def __call__(
self,
request: version.ListVersionsRequest,
*,
retry: OptionalRetry = gapic_v1.method.DEFAULT,
timeout: Optional[float] = None,
metadata: Sequence[Tuple[str, str]] = (),
) -> version.ListVersionsResponse:
r"""Call the list versions method over HTTP.
Args:
request (~.version.ListVersionsRequest):
The request object. The request message for
[Versions.ListVersions][google.cloud.dialogflow.v2.Versions.ListVersions].
retry (google.api_core.retry.Retry): Designation of what errors, if any,
should be retried.
timeout (float): The timeout for this request.
metadata (Sequence[Tuple[str, str]]): Strings which should be
sent along with the request as metadata.
Returns:
~.version.ListVersionsResponse:
The response message for
[Versions.ListVersions][google.cloud.dialogflow.v2.Versions.ListVersions].
"""
http_options: List[Dict[str, str]] = [
{
"method": "get",
"uri": "/v2/{parent=projects/*/agent}/versions",
},
{
"method": "get",
"uri": "/v2/{parent=projects/*/locations/*/agent}/versions",
},
]
request, metadata = self._interceptor.pre_list_versions(request, metadata)
pb_request = version.ListVersionsRequest.pb(request)
transcoded_request = path_template.transcode(http_options, pb_request)
uri = transcoded_request["uri"]
method = transcoded_request["method"]
# Jsonify the query params
query_params = json.loads(
json_format.MessageToJson(
transcoded_request["query_params"],
including_default_value_fields=False,
use_integers_for_enums=True,
)
)
query_params.update(self._get_unset_required_fields(query_params))
query_params["$alt"] = "json;enum-encoding=int"
# Send the request
headers = dict(metadata)
headers["Content-Type"] = "application/json"
response = getattr(self._session, method)(
"{host}{uri}".format(host=self._host, uri=uri),
timeout=timeout,
headers=headers,
params=rest_helpers.flatten_query_params(query_params, strict=True),
)
# In case of error, raise the appropriate core_exceptions.GoogleAPICallError exception
# subclass.
if response.status_code >= 400:
raise core_exceptions.from_http_response(response)
# Return the response
resp = version.ListVersionsResponse()
pb_resp = version.ListVersionsResponse.pb(resp)
json_format.Parse(response.content, pb_resp, ignore_unknown_fields=True)
resp = self._interceptor.post_list_versions(resp)
return resp
class _UpdateVersion(VersionsRestStub):
def __hash__(self):
return hash("UpdateVersion")
__REQUIRED_FIELDS_DEFAULT_VALUES: Dict[str, Any] = {
"updateMask": {},
}
@classmethod
def _get_unset_required_fields(cls, message_dict):
return {
k: v
for k, v in cls.__REQUIRED_FIELDS_DEFAULT_VALUES.items()
if k not in message_dict
}
def __call__(
self,
request: gcd_version.UpdateVersionRequest,
*,
retry: OptionalRetry = gapic_v1.method.DEFAULT,
timeout: Optional[float] = None,
metadata: Sequence[Tuple[str, str]] = (),
) -> gcd_version.Version:
r"""Call the update version method over HTTP.
Args:
request (~.gcd_version.UpdateVersionRequest):
The request object. The request message for
[Versions.UpdateVersion][google.cloud.dialogflow.v2.Versions.UpdateVersion].
retry (google.api_core.retry.Retry): Designation of what errors, if any,
should be retried.
timeout (float): The timeout for this request.
metadata (Sequence[Tuple[str, str]]): Strings which should be
sent along with the request as metadata.
Returns:
~.gcd_version.Version:
You can create multiple versions of your agent and
publish them to separate environments.
When you edit an agent, you are editing the draft agent.
At any point, you can save the draft agent as an agent
version, which is an immutable snapshot of your agent.
When you save the draft agent, it is published to the
default environment. When you create agent versions, you
can publish them to custom environments. You can create
a variety of custom environments for:
- testing
- development
- production
- etc.
For more information, see the `versions and environments
guide <https://cloud.google.com/dialogflow/docs/agents-versions>`__.
"""
http_options: List[Dict[str, str]] = [
{
"method": "patch",
"uri": "/v2/{version.name=projects/*/agent/versions/*}",
"body": "version",
},
{
"method": "patch",
"uri": "/v2/{version.name=projects/*/locations/*/agent/versions/*}",
"body": "version",
},
]
request, metadata = self._interceptor.pre_update_version(request, metadata)
pb_request = gcd_version.UpdateVersionRequest.pb(request)
transcoded_request = path_template.transcode(http_options, pb_request)
# Jsonify the request body
body = json_format.MessageToJson(
transcoded_request["body"],
including_default_value_fields=False,
use_integers_for_enums=True,
)
uri = transcoded_request["uri"]
method = transcoded_request["method"]
# Jsonify the query params
query_params = json.loads(
json_format.MessageToJson(
transcoded_request["query_params"],
including_default_value_fields=False,
use_integers_for_enums=True,
)
)
query_params.update(self._get_unset_required_fields(query_params))
query_params["$alt"] = "json;enum-encoding=int"
# Send the request
headers = dict(metadata)
headers["Content-Type"] = "application/json"
response = getattr(self._session, method)(
"{host}{uri}".format(host=self._host, uri=uri),
timeout=timeout,
headers=headers,
params=rest_helpers.flatten_query_params(query_params, strict=True),
data=body,
)
# In case of error, raise the appropriate core_exceptions.GoogleAPICallError exception
# subclass.
if response.status_code >= 400:
raise core_exceptions.from_http_response(response)
# Return the response
resp = gcd_version.Version()
pb_resp = gcd_version.Version.pb(resp)
json_format.Parse(response.content, pb_resp, ignore_unknown_fields=True)
resp = self._interceptor.post_update_version(resp)
return resp
@property
def create_version(
self,
) -> Callable[[gcd_version.CreateVersionRequest], gcd_version.Version]:
# The return type is fine, but mypy isn't sophisticated enough to determine what's going on here.
# In C++ this would require a dynamic_cast
return self._CreateVersion(self._session, self._host, self._interceptor) # type: ignore
@property
def delete_version(
self,
) -> Callable[[version.DeleteVersionRequest], empty_pb2.Empty]:
# The return type is fine, but mypy isn't sophisticated enough to determine what's going on here.
# In C++ this would require a dynamic_cast
return self._DeleteVersion(self._session, self._host, self._interceptor) # type: ignore
@property
def get_version(self) -> Callable[[version.GetVersionRequest], version.Version]:
# The return type is fine, but mypy isn't sophisticated enough to determine what's going on here.
# In C++ this would require a dynamic_cast
return self._GetVersion(self._session, self._host, self._interceptor) # type: ignore
@property
def list_versions(
self,
) -> Callable[[version.ListVersionsRequest], version.ListVersionsResponse]:
# The return type is fine, but mypy isn't sophisticated enough to determine what's going on here.
# In C++ this would require a dynamic_cast
return self._ListVersions(self._session, self._host, self._interceptor) # type: ignore
@property
def update_version(
self,
) -> Callable[[gcd_version.UpdateVersionRequest], gcd_version.Version]:
# The return type is fine, but mypy isn't sophisticated enough to determine what's going on here.
# In C++ this would require a dynamic_cast
return self._UpdateVersion(self._session, self._host, self._interceptor) # type: ignore
@property
def get_location(self):
return self._GetLocation(self._session, self._host, self._interceptor) # type: ignore
class _GetLocation(VersionsRestStub):
def __call__(
self,
request: locations_pb2.GetLocationRequest,
*,
retry: OptionalRetry = gapic_v1.method.DEFAULT,
timeout: Optional[float] = None,
metadata: Sequence[Tuple[str, str]] = (),
) -> locations_pb2.Location:
r"""Call the get location method over HTTP.
Args:
request (locations_pb2.GetLocationRequest):
The request object for GetLocation method.