Change the service name from "chromeos-moblab.googleapis.com" to "chromeosmoblab.googleapis.com"
PiperOrigin-RevId: 302060989
This commit is contained in:
parent
98a3392375
commit
9a3a7f33be
|
|
@ -33,7 +33,7 @@ option optimize_for = SPEED;
|
|||
|
||||
// Manages Chrome OS build services.
|
||||
service BuildService {
|
||||
option (google.api.default_host) = "chromeos-moblab.googleapis.com";
|
||||
option (google.api.default_host) = "chromeosmoblab.googleapis.com";
|
||||
|
||||
// Lists all builds for the given build target and model in descending order
|
||||
// for the milestones and build versions.
|
||||
|
|
@ -81,7 +81,7 @@ message ListBuildsRequest {
|
|||
string parent = 1 [
|
||||
(google.api.field_behavior) = REQUIRED,
|
||||
(google.api.resource_reference) = {
|
||||
type: "chromeos-moblab.googleapis.com/Model"
|
||||
type: "chromeosmoblab.googleapis.com/Model"
|
||||
}
|
||||
];
|
||||
|
||||
|
|
@ -128,7 +128,7 @@ message CheckBuildStageStatusRequest {
|
|||
string name = 1 [
|
||||
(google.api.field_behavior) = REQUIRED,
|
||||
(google.api.resource_reference) = {
|
||||
type: "chromeos-moblab.googleapis.com/BuildArtifact"
|
||||
type: "chromeosmoblab.googleapis.com/BuildArtifact"
|
||||
}
|
||||
];
|
||||
}
|
||||
|
|
@ -154,7 +154,7 @@ message StageBuildRequest {
|
|||
string name = 1 [
|
||||
(google.api.field_behavior) = REQUIRED,
|
||||
(google.api.resource_reference) = {
|
||||
type: "chromeos-moblab.googleapis.com/BuildArtifact"
|
||||
type: "chromeosmoblab.googleapis.com/BuildArtifact"
|
||||
}
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
type: google.api.Service
|
||||
config_version: 3
|
||||
name: chromeos-moblab.googleapis.com
|
||||
name: chromeosmoblab.googleapis.com
|
||||
title: Chrome OS Moblab API
|
||||
|
||||
control:
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ option optimize_for = SPEED;
|
|||
// Resource that represents a build target.
|
||||
message BuildTarget {
|
||||
option (google.api.resource) = {
|
||||
type: "chromeos-moblab.googleapis.com/BuildTarget"
|
||||
type: "chromeosmoblab.googleapis.com/BuildTarget"
|
||||
pattern: "buildTargets/{build_target}"
|
||||
};
|
||||
|
||||
|
|
@ -40,7 +40,7 @@ message BuildTarget {
|
|||
// non-unified build, the model name is the same as its build target name.
|
||||
message Model {
|
||||
option (google.api.resource) = {
|
||||
type: "chromeos-moblab.googleapis.com/Model"
|
||||
type: "chromeosmoblab.googleapis.com/Model"
|
||||
pattern: "buildTargets/{build_target}/models/{model}"
|
||||
};
|
||||
|
||||
|
|
@ -52,7 +52,7 @@ message Model {
|
|||
// Resource that represents a chrome OS milestone.
|
||||
message Milestone {
|
||||
option (google.api.resource) = {
|
||||
type: "chromeos-moblab.googleapis.com/Milestone"
|
||||
type: "chromeosmoblab.googleapis.com/Milestone"
|
||||
pattern: "milestones/{milestone}"
|
||||
};
|
||||
|
||||
|
|
@ -66,7 +66,7 @@ message Milestone {
|
|||
// NEXT_TAG: 4
|
||||
message Build {
|
||||
option (google.api.resource) = {
|
||||
type: "chromeos-moblab.googleapis.com/Build"
|
||||
type: "chromeosmoblab.googleapis.com/Build"
|
||||
pattern: "buildTargets/{build_target}/models/{model}/builds/{build}"
|
||||
};
|
||||
|
||||
|
|
@ -78,8 +78,8 @@ message Build {
|
|||
// The milestone that owns the build.
|
||||
// Format: milestones/{milestone}
|
||||
string milestone = 2 [(google.api.resource_reference) = {
|
||||
type: "chromeos-moblab.googleapis.com/Milestone"
|
||||
}];
|
||||
type: "chromeosmoblab.googleapis.com/Milestone"
|
||||
}];
|
||||
|
||||
// The build version of the build, e.g. 1234.0.0.
|
||||
string build_version = 3;
|
||||
|
|
@ -89,7 +89,7 @@ message Build {
|
|||
// the given build target, model, build version and bucket. NEXT_TAG: 6
|
||||
message BuildArtifact {
|
||||
option (google.api.resource) = {
|
||||
type: "chromeos-moblab.googleapis.com/BuildArtifact"
|
||||
type: "chromeosmoblab.googleapis.com/BuildArtifact"
|
||||
pattern: "buildTargets/{build_target}/models/{model}/builds/{build}/artifacts/{artifact}"
|
||||
};
|
||||
|
||||
|
|
@ -102,8 +102,8 @@ message BuildArtifact {
|
|||
|
||||
// The build metadata of the build artifact.
|
||||
string build = 2 [(google.api.resource_reference) = {
|
||||
type: "chromeos-moblab.googleapis.com/Build"
|
||||
}];
|
||||
type: "chromeosmoblab.googleapis.com/Build"
|
||||
}];
|
||||
|
||||
// The bucket that stores the build artifact.
|
||||
string bucket = 3;
|
||||
|
|
|
|||
Loading…
Reference in New Issue