Skip to content

Commit

Permalink
chore: use gapic-generator-python 0.63.2 (#96)
Browse files Browse the repository at this point in the history
* chore: use gapic-generator-python 0.63.2
docs: add generated snippets

PiperOrigin-RevId: 427792504

Source-Link: googleapis/googleapis@55b9e1e

Source-Link: googleapis/googleapis-gen@bf4e86b
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYmY0ZTg2Yjc1M2Y0MmNiMGVkYjFmZDUxZmJlODQwZDdkYTBhMWNkZSJ9

* 🦉 Updates from OwlBot

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] committed Feb 11, 2022
1 parent bb80bf3 commit a3c8ea5
Show file tree
Hide file tree
Showing 33 changed files with 3,436 additions and 0 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# -*- coding: utf-8 -*-
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Generated code. DO NOT EDIT!
#
# Snippet for CreateService
# NOTE: This snippet has been automatically generated for illustrative purposes only.
# It may require modifications to work in your environment.

# To install the latest published package dependency, execute the following:
# python3 -m pip install google-cloud-service-management


# [START servicemanagement_generated_servicemanagement_v1_ServiceManager_CreateService_async]
from google.cloud import servicemanagement_v1


async def sample_create_service():
# Create a client
client = servicemanagement_v1.ServiceManagerAsyncClient()

# Initialize request argument(s)
request = servicemanagement_v1.CreateServiceRequest(
)

# Make the request
operation = client.create_service(request=request)

print("Waiting for operation to complete...")

response = await operation.result()

# Handle the response
print(response)

# [END servicemanagement_generated_servicemanagement_v1_ServiceManager_CreateService_async]
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# -*- coding: utf-8 -*-
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Generated code. DO NOT EDIT!
#
# Snippet for CreateServiceConfig
# NOTE: This snippet has been automatically generated for illustrative purposes only.
# It may require modifications to work in your environment.

# To install the latest published package dependency, execute the following:
# python3 -m pip install google-cloud-service-management


# [START servicemanagement_generated_servicemanagement_v1_ServiceManager_CreateServiceConfig_async]
from google.cloud import servicemanagement_v1


async def sample_create_service_config():
# Create a client
client = servicemanagement_v1.ServiceManagerAsyncClient()

# Initialize request argument(s)
request = servicemanagement_v1.CreateServiceConfigRequest(
service_name="service_name_value",
)

# Make the request
response = await client.create_service_config(request=request)

# Handle the response
print(response)

# [END servicemanagement_generated_servicemanagement_v1_ServiceManager_CreateServiceConfig_async]
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# -*- coding: utf-8 -*-
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Generated code. DO NOT EDIT!
#
# Snippet for CreateServiceConfig
# NOTE: This snippet has been automatically generated for illustrative purposes only.
# It may require modifications to work in your environment.

# To install the latest published package dependency, execute the following:
# python3 -m pip install google-cloud-service-management


# [START servicemanagement_generated_servicemanagement_v1_ServiceManager_CreateServiceConfig_sync]
from google.cloud import servicemanagement_v1


def sample_create_service_config():
# Create a client
client = servicemanagement_v1.ServiceManagerClient()

# Initialize request argument(s)
request = servicemanagement_v1.CreateServiceConfigRequest(
service_name="service_name_value",
)

# Make the request
response = client.create_service_config(request=request)

# Handle the response
print(response)

# [END servicemanagement_generated_servicemanagement_v1_ServiceManager_CreateServiceConfig_sync]
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# -*- coding: utf-8 -*-
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Generated code. DO NOT EDIT!
#
# Snippet for CreateServiceRollout
# NOTE: This snippet has been automatically generated for illustrative purposes only.
# It may require modifications to work in your environment.

# To install the latest published package dependency, execute the following:
# python3 -m pip install google-cloud-service-management


# [START servicemanagement_generated_servicemanagement_v1_ServiceManager_CreateServiceRollout_async]
from google.cloud import servicemanagement_v1


async def sample_create_service_rollout():
# Create a client
client = servicemanagement_v1.ServiceManagerAsyncClient()

# Initialize request argument(s)
request = servicemanagement_v1.CreateServiceRolloutRequest(
service_name="service_name_value",
)

# Make the request
operation = client.create_service_rollout(request=request)

print("Waiting for operation to complete...")

response = await operation.result()

# Handle the response
print(response)

# [END servicemanagement_generated_servicemanagement_v1_ServiceManager_CreateServiceRollout_async]
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# -*- coding: utf-8 -*-
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Generated code. DO NOT EDIT!
#
# Snippet for CreateServiceRollout
# NOTE: This snippet has been automatically generated for illustrative purposes only.
# It may require modifications to work in your environment.

# To install the latest published package dependency, execute the following:
# python3 -m pip install google-cloud-service-management


# [START servicemanagement_generated_servicemanagement_v1_ServiceManager_CreateServiceRollout_sync]
from google.cloud import servicemanagement_v1


def sample_create_service_rollout():
# Create a client
client = servicemanagement_v1.ServiceManagerClient()

# Initialize request argument(s)
request = servicemanagement_v1.CreateServiceRolloutRequest(
service_name="service_name_value",
)

# Make the request
operation = client.create_service_rollout(request=request)

print("Waiting for operation to complete...")

response = operation.result()

# Handle the response
print(response)

# [END servicemanagement_generated_servicemanagement_v1_ServiceManager_CreateServiceRollout_sync]
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# -*- coding: utf-8 -*-
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Generated code. DO NOT EDIT!
#
# Snippet for CreateService
# NOTE: This snippet has been automatically generated for illustrative purposes only.
# It may require modifications to work in your environment.

# To install the latest published package dependency, execute the following:
# python3 -m pip install google-cloud-service-management


# [START servicemanagement_generated_servicemanagement_v1_ServiceManager_CreateService_sync]
from google.cloud import servicemanagement_v1


def sample_create_service():
# Create a client
client = servicemanagement_v1.ServiceManagerClient()

# Initialize request argument(s)
request = servicemanagement_v1.CreateServiceRequest(
)

# Make the request
operation = client.create_service(request=request)

print("Waiting for operation to complete...")

response = operation.result()

# Handle the response
print(response)

# [END servicemanagement_generated_servicemanagement_v1_ServiceManager_CreateService_sync]
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# -*- coding: utf-8 -*-
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Generated code. DO NOT EDIT!
#
# Snippet for DeleteService
# NOTE: This snippet has been automatically generated for illustrative purposes only.
# It may require modifications to work in your environment.

# To install the latest published package dependency, execute the following:
# python3 -m pip install google-cloud-service-management


# [START servicemanagement_generated_servicemanagement_v1_ServiceManager_DeleteService_async]
from google.cloud import servicemanagement_v1


async def sample_delete_service():
# Create a client
client = servicemanagement_v1.ServiceManagerAsyncClient()

# Initialize request argument(s)
request = servicemanagement_v1.DeleteServiceRequest(
service_name="service_name_value",
)

# Make the request
operation = client.delete_service(request=request)

print("Waiting for operation to complete...")

response = await operation.result()

# Handle the response
print(response)

# [END servicemanagement_generated_servicemanagement_v1_ServiceManager_DeleteService_async]
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# -*- coding: utf-8 -*-
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Generated code. DO NOT EDIT!
#
# Snippet for DeleteService
# NOTE: This snippet has been automatically generated for illustrative purposes only.
# It may require modifications to work in your environment.

# To install the latest published package dependency, execute the following:
# python3 -m pip install google-cloud-service-management


# [START servicemanagement_generated_servicemanagement_v1_ServiceManager_DeleteService_sync]
from google.cloud import servicemanagement_v1


def sample_delete_service():
# Create a client
client = servicemanagement_v1.ServiceManagerClient()

# Initialize request argument(s)
request = servicemanagement_v1.DeleteServiceRequest(
service_name="service_name_value",
)

# Make the request
operation = client.delete_service(request=request)

print("Waiting for operation to complete...")

response = operation.result()

# Handle the response
print(response)

# [END servicemanagement_generated_servicemanagement_v1_ServiceManager_DeleteService_sync]
Loading

0 comments on commit a3c8ea5

Please sign in to comment.