1<html><body> 2<style> 3 4body, 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 15body { 16 font-size: 13px; 17 padding: 1em; 18} 19 20h1 { 21 font-size: 26px; 22 margin-bottom: 1em; 23} 24 25h2 { 26 font-size: 24px; 27 margin-bottom: 1em; 28} 29 30h3 { 31 font-size: 20px; 32 margin-bottom: 1em; 33 margin-top: 1em; 34} 35 36pre, code { 37 line-height: 1.5; 38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; 39} 40 41pre { 42 margin-top: 0.5em; 43} 44 45h1, h2, h3, p { 46 font-family: Arial, sans serif; 47} 48 49h1, 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="apigee_v1.html">Apigee API</a> . <a href="apigee_v1.organizations.html">organizations</a> . <a href="apigee_v1.organizations.envgroups.html">envgroups</a> . <a href="apigee_v1.organizations.envgroups.attachments.html">attachments</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="#create">create(parent, body=None, x__xgafv=None)</a></code></p> 82<p class="firstline">Creates a new attachment of an environment to an environment group.</p> 83<p class="toc_element"> 84 <code><a href="#delete">delete(name, x__xgafv=None)</a></code></p> 85<p class="firstline">Deletes an environment group attachment.</p> 86<p class="toc_element"> 87 <code><a href="#get">get(name, x__xgafv=None)</a></code></p> 88<p class="firstline">Gets an environment group attachment.</p> 89<p class="toc_element"> 90 <code><a href="#list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p> 91<p class="firstline">Lists all attachments of an environment group.</p> 92<p class="toc_element"> 93 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p> 94<p class="firstline">Retrieves the next page of results.</p> 95<h3>Method Details</h3> 96<div class="method"> 97 <code class="details" id="close">close()</code> 98 <pre>Close httplib2 connections.</pre> 99</div> 100 101<div class="method"> 102 <code class="details" id="create">create(parent, body=None, x__xgafv=None)</code> 103 <pre>Creates a new attachment of an environment to an environment group. 104 105Args: 106 parent: string, Required. EnvironmentGroup under which to create the attachment in the following format: `organizations/{org}/envgroups/{envgroup}`. (required) 107 body: object, The request body. 108 The object takes the form of: 109 110{ # EnvironmentGroupAttachment is a resource which defines an attachment of an environment to an environment group. 111 "createdAt": "A String", # Output only. The time at which the environment group attachment was created as milliseconds since epoch. 112 "environment": "A String", # Required. ID of the attached environment. 113 "name": "A String", # ID of the environment group attachment. 114} 115 116 x__xgafv: string, V1 error format. 117 Allowed values 118 1 - v1 error format 119 2 - v2 error format 120 121Returns: 122 An object of the form: 123 124 { # This resource represents a long-running operation that is the result of a network API call. 125 "done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. 126 "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation. 127 "code": 42, # The status code, which should be an enum value of google.rpc.Code. 128 "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use. 129 { 130 "a_key": "", # Properties of the object. Contains field @type with type URL. 131 }, 132 ], 133 "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. 134 }, 135 "metadata": { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any. 136 "a_key": "", # Properties of the object. Contains field @type with type URL. 137 }, 138 "name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`. 139 "response": { # The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`. 140 "a_key": "", # Properties of the object. Contains field @type with type URL. 141 }, 142}</pre> 143</div> 144 145<div class="method"> 146 <code class="details" id="delete">delete(name, x__xgafv=None)</code> 147 <pre>Deletes an environment group attachment. 148 149Args: 150 name: string, Required. Name of the environment group attachment to delete in the following format: `organizations/{org}/envgroups/{envgroup}/attachments/{attachment}`. (required) 151 x__xgafv: string, V1 error format. 152 Allowed values 153 1 - v1 error format 154 2 - v2 error format 155 156Returns: 157 An object of the form: 158 159 { # This resource represents a long-running operation that is the result of a network API call. 160 "done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. 161 "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation. 162 "code": 42, # The status code, which should be an enum value of google.rpc.Code. 163 "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use. 164 { 165 "a_key": "", # Properties of the object. Contains field @type with type URL. 166 }, 167 ], 168 "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. 169 }, 170 "metadata": { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any. 171 "a_key": "", # Properties of the object. Contains field @type with type URL. 172 }, 173 "name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`. 174 "response": { # The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`. 175 "a_key": "", # Properties of the object. Contains field @type with type URL. 176 }, 177}</pre> 178</div> 179 180<div class="method"> 181 <code class="details" id="get">get(name, x__xgafv=None)</code> 182 <pre>Gets an environment group attachment. 183 184Args: 185 name: string, Required. Name of the environment group attachment in the following format: `organizations/{org}/envgroups/{envgroup}/attachments/{attachment}` (required) 186 x__xgafv: string, V1 error format. 187 Allowed values 188 1 - v1 error format 189 2 - v2 error format 190 191Returns: 192 An object of the form: 193 194 { # EnvironmentGroupAttachment is a resource which defines an attachment of an environment to an environment group. 195 "createdAt": "A String", # Output only. The time at which the environment group attachment was created as milliseconds since epoch. 196 "environment": "A String", # Required. ID of the attached environment. 197 "name": "A String", # ID of the environment group attachment. 198}</pre> 199</div> 200 201<div class="method"> 202 <code class="details" id="list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</code> 203 <pre>Lists all attachments of an environment group. 204 205Args: 206 parent: string, Required. Name of the environment group in the following format: `organizations/{org}/envgroups/{envgroup}`. (required) 207 pageSize: integer, Maximum number of environment group attachments to return. The page size defaults to 25. 208 pageToken: string, Page token, returned by a previous ListEnvironmentGroupAttachments call, that you can use to retrieve the next page. 209 x__xgafv: string, V1 error format. 210 Allowed values 211 1 - v1 error format 212 2 - v2 error format 213 214Returns: 215 An object of the form: 216 217 { # Response for ListEnvironmentGroupAttachments. 218 "environmentGroupAttachments": [ # EnvironmentGroupAttachments for the specified environment group. 219 { # EnvironmentGroupAttachment is a resource which defines an attachment of an environment to an environment group. 220 "createdAt": "A String", # Output only. The time at which the environment group attachment was created as milliseconds since epoch. 221 "environment": "A String", # Required. ID of the attached environment. 222 "name": "A String", # ID of the environment group attachment. 223 }, 224 ], 225 "nextPageToken": "A String", # Page token that you can include in a ListEnvironmentGroupAttachments request to retrieve the next page. If omitted, no subsequent pages exist. 226}</pre> 227</div> 228 229<div class="method"> 230 <code class="details" id="list_next">list_next(previous_request, previous_response)</code> 231 <pre>Retrieves the next page of results. 232 233Args: 234 previous_request: The request for the previous page. (required) 235 previous_response: The response from the request for the previous page. (required) 236 237Returns: 238 A request object that you can call 'execute()' on to request the next 239 page. Returns None if there are no more items in the collection. 240 </pre> 241</div> 242 243</body></html>