google-apis-connectors_v1 0.19.0 → 0.20.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: 4004d745cc59740e164ebda26b3a3ee640048e25c1461da822dda3c5e0fe5c09
4
- data.tar.gz: 7a2f658152efb1ee8689413627d07bd9a8a17571dad5bb1c9a74d1b85b1301a6
3
+ metadata.gz: d588501a03647b584a1dcf25df72f12c61182eb4f307d260bbd60ef4cbd5d733
4
+ data.tar.gz: 116b1e66f99231431e014dc480ab939749bc5c6a3d504135699c93ae25225c69
5
5
  SHA512:
6
- metadata.gz: 6c4d5abc01a6b93559d4d082817386014af852d1abcb6212c2b292eb8b97248bcc2285d196e5e36c8d8dfdf714d77f88ee3c0ef07b4a85469f5bd16f8de77a0f
7
- data.tar.gz: c3bb189add9a81cb8898f2b4c194b9248125dbc9b129e96d686a537437461086fc95c77108c7b6c88416fa6f5d55bdbbbef3b46b3a556d2719f8573ecdd9584f
6
+ metadata.gz: 04b2a36c3caa708d3a5fd5e9d626290c59dfdd71c61c4111461b3e5956bad04d28688562057f8b314526de2e718f7ee4f4b5ad8f0a896a1e004b2eda9a842459
7
+ data.tar.gz: 34be5de85c7f944bc0190e8eba132820879cadb29deffdaad983e391c27fb061a81b68a3072b42cd6b60bac6bf9130893d40ef34919d0539e516515115c45ab0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.20.0 (2022-10-28)
4
+
5
+ * Regenerated from discovery document revision 20221018
6
+ * Regenerated using generator version 0.11.0
7
+
3
8
  ### v0.19.0 (2022-09-30)
4
9
 
5
10
  * Regenerated from discovery document revision 20220912
@@ -555,7 +555,9 @@ module Google
555
555
  end
556
556
  end
557
557
 
558
- # Metadata of connection schema.
558
+ # ConnectionSchemaMetadata is the singleton resource of each connection. It
559
+ # includes the entity and action names of runtime resources exposed by a
560
+ # connection backend.
559
561
  class ConnectionSchemaMetadata
560
562
  include Google::Apis::Core::Hashable
561
563
 
@@ -569,6 +571,28 @@ module Google
569
571
  # @return [Array<String>]
570
572
  attr_accessor :entities
571
573
 
574
+ # Output only. Resource name. Format: projects/`project`/locations/`location`/
575
+ # connections/`connection`/connectionSchemaMetadata
576
+ # Corresponds to the JSON property `name`
577
+ # @return [String]
578
+ attr_accessor :name
579
+
580
+ # Output only. Timestamp when the connection runtime schema refresh was
581
+ # triggered.
582
+ # Corresponds to the JSON property `refreshTime`
583
+ # @return [String]
584
+ attr_accessor :refresh_time
585
+
586
+ # Output only. The current state of runtime schema.
587
+ # Corresponds to the JSON property `state`
588
+ # @return [String]
589
+ attr_accessor :state
590
+
591
+ # Output only. Timestamp when the connection runtime schema was updated.
592
+ # Corresponds to the JSON property `updateTime`
593
+ # @return [String]
594
+ attr_accessor :update_time
595
+
572
596
  def initialize(**args)
573
597
  update!(**args)
574
598
  end
@@ -577,6 +601,10 @@ module Google
577
601
  def update!(**args)
578
602
  @actions = args[:actions] if args.key?(:actions)
579
603
  @entities = args[:entities] if args.key?(:entities)
604
+ @name = args[:name] if args.key?(:name)
605
+ @refresh_time = args[:refresh_time] if args.key?(:refresh_time)
606
+ @state = args[:state] if args.key?(:state)
607
+ @update_time = args[:update_time] if args.key?(:update_time)
580
608
  end
581
609
  end
582
610
 
@@ -2175,11 +2203,6 @@ module Google
2175
2203
  # @return [String]
2176
2204
  attr_accessor :cert_type
2177
2205
 
2178
- # Secret provides a reference to entries in Secret Manager.
2179
- # Corresponds to the JSON property `password`
2180
- # @return [Google::Apis::ConnectorsV1::Secret]
2181
- attr_accessor :password
2182
-
2183
2206
  # Secret provides a reference to entries in Secret Manager.
2184
2207
  # Corresponds to the JSON property `sshClientCert`
2185
2208
  # @return [Google::Apis::ConnectorsV1::Secret]
@@ -2202,7 +2225,6 @@ module Google
2202
2225
  # Update properties of this object
2203
2226
  def update!(**args)
2204
2227
  @cert_type = args[:cert_type] if args.key?(:cert_type)
2205
- @password = args[:password] if args.key?(:password)
2206
2228
  @ssh_client_cert = args[:ssh_client_cert] if args.key?(:ssh_client_cert)
2207
2229
  @ssh_client_cert_pass = args[:ssh_client_cert_pass] if args.key?(:ssh_client_cert_pass)
2208
2230
  @username = args[:username] if args.key?(:username)
@@ -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.19.0"
19
+ GEM_VERSION = "0.20.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220912"
25
+ REVISION = "20221018"
26
26
  end
27
27
  end
28
28
  end
@@ -498,6 +498,10 @@ module Google
498
498
  class Representation < Google::Apis::Core::JsonRepresentation
499
499
  collection :actions, as: 'actions'
500
500
  collection :entities, as: 'entities'
501
+ property :name, as: 'name'
502
+ property :refresh_time, as: 'refreshTime'
503
+ property :state, as: 'state'
504
+ property :update_time, as: 'updateTime'
501
505
  end
502
506
  end
503
507
 
@@ -920,8 +924,6 @@ module Google
920
924
  # @private
921
925
  class Representation < Google::Apis::Core::JsonRepresentation
922
926
  property :cert_type, as: 'certType'
923
- property :password, as: 'password', class: Google::Apis::ConnectorsV1::Secret, decorator: Google::Apis::ConnectorsV1::Secret::Representation
924
-
925
927
  property :ssh_client_cert, as: 'sshClientCert', class: Google::Apis::ConnectorsV1::Secret, decorator: Google::Apis::ConnectorsV1::Secret::Representation
926
928
 
927
929
  property :ssh_client_cert_pass, as: 'sshClientCertPass', class: Google::Apis::ConnectorsV1::Secret, decorator: Google::Apis::ConnectorsV1::Secret::Representation
@@ -386,11 +386,10 @@ module Google
386
386
  # locations/`location`/connections/`connection`
387
387
  # @param [Google::Apis::ConnectorsV1::Connection] connection_object
388
388
  # @param [String] update_mask
389
- # Required. Field mask is used to specify the fields to be overwritten in the
390
- # Connection resource by the update. The fields specified in the update_mask are
391
- # relative to the resource, not the full request. A field will be overwritten if
392
- # it is in the mask. If the user does not provide a mask then all fields will be
393
- # overwritten.
389
+ # Required. You can modify only the fields listed below. To lock/unlock a
390
+ # connection: * `lock_config` To suspend/resume a connection: * `suspended` To
391
+ # update the connection details: * `description` * `labels` * `connector_version`
392
+ # * `config_variables` * `auth_config` * `destination_configs` * `node_config`
394
393
  # @param [String] fields
395
394
  # Selector specifying which fields to include in a partial response.
396
395
  # @param [String] quota_user
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.19.0
4
+ version: 0.20.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-10-03 00:00:00.000000000 Z
11
+ date: 2022-10-31 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.9.0
19
+ version: 0.9.1
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.9.0
29
+ version: 0.9.1
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.19.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.20.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: []