google-apis-connectors_v1 0.57.0 → 0.59.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: c8e1e87638c3f966822260036eecc73e9c73db39a008bf214c9c184972290ea6
4
- data.tar.gz: f5424ccf56a952cde97a3fe77e07ff7e16015efa927db42b79066ce47704120c
3
+ metadata.gz: f23715038b24e58b1b9ed3cf04fa8010e236a1a4eb928dfccbe95ec6fb125262
4
+ data.tar.gz: 9225c8a728b5d09820a32f728926564b86bc2dfc9e7b4ac0b1036e6e77f4d693
5
5
  SHA512:
6
- metadata.gz: fdfd898d62e10f1753ebabb9ab3327aab79de3a1542d9cb7fa58aae208d398a04ad1282de27dd3139748c03feb9e80b163d5354b1de0a4fe5a043486c9b73223
7
- data.tar.gz: 2f2a185000ade6339463018169ff81c5461a1f9a7cbed3d0c67b3fd4a36dfd7e0443496bef2029cf5b58ff5db7c80c8f1d4616af1fe1888d3bc935646a2b2767
6
+ metadata.gz: fc9af2c8cd4fee025ae0dbe4c69417dce81cea1eb1154c29482ce569da6847bda2a5936bb7df1ca469db58e37e307b4783c156f7d944e392b8c609dd0212e36d
7
+ data.tar.gz: 8a09c160fa53271a6556ebc78b0bb710ec6396aee7015b15ef9e236831db45484ac6b1d3e5f37fcd08ccf6342989e9ff2b3cddcff20a92053b64b3778efcc5b4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.59.0 (2024-06-02)
4
+
5
+ * Regenerated from discovery document revision 20240529
6
+
7
+ ### v0.58.0 (2024-05-19)
8
+
9
+ * Regenerated from discovery document revision 20240504
10
+ * Regenerated using generator version 0.15.0
11
+
3
12
  ### v0.57.0 (2024-04-21)
4
13
 
5
14
  * Regenerated from discovery document revision 20240415
@@ -828,6 +828,11 @@ module Google
828
828
  class Connector
829
829
  include Google::Apis::Core::Hashable
830
830
 
831
+ # Output only. Category of the connector.
832
+ # Corresponds to the JSON property `category`
833
+ # @return [String]
834
+ attr_accessor :category
835
+
831
836
  # Output only. Created time.
832
837
  # Corresponds to the JSON property `createTime`
833
838
  # @return [String]
@@ -877,6 +882,11 @@ module Google
877
882
  # @return [String]
878
883
  attr_accessor :name
879
884
 
885
+ # Output only. Tags of the connector.
886
+ # Corresponds to the JSON property `tags`
887
+ # @return [Array<String>]
888
+ attr_accessor :tags
889
+
880
890
  # Output only. Updated time.
881
891
  # Corresponds to the JSON property `updateTime`
882
892
  # @return [String]
@@ -893,6 +903,7 @@ module Google
893
903
 
894
904
  # Update properties of this object
895
905
  def update!(**args)
906
+ @category = args[:category] if args.key?(:category)
896
907
  @create_time = args[:create_time] if args.key?(:create_time)
897
908
  @description = args[:description] if args.key?(:description)
898
909
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -902,6 +913,7 @@ module Google
902
913
  @labels = args[:labels] if args.key?(:labels)
903
914
  @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
904
915
  @name = args[:name] if args.key?(:name)
916
+ @tags = args[:tags] if args.key?(:tags)
905
917
  @update_time = args[:update_time] if args.key?(:update_time)
906
918
  @web_assets_location = args[:web_assets_location] if args.key?(:web_assets_location)
907
919
  end
@@ -1188,6 +1200,11 @@ module Google
1188
1200
  attr_accessor :enabled
1189
1201
  alias_method :enabled?, :enabled
1190
1202
 
1203
+ # Optional. Log configuration level.
1204
+ # Corresponds to the JSON property `level`
1205
+ # @return [String]
1206
+ attr_accessor :level
1207
+
1191
1208
  def initialize(**args)
1192
1209
  update!(**args)
1193
1210
  end
@@ -1195,6 +1212,7 @@ module Google
1195
1212
  # Update properties of this object
1196
1213
  def update!(**args)
1197
1214
  @enabled = args[:enabled] if args.key?(:enabled)
1215
+ @level = args[:level] if args.key?(:level)
1198
1216
  end
1199
1217
  end
1200
1218
 
@@ -1511,6 +1529,19 @@ module Google
1511
1529
  end
1512
1530
  end
1513
1531
 
1532
+ # Request message for ConnectorsService.DeprecateCustomConnectorVersion
1533
+ class DeprecateCustomConnectorVersionRequest
1534
+ include Google::Apis::Core::Hashable
1535
+
1536
+ def initialize(**args)
1537
+ update!(**args)
1538
+ end
1539
+
1540
+ # Update properties of this object
1541
+ def update!(**args)
1542
+ end
1543
+ end
1544
+
1514
1545
  #
1515
1546
  class Destination
1516
1547
  include Google::Apis::Core::Hashable
@@ -1781,6 +1812,14 @@ module Google
1781
1812
  # @return [String]
1782
1813
  attr_accessor :description
1783
1814
 
1815
+ # Optional. The Private Service Connect Connection Endpoint Global Access. https:
1816
+ # //cloud.google.com/vpc/docs/about-accessing-vpc-hosted-services-endpoints#
1817
+ # global-access
1818
+ # Corresponds to the JSON property `endpointGlobalAccess`
1819
+ # @return [Boolean]
1820
+ attr_accessor :endpoint_global_access
1821
+ alias_method :endpoint_global_access?, :endpoint_global_access
1822
+
1784
1823
  # Output only. The Private Service Connect connection endpoint ip
1785
1824
  # Corresponds to the JSON property `endpointIp`
1786
1825
  # @return [String]
@@ -1817,6 +1856,7 @@ module Google
1817
1856
  def update!(**args)
1818
1857
  @create_time = args[:create_time] if args.key?(:create_time)
1819
1858
  @description = args[:description] if args.key?(:description)
1859
+ @endpoint_global_access = args[:endpoint_global_access] if args.key?(:endpoint_global_access)
1820
1860
  @endpoint_ip = args[:endpoint_ip] if args.key?(:endpoint_ip)
1821
1861
  @labels = args[:labels] if args.key?(:labels)
1822
1862
  @name = args[:name] if args.key?(:name)
@@ -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.57.0"
19
+ GEM_VERSION = "0.59.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240415"
25
+ REVISION = "20240529"
26
26
  end
27
27
  end
28
28
  end
@@ -166,6 +166,12 @@ module Google
166
166
  include Google::Apis::Core::JsonObjectSupport
167
167
  end
168
168
 
169
+ class DeprecateCustomConnectorVersionRequest
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
169
175
  class Destination
170
176
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
177
 
@@ -993,6 +999,7 @@ module Google
993
999
  class Connector
994
1000
  # @private
995
1001
  class Representation < Google::Apis::Core::JsonRepresentation
1002
+ property :category, as: 'category'
996
1003
  property :create_time, as: 'createTime'
997
1004
  property :description, as: 'description'
998
1005
  property :display_name, as: 'displayName'
@@ -1003,6 +1010,7 @@ module Google
1003
1010
  hash :labels, as: 'labels'
1004
1011
  property :launch_stage, as: 'launchStage'
1005
1012
  property :name, as: 'name'
1013
+ collection :tags, as: 'tags'
1006
1014
  property :update_time, as: 'updateTime'
1007
1015
  property :web_assets_location, as: 'webAssetsLocation'
1008
1016
  end
@@ -1083,6 +1091,7 @@ module Google
1083
1091
  # @private
1084
1092
  class Representation < Google::Apis::Core::JsonRepresentation
1085
1093
  property :enabled, as: 'enabled'
1094
+ property :level, as: 'level'
1086
1095
  end
1087
1096
  end
1088
1097
 
@@ -1161,6 +1170,12 @@ module Google
1161
1170
  end
1162
1171
  end
1163
1172
 
1173
+ class DeprecateCustomConnectorVersionRequest
1174
+ # @private
1175
+ class Representation < Google::Apis::Core::JsonRepresentation
1176
+ end
1177
+ end
1178
+
1164
1179
  class Destination
1165
1180
  # @private
1166
1181
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1240,6 +1255,7 @@ module Google
1240
1255
  class Representation < Google::Apis::Core::JsonRepresentation
1241
1256
  property :create_time, as: 'createTime'
1242
1257
  property :description, as: 'description'
1258
+ property :endpoint_global_access, as: 'endpointGlobalAccess'
1243
1259
  property :endpoint_ip, as: 'endpointIp'
1244
1260
  hash :labels, as: 'labels'
1245
1261
  property :name, as: 'name'
@@ -1229,6 +1229,41 @@ module Google
1229
1229
  execute_or_queue_command(command, &block)
1230
1230
  end
1231
1231
 
1232
+ # Deprecates a single CustomConnectorVersion.
1233
+ # @param [String] name
1234
+ # Required. Resource name of the form: `projects/`project`/locations/`location`/
1235
+ # customConnectors/`custom_connector`/customConnectorVersions/`
1236
+ # custom_connector_version``
1237
+ # @param [Google::Apis::ConnectorsV1::DeprecateCustomConnectorVersionRequest] deprecate_custom_connector_version_request_object
1238
+ # @param [String] fields
1239
+ # Selector specifying which fields to include in a partial response.
1240
+ # @param [String] quota_user
1241
+ # Available to use for quota purposes for server-side applications. Can be any
1242
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1243
+ # @param [Google::Apis::RequestOptions] options
1244
+ # Request-specific options
1245
+ #
1246
+ # @yield [result, err] Result & error if block supplied
1247
+ # @yieldparam result [Google::Apis::ConnectorsV1::Operation] parsed result object
1248
+ # @yieldparam err [StandardError] error object if request failed
1249
+ #
1250
+ # @return [Google::Apis::ConnectorsV1::Operation]
1251
+ #
1252
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1253
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1254
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1255
+ def deprecate_custom_connector_version(name, deprecate_custom_connector_version_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1256
+ command = make_simple_command(:post, 'v1/{+name}:deprecate', options)
1257
+ command.request_representation = Google::Apis::ConnectorsV1::DeprecateCustomConnectorVersionRequest::Representation
1258
+ command.request_object = deprecate_custom_connector_version_request_object
1259
+ command.response_representation = Google::Apis::ConnectorsV1::Operation::Representation
1260
+ command.response_class = Google::Apis::ConnectorsV1::Operation
1261
+ command.params['name'] = name unless name.nil?
1262
+ command.query['fields'] = fields unless fields.nil?
1263
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1264
+ execute_or_queue_command(command, &block)
1265
+ end
1266
+
1232
1267
  # Creates a new EndpointAttachment in a given project and location.
1233
1268
  # @param [String] parent
1234
1269
  # Required. Parent resource of the EndpointAttachment, of the form: `projects/*/
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.57.0
4
+ version: 0.59.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-04-21 00:00:00.000000000 Z
11
+ date: 2024-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.57.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.59.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: []