Class: Google::Apis::ApihubV1::GoogleCloudApihubV1ConfigTemplate
- Inherits:
-
Object
- Object
- Google::Apis::ApihubV1::GoogleCloudApihubV1ConfigTemplate
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apihub_v1/classes.rb,
lib/google/apis/apihub_v1/representations.rb,
lib/google/apis/apihub_v1/representations.rb
Overview
ConfigTemplate represents the configuration template for a plugin.
Instance Attribute Summary collapse
-
#additional_config_template ⇒ Array<Google::Apis::ApihubV1::GoogleCloudApihubV1ConfigVariableTemplate>
Optional.
-
#auth_config_template ⇒ Google::Apis::ApihubV1::GoogleCloudApihubV1AuthConfigTemplate
AuthConfigTemplate represents the authentication template for a plugin.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApihubV1ConfigTemplate
constructor
A new instance of GoogleCloudApihubV1ConfigTemplate.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApihubV1ConfigTemplate
Returns a new instance of GoogleCloudApihubV1ConfigTemplate.
1178 1179 1180 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 1178 def initialize(**args) update!(**args) end |
Instance Attribute Details
#additional_config_template ⇒ Array<Google::Apis::ApihubV1::GoogleCloudApihubV1ConfigVariableTemplate>
Optional. The list of additional configuration variables for the plugin's
configuration.
Corresponds to the JSON property additionalConfigTemplate
1171 1172 1173 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 1171 def additional_config_template @additional_config_template end |
#auth_config_template ⇒ Google::Apis::ApihubV1::GoogleCloudApihubV1AuthConfigTemplate
AuthConfigTemplate represents the authentication template for a plugin.
Corresponds to the JSON property authConfigTemplate
1176 1177 1178 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 1176 def auth_config_template @auth_config_template end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1183 1184 1185 1186 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 1183 def update!(**args) @additional_config_template = args[:additional_config_template] if args.key?(:additional_config_template) @auth_config_template = args[:auth_config_template] if args.key?(:auth_config_template) end |