google-apis-connectors_v1 0.58.0 → 0.60.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a4d483ddefacf5c6adcd803079a7214ae56039d40ae1ad55791217894dc7c5ee
4
- data.tar.gz: 92a14be22427b5504f2f0e31be6b4886a5d33f29e1b990ff0ac472f193d5152b
3
+ metadata.gz: b3ffa7f3ea2d59253a9ad20623359319b3c959f87e11297d06f1e5dc7af8e4b5
4
+ data.tar.gz: 7e39e3d73d74ba1b7e1fa922c42a62be609599b2beed714f8d21b39bb186ece9
5
5
  SHA512:
6
- metadata.gz: 9db883b2d2fd90e4885a9e74d5faa516da8de608aff6656fb56d68fae8718d21966358bed97bfd9cd58c9fafb736f36b64f36fe28f5ccf05f8fe2ca2870c02c8
7
- data.tar.gz: 6b7973365d4c3e41efa03bbbcc0a99cd5ccd4ae0b02a9bea867bc9cd042e822665a4c04a249b7f9f41154c7728dbfbb589de50f24c22dd76dad8588043b4fb3b
6
+ metadata.gz: 3338dc9ca319f4d7bfd3ebc0780bc368df5170e407863dccbd426a236bd2873b95dd82a60e394772e605109766d2fcc11e8374c9dd990410a80953e525d0ff44
7
+ data.tar.gz: 44b4f86b5f6229f1969977cf9f30140565fe6cee1effffe07f299b71d63841d53a6e30768343eeff9543a718d0e6347ae8e86ad70f2553062f5dab40d00febea
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
7
+ ### v0.59.0 (2024-06-02)
8
+
9
+ * Regenerated from discovery document revision 20240529
10
+
3
11
  ### v0.58.0 (2024-05-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20240504
@@ -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)
@@ -828,6 +834,11 @@ module Google
828
834
  class Connector
829
835
  include Google::Apis::Core::Hashable
830
836
 
837
+ # Output only. Category of the connector.
838
+ # Corresponds to the JSON property `category`
839
+ # @return [String]
840
+ attr_accessor :category
841
+
831
842
  # Output only. Created time.
832
843
  # Corresponds to the JSON property `createTime`
833
844
  # @return [String]
@@ -877,6 +888,11 @@ module Google
877
888
  # @return [String]
878
889
  attr_accessor :name
879
890
 
891
+ # Output only. Tags of the connector.
892
+ # Corresponds to the JSON property `tags`
893
+ # @return [Array<String>]
894
+ attr_accessor :tags
895
+
880
896
  # Output only. Updated time.
881
897
  # Corresponds to the JSON property `updateTime`
882
898
  # @return [String]
@@ -893,6 +909,7 @@ module Google
893
909
 
894
910
  # Update properties of this object
895
911
  def update!(**args)
912
+ @category = args[:category] if args.key?(:category)
896
913
  @create_time = args[:create_time] if args.key?(:create_time)
897
914
  @description = args[:description] if args.key?(:description)
898
915
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -902,6 +919,7 @@ module Google
902
919
  @labels = args[:labels] if args.key?(:labels)
903
920
  @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
904
921
  @name = args[:name] if args.key?(:name)
922
+ @tags = args[:tags] if args.key?(:tags)
905
923
  @update_time = args[:update_time] if args.key?(:update_time)
906
924
  @web_assets_location = args[:web_assets_location] if args.key?(:web_assets_location)
907
925
  end
@@ -3802,6 +3820,76 @@ module Google
3802
3820
  end
3803
3821
  end
3804
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
+
3805
3893
  # Regional Network Config.
3806
3894
  class NetworkConfig
3807
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.58.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 = "20240504"
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
 
@@ -999,6 +1013,7 @@ module Google
999
1013
  class Connector
1000
1014
  # @private
1001
1015
  class Representation < Google::Apis::Core::JsonRepresentation
1016
+ property :category, as: 'category'
1002
1017
  property :create_time, as: 'createTime'
1003
1018
  property :description, as: 'description'
1004
1019
  property :display_name, as: 'displayName'
@@ -1009,6 +1024,7 @@ module Google
1009
1024
  hash :labels, as: 'labels'
1010
1025
  property :launch_stage, as: 'launchStage'
1011
1026
  property :name, as: 'name'
1027
+ collection :tags, as: 'tags'
1012
1028
  property :update_time, as: 'updateTime'
1013
1029
  property :web_assets_location, as: 'webAssetsLocation'
1014
1030
  end
@@ -1801,6 +1817,26 @@ module Google
1801
1817
  end
1802
1818
  end
1803
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
+
1804
1840
  class NetworkConfig
1805
1841
  # @private
1806
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.58.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-05-26 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.58.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: []