-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: regenerate clouddeploy client (#23511)
Generated in GitHub action: https://togithub.com/googleapis/googleapis/google-api-java-client-services/actions/workflows/codegen.yaml
- Loading branch information
1 parent
039f0ce
commit 8c6e71c
Showing
25 changed files
with
3,389 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1,189 changes: 1,189 additions & 0 deletions
1,189
...api-services-clouddeploy/v1/2.0.0/com/google/api/services/clouddeploy/v1/CloudDeploy.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
93 changes: 93 additions & 0 deletions
93
...ploy/v1/2.0.0/com/google/api/services/clouddeploy/v1/model/DeliveryPipelineAttribute.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
/* | ||
* 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.clouddeploy.v1.model; | ||
|
||
/** | ||
* Contains criteria for selecting DeliveryPipelines. | ||
* | ||
* <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 Cloud Deploy 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 DeliveryPipelineAttribute extends com.google.api.client.json.GenericJson { | ||
|
||
/** | ||
* ID of the `DeliveryPipeline`. The value of this field could be one of the following: * The last | ||
* segment of a pipeline name * "*", all delivery pipelines in a location | ||
* The value may be {@code null}. | ||
*/ | ||
@com.google.api.client.util.Key | ||
private java.lang.String id; | ||
|
||
/** | ||
* DeliveryPipeline labels. | ||
* The value may be {@code null}. | ||
*/ | ||
@com.google.api.client.util.Key | ||
private java.util.Map<String, java.lang.String> labels; | ||
|
||
/** | ||
* ID of the `DeliveryPipeline`. The value of this field could be one of the following: * The last | ||
* segment of a pipeline name * "*", all delivery pipelines in a location | ||
* @return value or {@code null} for none | ||
*/ | ||
public java.lang.String getId() { | ||
return id; | ||
} | ||
|
||
/** | ||
* ID of the `DeliveryPipeline`. The value of this field could be one of the following: * The last | ||
* segment of a pipeline name * "*", all delivery pipelines in a location | ||
* @param id id or {@code null} for none | ||
*/ | ||
public DeliveryPipelineAttribute setId(java.lang.String id) { | ||
this.id = id; | ||
return this; | ||
} | ||
|
||
/** | ||
* DeliveryPipeline labels. | ||
* @return value or {@code null} for none | ||
*/ | ||
public java.util.Map<String, java.lang.String> getLabels() { | ||
return labels; | ||
} | ||
|
||
/** | ||
* DeliveryPipeline labels. | ||
* @param labels labels or {@code null} for none | ||
*/ | ||
public DeliveryPipelineAttribute setLabels(java.util.Map<String, java.lang.String> labels) { | ||
this.labels = labels; | ||
return this; | ||
} | ||
|
||
@Override | ||
public DeliveryPipelineAttribute set(String fieldName, Object value) { | ||
return (DeliveryPipelineAttribute) super.set(fieldName, value); | ||
} | ||
|
||
@Override | ||
public DeliveryPipelineAttribute clone() { | ||
return (DeliveryPipelineAttribute) super.clone(); | ||
} | ||
|
||
} |
Oops, something went wrong.