google-apis-connectors_v1 0.8.0 → 0.9.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: d2edfcfddc600f03055c6ab28fb26f5bd26f114347f1694674eb17219f6ab29e
4
- data.tar.gz: ddac965485f8740f4617194a4e0fda3ceed7591ba045fdf37efefef56655e161
3
+ metadata.gz: 794ec9328fe65f7c0aa8f64eb791178a1a99f816f84f7ed5f0ef2ea7a6b3c57c
4
+ data.tar.gz: 6d0300ead5b361d703ee1eaa2bf3d1f2e8661236b70b7ea1cf47306738330ee4
5
5
  SHA512:
6
- metadata.gz: 4df2c887eb100f5597de70adf0aab2ef0533a4c5c35173ac3d11e4273281540b74d664f2d83d595ec76d76db72af938a8cf2e2963f448de39bbf7ceabe6b4843
7
- data.tar.gz: d5b9dfcc581d4a340f766739c43ab8b4588a20cd2df7112f3dd0167a5df0e097bb46d00968619c28642e84d58a3abfa303a6e2d799a7041a74099ea3daf8ce43
6
+ metadata.gz: 3f449bfe979f08c378c7ba1f2d75f9850a6e07b0f1cd4f0451a5038e99a187bbbe301433c14ea2bbfcd8966f58d2d8ee6deb9b74bce792cfbb3aa1a17e52f891
7
+ data.tar.gz: 52ed5d39e9d3dd46d7e71a70bbb8831afadb9ccbd30fe357b37a211f65f69f7b8091fe5f403147816d39691403691a43c0031454d6e4e7c4eb1ed8df6f604ed7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.9.0 (2022-05-28)
4
+
5
+ * Regenerated from discovery document revision 20220523
6
+
3
7
  ### v0.8.0 (2022-05-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20220504
@@ -308,6 +308,11 @@ module Google
308
308
  # @return [String]
309
309
  attr_accessor :display_name
310
310
 
311
+ # Enum options. To be populated if `ValueType` is `ENUM`
312
+ # Corresponds to the JSON property `enumOptions`
313
+ # @return [Array<Google::Apis::ConnectorsV1::EnumOption>]
314
+ attr_accessor :enum_options
315
+
311
316
  # Key of the config variable.
312
317
  # Corresponds to the JSON property `key`
313
318
  # @return [String]
@@ -348,6 +353,7 @@ module Google
348
353
  def update!(**args)
349
354
  @description = args[:description] if args.key?(:description)
350
355
  @display_name = args[:display_name] if args.key?(:display_name)
356
+ @enum_options = args[:enum_options] if args.key?(:enum_options)
351
357
  @key = args[:key] if args.key?(:key)
352
358
  @required = args[:required] if args.key?(:required)
353
359
  @role_grant = args[:role_grant] if args.key?(:role_grant)
@@ -760,6 +766,31 @@ module Google
760
766
  end
761
767
  end
762
768
 
769
+ # EnumOption definition
770
+ class EnumOption
771
+ include Google::Apis::Core::Hashable
772
+
773
+ # Display name of the option.
774
+ # Corresponds to the JSON property `displayName`
775
+ # @return [String]
776
+ attr_accessor :display_name
777
+
778
+ # Id of the option.
779
+ # Corresponds to the JSON property `id`
780
+ # @return [String]
781
+ attr_accessor :id
782
+
783
+ def initialize(**args)
784
+ update!(**args)
785
+ end
786
+
787
+ # Update properties of this object
788
+ def update!(**args)
789
+ @display_name = args[:display_name] if args.key?(:display_name)
790
+ @id = args[:id] if args.key?(:id)
791
+ end
792
+ end
793
+
763
794
  # Represents a textual expression in the Common Expression Language (CEL) syntax.
764
795
  # CEL is a C-like expression language. The syntax and semantics of CEL are
765
796
  # documented at https://github.com/google/cel-spec. Example (Comparison): title:
@@ -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.8.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220504"
25
+ REVISION = "20220523"
26
26
  end
27
27
  end
28
28
  end
@@ -112,6 +112,12 @@ module Google
112
112
  include Google::Apis::Core::JsonObjectSupport
113
113
  end
114
114
 
115
+ class EnumOption
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
115
121
  class Expr
116
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
123
 
@@ -402,6 +408,8 @@ module Google
402
408
  class Representation < Google::Apis::Core::JsonRepresentation
403
409
  property :description, as: 'description'
404
410
  property :display_name, as: 'displayName'
411
+ collection :enum_options, as: 'enumOptions', class: Google::Apis::ConnectorsV1::EnumOption, decorator: Google::Apis::ConnectorsV1::EnumOption::Representation
412
+
405
413
  property :key, as: 'key'
406
414
  property :required, as: 'required'
407
415
  property :role_grant, as: 'roleGrant', class: Google::Apis::ConnectorsV1::RoleGrant, decorator: Google::Apis::ConnectorsV1::RoleGrant::Representation
@@ -510,6 +518,14 @@ module Google
510
518
  end
511
519
  end
512
520
 
521
+ class EnumOption
522
+ # @private
523
+ class Representation < Google::Apis::Core::JsonRepresentation
524
+ property :display_name, as: 'displayName'
525
+ property :id, as: 'id'
526
+ end
527
+ end
528
+
513
529
  class Expr
514
530
  # @private
515
531
  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.8.0
4
+ version: 0.9.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: 2022-05-16 00:00:00.000000000 Z
11
+ date: 2022-05-30 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.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.9.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Connectors API V1