google-apis-eventarc_v1 0.45.0 → 0.47.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5378e4341be9dee1200054eee75099bc954cd18a683ddfced1f676fa35c06f22
|
4
|
+
data.tar.gz: 29986e243000179a429606d08182cb8efb4b04b93ffc1e386be01f10a652f5a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe1254f81a8a9dc46ec0eb2f268939f82cd5721572ee20cbb7eb102b5680f1b02e49a1976a996e77a2e1a014521bad6f8e692e3e174ec779176f986aedca5c48
|
7
|
+
data.tar.gz: a9f9ef695fcee05ca111d1e3ceafd34e6c94fb387714d0db832d84facf10565e45dd61a341f01d1a7d0276789e0f0ca72a9a93ab44efc3f7ea13cc90e3d39eb8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-eventarc_v1
|
2
2
|
|
3
|
+
### v0.47.0 (2023-10-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230929
|
6
|
+
|
7
|
+
### v0.46.0 (2023-09-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230918
|
10
|
+
|
3
11
|
### v0.45.0 (2023-08-20)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230811
|
@@ -364,6 +364,17 @@ module Google
|
|
364
364
|
# @return [Google::Apis::EventarcV1::Gke]
|
365
365
|
attr_accessor :gke
|
366
366
|
|
367
|
+
# Represents a HTTP endpoint destination.
|
368
|
+
# Corresponds to the JSON property `httpEndpoint`
|
369
|
+
# @return [Google::Apis::EventarcV1::HttpEndpoint]
|
370
|
+
attr_accessor :http_endpoint
|
371
|
+
|
372
|
+
# Represents a network config to be used for destination resolution and
|
373
|
+
# connectivity.
|
374
|
+
# Corresponds to the JSON property `networkConfig`
|
375
|
+
# @return [Google::Apis::EventarcV1::NetworkConfig]
|
376
|
+
attr_accessor :network_config
|
377
|
+
|
367
378
|
# The resource name of the Workflow whose Executions are triggered by the events.
|
368
379
|
# The Workflow resource should be deployed in the same project as the trigger.
|
369
380
|
# Format: `projects/`project`/locations/`location`/workflows/`workflow``
|
@@ -380,6 +391,8 @@ module Google
|
|
380
391
|
@cloud_function = args[:cloud_function] if args.key?(:cloud_function)
|
381
392
|
@cloud_run = args[:cloud_run] if args.key?(:cloud_run)
|
382
393
|
@gke = args[:gke] if args.key?(:gke)
|
394
|
+
@http_endpoint = args[:http_endpoint] if args.key?(:http_endpoint)
|
395
|
+
@network_config = args[:network_config] if args.key?(:network_config)
|
383
396
|
@workflow = args[:workflow] if args.key?(:workflow)
|
384
397
|
end
|
385
398
|
end
|
@@ -801,6 +814,29 @@ module Google
|
|
801
814
|
end
|
802
815
|
end
|
803
816
|
|
817
|
+
# Represents a HTTP endpoint destination.
|
818
|
+
class HttpEndpoint
|
819
|
+
include Google::Apis::Core::Hashable
|
820
|
+
|
821
|
+
# Required. The URI of the HTTP enpdoint. The value must be a RFC2396 URI string.
|
822
|
+
# Examples: `http://10.10.10.8:80/route`, `http://svc.us-central1.p.local:8080/`
|
823
|
+
# . Only HTTP and HTTPS protocols are supported. The host can be either a static
|
824
|
+
# IP addressable from the VPC specified by the network config, or an internal
|
825
|
+
# DNS hostname of the service resolvable via Cloud DNS.
|
826
|
+
# Corresponds to the JSON property `uri`
|
827
|
+
# @return [String]
|
828
|
+
attr_accessor :uri
|
829
|
+
|
830
|
+
def initialize(**args)
|
831
|
+
update!(**args)
|
832
|
+
end
|
833
|
+
|
834
|
+
# Update properties of this object
|
835
|
+
def update!(**args)
|
836
|
+
@uri = args[:uri] if args.key?(:uri)
|
837
|
+
end
|
838
|
+
end
|
839
|
+
|
804
840
|
# The response message for the `ListChannelConnections` method.
|
805
841
|
class ListChannelConnectionsResponse
|
806
842
|
include Google::Apis::Core::Hashable
|
@@ -1001,6 +1037,28 @@ module Google
|
|
1001
1037
|
end
|
1002
1038
|
end
|
1003
1039
|
|
1040
|
+
# Represents a network config to be used for destination resolution and
|
1041
|
+
# connectivity.
|
1042
|
+
class NetworkConfig
|
1043
|
+
include Google::Apis::Core::Hashable
|
1044
|
+
|
1045
|
+
# Required. Name of the NetworkAttachment that allows access to the destination
|
1046
|
+
# VPC. Format: `projects/`PROJECT_ID`/regions/`REGION`/networkAttachments/`
|
1047
|
+
# NETWORK_ATTACHMENT_NAME``
|
1048
|
+
# Corresponds to the JSON property `networkAttachment`
|
1049
|
+
# @return [String]
|
1050
|
+
attr_accessor :network_attachment
|
1051
|
+
|
1052
|
+
def initialize(**args)
|
1053
|
+
update!(**args)
|
1054
|
+
end
|
1055
|
+
|
1056
|
+
# Update properties of this object
|
1057
|
+
def update!(**args)
|
1058
|
+
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
1059
|
+
end
|
1060
|
+
end
|
1061
|
+
|
1004
1062
|
# Represents the metadata of the long-running operation.
|
1005
1063
|
class OperationMetadata
|
1006
1064
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module EventarcV1
|
18
18
|
# Version of the google-apis-eventarc_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.47.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230929"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -130,6 +130,12 @@ module Google
|
|
130
130
|
include Google::Apis::Core::JsonObjectSupport
|
131
131
|
end
|
132
132
|
|
133
|
+
class HttpEndpoint
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
|
+
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
137
|
+
end
|
138
|
+
|
133
139
|
class ListChannelConnectionsResponse
|
134
140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
141
|
|
@@ -166,6 +172,12 @@ module Google
|
|
166
172
|
include Google::Apis::Core::JsonObjectSupport
|
167
173
|
end
|
168
174
|
|
175
|
+
class NetworkConfig
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
+
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
179
|
+
end
|
180
|
+
|
169
181
|
class OperationMetadata
|
170
182
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
183
|
|
@@ -297,6 +309,10 @@ module Google
|
|
297
309
|
|
298
310
|
property :gke, as: 'gke', class: Google::Apis::EventarcV1::Gke, decorator: Google::Apis::EventarcV1::Gke::Representation
|
299
311
|
|
312
|
+
property :http_endpoint, as: 'httpEndpoint', class: Google::Apis::EventarcV1::HttpEndpoint, decorator: Google::Apis::EventarcV1::HttpEndpoint::Representation
|
313
|
+
|
314
|
+
property :network_config, as: 'networkConfig', class: Google::Apis::EventarcV1::NetworkConfig, decorator: Google::Apis::EventarcV1::NetworkConfig::Representation
|
315
|
+
|
300
316
|
property :workflow, as: 'workflow'
|
301
317
|
end
|
302
318
|
end
|
@@ -403,6 +419,13 @@ module Google
|
|
403
419
|
end
|
404
420
|
end
|
405
421
|
|
422
|
+
class HttpEndpoint
|
423
|
+
# @private
|
424
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
425
|
+
property :uri, as: 'uri'
|
426
|
+
end
|
427
|
+
end
|
428
|
+
|
406
429
|
class ListChannelConnectionsResponse
|
407
430
|
# @private
|
408
431
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -463,6 +486,13 @@ module Google
|
|
463
486
|
end
|
464
487
|
end
|
465
488
|
|
489
|
+
class NetworkConfig
|
490
|
+
# @private
|
491
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
492
|
+
property :network_attachment, as: 'networkAttachment'
|
493
|
+
end
|
494
|
+
end
|
495
|
+
|
466
496
|
class OperationMetadata
|
467
497
|
# @private
|
468
498
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-eventarc_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.47.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: 2023-08
|
11
|
+
date: 2023-10-08 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-eventarc_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-eventarc_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-eventarc_v1/v0.47.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-eventarc_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.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Eventarc API V1
|