Class: Google::Apis::NetworkconnectivityV1::Migration
- Inherits:
-
Object
- Object
- Google::Apis::NetworkconnectivityV1::Migration
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkconnectivity_v1/classes.rb,
lib/google/apis/networkconnectivity_v1/representations.rb,
lib/google/apis/networkconnectivity_v1/representations.rb
Overview
Specification for migration with source and target resource names.
Instance Attribute Summary collapse
-
#source ⇒ String
Immutable.
-
#target ⇒ String
Immutable.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Migration
constructor
A new instance of Migration.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Migration
Returns a new instance of Migration.
1874 1875 1876 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1874 def initialize(**args) update!(**args) end |
Instance Attribute Details
#source ⇒ String
Immutable. Resource path as an URI of the source resource, for example a
subnet. The project for the source resource should match the project for the
InternalRange. An example: /projects/project
/regions/region
/subnetworks/
subnet
Corresponds to the JSON property source
1865 1866 1867 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1865 def source @source end |
#target ⇒ String
Immutable. Resource path of the target resource. The target project can be
different, as in the cases when migrating to peer networks. The resource For
example: /projects/project
/regions/region
/subnetworks/subnet
Corresponds to the JSON property target
1872 1873 1874 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1872 def target @target end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1879 1880 1881 1882 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1879 def update!(**args) @source = args[:source] if args.key?(:source) @target = args[:target] if args.key?(:target) end |