Show / Hide Table of Contents

Class MigrationJob

Represents a Database Migration Service migration job object.

Inheritance
object
MigrationJob
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.DatabaseMigrationService.v1beta1.Data
Assembly: Google.Apis.DatabaseMigrationService.v1beta1.dll
Syntax
public class MigrationJob : IDirectResponseSchema

Properties

CreateTime

object representation of CreateTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use CreateTimeDateTimeOffset instead.")]
public virtual object CreateTime { get; set; }
Property Value
Type Description
object

CreateTimeDateTimeOffset

DateTimeOffset representation of CreateTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? CreateTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

CreateTimeRaw

Output only. The timestamp when the migration job resource was created. A timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds. Example: "2014-10-02T15:01:23.045123456Z".

Declaration
[JsonProperty("createTime")]
public virtual string CreateTimeRaw { get; set; }
Property Value
Type Description
string

Destination

Required. The resource name (URI) of the destination connection profile.

Declaration
[JsonProperty("destination")]
public virtual string Destination { get; set; }
Property Value
Type Description
string

DestinationDatabase

The database engine type and provider of the destination.

Declaration
[JsonProperty("destinationDatabase")]
public virtual DatabaseType DestinationDatabase { get; set; }
Property Value
Type Description
DatabaseType

DisplayName

The migration job display name.

Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
Type Description
string

DumpPath

The path to the dump file in Google Cloud Storage, in the format: (gs://[BUCKET_NAME]/[OBJECT_NAME]).

Declaration
[JsonProperty("dumpPath")]
public virtual string DumpPath { get; set; }
Property Value
Type Description
string

Duration

Output only. The duration of the migration job (in seconds). A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".

Declaration
[JsonProperty("duration")]
public virtual object Duration { get; set; }
Property Value
Type Description
object

EndTime

object representation of EndTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use EndTimeDateTimeOffset instead.")]
public virtual object EndTime { get; set; }
Property Value
Type Description
object

EndTimeDateTimeOffset

DateTimeOffset representation of EndTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? EndTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

EndTimeRaw

Output only. If the migration job is completed, the time when it was completed.

Declaration
[JsonProperty("endTime")]
public virtual string EndTimeRaw { get; set; }
Property Value
Type Description
string

Error

Output only. The error details in case of state FAILED.

Declaration
[JsonProperty("error")]
public virtual Status Error { get; set; }
Property Value
Type Description
Status

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Labels

The resource labels for migration job to use to annotate any related underlying resources such as Compute Engine VMs. An object containing a list of "key": "value" pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

Declaration
[JsonProperty("labels")]
public virtual IDictionary<string, string> Labels { get; set; }
Property Value
Type Description
IDictionary<string, string>

Name

The name (URI) of this migration job resource, in the form of: projects/{project}/locations/{location}/migrationJobs/{migrationJob}.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
string

Phase

Output only. The current migration job phase.

Declaration
[JsonProperty("phase")]
public virtual string Phase { get; set; }
Property Value
Type Description
string

ReverseSshConnectivity

The details needed to communicate to the source over Reverse SSH tunnel connectivity.

Declaration
[JsonProperty("reverseSshConnectivity")]
public virtual ReverseSshConnectivity ReverseSshConnectivity { get; set; }
Property Value
Type Description
ReverseSshConnectivity

Source

Required. The resource name (URI) of the source connection profile.

Declaration
[JsonProperty("source")]
public virtual string Source { get; set; }
Property Value
Type Description
string

SourceDatabase

The database engine type and provider of the source.

Declaration
[JsonProperty("sourceDatabase")]
public virtual DatabaseType SourceDatabase { get; set; }
Property Value
Type Description
DatabaseType

State

The current migration job state.

Declaration
[JsonProperty("state")]
public virtual string State { get; set; }
Property Value
Type Description
string

StaticIpConnectivity

static ip connectivity data (default, no additional details needed).

Declaration
[JsonProperty("staticIpConnectivity")]
public virtual StaticIpConnectivity StaticIpConnectivity { get; set; }
Property Value
Type Description
StaticIpConnectivity

Type

Required. The migration job type.

Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type Description
string

UpdateTime

object representation of UpdateTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use UpdateTimeDateTimeOffset instead.")]
public virtual object UpdateTime { get; set; }
Property Value
Type Description
object

UpdateTimeDateTimeOffset

DateTimeOffset representation of UpdateTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? UpdateTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

UpdateTimeRaw

Output only. The timestamp when the migration job resource was last updated. A timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds. Example: "2014-10-02T15:01:23.045123456Z".

Declaration
[JsonProperty("updateTime")]
public virtual string UpdateTimeRaw { get; set; }
Property Value
Type Description
string

VpcPeeringConnectivity

The details of the VPC network that the source database is located in.

Declaration
[JsonProperty("vpcPeeringConnectivity")]
public virtual VpcPeeringConnectivity VpcPeeringConnectivity { get; set; }
Property Value
Type Description
VpcPeeringConnectivity

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX