Class V1alpha1StorageVersionMigrationSpec
Spec of the storage version migration.
Inheritance
V1alpha1StorageVersionMigrationSpec
Assembly: KubernetesClient.dll
Syntax
public record V1alpha1StorageVersionMigrationSpec : IEquatable<V1alpha1StorageVersionMigrationSpec>
Constructors
View Source
V1alpha1StorageVersionMigrationSpec()
Declaration
public V1alpha1StorageVersionMigrationSpec()
View Source
V1alpha1StorageVersionMigrationSpec(V1alpha1StorageVersionMigrationSpec)
Declaration
protected V1alpha1StorageVersionMigrationSpec(V1alpha1StorageVersionMigrationSpec original)
Parameters
Properties
View Source
ContinueToken
The token used in the list options to get the next chunk of objects to migrate.
When the .status.conditions indicates the migration is "Running", users can use
this token to check the progress of the migration.
Declaration
[JsonPropertyName("continueToken")]
public string ContinueToken { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
Resource
The resource that is being migrated. The migrator sends requests to the endpoint
serving the resource. Immutable.
Declaration
[JsonPropertyName("resource")]
public V1alpha1GroupVersionResource Resource { get; set; }
Property Value
Methods
View Source
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
View Source
Equals(V1alpha1StorageVersionMigrationSpec?)
Declaration
public virtual bool Equals(V1alpha1StorageVersionMigrationSpec? other)
Parameters
Returns
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
View Source
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
View Source
operator ==(V1alpha1StorageVersionMigrationSpec?, V1alpha1StorageVersionMigrationSpec?)
Declaration
public static bool operator ==(V1alpha1StorageVersionMigrationSpec? left, V1alpha1StorageVersionMigrationSpec? right)
Parameters
Returns
View Source
operator !=(V1alpha1StorageVersionMigrationSpec?, V1alpha1StorageVersionMigrationSpec?)
Declaration
public static bool operator !=(V1alpha1StorageVersionMigrationSpec? left, V1alpha1StorageVersionMigrationSpec? right)
Parameters
Returns
Implements