|
19 | 19 | import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListDockerImagesPagedResponse;
|
20 | 20 | import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListFilesPagedResponse;
|
21 | 21 | import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListLocationsPagedResponse;
|
| 22 | +import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListMavenArtifactsPagedResponse; |
| 23 | +import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListNpmPackagesPagedResponse; |
22 | 24 | import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListPackagesPagedResponse;
|
| 25 | +import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListPythonPackagesPagedResponse; |
23 | 26 | import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListRepositoriesPagedResponse;
|
24 | 27 | import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListTagsPagedResponse;
|
25 | 28 | import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListVersionsPagedResponse;
|
@@ -106,6 +109,42 @@ public UnaryCallSettings<GetDockerImageRequest, DockerImage> getDockerImageSetti
|
106 | 109 | return ((ArtifactRegistryStubSettings) getStubSettings()).getDockerImageSettings();
|
107 | 110 | }
|
108 | 111 |
|
| 112 | + /** Returns the object with the settings used for calls to listMavenArtifacts. */ |
| 113 | + public PagedCallSettings< |
| 114 | + ListMavenArtifactsRequest, ListMavenArtifactsResponse, ListMavenArtifactsPagedResponse> |
| 115 | + listMavenArtifactsSettings() { |
| 116 | + return ((ArtifactRegistryStubSettings) getStubSettings()).listMavenArtifactsSettings(); |
| 117 | + } |
| 118 | + |
| 119 | + /** Returns the object with the settings used for calls to getMavenArtifact. */ |
| 120 | + public UnaryCallSettings<GetMavenArtifactRequest, MavenArtifact> getMavenArtifactSettings() { |
| 121 | + return ((ArtifactRegistryStubSettings) getStubSettings()).getMavenArtifactSettings(); |
| 122 | + } |
| 123 | + |
| 124 | + /** Returns the object with the settings used for calls to listNpmPackages. */ |
| 125 | + public PagedCallSettings< |
| 126 | + ListNpmPackagesRequest, ListNpmPackagesResponse, ListNpmPackagesPagedResponse> |
| 127 | + listNpmPackagesSettings() { |
| 128 | + return ((ArtifactRegistryStubSettings) getStubSettings()).listNpmPackagesSettings(); |
| 129 | + } |
| 130 | + |
| 131 | + /** Returns the object with the settings used for calls to getNpmPackage. */ |
| 132 | + public UnaryCallSettings<GetNpmPackageRequest, NpmPackage> getNpmPackageSettings() { |
| 133 | + return ((ArtifactRegistryStubSettings) getStubSettings()).getNpmPackageSettings(); |
| 134 | + } |
| 135 | + |
| 136 | + /** Returns the object with the settings used for calls to listPythonPackages. */ |
| 137 | + public PagedCallSettings< |
| 138 | + ListPythonPackagesRequest, ListPythonPackagesResponse, ListPythonPackagesPagedResponse> |
| 139 | + listPythonPackagesSettings() { |
| 140 | + return ((ArtifactRegistryStubSettings) getStubSettings()).listPythonPackagesSettings(); |
| 141 | + } |
| 142 | + |
| 143 | + /** Returns the object with the settings used for calls to getPythonPackage. */ |
| 144 | + public UnaryCallSettings<GetPythonPackageRequest, PythonPackage> getPythonPackageSettings() { |
| 145 | + return ((ArtifactRegistryStubSettings) getStubSettings()).getPythonPackageSettings(); |
| 146 | + } |
| 147 | + |
109 | 148 | /** Returns the object with the settings used for calls to importAptArtifacts. */
|
110 | 149 | public UnaryCallSettings<ImportAptArtifactsRequest, Operation> importAptArtifactsSettings() {
|
111 | 150 | return ((ArtifactRegistryStubSettings) getStubSettings()).importAptArtifactsSettings();
|
@@ -278,6 +317,16 @@ public UnaryCallSettings<GetIamPolicyRequest, Policy> getIamPolicySettings() {
|
278 | 317 | return ((ArtifactRegistryStubSettings) getStubSettings()).updateProjectSettingsSettings();
|
279 | 318 | }
|
280 | 319 |
|
| 320 | + /** Returns the object with the settings used for calls to getVPCSCConfig. */ |
| 321 | + public UnaryCallSettings<GetVPCSCConfigRequest, VPCSCConfig> getVPCSCConfigSettings() { |
| 322 | + return ((ArtifactRegistryStubSettings) getStubSettings()).getVPCSCConfigSettings(); |
| 323 | + } |
| 324 | + |
| 325 | + /** Returns the object with the settings used for calls to updateVPCSCConfig. */ |
| 326 | + public UnaryCallSettings<UpdateVPCSCConfigRequest, VPCSCConfig> updateVPCSCConfigSettings() { |
| 327 | + return ((ArtifactRegistryStubSettings) getStubSettings()).updateVPCSCConfigSettings(); |
| 328 | + } |
| 329 | + |
281 | 330 | /** Returns the object with the settings used for calls to listLocations. */
|
282 | 331 | public PagedCallSettings<ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>
|
283 | 332 | listLocationsSettings() {
|
@@ -416,6 +465,44 @@ public UnaryCallSettings.Builder<GetDockerImageRequest, DockerImage> getDockerIm
|
416 | 465 | return getStubSettingsBuilder().getDockerImageSettings();
|
417 | 466 | }
|
418 | 467 |
|
| 468 | + /** Returns the builder for the settings used for calls to listMavenArtifacts. */ |
| 469 | + public PagedCallSettings.Builder< |
| 470 | + ListMavenArtifactsRequest, ListMavenArtifactsResponse, ListMavenArtifactsPagedResponse> |
| 471 | + listMavenArtifactsSettings() { |
| 472 | + return getStubSettingsBuilder().listMavenArtifactsSettings(); |
| 473 | + } |
| 474 | + |
| 475 | + /** Returns the builder for the settings used for calls to getMavenArtifact. */ |
| 476 | + public UnaryCallSettings.Builder<GetMavenArtifactRequest, MavenArtifact> |
| 477 | + getMavenArtifactSettings() { |
| 478 | + return getStubSettingsBuilder().getMavenArtifactSettings(); |
| 479 | + } |
| 480 | + |
| 481 | + /** Returns the builder for the settings used for calls to listNpmPackages. */ |
| 482 | + public PagedCallSettings.Builder< |
| 483 | + ListNpmPackagesRequest, ListNpmPackagesResponse, ListNpmPackagesPagedResponse> |
| 484 | + listNpmPackagesSettings() { |
| 485 | + return getStubSettingsBuilder().listNpmPackagesSettings(); |
| 486 | + } |
| 487 | + |
| 488 | + /** Returns the builder for the settings used for calls to getNpmPackage. */ |
| 489 | + public UnaryCallSettings.Builder<GetNpmPackageRequest, NpmPackage> getNpmPackageSettings() { |
| 490 | + return getStubSettingsBuilder().getNpmPackageSettings(); |
| 491 | + } |
| 492 | + |
| 493 | + /** Returns the builder for the settings used for calls to listPythonPackages. */ |
| 494 | + public PagedCallSettings.Builder< |
| 495 | + ListPythonPackagesRequest, ListPythonPackagesResponse, ListPythonPackagesPagedResponse> |
| 496 | + listPythonPackagesSettings() { |
| 497 | + return getStubSettingsBuilder().listPythonPackagesSettings(); |
| 498 | + } |
| 499 | + |
| 500 | + /** Returns the builder for the settings used for calls to getPythonPackage. */ |
| 501 | + public UnaryCallSettings.Builder<GetPythonPackageRequest, PythonPackage> |
| 502 | + getPythonPackageSettings() { |
| 503 | + return getStubSettingsBuilder().getPythonPackageSettings(); |
| 504 | + } |
| 505 | + |
419 | 506 | /** Returns the builder for the settings used for calls to importAptArtifacts. */
|
420 | 507 | public UnaryCallSettings.Builder<ImportAptArtifactsRequest, Operation>
|
421 | 508 | importAptArtifactsSettings() {
|
@@ -595,6 +682,17 @@ public UnaryCallSettings.Builder<GetIamPolicyRequest, Policy> getIamPolicySettin
|
595 | 682 | return getStubSettingsBuilder().updateProjectSettingsSettings();
|
596 | 683 | }
|
597 | 684 |
|
| 685 | + /** Returns the builder for the settings used for calls to getVPCSCConfig. */ |
| 686 | + public UnaryCallSettings.Builder<GetVPCSCConfigRequest, VPCSCConfig> getVPCSCConfigSettings() { |
| 687 | + return getStubSettingsBuilder().getVPCSCConfigSettings(); |
| 688 | + } |
| 689 | + |
| 690 | + /** Returns the builder for the settings used for calls to updateVPCSCConfig. */ |
| 691 | + public UnaryCallSettings.Builder<UpdateVPCSCConfigRequest, VPCSCConfig> |
| 692 | + updateVPCSCConfigSettings() { |
| 693 | + return getStubSettingsBuilder().updateVPCSCConfigSettings(); |
| 694 | + } |
| 695 | + |
598 | 696 | /** Returns the builder for the settings used for calls to listLocations. */
|
599 | 697 | public PagedCallSettings.Builder<
|
600 | 698 | ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>
|
|
0 commit comments