Skip to content

Commit

Permalink
feat: [google-cloud-artifact-registry] Add Artifact Registry attachme…
Browse files Browse the repository at this point in the history
…nt API (#13220)

- [ ] Regenerate this pull request now.

BEGIN_COMMIT_OVERRIDE
feat: Add Artifact Registry attachment API
feat: Add Artifact Registry custom remote support
feat: Add Artifact Registry generic repository support
feat: Add Artifact Registry server side resource filtering and sorting
feat: Add Artifact Registry rule APIs
feat: Add Artifact Registry UpdateFile and DeleteFile APIs
docs: Include max page size for all Artifact Registry APIs
END_COMMIT_OVERRIDE

PiperOrigin-RevId: 689929618

Source-Link:
googleapis/googleapis@5dc10a4

Source-Link:
googleapis/googleapis-gen@158367d
Copy-Tag:
eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWFydGlmYWN0LXJlZ2lzdHJ5Ly5Pd2xCb3QueWFtbCIsImgiOiIxNTgzNjdkOTcyZTI0NDdiNzdmYTliZjFiOTQ2MjhmMDViM2NmODY0In0=

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] authored Oct 28, 2024
1 parent eace4ce commit c2d1df7
Show file tree
Hide file tree
Showing 55 changed files with 31,197 additions and 9,059 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,31 @@
NpmPackage,
PythonPackage,
)
from google.cloud.artifactregistry_v1.types.attachment import (
Attachment,
CreateAttachmentRequest,
DeleteAttachmentRequest,
GetAttachmentRequest,
ListAttachmentsRequest,
ListAttachmentsResponse,
)
from google.cloud.artifactregistry_v1.types.file import (
DeleteFileRequest,
File,
GetFileRequest,
Hash,
ListFilesRequest,
ListFilesResponse,
UpdateFileRequest,
)
from google.cloud.artifactregistry_v1.types.generic import GenericArtifact
from google.cloud.artifactregistry_v1.types.package import (
DeletePackageRequest,
GetPackageRequest,
ListPackagesRequest,
ListPackagesResponse,
Package,
UpdatePackageRequest,
)
from google.cloud.artifactregistry_v1.types.repository import (
CleanupPolicy,
Expand All @@ -79,6 +91,15 @@
UpstreamPolicy,
VirtualRepositoryConfig,
)
from google.cloud.artifactregistry_v1.types.rule import (
CreateRuleRequest,
DeleteRuleRequest,
GetRuleRequest,
ListRulesRequest,
ListRulesResponse,
Rule,
UpdateRuleRequest,
)
from google.cloud.artifactregistry_v1.types.service import OperationMetadata
from google.cloud.artifactregistry_v1.types.settings import (
GetProjectSettingsRequest,
Expand All @@ -101,6 +122,7 @@
GetVersionRequest,
ListVersionsRequest,
ListVersionsResponse,
UpdateVersionRequest,
Version,
VersionView,
)
Expand Down Expand Up @@ -143,16 +165,26 @@
"MavenArtifact",
"NpmPackage",
"PythonPackage",
"Attachment",
"CreateAttachmentRequest",
"DeleteAttachmentRequest",
"GetAttachmentRequest",
"ListAttachmentsRequest",
"ListAttachmentsResponse",
"DeleteFileRequest",
"File",
"GetFileRequest",
"Hash",
"ListFilesRequest",
"ListFilesResponse",
"UpdateFileRequest",
"GenericArtifact",
"DeletePackageRequest",
"GetPackageRequest",
"ListPackagesRequest",
"ListPackagesResponse",
"Package",
"UpdatePackageRequest",
"CleanupPolicy",
"CleanupPolicyCondition",
"CleanupPolicyMostRecentVersions",
Expand All @@ -166,6 +198,13 @@
"UpdateRepositoryRequest",
"UpstreamPolicy",
"VirtualRepositoryConfig",
"CreateRuleRequest",
"DeleteRuleRequest",
"GetRuleRequest",
"ListRulesRequest",
"ListRulesResponse",
"Rule",
"UpdateRuleRequest",
"OperationMetadata",
"GetProjectSettingsRequest",
"ProjectSettings",
Expand All @@ -183,6 +222,7 @@
"GetVersionRequest",
"ListVersionsRequest",
"ListVersionsResponse",
"UpdateVersionRequest",
"Version",
"VersionView",
"GetVPCSCConfigRequest",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "1.12.0" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,31 @@
NpmPackage,
PythonPackage,
)
from .types.file import File, GetFileRequest, Hash, ListFilesRequest, ListFilesResponse
from .types.attachment import (
Attachment,
CreateAttachmentRequest,
DeleteAttachmentRequest,
GetAttachmentRequest,
ListAttachmentsRequest,
ListAttachmentsResponse,
)
from .types.file import (
DeleteFileRequest,
File,
GetFileRequest,
Hash,
ListFilesRequest,
ListFilesResponse,
UpdateFileRequest,
)
from .types.generic import GenericArtifact
from .types.package import (
DeletePackageRequest,
GetPackageRequest,
ListPackagesRequest,
ListPackagesResponse,
Package,
UpdatePackageRequest,
)
from .types.repository import (
CleanupPolicy,
Expand All @@ -71,6 +89,15 @@
UpstreamPolicy,
VirtualRepositoryConfig,
)
from .types.rule import (
CreateRuleRequest,
DeleteRuleRequest,
GetRuleRequest,
ListRulesRequest,
ListRulesResponse,
Rule,
UpdateRuleRequest,
)
from .types.service import OperationMetadata
from .types.settings import (
GetProjectSettingsRequest,
Expand All @@ -93,6 +120,7 @@
GetVersionRequest,
ListVersionsRequest,
ListVersionsResponse,
UpdateVersionRequest,
Version,
VersionView,
)
Expand All @@ -114,19 +142,27 @@
"ArtifactRegistryAsyncClient",
"AptArtifact",
"ArtifactRegistryClient",
"Attachment",
"BatchDeleteVersionsMetadata",
"BatchDeleteVersionsRequest",
"CleanupPolicy",
"CleanupPolicyCondition",
"CleanupPolicyMostRecentVersions",
"CreateAttachmentRequest",
"CreateRepositoryRequest",
"CreateRuleRequest",
"CreateTagRequest",
"DeleteAttachmentRequest",
"DeleteFileRequest",
"DeletePackageRequest",
"DeleteRepositoryRequest",
"DeleteRuleRequest",
"DeleteTagRequest",
"DeleteVersionRequest",
"DockerImage",
"File",
"GenericArtifact",
"GetAttachmentRequest",
"GetDockerImageRequest",
"GetFileRequest",
"GetMavenArtifactRequest",
Expand All @@ -135,6 +171,7 @@
"GetProjectSettingsRequest",
"GetPythonPackageRequest",
"GetRepositoryRequest",
"GetRuleRequest",
"GetTagRequest",
"GetVPCSCConfigRequest",
"GetVersionRequest",
Expand All @@ -149,6 +186,8 @@
"ImportYumArtifactsMetadata",
"ImportYumArtifactsRequest",
"ImportYumArtifactsResponse",
"ListAttachmentsRequest",
"ListAttachmentsResponse",
"ListDockerImagesRequest",
"ListDockerImagesResponse",
"ListFilesRequest",
Expand All @@ -163,6 +202,8 @@
"ListPythonPackagesResponse",
"ListRepositoriesRequest",
"ListRepositoriesResponse",
"ListRulesRequest",
"ListRulesResponse",
"ListTagsRequest",
"ListTagsResponse",
"ListVersionsRequest",
Expand All @@ -175,11 +216,16 @@
"PythonPackage",
"RemoteRepositoryConfig",
"Repository",
"Rule",
"Tag",
"UpdateFileRequest",
"UpdatePackageRequest",
"UpdateProjectSettingsRequest",
"UpdateRepositoryRequest",
"UpdateRuleRequest",
"UpdateTagRequest",
"UpdateVPCSCConfigRequest",
"UpdateVersionRequest",
"UpstreamPolicy",
"VPCSCConfig",
"Version",
Expand Down
Loading

0 comments on commit c2d1df7

Please sign in to comment.