Skip to content

Commit 494127d

Browse files
chore(composer): update the api
#### composer:v1 The following keys were added: - resources.projects.resources.locations.resources.imageVersions.methods.list.parameters.includePastReleases (Total Keys: 2) - schemas.AllowedIpRange (Total Keys: 3) - schemas.DatabaseConfig (Total Keys: 3) - schemas.Date (Total Keys: 8) - schemas.EncryptionConfig (Total Keys: 3) - schemas.EnvironmentConfig.properties.databaseConfig (Total Keys: 1) - schemas.EnvironmentConfig.properties.encryptionConfig (Total Keys: 1) - schemas.EnvironmentConfig.properties.webServerConfig (Total Keys: 1) - schemas.EnvironmentConfig.properties.webServerNetworkAccessControl (Total Keys: 1) - schemas.ImageVersion.properties.creationDisabled (Total Keys: 1) - schemas.ImageVersion.properties.releaseDate (Total Keys: 1) - schemas.ImageVersion.properties.upgradeDisabled (Total Keys: 1) - schemas.WebServerConfig (Total Keys: 3) - schemas.WebServerNetworkAccessControl (Total Keys: 4) #### composer:v1beta1 The following keys were added: - resources.projects.resources.locations.resources.environments.methods.restartWebServer (Total Keys: 12) - resources.projects.resources.locations.resources.imageVersions.methods.list.parameters.includePastReleases (Total Keys: 2) - schemas.Date (Total Keys: 8) - schemas.EncryptionConfig (Total Keys: 3) - schemas.EnvironmentConfig.properties.encryptionConfig (Total Keys: 1) - schemas.EnvironmentConfig.properties.maintenanceWindow (Total Keys: 1) - schemas.ImageVersion.properties.creationDisabled (Total Keys: 1) - schemas.ImageVersion.properties.releaseDate (Total Keys: 1) - schemas.ImageVersion.properties.upgradeDisabled (Total Keys: 1) - schemas.MaintenanceWindow (Total Keys: 7) - schemas.NodeConfig.properties.maxPodsPerNode (Total Keys: 2) - schemas.RestartWebServerRequest (Total Keys: 2)
1 parent de44a50 commit 494127d

6 files changed

+2138
-1739
lines changed

docs/dyn/composer_v1.projects.locations.environments.html

Lines changed: 73 additions & 5 deletions
Large diffs are not rendered by default.

docs/dyn/composer_v1.projects.locations.imageVersions.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ <h2>Instance Methods</h2>
7878
<code><a href="#close">close()</a></code></p>
7979
<p class="firstline">Close httplib2 connections.</p>
8080
<p class="toc_element">
81-
<code><a href="#list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
81+
<code><a href="#list">list(parent, includePastReleases=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
8282
<p class="firstline">List ImageVersions for provided location.</p>
8383
<p class="toc_element">
8484
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
@@ -90,11 +90,12 @@ <h3>Method Details</h3>
9090
</div>
9191

9292
<div class="method">
93-
<code class="details" id="list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</code>
93+
<code class="details" id="list">list(parent, includePastReleases=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
9494
<pre>List ImageVersions for provided location.
9595

9696
Args:
9797
parent: string, List ImageVersions in the given project and location, in the form: &quot;projects/{projectId}/locations/{locationId}&quot; (required)
98+
includePastReleases: boolean, Whether or not image versions from old releases should be included.
9899
pageSize: integer, The maximum number of image_versions to return.
99100
pageToken: string, The next_page_token value returned from a previous List request, if any.
100101
x__xgafv: string, V1 error format.
@@ -108,11 +109,18 @@ <h3>Method Details</h3>
108109
{ # The ImageVersions in a project and location.
109110
&quot;imageVersions&quot;: [ # The list of supported ImageVersions in a location.
110111
{ # ImageVersion information
112+
&quot;creationDisabled&quot;: True or False, # Whether it is impossible to create an environment with the image version.
111113
&quot;imageVersionId&quot;: &quot;A String&quot;, # The string identifier of the ImageVersion, in the form: &quot;composer-x.y.z-airflow-a.b(.c)&quot;
112114
&quot;isDefault&quot;: True or False, # Whether this is the default ImageVersion used by Composer during environment creation if no input ImageVersion is specified.
115+
&quot;releaseDate&quot;: { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day value, with a zero year, such as an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, such as a credit card expiration date Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`. # The date of the version release.
116+
&quot;day&quot;: 42, # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn&#x27;t significant.
117+
&quot;month&quot;: 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
118+
&quot;year&quot;: 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
119+
},
113120
&quot;supportedPythonVersions&quot;: [ # supported python versions
114121
&quot;A String&quot;,
115122
],
123+
&quot;upgradeDisabled&quot;: True or False, # Whether it is impossible to upgrade an environment running with the image version.
116124
},
117125
],
118126
&quot;nextPageToken&quot;: &quot;A String&quot;, # The page token used to query for the next page if one exists.

0 commit comments

Comments
 (0)