google-cloud-gsuite_add_ons-v1 1.1.0 → 1.2.1
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/README.md +1 -1
- data/lib/google/cloud/gsuite_add_ons/v1/gsuite_add_ons/client.rb +17 -10
- data/lib/google/cloud/gsuite_add_ons/v1/gsuite_add_ons/rest/client.rb +16 -9
- data/lib/google/cloud/gsuite_add_ons/v1/gsuite_add_ons/rest.rb +7 -7
- data/lib/google/cloud/gsuite_add_ons/v1/gsuite_add_ons.rb +7 -7
- data/lib/google/cloud/gsuite_add_ons/v1/version.rb +1 -1
- data/lib/google/cloud/gsuiteaddons/v1/gsuiteaddons_services_pb.rb +7 -7
- data/proto_docs/google/api/client.rb +14 -0
- data/proto_docs/google/apps/script/type/extension_point.rb +4 -0
- data/proto_docs/google/apps/script/type/gmail/gmail_addon_manifest.rb +4 -0
- data/proto_docs/google/apps/script/type/script_manifest.rb +1 -1
- data/proto_docs/google/cloud/gsuiteaddons/v1/gsuiteaddons.rb +6 -6
- data/proto_docs/google/protobuf/struct.rb +12 -0
- metadata +6 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3256beeb0ba53db90700f6583aede1f72b8a13b507c91e94f5ff716ed778c766
|
4
|
+
data.tar.gz: ef060d0cdafa3c0385e69afd2f4f153658438003ae423e3c8eeb385113cb394e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1f1e97d84ba388ba06ef6bd6bfb70e0cd5b9b31dd0811afb9bfaa0ad76eb3218bffe30e8432170be93cf37e784479e9538cb86919d197b9d92fc3358d11ee4e
|
7
|
+
data.tar.gz: aa301674fcee1b3a0427af571d8c91e0806567e57453505f79e64ab5aaa960acd1ff3ac3b6abec2df36d707185d70a55a8c9ab17ebb98eeb416502fef6ef7e94
|
data/README.md
CHANGED
@@ -86,7 +86,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
|
|
86
86
|
|
87
87
|
## Supported Ruby Versions
|
88
88
|
|
89
|
-
This library is supported on Ruby
|
89
|
+
This library is supported on Ruby 3.0+.
|
90
90
|
|
91
91
|
Google provides official support for Ruby versions that are actively supported
|
92
92
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
@@ -27,30 +27,30 @@ module Google
|
|
27
27
|
##
|
28
28
|
# Client for the GSuiteAddOns service.
|
29
29
|
#
|
30
|
-
# A service for managing Google Workspace
|
30
|
+
# A service for managing Google Workspace add-ons deployments.
|
31
31
|
#
|
32
|
-
# A Google Workspace
|
32
|
+
# A Google Workspace add-on is a third-party embedded component that can be
|
33
33
|
# installed in Google Workspace Applications like Gmail, Calendar, Drive, and
|
34
|
-
# the Google Docs, Sheets, and Slides editors. Google Workspace
|
34
|
+
# the Google Docs, Sheets, and Slides editors. Google Workspace add-ons can
|
35
35
|
# display UI cards, receive contextual information from the host application,
|
36
36
|
# and perform actions in the host application (See:
|
37
37
|
# https://developers.google.com/gsuite/add-ons/overview for more information).
|
38
38
|
#
|
39
|
-
# A Google Workspace
|
39
|
+
# A Google Workspace add-on deployment resource specifies metadata about the
|
40
40
|
# add-on, including a specification of the entry points in the host application
|
41
41
|
# that trigger add-on executions (see:
|
42
42
|
# https://developers.google.com/gsuite/add-ons/concepts/gsuite-manifests).
|
43
|
-
# Add-on deployments defined via the Google Workspace
|
43
|
+
# Add-on deployments defined via the Google Workspace add-ons API define their
|
44
44
|
# entrypoints using HTTPS URLs (See:
|
45
45
|
# https://developers.google.com/gsuite/add-ons/guides/alternate-runtimes),
|
46
46
|
#
|
47
|
-
# A Google Workspace
|
47
|
+
# A Google Workspace add-on deployment can be installed in developer mode,
|
48
48
|
# which allows an add-on developer to test the experience an end-user would see
|
49
49
|
# when installing and running the add-on in their G Suite applications. When
|
50
50
|
# running in developer mode, more detailed error messages are exposed in the
|
51
51
|
# add-on UI to aid in debugging.
|
52
52
|
#
|
53
|
-
# A Google Workspace
|
53
|
+
# A Google Workspace add-on deployment can be published to Google Workspace
|
54
54
|
# Marketplace, which allows other Google Workspace users to discover and
|
55
55
|
# install the add-on. See:
|
56
56
|
# https://developers.google.com/gsuite/add-ons/how-tos/publish-add-on-overview
|
@@ -240,7 +240,7 @@ module Google
|
|
240
240
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
241
241
|
#
|
242
242
|
# @param name [::String]
|
243
|
-
# Required. Name of the project for which to get the Google Workspace
|
243
|
+
# Required. Name of the project for which to get the Google Workspace add-ons
|
244
244
|
# authorization information.
|
245
245
|
#
|
246
246
|
# Example: `projects/my_project/authorization`.
|
@@ -1076,6 +1076,13 @@ module Google
|
|
1076
1076
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
1077
1077
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
1078
1078
|
# * (`nil`) indicating no credentials
|
1079
|
+
#
|
1080
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
1081
|
+
# external source for authentication to Google Cloud, you must validate it before
|
1082
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
1083
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
1084
|
+
# For more information, refer to [Validate credential configurations from external
|
1085
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
1079
1086
|
# @return [::Object]
|
1080
1087
|
# @!attribute [rw] scope
|
1081
1088
|
# The OAuth scopes
|
@@ -1130,8 +1137,8 @@ module Google
|
|
1130
1137
|
|
1131
1138
|
config_attr :endpoint, nil, ::String, nil
|
1132
1139
|
config_attr :credentials, nil do |value|
|
1133
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
1134
|
-
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
1140
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
1141
|
+
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
|
1135
1142
|
allowed.any? { |klass| klass === value }
|
1136
1143
|
end
|
1137
1144
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -29,30 +29,30 @@ module Google
|
|
29
29
|
##
|
30
30
|
# REST client for the GSuiteAddOns service.
|
31
31
|
#
|
32
|
-
# A service for managing Google Workspace
|
32
|
+
# A service for managing Google Workspace add-ons deployments.
|
33
33
|
#
|
34
|
-
# A Google Workspace
|
34
|
+
# A Google Workspace add-on is a third-party embedded component that can be
|
35
35
|
# installed in Google Workspace Applications like Gmail, Calendar, Drive, and
|
36
|
-
# the Google Docs, Sheets, and Slides editors. Google Workspace
|
36
|
+
# the Google Docs, Sheets, and Slides editors. Google Workspace add-ons can
|
37
37
|
# display UI cards, receive contextual information from the host application,
|
38
38
|
# and perform actions in the host application (See:
|
39
39
|
# https://developers.google.com/gsuite/add-ons/overview for more information).
|
40
40
|
#
|
41
|
-
# A Google Workspace
|
41
|
+
# A Google Workspace add-on deployment resource specifies metadata about the
|
42
42
|
# add-on, including a specification of the entry points in the host application
|
43
43
|
# that trigger add-on executions (see:
|
44
44
|
# https://developers.google.com/gsuite/add-ons/concepts/gsuite-manifests).
|
45
|
-
# Add-on deployments defined via the Google Workspace
|
45
|
+
# Add-on deployments defined via the Google Workspace add-ons API define their
|
46
46
|
# entrypoints using HTTPS URLs (See:
|
47
47
|
# https://developers.google.com/gsuite/add-ons/guides/alternate-runtimes),
|
48
48
|
#
|
49
|
-
# A Google Workspace
|
49
|
+
# A Google Workspace add-on deployment can be installed in developer mode,
|
50
50
|
# which allows an add-on developer to test the experience an end-user would see
|
51
51
|
# when installing and running the add-on in their G Suite applications. When
|
52
52
|
# running in developer mode, more detailed error messages are exposed in the
|
53
53
|
# add-on UI to aid in debugging.
|
54
54
|
#
|
55
|
-
# A Google Workspace
|
55
|
+
# A Google Workspace add-on deployment can be published to Google Workspace
|
56
56
|
# Marketplace, which allows other Google Workspace users to discover and
|
57
57
|
# install the add-on. See:
|
58
58
|
# https://developers.google.com/gsuite/add-ons/how-tos/publish-add-on-overview
|
@@ -233,7 +233,7 @@ module Google
|
|
233
233
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
234
234
|
#
|
235
235
|
# @param name [::String]
|
236
|
-
# Required. Name of the project for which to get the Google Workspace
|
236
|
+
# Required. Name of the project for which to get the Google Workspace add-ons
|
237
237
|
# authorization information.
|
238
238
|
#
|
239
239
|
# Example: `projects/my_project/authorization`.
|
@@ -1004,6 +1004,13 @@ module Google
|
|
1004
1004
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
1005
1005
|
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
1006
1006
|
# * (`nil`) indicating no credentials
|
1007
|
+
#
|
1008
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
1009
|
+
# external source for authentication to Google Cloud, you must validate it before
|
1010
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
1011
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
1012
|
+
# For more information, refer to [Validate credential configurations from external
|
1013
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
1007
1014
|
# @return [::Object]
|
1008
1015
|
# @!attribute [rw] scope
|
1009
1016
|
# The OAuth scopes
|
@@ -1051,7 +1058,7 @@ module Google
|
|
1051
1058
|
|
1052
1059
|
config_attr :endpoint, nil, ::String, nil
|
1053
1060
|
config_attr :credentials, nil do |value|
|
1054
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
1061
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
1055
1062
|
allowed.any? { |klass| klass === value }
|
1056
1063
|
end
|
1057
1064
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -31,30 +31,30 @@ module Google
|
|
31
31
|
module GSuiteAddOns
|
32
32
|
module V1
|
33
33
|
##
|
34
|
-
# A service for managing Google Workspace
|
34
|
+
# A service for managing Google Workspace add-ons deployments.
|
35
35
|
#
|
36
|
-
# A Google Workspace
|
36
|
+
# A Google Workspace add-on is a third-party embedded component that can be
|
37
37
|
# installed in Google Workspace Applications like Gmail, Calendar, Drive, and
|
38
|
-
# the Google Docs, Sheets, and Slides editors. Google Workspace
|
38
|
+
# the Google Docs, Sheets, and Slides editors. Google Workspace add-ons can
|
39
39
|
# display UI cards, receive contextual information from the host application,
|
40
40
|
# and perform actions in the host application (See:
|
41
41
|
# https://developers.google.com/gsuite/add-ons/overview for more information).
|
42
42
|
#
|
43
|
-
# A Google Workspace
|
43
|
+
# A Google Workspace add-on deployment resource specifies metadata about the
|
44
44
|
# add-on, including a specification of the entry points in the host application
|
45
45
|
# that trigger add-on executions (see:
|
46
46
|
# https://developers.google.com/gsuite/add-ons/concepts/gsuite-manifests).
|
47
|
-
# Add-on deployments defined via the Google Workspace
|
47
|
+
# Add-on deployments defined via the Google Workspace add-ons API define their
|
48
48
|
# entrypoints using HTTPS URLs (See:
|
49
49
|
# https://developers.google.com/gsuite/add-ons/guides/alternate-runtimes),
|
50
50
|
#
|
51
|
-
# A Google Workspace
|
51
|
+
# A Google Workspace add-on deployment can be installed in developer mode,
|
52
52
|
# which allows an add-on developer to test the experience an end-user would see
|
53
53
|
# when installing and running the add-on in their G Suite applications. When
|
54
54
|
# running in developer mode, more detailed error messages are exposed in the
|
55
55
|
# add-on UI to aid in debugging.
|
56
56
|
#
|
57
|
-
# A Google Workspace
|
57
|
+
# A Google Workspace add-on deployment can be published to Google Workspace
|
58
58
|
# Marketplace, which allows other Google Workspace users to discover and
|
59
59
|
# install the add-on. See:
|
60
60
|
# https://developers.google.com/gsuite/add-ons/how-tos/publish-add-on-overview
|
@@ -32,30 +32,30 @@ module Google
|
|
32
32
|
module GSuiteAddOns
|
33
33
|
module V1
|
34
34
|
##
|
35
|
-
# A service for managing Google Workspace
|
35
|
+
# A service for managing Google Workspace add-ons deployments.
|
36
36
|
#
|
37
|
-
# A Google Workspace
|
37
|
+
# A Google Workspace add-on is a third-party embedded component that can be
|
38
38
|
# installed in Google Workspace Applications like Gmail, Calendar, Drive, and
|
39
|
-
# the Google Docs, Sheets, and Slides editors. Google Workspace
|
39
|
+
# the Google Docs, Sheets, and Slides editors. Google Workspace add-ons can
|
40
40
|
# display UI cards, receive contextual information from the host application,
|
41
41
|
# and perform actions in the host application (See:
|
42
42
|
# https://developers.google.com/gsuite/add-ons/overview for more information).
|
43
43
|
#
|
44
|
-
# A Google Workspace
|
44
|
+
# A Google Workspace add-on deployment resource specifies metadata about the
|
45
45
|
# add-on, including a specification of the entry points in the host application
|
46
46
|
# that trigger add-on executions (see:
|
47
47
|
# https://developers.google.com/gsuite/add-ons/concepts/gsuite-manifests).
|
48
|
-
# Add-on deployments defined via the Google Workspace
|
48
|
+
# Add-on deployments defined via the Google Workspace add-ons API define their
|
49
49
|
# entrypoints using HTTPS URLs (See:
|
50
50
|
# https://developers.google.com/gsuite/add-ons/guides/alternate-runtimes),
|
51
51
|
#
|
52
|
-
# A Google Workspace
|
52
|
+
# A Google Workspace add-on deployment can be installed in developer mode,
|
53
53
|
# which allows an add-on developer to test the experience an end-user would see
|
54
54
|
# when installing and running the add-on in their G Suite applications. When
|
55
55
|
# running in developer mode, more detailed error messages are exposed in the
|
56
56
|
# add-on UI to aid in debugging.
|
57
57
|
#
|
58
|
-
# A Google Workspace
|
58
|
+
# A Google Workspace add-on deployment can be published to Google Workspace
|
59
59
|
# Marketplace, which allows other Google Workspace users to discover and
|
60
60
|
# install the add-on. See:
|
61
61
|
# https://developers.google.com/gsuite/add-ons/how-tos/publish-add-on-overview
|
@@ -24,30 +24,30 @@ module Google
|
|
24
24
|
module GSuiteAddOns
|
25
25
|
module V1
|
26
26
|
module GSuiteAddOns
|
27
|
-
# A service for managing Google Workspace
|
27
|
+
# A service for managing Google Workspace add-ons deployments.
|
28
28
|
#
|
29
|
-
# A Google Workspace
|
29
|
+
# A Google Workspace add-on is a third-party embedded component that can be
|
30
30
|
# installed in Google Workspace Applications like Gmail, Calendar, Drive, and
|
31
|
-
# the Google Docs, Sheets, and Slides editors. Google Workspace
|
31
|
+
# the Google Docs, Sheets, and Slides editors. Google Workspace add-ons can
|
32
32
|
# display UI cards, receive contextual information from the host application,
|
33
33
|
# and perform actions in the host application (See:
|
34
34
|
# https://developers.google.com/gsuite/add-ons/overview for more information).
|
35
35
|
#
|
36
|
-
# A Google Workspace
|
36
|
+
# A Google Workspace add-on deployment resource specifies metadata about the
|
37
37
|
# add-on, including a specification of the entry points in the host application
|
38
38
|
# that trigger add-on executions (see:
|
39
39
|
# https://developers.google.com/gsuite/add-ons/concepts/gsuite-manifests).
|
40
|
-
# Add-on deployments defined via the Google Workspace
|
40
|
+
# Add-on deployments defined via the Google Workspace add-ons API define their
|
41
41
|
# entrypoints using HTTPS URLs (See:
|
42
42
|
# https://developers.google.com/gsuite/add-ons/guides/alternate-runtimes),
|
43
43
|
#
|
44
|
-
# A Google Workspace
|
44
|
+
# A Google Workspace add-on deployment can be installed in developer mode,
|
45
45
|
# which allows an add-on developer to test the experience an end-user would see
|
46
46
|
# when installing and running the add-on in their G Suite applications. When
|
47
47
|
# running in developer mode, more detailed error messages are exposed in the
|
48
48
|
# add-on UI to aid in debugging.
|
49
49
|
#
|
50
|
-
# A Google Workspace
|
50
|
+
# A Google Workspace add-on deployment can be published to Google Workspace
|
51
51
|
# Marketplace, which allows other Google Workspace users to discover and
|
52
52
|
# install the add-on. See:
|
53
53
|
# https://developers.google.com/gsuite/add-ons/how-tos/publish-add-on-overview
|
@@ -221,6 +221,12 @@ module Google
|
|
221
221
|
# Pythonic which are included in `protobuf>=5.29.x`. This feature will be
|
222
222
|
# enabled by default 1 month after launching the feature in preview
|
223
223
|
# packages.
|
224
|
+
# @!attribute [rw] unversioned_package_disabled
|
225
|
+
# @return [::Boolean]
|
226
|
+
# Disables generation of an unversioned Python package for this client
|
227
|
+
# library. This means that the module names will need to be versioned in
|
228
|
+
# import statements. For example `import google.cloud.library_v2` instead
|
229
|
+
# of `import google.cloud.library`.
|
224
230
|
class ExperimentalFeatures
|
225
231
|
include ::Google::Protobuf::MessageExts
|
226
232
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -409,6 +415,14 @@ module Google
|
|
409
415
|
# @return [::Array<::String>]
|
410
416
|
# An allowlist of the fully qualified names of RPCs that should be included
|
411
417
|
# on public client surfaces.
|
418
|
+
# @!attribute [rw] generate_omitted_as_internal
|
419
|
+
# @return [::Boolean]
|
420
|
+
# Setting this to true indicates to the client generators that methods
|
421
|
+
# that would be excluded from the generation should instead be generated
|
422
|
+
# in a way that indicates these methods should not be consumed by
|
423
|
+
# end users. How this is expressed is up to individual language
|
424
|
+
# implementations to decide. Some examples may be: added annotations,
|
425
|
+
# obfuscated identifiers, or other language idiomatic patterns.
|
412
426
|
class SelectiveGapicGeneration
|
413
427
|
include ::Google::Protobuf::MessageExts
|
414
428
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -67,9 +67,13 @@ module Google
|
|
67
67
|
# @!attribute [rw] open_link
|
68
68
|
# @return [::String]
|
69
69
|
# URL to be opened by the UniversalAction.
|
70
|
+
#
|
71
|
+
# Note: The following fields are mutually exclusive: `open_link`, `run_function`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
70
72
|
# @!attribute [rw] run_function
|
71
73
|
# @return [::String]
|
72
74
|
# Endpoint to be run by the UniversalAction.
|
75
|
+
#
|
76
|
+
# Note: The following fields are mutually exclusive: `run_function`, `open_link`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
73
77
|
class UniversalActionExtensionPoint
|
74
78
|
include ::Google::Protobuf::MessageExts
|
75
79
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -69,11 +69,15 @@ module Google
|
|
69
69
|
# @!attribute [rw] open_link
|
70
70
|
# @return [::String]
|
71
71
|
# A link that is opened by Gmail when the user triggers the action.
|
72
|
+
#
|
73
|
+
# Note: The following fields are mutually exclusive: `open_link`, `run_function`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
72
74
|
# @!attribute [rw] run_function
|
73
75
|
# @return [::String]
|
74
76
|
# An endpoint that is called when the user triggers the
|
75
77
|
# action. See the [universal actions
|
76
78
|
# guide](/gmail/add-ons/how-tos/universal-actions) for details.
|
79
|
+
#
|
80
|
+
# Note: The following fields are mutually exclusive: `run_function`, `open_link`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
77
81
|
class UniversalAction
|
78
82
|
include ::Google::Protobuf::MessageExts
|
79
83
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -96,7 +96,7 @@ module Google
|
|
96
96
|
# Default value, equivalent to `SYSTEM_ID_TOKEN`
|
97
97
|
HTTP_AUTHORIZATION_HEADER_UNSPECIFIED = 0
|
98
98
|
|
99
|
-
# Send an ID token for the project-specific Google Workspace
|
99
|
+
# Send an ID token for the project-specific Google Workspace add-ons system
|
100
100
|
# service account (default)
|
101
101
|
SYSTEM_ID_TOKEN = 1
|
102
102
|
|
@@ -21,10 +21,10 @@ module Google
|
|
21
21
|
module Cloud
|
22
22
|
module GSuiteAddOns
|
23
23
|
module V1
|
24
|
-
# Request message to get Google Workspace
|
24
|
+
# Request message to get Google Workspace add-ons authorization information.
|
25
25
|
# @!attribute [rw] name
|
26
26
|
# @return [::String]
|
27
|
-
# Required. Name of the project for which to get the Google Workspace
|
27
|
+
# Required. Name of the project for which to get the Google Workspace add-ons
|
28
28
|
# authorization information.
|
29
29
|
#
|
30
30
|
# Example: `projects/my_project/authorization`.
|
@@ -188,7 +188,7 @@ module Google
|
|
188
188
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
189
189
|
end
|
190
190
|
|
191
|
-
# A Google Workspace
|
191
|
+
# A Google Workspace add-on deployment
|
192
192
|
# @!attribute [rw] name
|
193
193
|
# @return [::String]
|
194
194
|
# The deployment resource name.
|
@@ -199,7 +199,7 @@ module Google
|
|
199
199
|
# user before executing an add-on endpoint.
|
200
200
|
# @!attribute [rw] add_ons
|
201
201
|
# @return [::Google::Cloud::GSuiteAddOns::V1::AddOns]
|
202
|
-
# The Google Workspace
|
202
|
+
# The Google Workspace add-on configuration.
|
203
203
|
# @!attribute [rw] etag
|
204
204
|
# @return [::String]
|
205
205
|
# This value is computed by the server based on the version of the
|
@@ -210,10 +210,10 @@ module Google
|
|
210
210
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
211
211
|
end
|
212
212
|
|
213
|
-
# A Google Workspace
|
213
|
+
# A Google Workspace add-on configuration.
|
214
214
|
# @!attribute [rw] common
|
215
215
|
# @return [::Google::Apps::Script::Type::CommonAddOnManifest]
|
216
|
-
# Configuration that is common across all Google Workspace
|
216
|
+
# Configuration that is common across all Google Workspace add-ons.
|
217
217
|
# @!attribute [rw] gmail
|
218
218
|
# @return [::Google::Apps::Script::Type::Gmail::GmailAddOnManifest]
|
219
219
|
# Gmail add-on configuration.
|
@@ -53,21 +53,33 @@ module Google
|
|
53
53
|
# @!attribute [rw] null_value
|
54
54
|
# @return [::Google::Protobuf::NullValue]
|
55
55
|
# Represents a null value.
|
56
|
+
#
|
57
|
+
# Note: The following fields are mutually exclusive: `null_value`, `number_value`, `string_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
56
58
|
# @!attribute [rw] number_value
|
57
59
|
# @return [::Float]
|
58
60
|
# Represents a double value.
|
61
|
+
#
|
62
|
+
# Note: The following fields are mutually exclusive: `number_value`, `null_value`, `string_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
59
63
|
# @!attribute [rw] string_value
|
60
64
|
# @return [::String]
|
61
65
|
# Represents a string value.
|
66
|
+
#
|
67
|
+
# Note: The following fields are mutually exclusive: `string_value`, `null_value`, `number_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
62
68
|
# @!attribute [rw] bool_value
|
63
69
|
# @return [::Boolean]
|
64
70
|
# Represents a boolean value.
|
71
|
+
#
|
72
|
+
# Note: The following fields are mutually exclusive: `bool_value`, `null_value`, `number_value`, `string_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
65
73
|
# @!attribute [rw] struct_value
|
66
74
|
# @return [::Google::Protobuf::Struct]
|
67
75
|
# Represents a structured value.
|
76
|
+
#
|
77
|
+
# Note: The following fields are mutually exclusive: `struct_value`, `null_value`, `number_value`, `string_value`, `bool_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
68
78
|
# @!attribute [rw] list_value
|
69
79
|
# @return [::Google::Protobuf::ListValue]
|
70
80
|
# Represents a repeated `Value`.
|
81
|
+
#
|
82
|
+
# Note: The following fields are mutually exclusive: `list_value`, `null_value`, `number_value`, `string_value`, `bool_value`, `struct_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
71
83
|
class Value
|
72
84
|
include ::Google::Protobuf::MessageExts
|
73
85
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-gsuite_add_ons-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: gapic-common
|
@@ -16,7 +15,7 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
18
|
+
version: 0.25.0
|
20
19
|
- - "<"
|
21
20
|
- !ruby/object:Gem::Version
|
22
21
|
version: 2.a
|
@@ -26,7 +25,7 @@ dependencies:
|
|
26
25
|
requirements:
|
27
26
|
- - ">="
|
28
27
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
28
|
+
version: 0.25.0
|
30
29
|
- - "<"
|
31
30
|
- !ruby/object:Gem::Version
|
32
31
|
version: 2.a
|
@@ -113,7 +112,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
|
|
113
112
|
licenses:
|
114
113
|
- Apache-2.0
|
115
114
|
metadata: {}
|
116
|
-
post_install_message:
|
117
115
|
rdoc_options: []
|
118
116
|
require_paths:
|
119
117
|
- lib
|
@@ -121,15 +119,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
121
119
|
requirements:
|
122
120
|
- - ">="
|
123
121
|
- !ruby/object:Gem::Version
|
124
|
-
version: '
|
122
|
+
version: '3.0'
|
125
123
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
126
124
|
requirements:
|
127
125
|
- - ">="
|
128
126
|
- !ruby/object:Gem::Version
|
129
127
|
version: '0'
|
130
128
|
requirements: []
|
131
|
-
rubygems_version: 3.
|
132
|
-
signing_key:
|
129
|
+
rubygems_version: 3.6.8
|
133
130
|
specification_version: 4
|
134
131
|
summary: API Client library for the Google Workspace Add-ons V1 API
|
135
132
|
test_files: []
|