google-apis-eventarc_v1 0.41.0 → 0.42.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: da2440057dd3256688cab2faaa6d6243e345934f3182436c2a761c730344a416
|
4
|
+
data.tar.gz: 46921a237293fe9f2b5a1dc64c9ca66ad3338bed68e54fd2e95293d912d4b4c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54fb8f056f1ffacd2b32b4fcbb0adf003ed3df56f81cabc2561109fb473e318ec74f3ed19b9da96e3cf8df091bfb4bacb01873b17231ab1fb151225ed87100b2
|
7
|
+
data.tar.gz: 4ce04e6b483a4e9f5050a10251145ca9e1b1903a446e1d4ceae8ed520bd119dfd30a6e62a55eee7a0b90ed10f3e388755fdb56b212cc695de680442ff731e94f
|
data/CHANGELOG.md
CHANGED
@@ -363,11 +363,6 @@ 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
|
-
|
371
366
|
# The resource name of the Workflow whose Executions are triggered by the events.
|
372
367
|
# The Workflow resource should be deployed in the same project as the trigger.
|
373
368
|
# Format: `projects/`project`/locations/`location`/workflows/`workflow``
|
@@ -384,7 +379,6 @@ module Google
|
|
384
379
|
@cloud_function = args[:cloud_function] if args.key?(:cloud_function)
|
385
380
|
@cloud_run = args[:cloud_run] if args.key?(:cloud_run)
|
386
381
|
@gke = args[:gke] if args.key?(:gke)
|
387
|
-
@http_endpoint = args[:http_endpoint] if args.key?(:http_endpoint)
|
388
382
|
@workflow = args[:workflow] if args.key?(:workflow)
|
389
383
|
end
|
390
384
|
end
|
@@ -806,40 +800,6 @@ module Google
|
|
806
800
|
end
|
807
801
|
end
|
808
802
|
|
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
|
-
|
843
803
|
# The response message for the `ListChannelConnections` method.
|
844
804
|
class ListChannelConnectionsResponse
|
845
805
|
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.42.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 = "20230623"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -130,12 +130,6 @@ 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
|
-
|
139
133
|
class ListChannelConnectionsResponse
|
140
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
135
|
|
@@ -303,8 +297,6 @@ module Google
|
|
303
297
|
|
304
298
|
property :gke, as: 'gke', class: Google::Apis::EventarcV1::Gke, decorator: Google::Apis::EventarcV1::Gke::Representation
|
305
299
|
|
306
|
-
property :http_endpoint, as: 'httpEndpoint', class: Google::Apis::EventarcV1::HttpEndpoint, decorator: Google::Apis::EventarcV1::HttpEndpoint::Representation
|
307
|
-
|
308
300
|
property :workflow, as: 'workflow'
|
309
301
|
end
|
310
302
|
end
|
@@ -411,14 +403,6 @@ module Google
|
|
411
403
|
end
|
412
404
|
end
|
413
405
|
|
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
|
-
|
422
406
|
class ListChannelConnectionsResponse
|
423
407
|
# @private
|
424
408
|
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.42.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-07-02 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.42.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: []
|