Class: Com::Vmware::Vapi::Std::Errors::TransientIndication
- Inherits:
-
VAPI::Bindings::VapiStruct
- Object
- VAPI::Bindings::VapiStruct
- Com::Vmware::Vapi::Std::Errors::TransientIndication
- Defined in:
- /build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/vapi/std/errors.rb
Overview
The ``Com::Vmware::Vapi::Std::Errors::TransientIndication`` class indicates whether or not the error is transient.
Some types of errors are transient in certain situtations and not transient in other situtations. This error payload can be used to indicate to clients whether a particular error is transient. See :attr:`Com::Vmware::Vapi::Std::Errors::Error.data` .
Instance Attribute Summary (collapse)
-
- (Boolean) is_transient
Indicates that the error this class is attached to is transient.
Class Method Summary (collapse)
-
+ (VAPI::Bindings::StructType) binding_type
Holds (gets or creates) the binding type metadata for this structure type.
Instance Method Summary (collapse)
-
- (TransientIndication) initialize(ruby_values = nil, struct_value = nil)
constructor
Constructs a new instance.
Constructor Details
- (TransientIndication) initialize(ruby_values = nil, struct_value = nil)
Constructs a new instance.
133 134 135 |
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/vapi/std/errors.rb', line 133 def initialize(ruby_values=nil, struct_value=nil) super(self.class.binding_type, ruby_values, struct_value) end |
Instance Attribute Details
- (Boolean) is_transient
Indicates that the error this class is attached to is transient.
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/vapi/std/errors.rb', line 110 class TransientIndication < VAPI::Bindings::VapiStruct class << self # Holds (gets or creates) the binding type metadata for this structure type. # @scope class # @return [VAPI::Bindings::StructType] the binding type def binding_type @binding_type ||= VAPI::Bindings::StructType.new( 'com.vmware.vapi.std.errors.transient_indication', { 'is_transient' => VAPI::Bindings::BooleanType.instance, }, TransientIndication, false, nil) end end attr_accessor :is_transient # Constructs a new instance. # @param ruby_values [Hash] a map of initial property values (optional) # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional) def initialize(ruby_values=nil, struct_value=nil) super(self.class.binding_type, ruby_values, struct_value) end end |
Class Method Details
+ (VAPI::Bindings::StructType) binding_type
Holds (gets or creates) the binding type metadata for this structure type.
116 117 118 119 120 121 122 123 124 125 |
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/vapi/std/errors.rb', line 116 def binding_type @binding_type ||= VAPI::Bindings::StructType.new( 'com.vmware.vapi.std.errors.transient_indication', { 'is_transient' => VAPI::Bindings::BooleanType.instance, }, TransientIndication, false, nil) end |