Class: Google::Apis::CloudsearchV1::IntegrationConfigMutation
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::IntegrationConfigMutation
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Instance Attribute Summary collapse
-
#add_app ⇒ Google::Apis::CloudsearchV1::AppId
Identifier of an App.
-
#add_pinned_item ⇒ Google::Apis::CloudsearchV1::PinnedItemId
Add a pinned tab using its identifier.
-
#remove_app ⇒ Google::Apis::CloudsearchV1::AppId
Identifier of an App.
-
#remove_pinned_item ⇒ Google::Apis::CloudsearchV1::PinnedItemId
Remove an active pinned tab using its identifier.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IntegrationConfigMutation
constructor
A new instance of IntegrationConfigMutation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IntegrationConfigMutation
Returns a new instance of IntegrationConfigMutation.
9960 9961 9962 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9960 def initialize(**args) update!(**args) end |
Instance Attribute Details
#add_app ⇒ Google::Apis::CloudsearchV1::AppId
Identifier of an App.
Corresponds to the JSON property addApp
9943 9944 9945 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9943 def add_app @add_app end |
#add_pinned_item ⇒ Google::Apis::CloudsearchV1::PinnedItemId
Add a pinned tab using its identifier.
Corresponds to the JSON property addPinnedItem
9948 9949 9950 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9948 def add_pinned_item @add_pinned_item end |
#remove_app ⇒ Google::Apis::CloudsearchV1::AppId
Identifier of an App.
Corresponds to the JSON property removeApp
9953 9954 9955 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9953 def remove_app @remove_app end |
#remove_pinned_item ⇒ Google::Apis::CloudsearchV1::PinnedItemId
Remove an active pinned tab using its identifier.
Corresponds to the JSON property removePinnedItem
9958 9959 9960 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9958 def remove_pinned_item @remove_pinned_item end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9965 9966 9967 9968 9969 9970 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9965 def update!(**args) @add_app = args[:add_app] if args.key?(:add_app) @add_pinned_item = args[:add_pinned_item] if args.key?(:add_pinned_item) @remove_app = args[:remove_app] if args.key?(:remove_app) @remove_pinned_item = args[:remove_pinned_item] if args.key?(:remove_pinned_item) end |