Class: Google::Apis::FirebasedataconnectV1beta::ImpersonateRequest
- Inherits:
-
Object
- Object
- Google::Apis::FirebasedataconnectV1beta::ImpersonateRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebasedataconnect_v1beta/classes.rb,
lib/google/apis/firebasedataconnect_v1beta/representations.rb,
lib/google/apis/firebasedataconnect_v1beta/representations.rb
Overview
The Impersonate request to Firebase SQL Connect.
Instance Attribute Summary collapse
-
#extensions ⇒ Google::Apis::FirebasedataconnectV1beta::GraphqlRequestExtensions
GraphqlRequestExtensions contains additional information of
GraphqlRequest. -
#operation_name ⇒ String
Required.
-
#variables ⇒ Hash<String,Object>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ImpersonateRequest
constructor
A new instance of ImpersonateRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ImpersonateRequest
Returns a new instance of ImpersonateRequest.
832 833 834 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 832 def initialize(**args) update!(**args) end |
Instance Attribute Details
#extensions ⇒ Google::Apis::FirebasedataconnectV1beta::GraphqlRequestExtensions
GraphqlRequestExtensions contains additional information of GraphqlRequest.
Corresponds to the JSON property extensions
818 819 820 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 818 def extensions @extensions end |
#operation_name ⇒ String
Required. The name of the GraphQL operation name. Required because all
Connector operations must be named. See https://graphql.org/learn/queries/#
operation-name.
Corresponds to the JSON property operationName
825 826 827 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 825 def operation_name @operation_name end |
#variables ⇒ Hash<String,Object>
Optional. Values for GraphQL variables provided in this request.
Corresponds to the JSON property variables
830 831 832 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 830 def variables @variables end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
837 838 839 840 841 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 837 def update!(**args) @extensions = args[:extensions] if args.key?(:extensions) @operation_name = args[:operation_name] if args.key?(:operation_name) @variables = args[:variables] if args.key?(:variables) end |