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-networkmanagement</artifactId>
<version>v1-rev20260513-2.0.0</version>
<version>v1-rev20260520-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-networkmanagement:v1-rev20260513-2.0.0'
implementation 'com.google.apis:google-api-services-networkmanagement:v1-rev20260520-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5329,6 +5329,29 @@ public GenerateMonitoringPointConfig setName(java.lang.String name) {
return this;
}

/**
* Optional. For Google Cloud MPs, this field indicates whether the Monitoring Point is
* deployed in a Private Service Connect deployment. Not used for non-Google Cloud MPs.
*/
@com.google.api.client.util.Key
private java.lang.Boolean privateConnectivityEnabled;

/** Optional. For Google Cloud MPs, this field indicates whether the Monitoring Point is deployed in a
Private Service Connect deployment. Not used for non-Google Cloud MPs.
*/
public java.lang.Boolean getPrivateConnectivityEnabled() {
return privateConnectivityEnabled;
}

/**
* Optional. For Google Cloud MPs, this field indicates whether the Monitoring Point is
* deployed in a Private Service Connect deployment. Not used for non-Google Cloud MPs.
*/
public GenerateMonitoringPointConfig setPrivateConnectivityEnabled(java.lang.Boolean privateConnectivityEnabled) {
this.privateConnectivityEnabled = privateConnectivityEnabled;
return this;
}

@Override
public GenerateMonitoringPointConfig set(String parameterName, Object value) {
return (GenerateMonitoringPointConfig) super.set(parameterName, value);
Expand Down Expand Up @@ -6112,6 +6135,29 @@ public DownloadInstallScript setNtpServerSecondaryAddress(java.lang.String ntpSe
return this;
}

/**
* Optional. For Google Cloud MPs, this field indicates whether the Monitoring Point is
* deployed in a Private Service Connect deployment. Not used for non-Google Cloud MPs.
*/
@com.google.api.client.util.Key
private java.lang.Boolean privateConnectivityEnabled;

/** Optional. For Google Cloud MPs, this field indicates whether the Monitoring Point is deployed in a
Private Service Connect deployment. Not used for non-Google Cloud MPs.
*/
public java.lang.Boolean getPrivateConnectivityEnabled() {
return privateConnectivityEnabled;
}

/**
* Optional. For Google Cloud MPs, this field indicates whether the Monitoring Point is
* deployed in a Private Service Connect deployment. Not used for non-Google Cloud MPs.
*/
public DownloadInstallScript setPrivateConnectivityEnabled(java.lang.Boolean privateConnectivityEnabled) {
this.privateConnectivityEnabled = privateConnectivityEnabled;
return this;
}

/** Required. DNS server. */
@com.google.api.client.util.Key("staticIpAddress.dnsServerAddress")
private java.lang.String staticIpAddressDnsServerAddress;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
/*
* 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.networkmanagement.v1.model;

/**
* For display only. Metadata associated with a Cloud Run job.
*
* <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 Network Management 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 CloudRunJobInfo extends com.google.api.client.json.GenericJson {

/**
* Name of a Cloud Run job.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String displayName;

/**
* Location in which this job is deployed.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String location;

/**
* URI of a Cloud Run job.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String uri;

/**
* Name of a Cloud Run job.
* @return value or {@code null} for none
*/
public java.lang.String getDisplayName() {
return displayName;
}

/**
* Name of a Cloud Run job.
* @param displayName displayName or {@code null} for none
*/
public CloudRunJobInfo setDisplayName(java.lang.String displayName) {
this.displayName = displayName;
return this;
}

/**
* Location in which this job is deployed.
* @return value or {@code null} for none
*/
public java.lang.String getLocation() {
return location;
}

/**
* Location in which this job is deployed.
* @param location location or {@code null} for none
*/
public CloudRunJobInfo setLocation(java.lang.String location) {
this.location = location;
return this;
}

/**
* URI of a Cloud Run job.
* @return value or {@code null} for none
*/
public java.lang.String getUri() {
return uri;
}

/**
* URI of a Cloud Run job.
* @param uri uri or {@code null} for none
*/
public CloudRunJobInfo setUri(java.lang.String uri) {
this.uri = uri;
return this;
}

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

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

}
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,13 @@ public final class Step extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private CloudFunctionInfo cloudFunction;

/**
* Display information of a Cloud Run job.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private CloudRunJobInfo cloudRunJob;

/**
* Display information of a Cloud Run revision.
* The value may be {@code null}.
Expand Down Expand Up @@ -397,6 +404,23 @@ public Step setCloudFunction(CloudFunctionInfo cloudFunction) {
return this;
}

/**
* Display information of a Cloud Run job.
* @return value or {@code null} for none
*/
public CloudRunJobInfo getCloudRunJob() {
return cloudRunJob;
}

/**
* Display information of a Cloud Run job.
* @param cloudRunJob cloudRunJob or {@code null} for none
*/
public Step setCloudRunJob(CloudRunJobInfo cloudRunJob) {
this.cloudRunJob = cloudRunJob;
return this;
}

/**
* Display information of a Cloud Run revision.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-networkmanagement</artifactId>
<version>v1-rev20260513-2.0.0</version>
<name>Network Management API v1-rev20260513-2.0.0</name>
<version>v1-rev20260520-2.0.0</version>
<name>Network Management API v1-rev20260520-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-networkmanagement/v1/README.md
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-networkmanagement</artifactId>
<version>v1-rev20260513-2.0.0</version>
<version>v1-rev20260520-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-networkmanagement:v1-rev20260513-2.0.0'
implementation 'com.google.apis:google-api-services-networkmanagement:v1-rev20260520-2.0.0'
}
```

Expand Down
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-networkmanagement</artifactId>
<version>v1beta1-rev20260513-2.0.0</version>
<version>v1beta1-rev20260520-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-networkmanagement:v1beta1-rev20260513-2.0.0'
implementation 'com.google.apis:google-api-services-networkmanagement:v1beta1-rev20260520-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
/*
* 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.networkmanagement.v1beta1.model;

/**
* For display only. Metadata associated with a Cloud Run job.
*
* <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 Network Management 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 CloudRunJobInfo extends com.google.api.client.json.GenericJson {

/**
* Name of a Cloud Run job.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String displayName;

/**
* Location in which this job is deployed.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String location;

/**
* URI of a Cloud Run job.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String uri;

/**
* Name of a Cloud Run job.
* @return value or {@code null} for none
*/
public java.lang.String getDisplayName() {
return displayName;
}

/**
* Name of a Cloud Run job.
* @param displayName displayName or {@code null} for none
*/
public CloudRunJobInfo setDisplayName(java.lang.String displayName) {
this.displayName = displayName;
return this;
}

/**
* Location in which this job is deployed.
* @return value or {@code null} for none
*/
public java.lang.String getLocation() {
return location;
}

/**
* Location in which this job is deployed.
* @param location location or {@code null} for none
*/
public CloudRunJobInfo setLocation(java.lang.String location) {
this.location = location;
return this;
}

/**
* URI of a Cloud Run job.
* @return value or {@code null} for none
*/
public java.lang.String getUri() {
return uri;
}

/**
* URI of a Cloud Run job.
* @param uri uri or {@code null} for none
*/
public CloudRunJobInfo setUri(java.lang.String uri) {
this.uri = uri;
return this;
}

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

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

}
Loading