This repository was archived by the owner on Mar 26, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
%namespace/%name_%version/%sub/services/%service/transports
tests/integration/goldens Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -233,7 +233,8 @@ class {{service.name}}RestTransport({{service.name}}Transport):
233233 headers = dict(metadata)
234234 headers['Content-Type'] = 'application/json'
235235 response=getattr(self._session, method)(
236- uri,
236+ # Replace with proper schema configuration (http/https) logic
237+ "https://{host}{uri}".format(host=self._host, uri=uri),
237238 timeout=timeout,
238239 headers=headers,
239240 params=rest_helpers.flatten_query_params(query_params),
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ setuptools.setup(
3434 'google-api-core[grpc] >= 1.28.0, < 3.0.0dev',
3535 {% endif %}
3636 'libcst >= 0.2.5',
37- 'proto-plus >= 1.19.4 ',
37+ 'proto-plus >= 1.19.7 ',
3838 {% if api .requires_package (('google' , 'iam' , 'v1' )) or opts .add_iam_methods %}
3939 'grpc-google-iam-v1 >= 0.12.3, < 0.13dev',
4040 {% endif %}
Original file line number Diff line number Diff line change 3636 install_requires = (
3737 'google-api-core[grpc] >= 1.28.0, < 3.0.0dev' ,
3838 'libcst >= 0.2.5' ,
39- 'proto-plus >= 1.19.4 ' ,
39+ 'proto-plus >= 1.19.7 ' ,
4040 'grpc-google-iam-v1 >= 0.12.3, < 0.13dev' ,
4141 ),
4242 python_requires = '>=3.6' ,
Original file line number Diff line number Diff line change 3636 install_requires = (
3737 'google-api-core[grpc] >= 1.28.0, < 3.0.0dev' ,
3838 'libcst >= 0.2.5' ,
39- 'proto-plus >= 1.19.4 ' ,
39+ 'proto-plus >= 1.19.7 ' ,
4040 ),
4141 python_requires = '>=3.6' ,
4242 classifiers = [
Original file line number Diff line number Diff line change 3636 install_requires = (
3737 'google-api-core[grpc] >= 1.28.0, < 3.0.0dev' ,
3838 'libcst >= 0.2.5' ,
39- 'proto-plus >= 1.19.4 ' ,
39+ 'proto-plus >= 1.19.7 ' ,
4040 ),
4141 python_requires = '>=3.6' ,
4242 classifiers = [
Original file line number Diff line number Diff line change 3636 install_requires = (
3737 'google-api-core[grpc] >= 1.28.0, < 3.0.0dev' ,
3838 'libcst >= 0.2.5' ,
39- 'proto-plus >= 1.19.4 ' ,
39+ 'proto-plus >= 1.19.7 ' ,
4040 ),
4141 python_requires = '>=3.6' ,
4242 classifiers = [
You can’t perform that action at this time.
0 commit comments