You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 16, 2023. It is now read-only.
@@ -43,7 +44,7 @@ See the [Authentication][authentication] section in the base directory's README.
43
44
### Prerequisites
44
45
45
46
You will need a [Google Cloud Platform Console][developer-console] project with the Cloud Filestore API [API enabled][enable-api].
46
-
You will need to [enable billing][enable-billing] to use Cloud Filestore API.
47
+
You will need to [enable billing][enable-billing] to use Google Cloud Filestore API.
47
48
[Follow these instructions][create-project] to get your project set up. You will also need to set up the local development environment by
48
49
[installing the Google Cloud SDK][cloud-sdk] and running the following commands in command line:
49
50
`gcloud auth login` and `gcloud config set project [YOUR PROJECT ID]`.
@@ -58,10 +59,14 @@ to add `google-cloud-filestore` as a dependency in your code.
58
59
59
60
[Cloud Filestore API][product-docs] instances are fully managed NFS file servers on Google Cloud for use with applications running on Compute Engine virtual machines (VMs) instances or Google Kubernetes Engine clusters.
60
61
61
-
62
62
See the [Cloud Filestore API client library docs][javadocs] to learn how to
63
63
use this Cloud Filestore API Client Library.
64
64
65
+
66
+
67
+
68
+
69
+
65
70
## Troubleshooting
66
71
67
72
To get help, follow the instructions in the [shared Troubleshooting document][troubleshooting].
@@ -70,10 +75,50 @@ To get help, follow the instructions in the [shared Troubleshooting document][tr
70
75
71
76
Cloud Filestore API uses gRPC for the transport layer.
72
77
73
-
## Java Versions
78
+
## Supported Java Versions
74
79
75
80
Java 7 or above is required for using this client.
76
81
82
+
Google's Java client libraries,
83
+
[Google Cloud Client Libraries][cloudlibs]
84
+
and
85
+
[Google Cloud API Libraries][apilibs],
86
+
follow the
87
+
[Oracle Java SE support roadmap][oracle]
88
+
(see the Oracle Java SE Product Releases section).
89
+
90
+
### For new development
91
+
92
+
In general, new feature development occurs with support for the lowest Java
93
+
LTS version covered by Oracle's Premier Support (which typically lasts 5 years
94
+
from initial General Availability). If the minimum required JVM for a given
95
+
library is changed, it is accompanied by a [semver][semver] major release.
96
+
97
+
Java 11 and (in September 2021) Java 17 are the best choices for new
98
+
development.
99
+
100
+
### Keeping production systems current
101
+
102
+
Google tests its client libraries with all current LTS versions covered by
103
+
Oracle's Extended Support (which typically lasts 8 years from initial
104
+
General Availability).
105
+
106
+
#### Legacy support
107
+
108
+
Google's client libraries support legacy versions of Java runtimes with long
109
+
term stable libraries that don't receive feature updates on a best efforts basis
110
+
as it may not be possible to backport all patches.
111
+
112
+
Google provides updates on a best efforts basis to apps that continue to use
113
+
Java 7, though apps might need to upgrade to current versions of the library
114
+
that supports their JVM.
115
+
116
+
#### Where to find specific information
117
+
118
+
The latest versions and the supported Java versions are identified on
119
+
the individual GitHub repository `github.com/GoogleAPIs/java-SERVICENAME`
0 commit comments