Skip to content

Commit 6e35902

Browse files
feat: [artifactregistry] add format-specific resources MavenArtifact, NpmPackage, KfpArtifact and PythonPackage (#9080)
* feat: add format-specific resources `MavenArtifact`, `NpmPackage`, `KfpArtifact` and `PythonPackage` feat: add `order_by` to `ListDockerImages` feat: add an API to get and update VPCSC config feat: add `BatchDeleteVersionMetadata` to return version that failed to delete fix!: make `GetFileRequest.name` and `ListFilesRequest.parent` required fix: make `Package` a resource fix: deprecate `REDIRECTION_FROM_GCR_IO_FINALIZED` PiperOrigin-RevId: 506935629 Source-Link: googleapis/googleapis@c807b74 Source-Link: https://github.com/googleapis/googleapis-gen/commit/d43260cabeeceeb06fb9f275d907454a67945486 Copy-Tag: eyJwIjoiamF2YS1hcnRpZmFjdC1yZWdpc3RyeS8uT3dsQm90LnlhbWwiLCJoIjoiZDQzMjYwY2FiZWVjZWViMDZmYjlmMjc1ZDkwNzQ1NGE2Nzk0NTQ4NiJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent eaef8f9 commit 6e35902

File tree

145 files changed

+30876
-677
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+30876
-677
lines changed

java-artifact-registry/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@ If you are using Maven, add this to your pom.xml file:
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>google-cloud-artifact-registry</artifactId>
22-
<version>1.7.0</version>
22+
<version>1.8.0</version>
2323
</dependency>
2424
```
2525

2626
If you are using Gradle without BOM, add this to your dependencies:
2727

2828
```Groovy
29-
implementation 'com.google.cloud:google-cloud-artifact-registry:1.7.0'
29+
implementation 'com.google.cloud:google-cloud-artifact-registry:1.8.0'
3030
```
3131

3232
If you are using SBT, add this to your dependencies:
3333

3434
```Scala
35-
libraryDependencies += "com.google.cloud" % "google-cloud-artifact-registry" % "1.7.0"
35+
libraryDependencies += "com.google.cloud" % "google-cloud-artifact-registry" % "1.8.0"
3636
```
3737

3838
## Authentication

java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactRegistryClient.java

Lines changed: 1533 additions & 77 deletions
Large diffs are not rendered by default.

java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/ArtifactRegistrySettings.java

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListDockerImagesPagedResponse;
2020
import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListFilesPagedResponse;
2121
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;
2224
import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListPackagesPagedResponse;
25+
import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListPythonPackagesPagedResponse;
2326
import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListRepositoriesPagedResponse;
2427
import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListTagsPagedResponse;
2528
import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListVersionsPagedResponse;
@@ -106,6 +109,42 @@ public UnaryCallSettings<GetDockerImageRequest, DockerImage> getDockerImageSetti
106109
return ((ArtifactRegistryStubSettings) getStubSettings()).getDockerImageSettings();
107110
}
108111

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+
109148
/** Returns the object with the settings used for calls to importAptArtifacts. */
110149
public UnaryCallSettings<ImportAptArtifactsRequest, Operation> importAptArtifactsSettings() {
111150
return ((ArtifactRegistryStubSettings) getStubSettings()).importAptArtifactsSettings();
@@ -278,6 +317,16 @@ public UnaryCallSettings<GetIamPolicyRequest, Policy> getIamPolicySettings() {
278317
return ((ArtifactRegistryStubSettings) getStubSettings()).updateProjectSettingsSettings();
279318
}
280319

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+
281330
/** Returns the object with the settings used for calls to listLocations. */
282331
public PagedCallSettings<ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>
283332
listLocationsSettings() {
@@ -416,6 +465,44 @@ public UnaryCallSettings.Builder<GetDockerImageRequest, DockerImage> getDockerIm
416465
return getStubSettingsBuilder().getDockerImageSettings();
417466
}
418467

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+
419506
/** Returns the builder for the settings used for calls to importAptArtifacts. */
420507
public UnaryCallSettings.Builder<ImportAptArtifactsRequest, Operation>
421508
importAptArtifactsSettings() {
@@ -595,6 +682,17 @@ public UnaryCallSettings.Builder<GetIamPolicyRequest, Policy> getIamPolicySettin
595682
return getStubSettingsBuilder().updateProjectSettingsSettings();
596683
}
597684

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+
598696
/** Returns the builder for the settings used for calls to listLocations. */
599697
public PagedCallSettings.Builder<
600698
ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>

java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/gapic_metadata.json

Lines changed: 29 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"methods": ["createTag", "createTag", "createTagCallable"]
1818
},
1919
"DeletePackage": {
20-
"methods": ["deletePackageAsync", "deletePackageAsync", "deletePackageOperationCallable", "deletePackageCallable"]
20+
"methods": ["deletePackageAsync", "deletePackageAsync", "deletePackageAsync", "deletePackageOperationCallable", "deletePackageCallable"]
2121
},
2222
"DeleteRepository": {
2323
"methods": ["deleteRepositoryAsync", "deleteRepositoryAsync", "deleteRepositoryAsync", "deleteRepositoryOperationCallable", "deleteRepositoryCallable"]
@@ -32,26 +32,38 @@
3232
"methods": ["getDockerImage", "getDockerImage", "getDockerImage", "getDockerImageCallable"]
3333
},
3434
"GetFile": {
35-
"methods": ["getFile", "getFile", "getFileCallable"]
35+
"methods": ["getFile", "getFile", "getFile", "getFileCallable"]
3636
},
3737
"GetIamPolicy": {
3838
"methods": ["getIamPolicy", "getIamPolicyCallable"]
3939
},
4040
"GetLocation": {
4141
"methods": ["getLocation", "getLocationCallable"]
4242
},
43+
"GetMavenArtifact": {
44+
"methods": ["getMavenArtifact", "getMavenArtifact", "getMavenArtifact", "getMavenArtifactCallable"]
45+
},
46+
"GetNpmPackage": {
47+
"methods": ["getNpmPackage", "getNpmPackage", "getNpmPackage", "getNpmPackageCallable"]
48+
},
4349
"GetPackage": {
44-
"methods": ["getPackage", "getPackage", "getPackageCallable"]
50+
"methods": ["getPackage", "getPackage", "getPackage", "getPackageCallable"]
4551
},
4652
"GetProjectSettings": {
4753
"methods": ["getProjectSettings", "getProjectSettings", "getProjectSettings", "getProjectSettingsCallable"]
4854
},
55+
"GetPythonPackage": {
56+
"methods": ["getPythonPackage", "getPythonPackage", "getPythonPackage", "getPythonPackageCallable"]
57+
},
4958
"GetRepository": {
5059
"methods": ["getRepository", "getRepository", "getRepository", "getRepositoryCallable"]
5160
},
5261
"GetTag": {
5362
"methods": ["getTag", "getTag", "getTagCallable"]
5463
},
64+
"GetVPCSCConfig": {
65+
"methods": ["getVPCSCConfig", "getVPCSCConfig", "getVPCSCConfig", "getVPCSCConfigCallable"]
66+
},
5567
"GetVersion": {
5668
"methods": ["getVersion", "getVersion", "getVersionCallable"]
5769
},
@@ -65,13 +77,22 @@
6577
"methods": ["listDockerImages", "listDockerImages", "listDockerImagesPagedCallable", "listDockerImagesCallable"]
6678
},
6779
"ListFiles": {
68-
"methods": ["listFiles", "listFiles", "listFilesPagedCallable", "listFilesCallable"]
80+
"methods": ["listFiles", "listFiles", "listFiles", "listFilesPagedCallable", "listFilesCallable"]
6981
},
7082
"ListLocations": {
7183
"methods": ["listLocations", "listLocationsPagedCallable", "listLocationsCallable"]
7284
},
85+
"ListMavenArtifacts": {
86+
"methods": ["listMavenArtifacts", "listMavenArtifacts", "listMavenArtifacts", "listMavenArtifactsPagedCallable", "listMavenArtifactsCallable"]
87+
},
88+
"ListNpmPackages": {
89+
"methods": ["listNpmPackages", "listNpmPackages", "listNpmPackages", "listNpmPackagesPagedCallable", "listNpmPackagesCallable"]
90+
},
7391
"ListPackages": {
74-
"methods": ["listPackages", "listPackages", "listPackagesPagedCallable", "listPackagesCallable"]
92+
"methods": ["listPackages", "listPackages", "listPackages", "listPackagesPagedCallable", "listPackagesCallable"]
93+
},
94+
"ListPythonPackages": {
95+
"methods": ["listPythonPackages", "listPythonPackages", "listPythonPackages", "listPythonPackagesPagedCallable", "listPythonPackagesCallable"]
7596
},
7697
"ListRepositories": {
7798
"methods": ["listRepositories", "listRepositories", "listRepositories", "listRepositoriesPagedCallable", "listRepositoriesCallable"]
@@ -96,6 +117,9 @@
96117
},
97118
"UpdateTag": {
98119
"methods": ["updateTag", "updateTag", "updateTagCallable"]
120+
},
121+
"UpdateVPCSCConfig": {
122+
"methods": ["updateVPCSCConfig", "updateVPCSCConfig", "updateVPCSCConfigCallable"]
99123
}
100124
}
101125
}

java-artifact-registry/google-cloud-artifact-registry/src/main/java/com/google/devtools/artifactregistry/v1/stub/ArtifactRegistryStub.java

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListDockerImagesPagedResponse;
2020
import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListFilesPagedResponse;
2121
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;
2224
import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListPackagesPagedResponse;
25+
import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListPythonPackagesPagedResponse;
2326
import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListRepositoriesPagedResponse;
2427
import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListTagsPagedResponse;
2528
import static com.google.devtools.artifactregistry.v1.ArtifactRegistryClient.ListVersionsPagedResponse;
@@ -41,10 +44,14 @@
4144
import com.google.devtools.artifactregistry.v1.File;
4245
import com.google.devtools.artifactregistry.v1.GetDockerImageRequest;
4346
import com.google.devtools.artifactregistry.v1.GetFileRequest;
47+
import com.google.devtools.artifactregistry.v1.GetMavenArtifactRequest;
48+
import com.google.devtools.artifactregistry.v1.GetNpmPackageRequest;
4449
import com.google.devtools.artifactregistry.v1.GetPackageRequest;
4550
import com.google.devtools.artifactregistry.v1.GetProjectSettingsRequest;
51+
import com.google.devtools.artifactregistry.v1.GetPythonPackageRequest;
4652
import com.google.devtools.artifactregistry.v1.GetRepositoryRequest;
4753
import com.google.devtools.artifactregistry.v1.GetTagRequest;
54+
import com.google.devtools.artifactregistry.v1.GetVPCSCConfigRequest;
4855
import com.google.devtools.artifactregistry.v1.GetVersionRequest;
4956
import com.google.devtools.artifactregistry.v1.ImportAptArtifactsMetadata;
5057
import com.google.devtools.artifactregistry.v1.ImportAptArtifactsRequest;
@@ -56,22 +63,33 @@
5663
import com.google.devtools.artifactregistry.v1.ListDockerImagesResponse;
5764
import com.google.devtools.artifactregistry.v1.ListFilesRequest;
5865
import com.google.devtools.artifactregistry.v1.ListFilesResponse;
66+
import com.google.devtools.artifactregistry.v1.ListMavenArtifactsRequest;
67+
import com.google.devtools.artifactregistry.v1.ListMavenArtifactsResponse;
68+
import com.google.devtools.artifactregistry.v1.ListNpmPackagesRequest;
69+
import com.google.devtools.artifactregistry.v1.ListNpmPackagesResponse;
5970
import com.google.devtools.artifactregistry.v1.ListPackagesRequest;
6071
import com.google.devtools.artifactregistry.v1.ListPackagesResponse;
72+
import com.google.devtools.artifactregistry.v1.ListPythonPackagesRequest;
73+
import com.google.devtools.artifactregistry.v1.ListPythonPackagesResponse;
6174
import com.google.devtools.artifactregistry.v1.ListRepositoriesRequest;
6275
import com.google.devtools.artifactregistry.v1.ListRepositoriesResponse;
6376
import com.google.devtools.artifactregistry.v1.ListTagsRequest;
6477
import com.google.devtools.artifactregistry.v1.ListTagsResponse;
6578
import com.google.devtools.artifactregistry.v1.ListVersionsRequest;
6679
import com.google.devtools.artifactregistry.v1.ListVersionsResponse;
80+
import com.google.devtools.artifactregistry.v1.MavenArtifact;
81+
import com.google.devtools.artifactregistry.v1.NpmPackage;
6782
import com.google.devtools.artifactregistry.v1.OperationMetadata;
6883
import com.google.devtools.artifactregistry.v1.Package;
6984
import com.google.devtools.artifactregistry.v1.ProjectSettings;
85+
import com.google.devtools.artifactregistry.v1.PythonPackage;
7086
import com.google.devtools.artifactregistry.v1.Repository;
7187
import com.google.devtools.artifactregistry.v1.Tag;
7288
import com.google.devtools.artifactregistry.v1.UpdateProjectSettingsRequest;
7389
import com.google.devtools.artifactregistry.v1.UpdateRepositoryRequest;
7490
import com.google.devtools.artifactregistry.v1.UpdateTagRequest;
91+
import com.google.devtools.artifactregistry.v1.UpdateVPCSCConfigRequest;
92+
import com.google.devtools.artifactregistry.v1.VPCSCConfig;
7593
import com.google.devtools.artifactregistry.v1.Version;
7694
import com.google.iam.v1.GetIamPolicyRequest;
7795
import com.google.iam.v1.Policy;
@@ -114,6 +132,47 @@ public UnaryCallable<GetDockerImageRequest, DockerImage> getDockerImageCallable(
114132
throw new UnsupportedOperationException("Not implemented: getDockerImageCallable()");
115133
}
116134

135+
public UnaryCallable<ListMavenArtifactsRequest, ListMavenArtifactsPagedResponse>
136+
listMavenArtifactsPagedCallable() {
137+
throw new UnsupportedOperationException("Not implemented: listMavenArtifactsPagedCallable()");
138+
}
139+
140+
public UnaryCallable<ListMavenArtifactsRequest, ListMavenArtifactsResponse>
141+
listMavenArtifactsCallable() {
142+
throw new UnsupportedOperationException("Not implemented: listMavenArtifactsCallable()");
143+
}
144+
145+
public UnaryCallable<GetMavenArtifactRequest, MavenArtifact> getMavenArtifactCallable() {
146+
throw new UnsupportedOperationException("Not implemented: getMavenArtifactCallable()");
147+
}
148+
149+
public UnaryCallable<ListNpmPackagesRequest, ListNpmPackagesPagedResponse>
150+
listNpmPackagesPagedCallable() {
151+
throw new UnsupportedOperationException("Not implemented: listNpmPackagesPagedCallable()");
152+
}
153+
154+
public UnaryCallable<ListNpmPackagesRequest, ListNpmPackagesResponse> listNpmPackagesCallable() {
155+
throw new UnsupportedOperationException("Not implemented: listNpmPackagesCallable()");
156+
}
157+
158+
public UnaryCallable<GetNpmPackageRequest, NpmPackage> getNpmPackageCallable() {
159+
throw new UnsupportedOperationException("Not implemented: getNpmPackageCallable()");
160+
}
161+
162+
public UnaryCallable<ListPythonPackagesRequest, ListPythonPackagesPagedResponse>
163+
listPythonPackagesPagedCallable() {
164+
throw new UnsupportedOperationException("Not implemented: listPythonPackagesPagedCallable()");
165+
}
166+
167+
public UnaryCallable<ListPythonPackagesRequest, ListPythonPackagesResponse>
168+
listPythonPackagesCallable() {
169+
throw new UnsupportedOperationException("Not implemented: listPythonPackagesCallable()");
170+
}
171+
172+
public UnaryCallable<GetPythonPackageRequest, PythonPackage> getPythonPackageCallable() {
173+
throw new UnsupportedOperationException("Not implemented: getPythonPackageCallable()");
174+
}
175+
117176
public OperationCallable<
118177
ImportAptArtifactsRequest, ImportAptArtifactsResponse, ImportAptArtifactsMetadata>
119178
importAptArtifactsOperationCallable() {
@@ -272,6 +331,14 @@ public UnaryCallable<GetProjectSettingsRequest, ProjectSettings> getProjectSetti
272331
throw new UnsupportedOperationException("Not implemented: updateProjectSettingsCallable()");
273332
}
274333

334+
public UnaryCallable<GetVPCSCConfigRequest, VPCSCConfig> getVPCSCConfigCallable() {
335+
throw new UnsupportedOperationException("Not implemented: getVPCSCConfigCallable()");
336+
}
337+
338+
public UnaryCallable<UpdateVPCSCConfigRequest, VPCSCConfig> updateVPCSCConfigCallable() {
339+
throw new UnsupportedOperationException("Not implemented: updateVPCSCConfigCallable()");
340+
}
341+
275342
public UnaryCallable<ListLocationsRequest, ListLocationsPagedResponse>
276343
listLocationsPagedCallable() {
277344
throw new UnsupportedOperationException("Not implemented: listLocationsPagedCallable()");

0 commit comments

Comments
 (0)