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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public final class MigrationJob extends com.google.api.client.json.GenericJson {
private java.lang.String originalMigrationName;

/**
* Optional. Data dump parallelism settings used by the migration.
* Optional. Data dump and load parallelism settings used by the migration.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -659,15 +659,15 @@ public MigrationJob setOriginalMigrationName(java.lang.String originalMigrationN
}

/**
* Optional. Data dump parallelism settings used by the migration.
* Optional. Data dump and load parallelism settings used by the migration.
* @return value or {@code null} for none
*/
public PerformanceConfig getPerformanceConfig() {
return performanceConfig;
}

/**
* Optional. Data dump parallelism settings used by the migration.
* Optional. Data dump and load parallelism settings used by the migration.
* @param performanceConfig performanceConfig or {@code null} for none
*/
public MigrationJob setPerformanceConfig(PerformanceConfig performanceConfig) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,34 @@ public final class MySqlConnectionProfile extends com.google.api.client.json.Gen
@com.google.api.client.util.Key
private java.lang.Integer port;

/**
* Private connectivity.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private PrivateConnectivity privateConnectivity;

/**
* Private Service Connect connectivity.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private PrivateServiceConnectConnectivity privateServiceConnectConnectivity;

/**
* SSL configuration for the destination to connect to the source database.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private SslConfig ssl;

/**
* Static Service IP connectivity.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private StaticServiceIpConnectivity staticServiceIpConnectivity;

/**
* Required. The username that Database Migration Service will use to connect to the database. The
* value is encrypted when stored in Database Migration Service.
Expand Down Expand Up @@ -174,6 +195,40 @@ public MySqlConnectionProfile setPort(java.lang.Integer port) {
return this;
}

/**
* Private connectivity.
* @return value or {@code null} for none
*/
public PrivateConnectivity getPrivateConnectivity() {
return privateConnectivity;
}

/**
* Private connectivity.
* @param privateConnectivity privateConnectivity or {@code null} for none
*/
public MySqlConnectionProfile setPrivateConnectivity(PrivateConnectivity privateConnectivity) {
this.privateConnectivity = privateConnectivity;
return this;
}

/**
* Private Service Connect connectivity.
* @return value or {@code null} for none
*/
public PrivateServiceConnectConnectivity getPrivateServiceConnectConnectivity() {
return privateServiceConnectConnectivity;
}

/**
* Private Service Connect connectivity.
* @param privateServiceConnectConnectivity privateServiceConnectConnectivity or {@code null} for none
*/
public MySqlConnectionProfile setPrivateServiceConnectConnectivity(PrivateServiceConnectConnectivity privateServiceConnectConnectivity) {
this.privateServiceConnectConnectivity = privateServiceConnectConnectivity;
return this;
}

/**
* SSL configuration for the destination to connect to the source database.
* @return value or {@code null} for none
Expand All @@ -191,6 +246,23 @@ public MySqlConnectionProfile setSsl(SslConfig ssl) {
return this;
}

/**
* Static Service IP connectivity.
* @return value or {@code null} for none
*/
public StaticServiceIpConnectivity getStaticServiceIpConnectivity() {
return staticServiceIpConnectivity;
}

/**
* Static Service IP connectivity.
* @param staticServiceIpConnectivity staticServiceIpConnectivity or {@code null} for none
*/
public MySqlConnectionProfile setStaticServiceIpConnectivity(StaticServiceIpConnectivity staticServiceIpConnectivity) {
this.staticServiceIpConnectivity = staticServiceIpConnectivity;
return this;
}

/**
* Required. The username that Database Migration Service will use to connect to the database. The
* value is encrypted when stored in Database Migration Service.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,13 @@ public final class PerformanceConfig extends com.google.api.client.json.GenericJ
@com.google.api.client.util.Key
private java.lang.String dumpParallelLevel;

/**
* Optional. Initial load parallelism level.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String loadParallelLevel;

/**
* Initial dump parallelism level.
* @return value or {@code null} for none
Expand All @@ -54,6 +61,23 @@ public PerformanceConfig setDumpParallelLevel(java.lang.String dumpParallelLevel
return this;
}

/**
* Optional. Initial load parallelism level.
* @return value or {@code null} for none
*/
public java.lang.String getLoadParallelLevel() {
return loadParallelLevel;
}

/**
* Optional. Initial load parallelism level.
* @param loadParallelLevel loadParallelLevel or {@code null} for none
*/
public PerformanceConfig setLoadParallelLevel(java.lang.String loadParallelLevel) {
this.loadParallelLevel = loadParallelLevel;
return this;
}

@Override
public PerformanceConfig set(String fieldName, Object value) {
return (PerformanceConfig) super.set(fieldName, value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public final class PostgreSqlConnectionProfile extends com.google.api.client.jso
private PrivateConnectivity privateConnectivity;

/**
* Private service connect connectivity.
* Private Service Connect connectivity.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -342,15 +342,15 @@ public PostgreSqlConnectionProfile setPrivateConnectivity(PrivateConnectivity pr
}

/**
* Private service connect connectivity.
* Private Service Connect connectivity.
* @return value or {@code null} for none
*/
public PrivateServiceConnectConnectivity getPrivateServiceConnectConnectivity() {
return privateServiceConnectConnectivity;
}

/**
* Private service connect connectivity.
* Private Service Connect connectivity.
* @param privateServiceConnectConnectivity privateServiceConnectConnectivity or {@code null} for none
*/
public PostgreSqlConnectionProfile setPrivateServiceConnectConnectivity(PrivateServiceConnectConnectivity privateServiceConnectConnectivity) {
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-datamigration/v1/2.0.0/pom.xml
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-datamigration</artifactId>
<version>v1-rev20260802-2.0.0</version>
<name>Database Migration API v1-rev20260802-2.0.0</name>
<version>v1-rev20260904-2.0.0</version>
<name>Database Migration API v1-rev20260904-2.0.0</name>
<packaging>jar</packaging>

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

Expand Down
Loading