Class: Aws::Mgn::Types::OperationUnion
- Inherits:
-
Struct
- Object
- Struct
- Aws::Mgn::Types::OperationUnion
- Defined in:
- gems/aws-sdk-mgn/lib/aws-sdk-mgn/types.rb
Overview
OperationUnion is a union - when making an API calls you must set exactly one of the members.
A union type representing the operation to perform on a construct during a mapping update.
Defined Under Namespace
Classes: Delete, Merge, Split, Unknown, Update
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#delete ⇒ Types::DeleteOperation
A delete operation to remove a construct from the mapping.
-
#merge ⇒ Types::MergeOperation
A merge operation to combine constructs from different segments.
-
#split ⇒ Types::SplitOperation
A split operation to divide a construct into multiple constructs with specified CIDR blocks.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#update ⇒ Types::UpdateOperation
An update operation to modify construct properties.
Instance Attribute Details
#delete ⇒ Types::DeleteOperation
A delete operation to remove a construct from the mapping.
4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 |
# File 'gems/aws-sdk-mgn/lib/aws-sdk-mgn/types.rb', line 4988 class OperationUnion < Struct.new( :merge, :split, :delete, :update, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Merge < OperationUnion; end class Split < OperationUnion; end class Delete < OperationUnion; end class Update < OperationUnion; end class Unknown < OperationUnion; end end |
#merge ⇒ Types::MergeOperation
A merge operation to combine constructs from different segments.
4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 |
# File 'gems/aws-sdk-mgn/lib/aws-sdk-mgn/types.rb', line 4988 class OperationUnion < Struct.new( :merge, :split, :delete, :update, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Merge < OperationUnion; end class Split < OperationUnion; end class Delete < OperationUnion; end class Update < OperationUnion; end class Unknown < OperationUnion; end end |
#split ⇒ Types::SplitOperation
A split operation to divide a construct into multiple constructs with specified CIDR blocks.
4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 |
# File 'gems/aws-sdk-mgn/lib/aws-sdk-mgn/types.rb', line 4988 class OperationUnion < Struct.new( :merge, :split, :delete, :update, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Merge < OperationUnion; end class Split < OperationUnion; end class Delete < OperationUnion; end class Update < OperationUnion; end class Unknown < OperationUnion; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
4988 4989 4990 |
# File 'gems/aws-sdk-mgn/lib/aws-sdk-mgn/types.rb', line 4988 def unknown @unknown end |
#update ⇒ Types::UpdateOperation
An update operation to modify construct properties.
4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 |
# File 'gems/aws-sdk-mgn/lib/aws-sdk-mgn/types.rb', line 4988 class OperationUnion < Struct.new( :merge, :split, :delete, :update, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Merge < OperationUnion; end class Split < OperationUnion; end class Delete < OperationUnion; end class Update < OperationUnion; end class Unknown < OperationUnion; end end |