Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoParamSpecEntryConfig
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoParamSpecEntryConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb
Instance Attribute Summary collapse
-
#descriptive_phrase ⇒ String
A short phrase to describe what this parameter contains.
-
#help_text ⇒ String
Detailed help text for this parameter containing information not provided elsewhere.
-
#hide_default_value ⇒ Boolean
(also: #hide_default_value?)
Whether the default value is hidden in the UI.
-
#input_display_option ⇒ String
Corresponds to the JSON property
inputDisplayOption. -
#is_hidden ⇒ Boolean
(also: #is_hidden?)
Whether this field is hidden in the UI.
-
#label ⇒ String
A user-friendly label for the parameter.
-
#parameter_name_option ⇒ String
Corresponds to the JSON property
parameterNameOption. -
#sub_section_label ⇒ String
A user-friendly label for subSection under which the parameter will be displayed.
-
#ui_placeholder_text ⇒ String
Placeholder text which will appear in the UI input form for this parameter.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoParamSpecEntryConfig
constructor
A new instance of EnterpriseCrmEventbusProtoParamSpecEntryConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoParamSpecEntryConfig
Returns a new instance of EnterpriseCrmEventbusProtoParamSpecEntryConfig.
1762 1763 1764 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1762 def initialize(**args) update!(**args) end |
Instance Attribute Details
#descriptive_phrase ⇒ String
A short phrase to describe what this parameter contains.
Corresponds to the JSON property descriptivePhrase
1715 1716 1717 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1715 def descriptive_phrase @descriptive_phrase end |
#help_text ⇒ String
Detailed help text for this parameter containing information not provided
elsewhere. For example, instructions on how to migrate from a deprecated
parameter.
Corresponds to the JSON property helpText
1722 1723 1724 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1722 def help_text @help_text end |
#hide_default_value ⇒ Boolean Also known as: hide_default_value?
Whether the default value is hidden in the UI.
Corresponds to the JSON property hideDefaultValue
1727 1728 1729 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1727 def hide_default_value @hide_default_value end |
#input_display_option ⇒ String
Corresponds to the JSON property inputDisplayOption
1733 1734 1735 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1733 def input_display_option @input_display_option end |
#is_hidden ⇒ Boolean Also known as:
Whether this field is hidden in the UI.
Corresponds to the JSON property isHidden
1738 1739 1740 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1738 def is_hidden @is_hidden end |
#label ⇒ String
A user-friendly label for the parameter.
Corresponds to the JSON property label
1744 1745 1746 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1744 def label @label end |
#parameter_name_option ⇒ String
Corresponds to the JSON property parameterNameOption
1749 1750 1751 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1749 def parameter_name_option @parameter_name_option end |
#sub_section_label ⇒ String
A user-friendly label for subSection under which the parameter will be
displayed.
Corresponds to the JSON property subSectionLabel
1755 1756 1757 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1755 def sub_section_label @sub_section_label end |
#ui_placeholder_text ⇒ String
Placeholder text which will appear in the UI input form for this parameter.
Corresponds to the JSON property uiPlaceholderText
1760 1761 1762 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1760 def ui_placeholder_text @ui_placeholder_text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1767 def update!(**args) @descriptive_phrase = args[:descriptive_phrase] if args.key?(:descriptive_phrase) @help_text = args[:help_text] if args.key?(:help_text) @hide_default_value = args[:hide_default_value] if args.key?(:hide_default_value) @input_display_option = args[:input_display_option] if args.key?(:input_display_option) @is_hidden = args[:is_hidden] if args.key?(:is_hidden) @label = args[:label] if args.key?(:label) @parameter_name_option = args[:parameter_name_option] if args.key?(:parameter_name_option) @sub_section_label = args[:sub_section_label] if args.key?(:sub_section_label) @ui_placeholder_text = args[:ui_placeholder_text] if args.key?(:ui_placeholder_text) end |