Skip to content

Commit fb99401

Browse files
feat(eventarc): update the api
#### eventarc:v1 The following keys were added: - resources.projects.resources.locations.resources.providers.methods.get (Total Keys: 11) - resources.projects.resources.locations.resources.providers.methods.list (Total Keys: 20) - schemas.EventType (Total Keys: 9) - schemas.FilteringAttribute (Total Keys: 8) - schemas.ListProvidersResponse (Total Keys: 7) - schemas.Provider (Total Keys: 9)
1 parent 20dde27 commit fb99401

File tree

4 files changed

+380
-2
lines changed

4 files changed

+380
-2
lines changed

docs/dyn/eventarc_v1.projects.locations.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@ <h2>Instance Methods</h2>
8989
</p>
9090
<p class="firstline">Returns the operations Resource.</p>
9191

92+
<p class="toc_element">
93+
<code><a href="eventarc_v1.projects.locations.providers.html">providers()</a></code>
94+
</p>
95+
<p class="firstline">Returns the providers Resource.</p>
96+
9297
<p class="toc_element">
9398
<code><a href="eventarc_v1.projects.locations.triggers.html">triggers()</a></code>
9499
</p>
Lines changed: 191 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,191 @@
1+
<html><body>
2+
<style>
3+
4+
body, h1, h2, h3, div, span, p, pre, a {
5+
margin: 0;
6+
padding: 0;
7+
border: 0;
8+
font-weight: inherit;
9+
font-style: inherit;
10+
font-size: 100%;
11+
font-family: inherit;
12+
vertical-align: baseline;
13+
}
14+
15+
body {
16+
font-size: 13px;
17+
padding: 1em;
18+
}
19+
20+
h1 {
21+
font-size: 26px;
22+
margin-bottom: 1em;
23+
}
24+
25+
h2 {
26+
font-size: 24px;
27+
margin-bottom: 1em;
28+
}
29+
30+
h3 {
31+
font-size: 20px;
32+
margin-bottom: 1em;
33+
margin-top: 1em;
34+
}
35+
36+
pre, code {
37+
line-height: 1.5;
38+
font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39+
}
40+
41+
pre {
42+
margin-top: 0.5em;
43+
}
44+
45+
h1, h2, h3, p {
46+
font-family: Arial, sans serif;
47+
}
48+
49+
h1, h2, h3 {
50+
border-bottom: solid #CCC 1px;
51+
}
52+
53+
.toc_element {
54+
margin-top: 0.5em;
55+
}
56+
57+
.firstline {
58+
margin-left: 2 em;
59+
}
60+
61+
.method {
62+
margin-top: 1em;
63+
border: solid 1px #CCC;
64+
padding: 1em;
65+
background: #EEE;
66+
}
67+
68+
.details {
69+
font-weight: bold;
70+
font-size: 14px;
71+
}
72+
73+
</style>
74+
75+
<h1><a href="eventarc_v1.html">Eventarc API</a> . <a href="eventarc_v1.projects.html">projects</a> . <a href="eventarc_v1.projects.locations.html">locations</a> . <a href="eventarc_v1.projects.locations.providers.html">providers</a></h1>
76+
<h2>Instance Methods</h2>
77+
<p class="toc_element">
78+
<code><a href="#close">close()</a></code></p>
79+
<p class="firstline">Close httplib2 connections.</p>
80+
<p class="toc_element">
81+
<code><a href="#get">get(name, x__xgafv=None)</a></code></p>
82+
<p class="firstline">Get a single Provider.</p>
83+
<p class="toc_element">
84+
<code><a href="#list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
85+
<p class="firstline">List providers.</p>
86+
<p class="toc_element">
87+
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
88+
<p class="firstline">Retrieves the next page of results.</p>
89+
<h3>Method Details</h3>
90+
<div class="method">
91+
<code class="details" id="close">close()</code>
92+
<pre>Close httplib2 connections.</pre>
93+
</div>
94+
95+
<div class="method">
96+
<code class="details" id="get">get(name, x__xgafv=None)</code>
97+
<pre>Get a single Provider.
98+
99+
Args:
100+
name: string, Required. The name of the provider to get. (required)
101+
x__xgafv: string, V1 error format.
102+
Allowed values
103+
1 - v1 error format
104+
2 - v2 error format
105+
106+
Returns:
107+
An object of the form:
108+
109+
{ # A representation of the Provider resource.
110+
&quot;displayName&quot;: &quot;A String&quot;, # Output only. Human friendly name for the Provider. For example &quot;Cloud Storage&quot;.
111+
&quot;eventTypes&quot;: [ # Output only. Event types for this provider.
112+
{ # A representation of the event type resource.
113+
&quot;description&quot;: &quot;A String&quot;, # Output only. Human friendly description of what the event type is about. For example &quot;Bucket created in Cloud Storage&quot;.
114+
&quot;eventSchemaUri&quot;: &quot;A String&quot;, # Output only. URI for the event schema. For example &quot;https://github.com/googleapis/google-cloudevents/blob/master/proto/google/events/cloud/storage/v1/events.proto&quot;
115+
&quot;filteringAttributes&quot;: [ # Output only. Filtering attributes for the event type.
116+
{ # A representation of the FilteringAttribute resource. Filtering attributes are per event type.
117+
&quot;attribute&quot;: &quot;A String&quot;, # Output only. Attribute used for filtering the event type.
118+
&quot;description&quot;: &quot;A String&quot;, # Output only. Description of the purpose of the attribute.
119+
&quot;pathPatternSupported&quot;: True or False, # Output only. If true, the attribute accepts matching expressions in the Eventarc PathPattern format.
120+
&quot;required&quot;: True or False, # Output only. If true, the triggers for this provider should always specify a filter on these attributes. Trigger creation will fail otherwise.
121+
},
122+
],
123+
&quot;type&quot;: &quot;A String&quot;, # Output only. The full name of the event type (for example, &quot;google.cloud.storage.object.v1.finalized&quot;). In the form of {provider-id}.{resource}.{version}.{verb}. Types MUST be versioned and event schemas are guaranteed to remain backward compatible within one version. Note that event type versions and API versions do not need to match.
124+
},
125+
],
126+
&quot;name&quot;: &quot;A String&quot;, # Output only. In `projects/{project}/locations/{location}/providers/{provider-id}` format.
127+
}</pre>
128+
</div>
129+
130+
<div class="method">
131+
<code class="details" id="list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
132+
<pre>List providers.
133+
134+
Args:
135+
parent: string, Required. The parent of the provider to get. (required)
136+
filter: string, The filter field that the list request will filter on.
137+
orderBy: string, The sorting order of the resources returned. Value should be a comma-separated list of fields. The default sorting oder is ascending. To specify descending order for a field, append a `desc` suffix; for example: `name desc, _id`.
138+
pageSize: integer, The maximum number of providers to return on each page.
139+
pageToken: string, The page token; provide the value from the `next_page_token` field in a previous `ListProviders` call to retrieve the subsequent page. When paginating, all other parameters provided to `ListProviders` must match the call that provided the page token.
140+
x__xgafv: string, V1 error format.
141+
Allowed values
142+
1 - v1 error format
143+
2 - v2 error format
144+
145+
Returns:
146+
An object of the form:
147+
148+
{ # The response message for the `ListProviders` method.
149+
&quot;nextPageToken&quot;: &quot;A String&quot;, # A page token that can be sent to ListProviders to request the next page. If this is empty, then there are no more pages.
150+
&quot;providers&quot;: [ # The requested providers, up to the number specified in `page_size`.
151+
{ # A representation of the Provider resource.
152+
&quot;displayName&quot;: &quot;A String&quot;, # Output only. Human friendly name for the Provider. For example &quot;Cloud Storage&quot;.
153+
&quot;eventTypes&quot;: [ # Output only. Event types for this provider.
154+
{ # A representation of the event type resource.
155+
&quot;description&quot;: &quot;A String&quot;, # Output only. Human friendly description of what the event type is about. For example &quot;Bucket created in Cloud Storage&quot;.
156+
&quot;eventSchemaUri&quot;: &quot;A String&quot;, # Output only. URI for the event schema. For example &quot;https://github.com/googleapis/google-cloudevents/blob/master/proto/google/events/cloud/storage/v1/events.proto&quot;
157+
&quot;filteringAttributes&quot;: [ # Output only. Filtering attributes for the event type.
158+
{ # A representation of the FilteringAttribute resource. Filtering attributes are per event type.
159+
&quot;attribute&quot;: &quot;A String&quot;, # Output only. Attribute used for filtering the event type.
160+
&quot;description&quot;: &quot;A String&quot;, # Output only. Description of the purpose of the attribute.
161+
&quot;pathPatternSupported&quot;: True or False, # Output only. If true, the attribute accepts matching expressions in the Eventarc PathPattern format.
162+
&quot;required&quot;: True or False, # Output only. If true, the triggers for this provider should always specify a filter on these attributes. Trigger creation will fail otherwise.
163+
},
164+
],
165+
&quot;type&quot;: &quot;A String&quot;, # Output only. The full name of the event type (for example, &quot;google.cloud.storage.object.v1.finalized&quot;). In the form of {provider-id}.{resource}.{version}.{verb}. Types MUST be versioned and event schemas are guaranteed to remain backward compatible within one version. Note that event type versions and API versions do not need to match.
166+
},
167+
],
168+
&quot;name&quot;: &quot;A String&quot;, # Output only. In `projects/{project}/locations/{location}/providers/{provider-id}` format.
169+
},
170+
],
171+
&quot;unreachable&quot;: [ # Unreachable resources, if any.
172+
&quot;A String&quot;,
173+
],
174+
}</pre>
175+
</div>
176+
177+
<div class="method">
178+
<code class="details" id="list_next">list_next(previous_request, previous_response)</code>
179+
<pre>Retrieves the next page of results.
180+
181+
Args:
182+
previous_request: The request for the previous page. (required)
183+
previous_response: The response from the request for the previous page. (required)
184+
185+
Returns:
186+
A request object that you can call &#x27;execute()&#x27; on to request the next
187+
page. Returns None if there are no more items in the collection.
188+
</pre>
189+
</div>
190+
191+
</body></html>

0 commit comments

Comments
 (0)