This repository has been archived by the owner on Jul 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update v2.14.2 gapic-generator-typescript (#121)
- [ ] Regenerate this pull request now. Committer: @summer-ji-eng PiperOrigin-RevId: 434859890 Source-Link: googleapis/googleapis@bc2432d Source-Link: https://github.com/googleapis/googleapis-gen/commit/930b673103e92523f8cfed38decd7d3afae8ebe7 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOTMwYjY3MzEwM2U5MjUyM2Y4Y2ZlZDM4ZGVjZDdkM2FmYWU4ZWJlNyJ9 chore: update v2.14.1 gapic-generator-typescript Committer: @summer-ji-eng PiperOrigin-RevId: 433031262 Source-Link: googleapis/googleapis@2a55d13 Source-Link: https://github.com/googleapis/googleapis-gen/commit/2fce3893ae9da47763e0872c4a3a87d9ff78771f Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMmZjZTM4OTNhZTlkYTQ3NzYzZTA4NzJjNGEzYTg3ZDlmZjc4NzcxZiJ9 docs: more details for ListFilesRequest parent field PiperOrigin-RevId: 431979329 Source-Link: googleapis/googleapis@8febda4 Source-Link: https://github.com/googleapis/googleapis-gen/commit/1048231cea49f261c90ca361258c57636ca98c6d Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMTA0ODIzMWNlYTQ5ZjI2MWM5MGNhMzYxMjU4YzU3NjM2Y2E5OGM2ZCJ9 docs(samples): include metadata file, add exclusions for samples to handwritten libraries PiperOrigin-RevId: 429395631 Source-Link: googleapis/googleapis@84594b3 Source-Link: https://github.com/googleapis/googleapis-gen/commit/ed74f970fd82914874e6b27b04763cfa66bafe9b Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZWQ3NGY5NzBmZDgyOTE0ODc0ZTZiMjdiMDQ3NjNjZmE2NmJhZmU5YiJ9
- Loading branch information
1 parent
07c6f00
commit 7788daa
Showing
50 changed files
with
19,606 additions
and
8,001 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
117 changes: 117 additions & 0 deletions
117
protos/google/devtools/artifactregistry/v1beta2/apt_artifact.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
// Copyright 2022 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
syntax = "proto3"; | ||
|
||
package google.devtools.artifactregistry.v1beta2; | ||
|
||
import "google/api/annotations.proto"; | ||
import "google/api/field_behavior.proto"; | ||
import "google/api/resource.proto"; | ||
import "google/longrunning/operations.proto"; | ||
import "google/rpc/status.proto"; | ||
|
||
option csharp_namespace = "Google.Cloud.ArtifactRegistry.V1Beta2"; | ||
option go_package = "google.golang.org/genproto/googleapis/devtools/artifactregistry/v1beta2;artifactregistry"; | ||
option java_multiple_files = true; | ||
option java_outer_classname = "AptArtifactProto"; | ||
option java_package = "com.google.devtools.artifactregistry.v1beta2"; | ||
option php_namespace = "Google\\Cloud\\ArtifactRegistry\\V1beta2"; | ||
option ruby_package = "Google::Cloud::ArtifactRegistry::V1beta2"; | ||
|
||
// A detailed representation of an Apt artifact. Information in the record | ||
// is derived from the archive's control file. | ||
// See https://www.debian.org/doc/debian-policy/ch-controlfields.html | ||
message AptArtifact { | ||
option (google.api.resource) = { | ||
type: "artifactregistry.googleapis.com/AptArtifact" | ||
pattern: "projects/{project}/locations/{location}/repositories/{repository}/aptArtifacts/{apt_artifact}" | ||
}; | ||
|
||
// Package type is either binary or source. | ||
enum PackageType { | ||
// Package type is not specified. | ||
PACKAGE_TYPE_UNSPECIFIED = 0; | ||
|
||
// Binary package. | ||
BINARY = 1; | ||
|
||
// Source package. | ||
SOURCE = 2; | ||
} | ||
|
||
// Output only. The Artifact Registry resource name of the artifact. | ||
string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY]; | ||
|
||
// Output only. The Apt package name of the artifact. | ||
string package_name = 2 [(google.api.field_behavior) = OUTPUT_ONLY]; | ||
|
||
// Output only. An artifact is a binary or source package. | ||
PackageType package_type = 3 [(google.api.field_behavior) = OUTPUT_ONLY]; | ||
|
||
// Output only. Operating system architecture of the artifact. | ||
string architecture = 4 [(google.api.field_behavior) = OUTPUT_ONLY]; | ||
|
||
// Output only. Repository component of the artifact. | ||
string component = 5 [(google.api.field_behavior) = OUTPUT_ONLY]; | ||
|
||
// Output only. Contents of the artifact's control metadata file. | ||
bytes control_file = 6 [(google.api.field_behavior) = OUTPUT_ONLY]; | ||
} | ||
|
||
// Google Cloud Storage location where the artifacts currently reside. | ||
message ImportAptArtifactsGcsSource { | ||
// Cloud Storage paths URI (e.g., gs://my_bucket//my_object). | ||
repeated string uris = 1; | ||
|
||
// Supports URI wildcards for matching multiple objects from a single URI. | ||
bool use_wildcards = 2; | ||
} | ||
|
||
// The request to import new apt artifacts. | ||
message ImportAptArtifactsRequest { | ||
// The source location of the package binaries. | ||
oneof source { | ||
// Google Cloud Storage location where input content is located. | ||
ImportAptArtifactsGcsSource gcs_source = 2; | ||
} | ||
|
||
// The name of the parent resource where the artifacts will be imported. | ||
string parent = 1; | ||
} | ||
|
||
// Error information explaining why a package was not imported. | ||
message ImportAptArtifactsErrorInfo { | ||
// The source that was not imported. | ||
oneof source { | ||
// Google Cloud Storage location requested. | ||
ImportAptArtifactsGcsSource gcs_source = 1; | ||
} | ||
|
||
// The detailed error status. | ||
google.rpc.Status error = 2; | ||
} | ||
|
||
// The response message from importing APT artifacts. | ||
message ImportAptArtifactsResponse { | ||
// The Apt artifacts imported. | ||
repeated AptArtifact apt_artifacts = 1; | ||
|
||
// Detailed error info for artifacts that were not imported. | ||
repeated ImportAptArtifactsErrorInfo errors = 2; | ||
} | ||
|
||
// The operation metadata for importing artifacts. | ||
message ImportAptArtifactsMetadata { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.