public static final class ArtifactRegistryGrpc.ArtifactRegistryBlockingStub extends io.grpc.stub.AbstractBlockingStub<ArtifactRegistryGrpc.ArtifactRegistryBlockingStub>
The Artifact Registry API service. Artifact Registry is an artifact management system for storing artifacts from different package management systems. The resources managed by this API are: * Repositories, which group packages and their data. * Packages, which group versions and their tags. * Versions, which are specific forms of a package. * Tags, which represent alternative names for versions. * Files, which contain content and are optionally associated with a Package or Version.
| Modifier and Type | Method and Description |
|---|---|
com.google.longrunning.Operation |
batchDeleteVersions(BatchDeleteVersionsRequest request)
Deletes multiple versions across a repository.
|
protected ArtifactRegistryGrpc.ArtifactRegistryBlockingStub |
build(io.grpc.Channel channel,
io.grpc.CallOptions callOptions) |
com.google.longrunning.Operation |
createRepository(CreateRepositoryRequest request)
Creates a repository.
|
Tag |
createTag(CreateTagRequest request)
Creates a tag.
|
com.google.longrunning.Operation |
deletePackage(DeletePackageRequest request)
Deletes a package and all of its versions and tags.
|
com.google.longrunning.Operation |
deleteRepository(DeleteRepositoryRequest request)
Deletes a repository and all of its contents.
|
com.google.protobuf.Empty |
deleteTag(DeleteTagRequest request)
Deletes a tag.
|
com.google.longrunning.Operation |
deleteVersion(DeleteVersionRequest request)
Deletes a version and all of its content.
|
DockerImage |
getDockerImage(GetDockerImageRequest request)
Gets a docker image.
|
File |
getFile(GetFileRequest request)
Gets a file.
|
com.google.iam.v1.Policy |
getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request)
Gets the IAM policy for a given resource.
|
MavenArtifact |
getMavenArtifact(GetMavenArtifactRequest request)
Gets a maven artifact.
|
NpmPackage |
getNpmPackage(GetNpmPackageRequest request)
Gets a npm package.
|
Package |
getPackage(GetPackageRequest request)
Gets a package.
|
ProjectSettings |
getProjectSettings(GetProjectSettingsRequest request)
Retrieves the Settings for the Project.
|
PythonPackage |
getPythonPackage(GetPythonPackageRequest request)
Gets a python package.
|
Repository |
getRepository(GetRepositoryRequest request)
Gets a repository.
|
Tag |
getTag(GetTagRequest request)
Gets a tag.
|
Version |
getVersion(GetVersionRequest request)
Gets a version
|
VPCSCConfig |
getVPCSCConfig(GetVPCSCConfigRequest request)
Retrieves the VPCSC Config for the Project.
|
com.google.longrunning.Operation |
importAptArtifacts(ImportAptArtifactsRequest request)
Imports Apt artifacts.
|
com.google.longrunning.Operation |
importYumArtifacts(ImportYumArtifactsRequest request)
Imports Yum (RPM) artifacts.
|
ListDockerImagesResponse |
listDockerImages(ListDockerImagesRequest request)
Lists docker images.
|
ListFilesResponse |
listFiles(ListFilesRequest request)
Lists files.
|
ListMavenArtifactsResponse |
listMavenArtifacts(ListMavenArtifactsRequest request)
Lists maven artifacts.
|
ListNpmPackagesResponse |
listNpmPackages(ListNpmPackagesRequest request)
Lists npm packages.
|
ListPackagesResponse |
listPackages(ListPackagesRequest request)
Lists packages.
|
ListPythonPackagesResponse |
listPythonPackages(ListPythonPackagesRequest request)
Lists python packages.
|
ListRepositoriesResponse |
listRepositories(ListRepositoriesRequest request)
Lists repositories.
|
ListTagsResponse |
listTags(ListTagsRequest request)
Lists tags.
|
ListVersionsResponse |
listVersions(ListVersionsRequest request)
Lists versions.
|
com.google.iam.v1.Policy |
setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request)
Updates the IAM policy for a given resource.
|
com.google.iam.v1.TestIamPermissionsResponse |
testIamPermissions(com.google.iam.v1.TestIamPermissionsRequest request)
Tests if the caller has a list of permissions on a resource.
|
ProjectSettings |
updateProjectSettings(UpdateProjectSettingsRequest request)
Updates the Settings for the Project.
|
Repository |
updateRepository(UpdateRepositoryRequest request)
Updates a repository.
|
Tag |
updateTag(UpdateTagRequest request)
Updates a tag.
|
VPCSCConfig |
updateVPCSCConfig(UpdateVPCSCConfigRequest request)
Updates the VPCSC Config for the Project.
|
protected ArtifactRegistryGrpc.ArtifactRegistryBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
build in class io.grpc.stub.AbstractStub<ArtifactRegistryGrpc.ArtifactRegistryBlockingStub>public ListDockerImagesResponse listDockerImages(ListDockerImagesRequest request)
Lists docker images.
public DockerImage getDockerImage(GetDockerImageRequest request)
Gets a docker image.
public ListMavenArtifactsResponse listMavenArtifacts(ListMavenArtifactsRequest request)
Lists maven artifacts.
public MavenArtifact getMavenArtifact(GetMavenArtifactRequest request)
Gets a maven artifact.
public ListNpmPackagesResponse listNpmPackages(ListNpmPackagesRequest request)
Lists npm packages.
public NpmPackage getNpmPackage(GetNpmPackageRequest request)
Gets a npm package.
public ListPythonPackagesResponse listPythonPackages(ListPythonPackagesRequest request)
Lists python packages.
public PythonPackage getPythonPackage(GetPythonPackageRequest request)
Gets a python package.
public com.google.longrunning.Operation importAptArtifacts(ImportAptArtifactsRequest request)
Imports Apt artifacts. The returned Operation will complete once the resources are imported. Package, Version, and File resources are created based on the imported artifacts. Imported artifacts that conflict with existing resources are ignored.
public com.google.longrunning.Operation importYumArtifacts(ImportYumArtifactsRequest request)
Imports Yum (RPM) artifacts. The returned Operation will complete once the resources are imported. Package, Version, and File resources are created based on the imported artifacts. Imported artifacts that conflict with existing resources are ignored.
public ListRepositoriesResponse listRepositories(ListRepositoriesRequest request)
Lists repositories.
public Repository getRepository(GetRepositoryRequest request)
Gets a repository.
public com.google.longrunning.Operation createRepository(CreateRepositoryRequest request)
Creates a repository. The returned Operation will finish once the repository has been created. Its response will be the created Repository.
public Repository updateRepository(UpdateRepositoryRequest request)
Updates a repository.
public com.google.longrunning.Operation deleteRepository(DeleteRepositoryRequest request)
Deletes a repository and all of its contents. The returned Operation will finish once the repository has been deleted. It will not have any Operation metadata and will return a google.protobuf.Empty response.
public ListPackagesResponse listPackages(ListPackagesRequest request)
Lists packages.
public Package getPackage(GetPackageRequest request)
Gets a package.
public com.google.longrunning.Operation deletePackage(DeletePackageRequest request)
Deletes a package and all of its versions and tags. The returned operation will complete once the package has been deleted.
public ListVersionsResponse listVersions(ListVersionsRequest request)
Lists versions.
public Version getVersion(GetVersionRequest request)
Gets a version
public com.google.longrunning.Operation deleteVersion(DeleteVersionRequest request)
Deletes a version and all of its content. The returned operation will complete once the version has been deleted.
public com.google.longrunning.Operation batchDeleteVersions(BatchDeleteVersionsRequest request)
Deletes multiple versions across a repository. The returned operation will complete once the versions have been deleted.
public ListFilesResponse listFiles(ListFilesRequest request)
Lists files.
public File getFile(GetFileRequest request)
Gets a file.
public ListTagsResponse listTags(ListTagsRequest request)
Lists tags.
public Tag getTag(GetTagRequest request)
Gets a tag.
public Tag createTag(CreateTagRequest request)
Creates a tag.
public Tag updateTag(UpdateTagRequest request)
Updates a tag.
public com.google.protobuf.Empty deleteTag(DeleteTagRequest request)
Deletes a tag.
public com.google.iam.v1.Policy setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request)
Updates the IAM policy for a given resource.
public com.google.iam.v1.Policy getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request)
Gets the IAM policy for a given resource.
public com.google.iam.v1.TestIamPermissionsResponse testIamPermissions(com.google.iam.v1.TestIamPermissionsRequest request)
Tests if the caller has a list of permissions on a resource.
public ProjectSettings getProjectSettings(GetProjectSettingsRequest request)
Retrieves the Settings for the Project.
public ProjectSettings updateProjectSettings(UpdateProjectSettingsRequest request)
Updates the Settings for the Project.
public VPCSCConfig getVPCSCConfig(GetVPCSCConfigRequest request)
Retrieves the VPCSC Config for the Project.
public VPCSCConfig updateVPCSCConfig(UpdateVPCSCConfigRequest request)
Updates the VPCSC Config for the Project.
Copyright © 2024 Google LLC. All rights reserved.