google-apis-eventarc_v1 0.40.0 → 0.41.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c4fe765c2de0b8fce87afd55bef0579bd3daad3a9d4cc15ec9c4dc668aeae3f7
|
4
|
+
data.tar.gz: 99b9586df7bbe91db76408dea057047e830f8867504375252651b4df4c0418b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ebd10a53ddcf4d9c00e384fd3513494c4569254498b410891f71c4403dbe236b69c24acdda34b43e1502c2cc4ba3dbae7b67358d2ac668c0f1307e98a3e102d2
|
7
|
+
data.tar.gz: 1d57928249edbb03ebf0c6a9ab87c57a5222dfeb40fcd2a6fbac189dbdee9a64ed3f46b94c06c16e476aeaabaa58ed893cdadd405b3f3ee95ea765027436c993
|
data/CHANGELOG.md
CHANGED
@@ -363,6 +363,11 @@ module Google
|
|
363
363
|
# @return [Google::Apis::EventarcV1::Gke]
|
364
364
|
attr_accessor :gke
|
365
365
|
|
366
|
+
# Represents a HTTP endpoint destination.
|
367
|
+
# Corresponds to the JSON property `httpEndpoint`
|
368
|
+
# @return [Google::Apis::EventarcV1::HttpEndpoint]
|
369
|
+
attr_accessor :http_endpoint
|
370
|
+
|
366
371
|
# The resource name of the Workflow whose Executions are triggered by the events.
|
367
372
|
# The Workflow resource should be deployed in the same project as the trigger.
|
368
373
|
# Format: `projects/`project`/locations/`location`/workflows/`workflow``
|
@@ -379,6 +384,7 @@ module Google
|
|
379
384
|
@cloud_function = args[:cloud_function] if args.key?(:cloud_function)
|
380
385
|
@cloud_run = args[:cloud_run] if args.key?(:cloud_run)
|
381
386
|
@gke = args[:gke] if args.key?(:gke)
|
387
|
+
@http_endpoint = args[:http_endpoint] if args.key?(:http_endpoint)
|
382
388
|
@workflow = args[:workflow] if args.key?(:workflow)
|
383
389
|
end
|
384
390
|
end
|
@@ -800,6 +806,40 @@ module Google
|
|
800
806
|
end
|
801
807
|
end
|
802
808
|
|
809
|
+
# Represents a HTTP endpoint destination.
|
810
|
+
class HttpEndpoint
|
811
|
+
include Google::Apis::Core::Hashable
|
812
|
+
|
813
|
+
# Optional. Forwards DNS requests to the VPC specified by network config to
|
814
|
+
# resolve the HTTP endpoint. Default to false. If set to true, Eventarc will
|
815
|
+
# create a peering zone to the consumer VPC and forward DNS requests. See: https:
|
816
|
+
# //cloud.google.com/dns/docs/zones/zones-overview#peering_zones Enable this if
|
817
|
+
# the URI uses an internal DNS name or a private Cloud DNS zone.
|
818
|
+
# Corresponds to the JSON property `forwardDnsRequests`
|
819
|
+
# @return [Boolean]
|
820
|
+
attr_accessor :forward_dns_requests
|
821
|
+
alias_method :forward_dns_requests?, :forward_dns_requests
|
822
|
+
|
823
|
+
# Required. The URI of the HTTP enpdoint. The value must be a RFC2396 URI string.
|
824
|
+
# Examples: `http://10.10.10.8:80/route`, `http://svc.us-central1.p.local:8080/`
|
825
|
+
# . Only HTTP and HTTPS protocols are supported. The host can be either a static
|
826
|
+
# IP addressable from the VPC specified by the network config, or an internal
|
827
|
+
# DNS hostname of the service resolvable via Cloud DNS.
|
828
|
+
# Corresponds to the JSON property `uri`
|
829
|
+
# @return [String]
|
830
|
+
attr_accessor :uri
|
831
|
+
|
832
|
+
def initialize(**args)
|
833
|
+
update!(**args)
|
834
|
+
end
|
835
|
+
|
836
|
+
# Update properties of this object
|
837
|
+
def update!(**args)
|
838
|
+
@forward_dns_requests = args[:forward_dns_requests] if args.key?(:forward_dns_requests)
|
839
|
+
@uri = args[:uri] if args.key?(:uri)
|
840
|
+
end
|
841
|
+
end
|
842
|
+
|
803
843
|
# The response message for the `ListChannelConnections` method.
|
804
844
|
class ListChannelConnectionsResponse
|
805
845
|
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.41.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 = "20230602"
|
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
|
|
@@ -297,6 +303,8 @@ module Google
|
|
297
303
|
|
298
304
|
property :gke, as: 'gke', class: Google::Apis::EventarcV1::Gke, decorator: Google::Apis::EventarcV1::Gke::Representation
|
299
305
|
|
306
|
+
property :http_endpoint, as: 'httpEndpoint', class: Google::Apis::EventarcV1::HttpEndpoint, decorator: Google::Apis::EventarcV1::HttpEndpoint::Representation
|
307
|
+
|
300
308
|
property :workflow, as: 'workflow'
|
301
309
|
end
|
302
310
|
end
|
@@ -403,6 +411,14 @@ module Google
|
|
403
411
|
end
|
404
412
|
end
|
405
413
|
|
414
|
+
class HttpEndpoint
|
415
|
+
# @private
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
417
|
+
property :forward_dns_requests, as: 'forwardDnsRequests'
|
418
|
+
property :uri, as: 'uri'
|
419
|
+
end
|
420
|
+
end
|
421
|
+
|
406
422
|
class ListChannelConnectionsResponse
|
407
423
|
# @private
|
408
424
|
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.41.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-
|
11
|
+
date: 2023-06-11 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.41.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: []
|