Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-saasservicemgmt</artifactId>
<version>v1-rev20260505-2.0.0</version>
<version>v1-rev20260526-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-saasservicemgmt:v1-rev20260505-2.0.0'
implementation 'com.google.apis:google-api-services-saasservicemgmt:v1-rev20260526-2.0.0'
}
```

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.saasservicemgmt.v1.model;

/**
* DeprovisionUnitGroup is the unit group operation that deprovisions the underlying resources
* represented by a UnitGroup.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the App Lifecycle Manager API. For a detailed explanation
* see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class DeprovisionUnitGroup extends com.google.api.client.json.GenericJson {

@Override
public DeprovisionUnitGroup set(String fieldName, Object value) {
return (DeprovisionUnitGroup) super.set(fieldName, value);
}

@Override
public DeprovisionUnitGroup clone() {
return (DeprovisionUnitGroup) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.saasservicemgmt.v1.model;

/**
* DetachUnitGroup is the unit group operation that detaches a provisioned UnitGroup.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the App Lifecycle Manager API. For a detailed explanation
* see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class DetachUnitGroup extends com.google.api.client.json.GenericJson {

@Override
public DetachUnitGroup set(String fieldName, Object value) {
return (DetachUnitGroup) super.set(fieldName, value);
}

@Override
public DetachUnitGroup clone() {
return (DetachUnitGroup) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.saasservicemgmt.v1.model;

/**
* The response structure for the ListSaasReleases method.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the App Lifecycle Manager API. For a detailed explanation
* see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class ListSaasReleasesResponse extends com.google.api.client.json.GenericJson {

/**
* If present, the next page token can be provided to a subsequent ListSaasReleases call to list
* the next page. If empty, there are no more pages.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String nextPageToken;

/**
* The resulting saas releases.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<SaasRelease> saasReleases;

/**
* Locations that could not be reached.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<java.lang.String> unreachable;

/**
* If present, the next page token can be provided to a subsequent ListSaasReleases call to list
* the next page. If empty, there are no more pages.
* @return value or {@code null} for none
*/
public java.lang.String getNextPageToken() {
return nextPageToken;
}

/**
* If present, the next page token can be provided to a subsequent ListSaasReleases call to list
* the next page. If empty, there are no more pages.
* @param nextPageToken nextPageToken or {@code null} for none
*/
public ListSaasReleasesResponse setNextPageToken(java.lang.String nextPageToken) {
this.nextPageToken = nextPageToken;
return this;
}

/**
* The resulting saas releases.
* @return value or {@code null} for none
*/
public java.util.List<SaasRelease> getSaasReleases() {
return saasReleases;
}

/**
* The resulting saas releases.
* @param saasReleases saasReleases or {@code null} for none
*/
public ListSaasReleasesResponse setSaasReleases(java.util.List<SaasRelease> saasReleases) {
this.saasReleases = saasReleases;
return this;
}

/**
* Locations that could not be reached.
* @return value or {@code null} for none
*/
public java.util.List<java.lang.String> getUnreachable() {
return unreachable;
}

/**
* Locations that could not be reached.
* @param unreachable unreachable or {@code null} for none
*/
public ListSaasReleasesResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
this.unreachable = unreachable;
return this;
}

@Override
public ListSaasReleasesResponse set(String fieldName, Object value) {
return (ListSaasReleasesResponse) super.set(fieldName, value);
}

@Override
public ListSaasReleasesResponse clone() {
return (ListSaasReleasesResponse) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.saasservicemgmt.v1.model;

/**
* The response structure for the ListUnitGroupOperations method.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the App Lifecycle Manager API. For a detailed explanation
* see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class ListUnitGroupOperationsResponse extends com.google.api.client.json.GenericJson {

/**
* If present, the next page token can be provided to a subsequent ListUnitGroupOperations call to
* list the next page. If empty, there are no more pages.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String nextPageToken;

/**
* The resulting unit group operations.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<UnitGroupOperation> unitGroupOperations;

/**
* Locations that could not be reached.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<java.lang.String> unreachable;

/**
* If present, the next page token can be provided to a subsequent ListUnitGroupOperations call to
* list the next page. If empty, there are no more pages.
* @return value or {@code null} for none
*/
public java.lang.String getNextPageToken() {
return nextPageToken;
}

/**
* If present, the next page token can be provided to a subsequent ListUnitGroupOperations call to
* list the next page. If empty, there are no more pages.
* @param nextPageToken nextPageToken or {@code null} for none
*/
public ListUnitGroupOperationsResponse setNextPageToken(java.lang.String nextPageToken) {
this.nextPageToken = nextPageToken;
return this;
}

/**
* The resulting unit group operations.
* @return value or {@code null} for none
*/
public java.util.List<UnitGroupOperation> getUnitGroupOperations() {
return unitGroupOperations;
}

/**
* The resulting unit group operations.
* @param unitGroupOperations unitGroupOperations or {@code null} for none
*/
public ListUnitGroupOperationsResponse setUnitGroupOperations(java.util.List<UnitGroupOperation> unitGroupOperations) {
this.unitGroupOperations = unitGroupOperations;
return this;
}

/**
* Locations that could not be reached.
* @return value or {@code null} for none
*/
public java.util.List<java.lang.String> getUnreachable() {
return unreachable;
}

/**
* Locations that could not be reached.
* @param unreachable unreachable or {@code null} for none
*/
public ListUnitGroupOperationsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
this.unreachable = unreachable;
return this;
}

@Override
public ListUnitGroupOperationsResponse set(String fieldName, Object value) {
return (ListUnitGroupOperationsResponse) super.set(fieldName, value);
}

@Override
public ListUnitGroupOperationsResponse clone() {
return (ListUnitGroupOperationsResponse) super.clone();
}

}
Loading