Class: Google::Apis::NetworkconnectivityV1::StateReason

Inherits:
Object
  • Object
show all
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

The reason a spoke is inactive.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StateReason

Returns a new instance of StateReason.



2641
2642
2643
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2641

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#codeString

The code associated with this reason. Corresponds to the JSON property code

Returns:

  • (String)


2629
2630
2631
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2629

def code
  @code
end

#messageString

Human-readable details about this reason. Corresponds to the JSON property message

Returns:

  • (String)


2634
2635
2636
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2634

def message
  @message
end

#user_detailsString

Additional information provided by the user in the RejectSpoke call. Corresponds to the JSON property userDetails

Returns:

  • (String)


2639
2640
2641
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2639

def user_details
  @user_details
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2646
2647
2648
2649
2650
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2646

def update!(**args)
  @code = args[:code] if args.key?(:code)
  @message = args[:message] if args.key?(:message)
  @user_details = args[:user_details] if args.key?(:user_details)
end