Skip to content

Commit

Permalink
build: update copyright year to 2022 (#103)
Browse files Browse the repository at this point in the history
- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 422607515

Source-Link: googleapis/googleapis@ba2ffd6

Source-Link: googleapis/googleapis-gen@73ba4ad
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNzNiYTRhZGQyMzlhNjE5ZGE1NjdmZmJkNGU1NzMwZmRkNmRlMDRkMyJ9
  • Loading branch information
gcf-owl-bot[bot] authored Jan 24, 2022
1 parent ca0c109 commit aeeafe6
Show file tree
Hide file tree
Showing 55 changed files with 137 additions and 76 deletions.
4 changes: 2 additions & 2 deletions packages/google-appengine/.jsdoc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2021 Google LLC
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -40,7 +40,7 @@ module.exports = {
includePattern: '\\.js$'
},
templates: {
copyright: 'Copyright 2021 Google LLC',
copyright: 'Copyright 2022 Google LLC',
includeDate: false,
sourceFiles: false,
systemName: '@google-cloud/appengine-admin',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.


'use strict';

function main() {
Expand All @@ -32,7 +33,8 @@ function main() {

async function callCreateApplication() {
// Construct request
const request = {};
const request = {
};

// Run request
const [operation] = await appengineClient.createApplication(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.


'use strict';

function main() {
Expand All @@ -32,7 +33,8 @@ function main() {

async function callGetApplication() {
// Construct request
const request = {};
const request = {
};

// Run request
const response = await appengineClient.getApplication(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.


'use strict';

function main() {
Expand All @@ -32,7 +33,8 @@ function main() {

async function callRepairApplication() {
// Construct request
const request = {};
const request = {
};

// Run request
const [operation] = await appengineClient.repairApplication(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.


'use strict';

function main() {
Expand Down Expand Up @@ -40,7 +41,8 @@ function main() {

async function callUpdateApplication() {
// Construct request
const request = {};
const request = {
};

// Run request
const [operation] = await appengineClient.updateApplication(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.


'use strict';

function main() {
Expand All @@ -29,15 +30,15 @@ function main() {
// const certificate = {}

// Imports the Appengine library
const {AuthorizedCertificatesClient} =
require('@google-cloud/appengine-admin').v1;
const {AuthorizedCertificatesClient} = require('@google-cloud/appengine-admin').v1;

// Instantiates a client
const appengineClient = new AuthorizedCertificatesClient();

async function callCreateAuthorizedCertificate() {
// Construct request
const request = {};
const request = {
};

// Run request
const response = await appengineClient.createAuthorizedCertificate(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.


'use strict';

function main() {
Expand All @@ -26,15 +27,15 @@ function main() {
// const name = 'abc123'

// Imports the Appengine library
const {AuthorizedCertificatesClient} =
require('@google-cloud/appengine-admin').v1;
const {AuthorizedCertificatesClient} = require('@google-cloud/appengine-admin').v1;

// Instantiates a client
const appengineClient = new AuthorizedCertificatesClient();

async function callDeleteAuthorizedCertificate() {
// Construct request
const request = {};
const request = {
};

// Run request
const response = await appengineClient.deleteAuthorizedCertificate(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.


'use strict';

function main() {
Expand All @@ -30,15 +31,15 @@ function main() {
// const view = {}

// Imports the Appengine library
const {AuthorizedCertificatesClient} =
require('@google-cloud/appengine-admin').v1;
const {AuthorizedCertificatesClient} = require('@google-cloud/appengine-admin').v1;

// Instantiates a client
const appengineClient = new AuthorizedCertificatesClient();

async function callGetAuthorizedCertificate() {
// Construct request
const request = {};
const request = {
};

// Run request
const response = await appengineClient.getAuthorizedCertificate(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.


'use strict';

function main() {
Expand All @@ -37,22 +38,20 @@ function main() {
// const pageToken = 'abc123'

// Imports the Appengine library
const {AuthorizedCertificatesClient} =
require('@google-cloud/appengine-admin').v1;
const {AuthorizedCertificatesClient} = require('@google-cloud/appengine-admin').v1;

// Instantiates a client
const appengineClient = new AuthorizedCertificatesClient();

async function callListAuthorizedCertificates() {
// Construct request
const request = {};
const request = {
};

// Run request
const iterable = await appengineClient.listAuthorizedCertificatesAsync(
request
);
const iterable = await appengineClient.listAuthorizedCertificatesAsync(request);
for await (const response of iterable) {
console.log(response);
console.log(response);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.


'use strict';

function main() {
Expand All @@ -36,15 +37,15 @@ function main() {
// const updateMask = {}

// Imports the Appengine library
const {AuthorizedCertificatesClient} =
require('@google-cloud/appengine-admin').v1;
const {AuthorizedCertificatesClient} = require('@google-cloud/appengine-admin').v1;

// Instantiates a client
const appengineClient = new AuthorizedCertificatesClient();

async function callUpdateAuthorizedCertificate() {
// Construct request
const request = {};
const request = {
};

// Run request
const response = await appengineClient.updateAuthorizedCertificate(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.


'use strict';

function main() {
Expand Down Expand Up @@ -40,12 +41,13 @@ function main() {

async function callListAuthorizedDomains() {
// Construct request
const request = {};
const request = {
};

// Run request
const iterable = await appengineClient.listAuthorizedDomainsAsync(request);
for await (const response of iterable) {
console.log(response);
console.log(response);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.


'use strict';

function main() {
Expand Down Expand Up @@ -41,7 +42,8 @@ function main() {

async function callCreateDomainMapping() {
// Construct request
const request = {};
const request = {
};

// Run request
const [operation] = await appengineClient.createDomainMapping(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.


'use strict';

function main() {
Expand All @@ -33,7 +34,8 @@ function main() {

async function callDeleteDomainMapping() {
// Construct request
const request = {};
const request = {
};

// Run request
const [operation] = await appengineClient.deleteDomainMapping(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.


'use strict';

function main() {
Expand All @@ -33,7 +34,8 @@ function main() {

async function callGetDomainMapping() {
// Construct request
const request = {};
const request = {
};

// Run request
const response = await appengineClient.getDomainMapping(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.


'use strict';

function main() {
Expand Down Expand Up @@ -40,12 +41,13 @@ function main() {

async function callListDomainMappings() {
// Construct request
const request = {};
const request = {
};

// Run request
const iterable = await appengineClient.listDomainMappingsAsync(request);
for await (const response of iterable) {
console.log(response);
console.log(response);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.


'use strict';

function main() {
Expand Down Expand Up @@ -42,7 +43,8 @@ function main() {

async function callUpdateDomainMapping() {
// Construct request
const request = {};
const request = {
};

// Run request
const [operation] = await appengineClient.updateDomainMapping(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.


'use strict';

function main() {
Expand All @@ -37,7 +38,8 @@ function main() {

async function callBatchUpdateIngressRules() {
// Construct request
const request = {};
const request = {
};

// Run request
const response = await appengineClient.batchUpdateIngressRules(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.


'use strict';

function main() {
Expand Down Expand Up @@ -44,7 +45,8 @@ function main() {

async function callCreateIngressRule() {
// Construct request
const request = {};
const request = {
};

// Run request
const response = await appengineClient.createIngressRule(request);
Expand Down
Loading

0 comments on commit aeeafe6

Please sign in to comment.