Skip to content

Commit 01f74e1

Browse files
yoshi-automationchingor13
authored andcommitted
Regenerate run client (googleapis#2804)
1 parent 5d2efef commit 01f74e1

File tree

237 files changed

+95545
-11953
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

237 files changed

+95545
-11953
lines changed

clients/google-api-services-run/v1.metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"maven": {
33
"groupId": "com.google.apis",
44
"artifactId": "google-api-services-run",
5-
"version": "v1-rev20190809-1.30.3"
5+
"version": "v1-rev20190911-1.30.3"
66
}
77
}

clients/google-api-services-run/v1/1.28.0/com/google/api/services/run/v1/CloudRun.java

Lines changed: 11667 additions & 162 deletions
Large diffs are not rendered by default.
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.run.v1.model;
18+
19+
/**
20+
* Information for connecting over HTTP(s).
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cloud Run API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class Addressable extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The value may be {@code null}.
34+
*/
35+
@com.google.api.client.util.Key
36+
private java.lang.String url;
37+
38+
/**
39+
* @return value or {@code null} for none
40+
*/
41+
public java.lang.String getUrl() {
42+
return url;
43+
}
44+
45+
/**
46+
* @param url url or {@code null} for none
47+
*/
48+
public Addressable setUrl(java.lang.String url) {
49+
this.url = url;
50+
return this;
51+
}
52+
53+
@Override
54+
public Addressable set(String fieldName, Object value) {
55+
return (Addressable) super.set(fieldName, value);
56+
}
57+
58+
@Override
59+
public Addressable clone() {
60+
return (Addressable) super.clone();
61+
}
62+
63+
}
Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.run.v1.model;
18+
19+
/**
20+
* Specifies the audit configuration for a service. The configuration determines which permission
21+
* types are logged, and what identities, if any, are exempted from logging. An AuditConfig must
22+
* have one or more AuditLogConfigs.
23+
*
24+
* If there are AuditConfigs for both `allServices` and a specific service, the union of the two
25+
* AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled,
26+
* and the exempted_members in each AuditLogConfig are exempted.
27+
*
28+
* Example Policy with multiple AuditConfigs:
29+
*
30+
* { "audit_configs": [ { "service": "allServices"
31+
* "audit_log_configs": [ { "log_type": "DATA_READ",
32+
* "exempted_members": [ "user:[email protected]" ] },
33+
* { "log_type": "DATA_WRITE", }, { "log_type":
34+
* "ADMIN_READ", } ] }, { "service":
35+
* "sampleservice.googleapis.com" "audit_log_configs": [ {
36+
* "log_type": "DATA_READ", }, { "log_type": "DATA_WRITE",
37+
* "exempted_members": [ "user:[email protected]" ] }
38+
* ] } ] }
39+
*
40+
* For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
41+
* exempts [email protected] from DATA_READ logging, and [email protected] from DATA_WRITE logging.
42+
*
43+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
44+
* transmitted over HTTP when working with the Cloud Run API. For a detailed explanation see:
45+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
46+
* </p>
47+
*
48+
* @author Google, Inc.
49+
*/
50+
@SuppressWarnings("javadoc")
51+
public final class AuditConfig extends com.google.api.client.json.GenericJson {
52+
53+
/**
54+
* The configuration for logging of each type of permission.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.util.List<AuditLogConfig> auditLogConfigs;
59+
60+
/**
61+
* Specifies a service that will be enabled for audit logging. For example,
62+
* `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that
63+
* covers all services.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private java.lang.String service;
68+
69+
/**
70+
* The configuration for logging of each type of permission.
71+
* @return value or {@code null} for none
72+
*/
73+
public java.util.List<AuditLogConfig> getAuditLogConfigs() {
74+
return auditLogConfigs;
75+
}
76+
77+
/**
78+
* The configuration for logging of each type of permission.
79+
* @param auditLogConfigs auditLogConfigs or {@code null} for none
80+
*/
81+
public AuditConfig setAuditLogConfigs(java.util.List<AuditLogConfig> auditLogConfigs) {
82+
this.auditLogConfigs = auditLogConfigs;
83+
return this;
84+
}
85+
86+
/**
87+
* Specifies a service that will be enabled for audit logging. For example,
88+
* `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that
89+
* covers all services.
90+
* @return value or {@code null} for none
91+
*/
92+
public java.lang.String getService() {
93+
return service;
94+
}
95+
96+
/**
97+
* Specifies a service that will be enabled for audit logging. For example,
98+
* `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that
99+
* covers all services.
100+
* @param service service or {@code null} for none
101+
*/
102+
public AuditConfig setService(java.lang.String service) {
103+
this.service = service;
104+
return this;
105+
}
106+
107+
@Override
108+
public AuditConfig set(String fieldName, Object value) {
109+
return (AuditConfig) super.set(fieldName, value);
110+
}
111+
112+
@Override
113+
public AuditConfig clone() {
114+
return (AuditConfig) super.clone();
115+
}
116+
117+
}
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.run.v1.model;
18+
19+
/**
20+
* Provides the configuration for logging a type of permissions. Example:
21+
*
22+
* { "audit_log_configs": [ { "log_type": "DATA_READ",
23+
* "exempted_members": [ "user:[email protected]" ] }, {
24+
* "log_type": "DATA_WRITE", } ] }
25+
*
26+
* This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting [email protected] from
27+
* DATA_READ logging.
28+
*
29+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
30+
* transmitted over HTTP when working with the Cloud Run API. For a detailed explanation see:
31+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
32+
* </p>
33+
*
34+
* @author Google, Inc.
35+
*/
36+
@SuppressWarnings("javadoc")
37+
public final class AuditLogConfig extends com.google.api.client.json.GenericJson {
38+
39+
/**
40+
* Specifies the identities that do not cause logging for this type of permission. Follows the
41+
* same format of Binding.members.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<java.lang.String> exemptedMembers;
46+
47+
/**
48+
* The log type that this config enables.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String logType;
53+
54+
/**
55+
* Specifies the identities that do not cause logging for this type of permission. Follows the
56+
* same format of Binding.members.
57+
* @return value or {@code null} for none
58+
*/
59+
public java.util.List<java.lang.String> getExemptedMembers() {
60+
return exemptedMembers;
61+
}
62+
63+
/**
64+
* Specifies the identities that do not cause logging for this type of permission. Follows the
65+
* same format of Binding.members.
66+
* @param exemptedMembers exemptedMembers or {@code null} for none
67+
*/
68+
public AuditLogConfig setExemptedMembers(java.util.List<java.lang.String> exemptedMembers) {
69+
this.exemptedMembers = exemptedMembers;
70+
return this;
71+
}
72+
73+
/**
74+
* The log type that this config enables.
75+
* @return value or {@code null} for none
76+
*/
77+
public java.lang.String getLogType() {
78+
return logType;
79+
}
80+
81+
/**
82+
* The log type that this config enables.
83+
* @param logType logType or {@code null} for none
84+
*/
85+
public AuditLogConfig setLogType(java.lang.String logType) {
86+
this.logType = logType;
87+
return this;
88+
}
89+
90+
@Override
91+
public AuditLogConfig set(String fieldName, Object value) {
92+
return (AuditLogConfig) super.set(fieldName, value);
93+
}
94+
95+
@Override
96+
public AuditLogConfig clone() {
97+
return (AuditLogConfig) super.clone();
98+
}
99+
100+
}
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.run.v1.model;
18+
19+
/**
20+
* A domain that a user has been authorized to administer. To authorize use of a domain, verify
21+
* ownership via [Webmaster Central](https://www.google.com/webmasters/verification/home).
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Cloud Run API. For a detailed explanation see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class AuthorizedDomain extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Relative name of the domain authorized for use. Example: `example.com`.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String id;
39+
40+
/**
41+
* Read only. Full path to the `AuthorizedDomain` resource in the API. Example:
42+
* `apps/myapp/authorizedDomains/example.com`.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String name;
47+
48+
/**
49+
* Relative name of the domain authorized for use. Example: `example.com`.
50+
* @return value or {@code null} for none
51+
*/
52+
public java.lang.String getId() {
53+
return id;
54+
}
55+
56+
/**
57+
* Relative name of the domain authorized for use. Example: `example.com`.
58+
* @param id id or {@code null} for none
59+
*/
60+
public AuthorizedDomain setId(java.lang.String id) {
61+
this.id = id;
62+
return this;
63+
}
64+
65+
/**
66+
* Read only. Full path to the `AuthorizedDomain` resource in the API. Example:
67+
* `apps/myapp/authorizedDomains/example.com`.
68+
* @return value or {@code null} for none
69+
*/
70+
public java.lang.String getName() {
71+
return name;
72+
}
73+
74+
/**
75+
* Read only. Full path to the `AuthorizedDomain` resource in the API. Example:
76+
* `apps/myapp/authorizedDomains/example.com`.
77+
* @param name name or {@code null} for none
78+
*/
79+
public AuthorizedDomain setName(java.lang.String name) {
80+
this.name = name;
81+
return this;
82+
}
83+
84+
@Override
85+
public AuthorizedDomain set(String fieldName, Object value) {
86+
return (AuthorizedDomain) super.set(fieldName, value);
87+
}
88+
89+
@Override
90+
public AuthorizedDomain clone() {
91+
return (AuthorizedDomain) super.clone();
92+
}
93+
94+
}

0 commit comments

Comments
 (0)