google-apis-connectors_v1 0.59.0 → 0.60.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f23715038b24e58b1b9ed3cf04fa8010e236a1a4eb928dfccbe95ec6fb125262
4
- data.tar.gz: 9225c8a728b5d09820a32f728926564b86bc2dfc9e7b4ac0b1036e6e77f4d693
3
+ metadata.gz: b3ffa7f3ea2d59253a9ad20623359319b3c959f87e11297d06f1e5dc7af8e4b5
4
+ data.tar.gz: 7e39e3d73d74ba1b7e1fa922c42a62be609599b2beed714f8d21b39bb186ece9
5
5
  SHA512:
6
- metadata.gz: fc9af2c8cd4fee025ae0dbe4c69417dce81cea1eb1154c29482ce569da6847bda2a5936bb7df1ca469db58e37e307b4783c156f7d944e392b8c609dd0212e36d
7
- data.tar.gz: 8a09c160fa53271a6556ebc78b0bb710ec6396aee7015b15ef9e236831db45484ac6b1d3e5f37fcd08ccf6342989e9ff2b3cddcff20a92053b64b3778efcc5b4
6
+ metadata.gz: 3338dc9ca319f4d7bfd3ebc0780bc368df5170e407863dccbd426a236bd2873b95dd82a60e394772e605109766d2fcc11e8374c9dd990410a80953e525d0ff44
7
+ data.tar.gz: 44b4f86b5f6229f1969977cf9f30140565fe6cee1effffe07f299b71d63841d53a6e30768343eeff9543a718d0e6347ae8e86ad70f2553062f5dab40d00febea
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.60.0 (2024-06-09)
4
+
5
+ * Regenerated from discovery document revision 20240606
6
+
3
7
  ### v0.59.0 (2024-06-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20240529
@@ -474,6 +474,11 @@ module Google
474
474
  # @return [String]
475
475
  attr_accessor :location_type
476
476
 
477
+ # MultipleSelectConfig represents the multiple options for a config variable.
478
+ # Corresponds to the JSON property `multipleSelectConfig`
479
+ # @return [Google::Apis::ConnectorsV1::MultipleSelectConfig]
480
+ attr_accessor :multiple_select_config
481
+
477
482
  # Flag represents that this `ConfigVariable` must be provided for a connection.
478
483
  # Corresponds to the JSON property `required`
479
484
  # @return [Boolean]
@@ -525,6 +530,7 @@ module Google
525
530
  @is_advanced = args[:is_advanced] if args.key?(:is_advanced)
526
531
  @key = args[:key] if args.key?(:key)
527
532
  @location_type = args[:location_type] if args.key?(:location_type)
533
+ @multiple_select_config = args[:multiple_select_config] if args.key?(:multiple_select_config)
528
534
  @required = args[:required] if args.key?(:required)
529
535
  @required_condition = args[:required_condition] if args.key?(:required_condition)
530
536
  @role_grant = args[:role_grant] if args.key?(:role_grant)
@@ -3814,6 +3820,76 @@ module Google
3814
3820
  end
3815
3821
  end
3816
3822
 
3823
+ # MultipleSelectConfig represents the multiple options for a config variable.
3824
+ class MultipleSelectConfig
3825
+ include Google::Apis::Core::Hashable
3826
+
3827
+ # Optional. Allow custom values.
3828
+ # Corresponds to the JSON property `allowCustomValues`
3829
+ # @return [Boolean]
3830
+ attr_accessor :allow_custom_values
3831
+ alias_method :allow_custom_values?, :allow_custom_values
3832
+
3833
+ # Required. Multiple select options.
3834
+ # Corresponds to the JSON property `multipleSelectOptions`
3835
+ # @return [Array<Google::Apis::ConnectorsV1::MultipleSelectOption>]
3836
+ attr_accessor :multiple_select_options
3837
+
3838
+ # Required. Value separator.
3839
+ # Corresponds to the JSON property `valueSeparator`
3840
+ # @return [String]
3841
+ attr_accessor :value_separator
3842
+
3843
+ def initialize(**args)
3844
+ update!(**args)
3845
+ end
3846
+
3847
+ # Update properties of this object
3848
+ def update!(**args)
3849
+ @allow_custom_values = args[:allow_custom_values] if args.key?(:allow_custom_values)
3850
+ @multiple_select_options = args[:multiple_select_options] if args.key?(:multiple_select_options)
3851
+ @value_separator = args[:value_separator] if args.key?(:value_separator)
3852
+ end
3853
+ end
3854
+
3855
+ # MultiplSelecteOption represents the single option for a config variable.
3856
+ class MultipleSelectOption
3857
+ include Google::Apis::Core::Hashable
3858
+
3859
+ # Optional. Value of the option.
3860
+ # Corresponds to the JSON property `description`
3861
+ # @return [String]
3862
+ attr_accessor :description
3863
+
3864
+ # Required. Display name of the option.
3865
+ # Corresponds to the JSON property `displayName`
3866
+ # @return [String]
3867
+ attr_accessor :display_name
3868
+
3869
+ # Required. Key of the option.
3870
+ # Corresponds to the JSON property `key`
3871
+ # @return [String]
3872
+ attr_accessor :key
3873
+
3874
+ # Optional. Indicates if the option is preselected.
3875
+ # Corresponds to the JSON property `preselected`
3876
+ # @return [Boolean]
3877
+ attr_accessor :preselected
3878
+ alias_method :preselected?, :preselected
3879
+
3880
+ def initialize(**args)
3881
+ update!(**args)
3882
+ end
3883
+
3884
+ # Update properties of this object
3885
+ def update!(**args)
3886
+ @description = args[:description] if args.key?(:description)
3887
+ @display_name = args[:display_name] if args.key?(:display_name)
3888
+ @key = args[:key] if args.key?(:key)
3889
+ @preselected = args[:preselected] if args.key?(:preselected)
3890
+ end
3891
+ end
3892
+
3817
3893
  # Regional Network Config.
3818
3894
  class NetworkConfig
3819
3895
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ConnectorsV1
18
18
  # Version of the google-apis-connectors_v1 gem
19
- GEM_VERSION = "0.59.0"
19
+ GEM_VERSION = "0.60.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240529"
25
+ REVISION = "20240606"
26
26
  end
27
27
  end
28
28
  end
@@ -514,6 +514,18 @@ module Google
514
514
  include Google::Apis::Core::JsonObjectSupport
515
515
  end
516
516
 
517
+ class MultipleSelectConfig
518
+ class Representation < Google::Apis::Core::JsonRepresentation; end
519
+
520
+ include Google::Apis::Core::JsonObjectSupport
521
+ end
522
+
523
+ class MultipleSelectOption
524
+ class Representation < Google::Apis::Core::JsonRepresentation; end
525
+
526
+ include Google::Apis::Core::JsonObjectSupport
527
+ end
528
+
517
529
  class NetworkConfig
518
530
  class Representation < Google::Apis::Core::JsonRepresentation; end
519
531
 
@@ -917,6 +929,8 @@ module Google
917
929
  property :is_advanced, as: 'isAdvanced'
918
930
  property :key, as: 'key'
919
931
  property :location_type, as: 'locationType'
932
+ property :multiple_select_config, as: 'multipleSelectConfig', class: Google::Apis::ConnectorsV1::MultipleSelectConfig, decorator: Google::Apis::ConnectorsV1::MultipleSelectConfig::Representation
933
+
920
934
  property :required, as: 'required'
921
935
  property :required_condition, as: 'requiredCondition', class: Google::Apis::ConnectorsV1::LogicalExpression, decorator: Google::Apis::ConnectorsV1::LogicalExpression::Representation
922
936
 
@@ -1803,6 +1817,26 @@ module Google
1803
1817
  end
1804
1818
  end
1805
1819
 
1820
+ class MultipleSelectConfig
1821
+ # @private
1822
+ class Representation < Google::Apis::Core::JsonRepresentation
1823
+ property :allow_custom_values, as: 'allowCustomValues'
1824
+ collection :multiple_select_options, as: 'multipleSelectOptions', class: Google::Apis::ConnectorsV1::MultipleSelectOption, decorator: Google::Apis::ConnectorsV1::MultipleSelectOption::Representation
1825
+
1826
+ property :value_separator, as: 'valueSeparator'
1827
+ end
1828
+ end
1829
+
1830
+ class MultipleSelectOption
1831
+ # @private
1832
+ class Representation < Google::Apis::Core::JsonRepresentation
1833
+ property :description, as: 'description'
1834
+ property :display_name, as: 'displayName'
1835
+ property :key, as: 'key'
1836
+ property :preselected, as: 'preselected'
1837
+ end
1838
+ end
1839
+
1806
1840
  class NetworkConfig
1807
1841
  # @private
1808
1842
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-connectors_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.59.0
4
+ version: 0.60.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-02 00:00:00.000000000 Z
11
+ date: 2024-06-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.59.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.60.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1
63
63
  post_install_message:
64
64
  rdoc_options: []