Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaFile
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaFile
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1/classes.rb,
lib/google/apis/integrations_v1/representations.rb,
lib/google/apis/integrations_v1/representations.rb
Overview
To store Integration version related file i.e. Integration Version, Config variable etc.
Instance Attribute Summary collapse
-
#integration_config ⇒ Hash<String,Object>
Integration version config file Corresponds to the JSON property
integrationConfig
. -
#integration_version ⇒ Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaIntegrationVersion
The integration version definition.
-
#type ⇒ String
File information like Integration version, Integration Config variables etc.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaFile
constructor
A new instance of GoogleCloudIntegrationsV1alphaFile.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaFile
Returns a new instance of GoogleCloudIntegrationsV1alphaFile.
8131 8132 8133 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 8131 def initialize(**args) update!(**args) end |
Instance Attribute Details
#integration_config ⇒ Hash<String,Object>
Integration version config file
Corresponds to the JSON property integrationConfig
8119 8120 8121 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 8119 def integration_config @integration_config end |
#integration_version ⇒ Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaIntegrationVersion
The integration version definition.
Corresponds to the JSON property integrationVersion
8124 8125 8126 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 8124 def integration_version @integration_version end |
#type ⇒ String
File information like Integration version, Integration Config variables etc.
Corresponds to the JSON property type
8129 8130 8131 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 8129 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8136 8137 8138 8139 8140 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 8136 def update!(**args) @integration_config = args[:integration_config] if args.key?(:integration_config) @integration_version = args[:integration_version] if args.key?(:integration_version) @type = args[:type] if args.key?(:type) end |