@@ -59,7 +59,7 @@ need to be executable by any user ID within the container.
5959
6060### Guidelines on Language Container Runtimes
6161
62- You should be able to run the ` generate ` or ` release-stage ` commands for an API such as Google Cloud Functions in less than a
62+ You should be able to run the ` generate ` or ` release-stage ` commands for an API such as Google Cloud Secret Manager in less than a
6363minute. We understand that some libraries may take longer to process, however, long runtimes can adversely affect your
6464ability to roll out emergency changes. While the CLI typically calls the container only for libraries with changes, a
6565generator update could trigger a run for all your libraries.
@@ -100,25 +100,25 @@ The container is expected to produce up to two artifacts:
100100{
101101 "libraries" : [
102102 {
103- "id" : " google-cloud-secretmanager " ,
103+ "id" : " pubsub " ,
104104 "apis" : [
105105 {
106- "path" : " google/cloud/secretmanager /v1" ,
107- "service_config" : " secretmanager_v1 .yaml" ,
108- "status" : " new "
106+ "path" : " google/cloud/pubsub /v1" ,
107+ "service_config" : " pubsub_v1 .yaml" ,
108+ "status" : " existing "
109109 }
110110 ],
111+ "source_roots" : [ " pubsub" ]
111112 },
112113 {
113- "id" : " google-cloud-pubsub-v1 " ,
114+ "id" : " secretmanager " ,
114115 "apis" : [
115116 {
116- "path" : " google/cloud/pubsub /v1" ,
117- "service_config" : " pubsub_v1 .yaml" ,
118- "status" : " existing "
117+ "path" : " google/cloud/secretmanager /v1" ,
118+ "service_config" : " secretmanager_v1 .yaml" ,
119+ "status" : " new "
119120 }
120- ],
121- "source_roots" : [ " pubsub" ]
121+ ]
122122 }
123123 ]
124124}
@@ -130,10 +130,10 @@ The container is expected to produce up to two artifacts:
130130
131131``` json
132132{
133- "id" : " google-cloud- secretmanager" ,
133+ "id" : " secretmanager" ,
134134 "apis" : [
135135 {
136- "path" : " google/cloud/secretmanager/v1" ,
136+ "path" : " google/cloud/secretmanager/v1"
137137 }
138138 ],
139139 "source_roots" : [ " secretmanager" ],
@@ -168,7 +168,7 @@ The `generate` command is where the core work of code generation happens. The co
168168
169169``` json
170170{
171- "id" : " google-cloud- secretmanager" ,
171+ "id" : " secretmanager" ,
172172 "apis" : [
173173 {
174174 "path" : " google/cloud/secretmanager/v1" ,
@@ -217,7 +217,7 @@ The `build` command is responsible for building and testing the newly generated
217217
218218``` json
219219{
220- "id" : " google-cloud- secretmanager" ,
220+ "id" : " secretmanager" ,
221221 "apis" : [
222222 {
223223 "path" : " google/cloud/secretmanager/v1" ,
@@ -276,7 +276,7 @@ global file edits. The libraries that are being released will be marked by the `
276276{
277277 "libraries" : [
278278 {
279- "id" : " google-cloud- secretmanager-v1 " ,
279+ "id" : " secretmanager" ,
280280 "version" : " 1.3.0" ,
281281 "changes" : [
282282 {
0 commit comments