-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathfunqy-aws-lambda-http.adoc.po
100 lines (86 loc) · 5.85 KB
/
funqy-aws-lambda-http.adoc.po
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
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR Free Software Foundation, Inc.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2023-10-29 08:09+0000\n"
"PO-Revision-Date: 2024-05-27 21:44-0300\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.4.3\n"
#. This guide is maintained in the main Quarkus repository
#. and pull requests should be submitted there:
#. https://github.com/quarkusio/quarkus/tree/main/docs/src/main/asciidoc
#. type: Title =
#: _guides/funqy-aws-lambda-http.adoc
msgid "Funqy HTTP Binding with AWS Lambda "
msgstr "Vinculação HTTP do Funqy com o AWS Lambda "
#: _guides/funqy-aws-lambda-http.adoc
msgid ""
"If you want to allow HTTP clients to invoke on your Funqy functions on AWS Lambda, Quarkus allows you to expose multiple\n"
"Funqy functions through HTTP deployed as one AWS Lambda. This approach does add overhead over the\n"
"regular Funqy AWS Lambda integration and also requires you to use AWS API Gateway."
msgstr "Se você deseja permitir que clientes HTTP invoquem suas funções Funqy no AWS Lambda, o Quarkus permite expor várias funções Funqy por meio de HTTP implantado como um AWS Lambda. Este método adiciona uma sobrecarga em relação à integração regular do Funqy com o AWS Lambda e também requer o uso do AWS API Gateway."
#: _guides/funqy-aws-lambda-http.adoc
msgid ""
"Follow the xref:aws-lambda-http.adoc[AWS Lambda Http Guide]. It walks through using a variety of HTTP\n"
"frameworks on AWS Lambda, including Funqy."
msgstr "Siga o xref:aws-lambda-http.adoc[Guia de Http do AWS Lambda] . Ele orienta o uso de uma variedade de estruturas HTTP no AWS Lambda, incluindo o Funqy."
#: _guides/funqy-aws-lambda-http.adoc
msgid ""
"The Funqy HTTP + AWS Lambda binding is not a replacement for REST over HTTP. Because Funqy\n"
"needs to be portable across a lot of different protocols and function providers its HTTP binding\n"
"is very minimalistic and you will lose REST features like linking and the ability to leverage\n"
"HTTP features like cache-control and conditional GETs. You may want to consider using Quarkus's\n"
"Jakarta REST, Spring MVC, or Vert.x Web Reactive Route xref:aws-lambda-http.adoc[support] instead. They also work with Quarkus and AWS Lambda."
msgstr "A associação Funqy HTTP + AWS Lambda não substitui o REST sobre HTTP. Como o Funqy precisa ser portátil em vários protocolos e provedores de funções diferentes, sua associação HTTP é muito minimalista e você perderá os recursos REST, como vinculação, e a capacidade de aproveitar os recursos HTTP, como controle de cache e GETs condicionais. Talvez queira considerar o uso do xref:aws-lambda-http.adoc[suporte a] Jakarta REST, Spring MVC ou Vert.x Web Reactive Route do Quarkus. Eles também funcionam com o Quarkus e o AWS Lambda."
#. type: Title ==
#: _guides/funqy-aws-lambda-http.adoc
msgid "An additional Quickstart"
msgstr "Um Quickstart adicional"
#: _guides/funqy-aws-lambda-http.adoc
msgid ""
"Beyond generating an AWS project that is covered in the xref:aws-lambda-http.adoc[AWS Lambda Http Guide],\n"
"there's also a quickstart for running Funqy HTTP on AWS Lambda."
msgstr "Além de gerar um projeto AWS que é abordado no xref:aws-lambda-http.adoc[Guia do AWS Lambda Http] , há também um início rápido para executar o Funqy HTTP no AWS Lambda."
#. type: Plain text
#: _guides/funqy-aws-lambda-http.adoc
msgid "Clone the Git repository: `git clone {quickstarts-clone-url}`, or download an {quickstarts-archive-url}[archive]."
msgstr "Clone o repositório Git: `git clone {quickstarts-clone-url}`, ou baixe um {quickstarts-archive-url}[arquivo]."
#. type: Plain text
#: _guides/funqy-aws-lambda-http.adoc
msgid "The solution is located in the `funqy-amazon-lambda-quickstart` link:{quickstarts-tree-url}/funqy-quickstarts/funqy-amazon-lambda-http-quickstart[directory]."
msgstr "A solução está localizada no diretório `funqy-amazon-lambda-quickstart` link:{quickstarts-tree-url}/funqy-quickstarts/funqy-amazon-lambda-http-quickstart[diretório]."
#. type: Title ==
#: _guides/funqy-aws-lambda-http.adoc
msgid "The Code"
msgstr "O Código"
#: _guides/funqy-aws-lambda-http.adoc
msgid ""
"There is nothing special about the code and more importantly nothing AWS specific. Funqy functions can be deployed to many\n"
"environments and AWS Lambda is one of them. The Java code is actually the same exact code as the link:{quickstarts-tree-url}/funqy-quickstarts/funqy-http-quickstart[funqy-http-quickstart]."
msgstr "Não há nada de especial no código e, mais importante, nada específico do AWS. As funções Funqy podem ser implementadas em muitos ambientes e o AWS Lambda é um deles. O código Java é, na verdade, exatamente o mesmo código que o link:{quickstarts-tree-url}/funqy-quickstarts/funqy-http-quickstart[funqy-http-quickstart] ."
#. type: Title ==
#: _guides/funqy-aws-lambda-http.adoc
msgid "Getting Started"
msgstr "Primeiros passos"
#: _guides/funqy-aws-lambda-http.adoc
msgid ""
"The steps to get this quickstart running are exactly the same as defined in the xref:aws-lambda-http.adoc[AWS Lambda HTTP Guide].\n"
"These differences are that you are running from a quickstart and the maven dependencies are slightly different."
msgstr "As etapas para colocar esse início rápido em execução são exatamente as mesmas definidas no xref:aws-lambda-http.adoc[Guia HTTP do AWS Lambda] . As diferenças são que você está executando a partir de um início rápido e as dependências do maven são ligeiramente diferentes."
#. type: Block title
#: _guides/funqy-aws-lambda-http.adoc
msgid "pom.xml"
msgstr "pom.xml"
#. type: Block title
#: _guides/funqy-aws-lambda-http.adoc
msgid "build.gradle"
msgstr "build.gradle"