|
@@ -162,6 +162,16 @@ public class GTMService {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public void deleteContainer(String containerResourceName) throws DataException {
|
|
|
|
+ try {
|
|
|
|
+ tagManager.accounts().containers().delete(containerResourceName).execute();
|
|
|
|
+ log.info("Deleted container {}", containerResourceName);
|
|
|
|
+ } catch (IOException e) {
|
|
|
|
+ log.error(e.getMessage());
|
|
|
|
+ throw new DataException(e);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
@VisibleForTesting
|
|
@VisibleForTesting
|
|
void initContainerAccess(String accountResourceName, String containerId) throws DataException {
|
|
void initContainerAccess(String accountResourceName, String containerId) throws DataException {
|
|
try {
|
|
try {
|
|
@@ -348,7 +358,7 @@ public class GTMService {
|
|
void publishContainerVersion(String versionResourceName) throws Exception {
|
|
void publishContainerVersion(String versionResourceName) throws Exception {
|
|
try {
|
|
try {
|
|
tagManager.accounts().containers().versions().publish(versionResourceName).execute();
|
|
tagManager.accounts().containers().versions().publish(versionResourceName).execute();
|
|
- log.info("Published container version {}", JsonUtils.toJson(versionResourceName));
|
|
|
|
|
|
+ log.info("Published container version {}", versionResourceName);
|
|
} catch (IOException e) {
|
|
} catch (IOException e) {
|
|
log.error(e.getMessage());
|
|
log.error(e.getMessage());
|
|
throw new DataException(e);
|
|
throw new DataException(e);
|