google-apis-cloudsupport_v2 0.25.0 → 0.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/cloudsupport_v2/gem_version.rb +2 -2
- data/lib/google/apis/cloudsupport_v2/service.rb +16 -7
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9092d5b0b580dd4f15bd8e114a59b5a13b9a26f8c72b1e38de42479aca2bc698
|
|
4
|
+
data.tar.gz: 5dba21ef97eca7b9f2857d98d0cb394c33cfa005190a8ab08802d747195f93c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e93a5ea847fd256fd82b0a20e05e6e4aab1038e54fa742193164f92f47b28bf64e8c1e095f3863a2f5a3ce5b2467275584ad5a456e8d74b396aa44cc3b5ac0f7
|
|
7
|
+
data.tar.gz: 523ce2b3b6dc0c0e2129df087b535bc6dec9f63f0ff1c37c677ef80000f9fa7a4d4a008e2479ac4f059c9a1232d55ed36c23b1fe98de804169d0d4acb9e2b6f3
|
data/CHANGELOG.md
CHANGED
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CloudsupportV2
|
|
18
18
|
# Version of the google-apis-cloudsupport_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.26.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260726"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -823,7 +823,7 @@ module Google
|
|
|
823
823
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
824
824
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
825
825
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
826
|
-
def
|
|
826
|
+
def create_organization_support_event_subscription(parent, support_event_subscription_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
827
827
|
command = make_simple_command(:post, 'v2/{+parent}/supportEventSubscriptions', options)
|
|
828
828
|
command.request_representation = Google::Apis::CloudsupportV2::SupportEventSubscription::Representation
|
|
829
829
|
command.request_object = support_event_subscription_object
|
|
@@ -866,7 +866,7 @@ module Google
|
|
|
866
866
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
867
867
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
868
868
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
869
|
-
def
|
|
869
|
+
def delete_organization_support_event_subscription(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
870
870
|
command = make_simple_command(:delete, 'v2/{+name}', options)
|
|
871
871
|
command.response_representation = Google::Apis::CloudsupportV2::SupportEventSubscription::Representation
|
|
872
872
|
command.response_class = Google::Apis::CloudsupportV2::SupportEventSubscription
|
|
@@ -876,7 +876,17 @@ module Google
|
|
|
876
876
|
execute_or_queue_command(command, &block)
|
|
877
877
|
end
|
|
878
878
|
|
|
879
|
-
# Expunges a support event subscription.
|
|
879
|
+
# Expunges a support event subscription. EXAMPLES: cURL: ```shell
|
|
880
|
+
# support_event_subscription="organizations/123456789/supportEventSubscriptions/
|
|
881
|
+
# abcdef123456" curl \ --request POST \ --header "Authorization: Bearer $(gcloud
|
|
882
|
+
# auth print-access-token)" \ "https://cloudsupport.googleapis.com/v2/$
|
|
883
|
+
# support_event_subscription:expunge" ``` Python: ```python import
|
|
884
|
+
# googleapiclient.discovery api_version = "v2" supportApiService =
|
|
885
|
+
# googleapiclient.discovery.build( serviceName="cloudsupport", version=
|
|
886
|
+
# api_version, discoveryServiceUrl=f"https://cloudsupport.googleapis.com/$
|
|
887
|
+
# discovery/rest?version=`api_version`", ) request = supportApiService.
|
|
888
|
+
# supportEventSubscriptions().expunge( name="organizations/123456789/
|
|
889
|
+
# supportEventSubscriptions/abcdef123456" ) print(request.execute()) ```
|
|
880
890
|
# @param [String] name
|
|
881
891
|
# Required. The name of the support event subscription to expunge. Format:
|
|
882
892
|
# organizations/`organization_id`/supportEventSubscriptions/`subscription_id`
|
|
@@ -941,7 +951,7 @@ module Google
|
|
|
941
951
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
942
952
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
943
953
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
944
|
-
def
|
|
954
|
+
def get_organization_support_event_subscription(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
945
955
|
command = make_simple_command(:get, 'v2/{+name}', options)
|
|
946
956
|
command.response_representation = Google::Apis::CloudsupportV2::SupportEventSubscription::Representation
|
|
947
957
|
command.response_class = Google::Apis::CloudsupportV2::SupportEventSubscription
|
|
@@ -995,7 +1005,7 @@ module Google
|
|
|
995
1005
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
996
1006
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
997
1007
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
998
|
-
def
|
|
1008
|
+
def list_organization_support_event_subscriptions(parent, filter: nil, page_size: nil, page_token: nil, show_deleted: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
999
1009
|
command = make_simple_command(:get, 'v2/{+parent}/supportEventSubscriptions', options)
|
|
1000
1010
|
command.response_representation = Google::Apis::CloudsupportV2::ListSupportEventSubscriptionsResponse::Representation
|
|
1001
1011
|
command.response_class = Google::Apis::CloudsupportV2::ListSupportEventSubscriptionsResponse
|
|
@@ -1045,7 +1055,7 @@ module Google
|
|
|
1045
1055
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1046
1056
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1047
1057
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1048
|
-
def
|
|
1058
|
+
def patch_organization_support_event_subscription(name, support_event_subscription_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1049
1059
|
command = make_simple_command(:patch, 'v2/{+name}', options)
|
|
1050
1060
|
command.request_representation = Google::Apis::CloudsupportV2::SupportEventSubscription::Representation
|
|
1051
1061
|
command.request_object = support_event_subscription_object
|
|
@@ -1069,7 +1079,6 @@ module Google
|
|
|
1069
1079
|
# discovery/rest?version=`api_version`", ) request = supportApiService.
|
|
1070
1080
|
# supportEventSubscriptions().undelete( name="organizations/123456789/
|
|
1071
1081
|
# supportEventSubscriptions/abcdef123456" ) print(request.execute()) ```
|
|
1072
|
-
# Undeletes a support event subscription.
|
|
1073
1082
|
# @param [String] name
|
|
1074
1083
|
# Required. The name of the support event subscription to undelete. Format:
|
|
1075
1084
|
# organizations/`organization_id`/supportEventSubscriptions/`subscription_id`
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudsupport_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.26.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudsupport_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsupport_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsupport_v2/v0.26.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudsupport_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|