Google云平台服务似乎存在云和api客户端库的不同路径。在api客户端库中,我们可以使用默认凭据,但是我无法找到使用云库中的默认凭据的文档。
我们仍然可以使用云库中的默认凭据吗?如果不是建议的生成具有项目的api密钥的服务用户的路径?
答案 0 :(得分:1)
对于Cloud Storage和Stackdriver监控客户端库,您应该能够默认使用应用程序默认凭据,就像任何其他Google客户端库一样。
如果未提供凭据,google-cloud将尝试检测 他们来自环境使用
GoogleCredentials.getApplicationDefault()
将搜索 以下位置的默认应用程序凭据(按顺序):
GOOGLE_APPLICATION_CREDENTIALS
环境变量指向的凭证文件。- Google Cloud SDK
gcloud auth application-default login
命令提供的凭据。- Google App Engine内置凭据。
- Google Cloud Shell内置凭据Google
- 计算引擎内置凭据
醇>
根据您的设置和环境,您可以选择最适合的方法。通常,指向凭证json文件的环境变量GOOGLE_APPLICATION_CREDENTIALS
最容易设置。
完成上述操作后,您可以继续拨打相应的图书馆。
对于云存储(复制示例here):
// Imports the Google Cloud client library
import com.google.cloud.storage.Bucket;
import com.google.cloud.storage.BucketInfo;
import com.google.cloud.storage.Storage;
import com.google.cloud.storage.StorageOptions;
public class QuickstartSample {
public static void main(String... args) throws Exception {
// Instantiates a client
Storage storage = StorageOptions.getDefaultInstance().getService();
// The name for the new bucket
String bucketName = args[0]; // "my-new-bucket";
// Creates the new bucket
Bucket bucket = storage.create(BucketInfo.of(bucketName));
System.out.printf("Bucket %s created.%n", bucket.getName());
}
}
对于Stackdriver监控(复制示例here):
import com.google.api.Metric;
import com.google.api.MonitoredResource;
// Imports the Google Cloud client library
import com.google.cloud.monitoring.spi.v3.MetricServiceClient;
import com.google.monitoring.v3.CreateTimeSeriesRequest;
import com.google.monitoring.v3.Point;
import com.google.monitoring.v3.ProjectName;
import com.google.monitoring.v3.TimeInterval;
import com.google.monitoring.v3.TimeSeries;
import com.google.monitoring.v3.TypedValue;
import com.google.protobuf.util.Timestamps;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class QuickstartSample {
public static void main(String... args) throws Exception {
// Your Google Cloud Platform project ID
String projectId = System.getProperty("projectId");
if (projectId == null) {
System.err.println("Usage: QuickstartSample -DprojectId=YOUR_PROJECT_ID");
return;
}
// Instantiates a client
MetricServiceClient metricServiceClient = MetricServiceClient.create();
// Prepares an individual data point
TimeInterval interval = TimeInterval.newBuilder()
.setEndTime(Timestamps.fromMillis(System.currentTimeMillis()))
.build();
TypedValue value = TypedValue.newBuilder()
.setDoubleValue(123.45)
.build();
Point point = Point.newBuilder()
.setInterval(interval)
.setValue(value)
.build();
List<Point> pointList = new ArrayList<>();
pointList.add(point);
ProjectName name = ProjectName.create(projectId);
// Prepares the metric descriptor
Map<String, String> metricLabels = new HashMap<String, String>();
metricLabels.put("store_id", "Pittsburg");
Metric metric = Metric.newBuilder()
.setType("custom.googleapis.com/stores/daily_sales")
.putAllLabels(metricLabels)
.build();
// Prepares the monitored resource descriptor
Map<String, String> resourceLabels = new HashMap<String, String>();
resourceLabels.put("project_id", projectId);
MonitoredResource resource = MonitoredResource.newBuilder()
.setType("global")
.putAllLabels(resourceLabels)
.build();
// Prepares the time series request
TimeSeries timeSeries = TimeSeries.newBuilder()
.setMetric(metric)
.setResource(resource)
.addAllPoints(pointList)
.build();
List<TimeSeries> timeSeriesList = new ArrayList<>();
timeSeriesList.add(timeSeries);
CreateTimeSeriesRequest request = CreateTimeSeriesRequest.newBuilder()
.setNameWithProjectName(name)
.addAllTimeSeries(timeSeriesList)
.build();
// Writes time series data
metricServiceClient.createTimeSeries(request);
System.out.printf("Done writing time series data.%n");
metricServiceClient.close();
}
}
BTW,云监控库APIs v2已弃用,支持Stackdriver Monitoring库和APIs v3。