google-apis-integrations_v1alpha 0.4.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/google/apis/integrations_v1alpha/classes.rb +0 -424
- data/lib/google/apis/integrations_v1alpha/gem_version.rb +3 -3
- data/lib/google/apis/integrations_v1alpha/representations.rb +0 -234
- data/lib/google/apis/integrations_v1alpha/service.rb +0 -66
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12bb0f0a6abd2350b015815aa81890e8122c75e708fee2511ae9e2694ae9a073
|
4
|
+
data.tar.gz: ed547cc9ec7fcd65a3cefb6d35e0b5e7d14887c70d3e9a9087170823ce15df4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06cccc0fe14b4fa4e886054f2dfca6f54a6d2e20ef6c01e4608471645211feac9f67019f7081d370207fce83215b2c778058082d61dc6925d76d945090d95b0e
|
7
|
+
data.tar.gz: ce4c9c7e4c9e78cb33b90f29f7fa70c4da5b24336220fe536d4b63369cff18fd9bd07a4f35553a7c4c9c016f4e40023812e199f7562113c7280a4015a3b8ed6b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-integrations_v1alpha
|
2
2
|
|
3
|
+
### v0.5.0 (2023-01-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230103
|
6
|
+
* Regenerated using generator version 0.11.1
|
7
|
+
|
3
8
|
### v0.4.0 (2023-01-01)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20221220
|
@@ -42,185 +42,6 @@ module Google
|
|
42
42
|
end
|
43
43
|
end
|
44
44
|
|
45
|
-
#
|
46
|
-
class EnterpriseCrmCardsCellValue
|
47
|
-
include Google::Apis::Core::Hashable
|
48
|
-
|
49
|
-
#
|
50
|
-
# Corresponds to the JSON property `booleanValue`
|
51
|
-
# @return [Boolean]
|
52
|
-
attr_accessor :boolean_value
|
53
|
-
alias_method :boolean_value?, :boolean_value
|
54
|
-
|
55
|
-
#
|
56
|
-
# Corresponds to the JSON property `doubleValue`
|
57
|
-
# @return [Float]
|
58
|
-
attr_accessor :double_value
|
59
|
-
|
60
|
-
# A generic empty message that you can re-use to avoid defining duplicated empty
|
61
|
-
# messages in your APIs. A typical example is to use it as the request or the
|
62
|
-
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
63
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
64
|
-
# Corresponds to the JSON property `empty`
|
65
|
-
# @return [Google::Apis::IntegrationsV1alpha::GoogleProtobufEmpty]
|
66
|
-
attr_accessor :empty
|
67
|
-
|
68
|
-
#
|
69
|
-
# Corresponds to the JSON property `longValue`
|
70
|
-
# @return [Fixnum]
|
71
|
-
attr_accessor :long_value
|
72
|
-
|
73
|
-
#
|
74
|
-
# Corresponds to the JSON property `stringValue`
|
75
|
-
# @return [String]
|
76
|
-
attr_accessor :string_value
|
77
|
-
|
78
|
-
def initialize(**args)
|
79
|
-
update!(**args)
|
80
|
-
end
|
81
|
-
|
82
|
-
# Update properties of this object
|
83
|
-
def update!(**args)
|
84
|
-
@boolean_value = args[:boolean_value] if args.key?(:boolean_value)
|
85
|
-
@double_value = args[:double_value] if args.key?(:double_value)
|
86
|
-
@empty = args[:empty] if args.key?(:empty)
|
87
|
-
@long_value = args[:long_value] if args.key?(:long_value)
|
88
|
-
@string_value = args[:string_value] if args.key?(:string_value)
|
89
|
-
end
|
90
|
-
end
|
91
|
-
|
92
|
-
#
|
93
|
-
class EnterpriseCrmCardsRow
|
94
|
-
include Google::Apis::Core::Hashable
|
95
|
-
|
96
|
-
# Ordered list of cell values within a row.
|
97
|
-
# Corresponds to the JSON property `cells`
|
98
|
-
# @return [Array<Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue>]
|
99
|
-
attr_accessor :cells
|
100
|
-
|
101
|
-
def initialize(**args)
|
102
|
-
update!(**args)
|
103
|
-
end
|
104
|
-
|
105
|
-
# Update properties of this object
|
106
|
-
def update!(**args)
|
107
|
-
@cells = args[:cells] if args.key?(:cells)
|
108
|
-
end
|
109
|
-
end
|
110
|
-
|
111
|
-
# The generic data format returned from all connectors.
|
112
|
-
class EnterpriseCrmCardsTabularData
|
113
|
-
include Google::Apis::Core::Hashable
|
114
|
-
|
115
|
-
# Ordered list of column headers.
|
116
|
-
# Corresponds to the JSON property `headers`
|
117
|
-
# @return [Array<String>]
|
118
|
-
attr_accessor :headers
|
119
|
-
|
120
|
-
# Ordered list of table rows.
|
121
|
-
# Corresponds to the JSON property `rows`
|
122
|
-
# @return [Array<Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsRow>]
|
123
|
-
attr_accessor :rows
|
124
|
-
|
125
|
-
def initialize(**args)
|
126
|
-
update!(**args)
|
127
|
-
end
|
128
|
-
|
129
|
-
# Update properties of this object
|
130
|
-
def update!(**args)
|
131
|
-
@headers = args[:headers] if args.key?(:headers)
|
132
|
-
@rows = args[:rows] if args.key?(:rows)
|
133
|
-
end
|
134
|
-
end
|
135
|
-
|
136
|
-
# Data used to render an Aplos Series card.
|
137
|
-
class EnterpriseCrmCardsTemplatesAplosSeriesData
|
138
|
-
include Google::Apis::Core::Hashable
|
139
|
-
|
140
|
-
# A single Series Row
|
141
|
-
# Corresponds to the JSON property `rows`
|
142
|
-
# @return [Array<Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesDataRow>]
|
143
|
-
attr_accessor :rows
|
144
|
-
|
145
|
-
def initialize(**args)
|
146
|
-
update!(**args)
|
147
|
-
end
|
148
|
-
|
149
|
-
# Update properties of this object
|
150
|
-
def update!(**args)
|
151
|
-
@rows = args[:rows] if args.key?(:rows)
|
152
|
-
end
|
153
|
-
end
|
154
|
-
|
155
|
-
# Aplos series row is exactly two columns labeled x and y.
|
156
|
-
class EnterpriseCrmCardsTemplatesAplosSeriesDataRow
|
157
|
-
include Google::Apis::Core::Hashable
|
158
|
-
|
159
|
-
#
|
160
|
-
# Corresponds to the JSON property `x`
|
161
|
-
# @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue]
|
162
|
-
attr_accessor :x
|
163
|
-
|
164
|
-
#
|
165
|
-
# Corresponds to the JSON property `y`
|
166
|
-
# @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue]
|
167
|
-
attr_accessor :y
|
168
|
-
|
169
|
-
def initialize(**args)
|
170
|
-
update!(**args)
|
171
|
-
end
|
172
|
-
|
173
|
-
# Update properties of this object
|
174
|
-
def update!(**args)
|
175
|
-
@x = args[:x] if args.key?(:x)
|
176
|
-
@y = args[:y] if args.key?(:y)
|
177
|
-
end
|
178
|
-
end
|
179
|
-
|
180
|
-
# Data used for Aplos charts that accept multiple Series.
|
181
|
-
class EnterpriseCrmCardsTemplatesAplosSeriesListData
|
182
|
-
include Google::Apis::Core::Hashable
|
183
|
-
|
184
|
-
#
|
185
|
-
# Corresponds to the JSON property `series`
|
186
|
-
# @return [Array<Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries>]
|
187
|
-
attr_accessor :series
|
188
|
-
|
189
|
-
def initialize(**args)
|
190
|
-
update!(**args)
|
191
|
-
end
|
192
|
-
|
193
|
-
# Update properties of this object
|
194
|
-
def update!(**args)
|
195
|
-
@series = args[:series] if args.key?(:series)
|
196
|
-
end
|
197
|
-
end
|
198
|
-
|
199
|
-
#
|
200
|
-
class EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries
|
201
|
-
include Google::Apis::Core::Hashable
|
202
|
-
|
203
|
-
# Data used to render an Aplos Series card.
|
204
|
-
# Corresponds to the JSON property `data`
|
205
|
-
# @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesData]
|
206
|
-
attr_accessor :data
|
207
|
-
|
208
|
-
#
|
209
|
-
# Corresponds to the JSON property `name`
|
210
|
-
# @return [String]
|
211
|
-
attr_accessor :name
|
212
|
-
|
213
|
-
def initialize(**args)
|
214
|
-
update!(**args)
|
215
|
-
end
|
216
|
-
|
217
|
-
# Update properties of this object
|
218
|
-
def update!(**args)
|
219
|
-
@data = args[:data] if args.key?(:data)
|
220
|
-
@name = args[:name] if args.key?(:name)
|
221
|
-
end
|
222
|
-
end
|
223
|
-
|
224
45
|
#
|
225
46
|
class EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam
|
226
47
|
include Google::Apis::Core::Hashable
|
@@ -7715,251 +7536,6 @@ module Google
|
|
7715
7536
|
end
|
7716
7537
|
end
|
7717
7538
|
|
7718
|
-
# The request to get data for monarch connector config.
|
7719
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest
|
7720
|
-
include Google::Apis::Core::Hashable
|
7721
|
-
|
7722
|
-
# How long the series data range: "1h","1d",etc.
|
7723
|
-
# Corresponds to the JSON property `duration`
|
7724
|
-
# @return [String]
|
7725
|
-
attr_accessor :duration
|
7726
|
-
|
7727
|
-
# Final time to query over, or the current time if left unset.
|
7728
|
-
# Corresponds to the JSON property `endTime`
|
7729
|
-
# @return [String]
|
7730
|
-
attr_accessor :end_time
|
7731
|
-
|
7732
|
-
# The MashQuery for searching data, set both queries for Join Operation.
|
7733
|
-
# Corresponds to the JSON property `mashQuery`
|
7734
|
-
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery]
|
7735
|
-
attr_accessor :mash_query
|
7736
|
-
|
7737
|
-
# Returns a table of all possible metric field values within the specified
|
7738
|
-
# duration, ignoring any data samples. Useful for autocomplete functionality.
|
7739
|
-
# Corresponds to the JSON property `metricFieldTable`
|
7740
|
-
# @return [Boolean]
|
7741
|
-
attr_accessor :metric_field_table
|
7742
|
-
alias_method :metric_field_table?, :metric_field_table
|
7743
|
-
|
7744
|
-
# The output period for the query. Must be set if there is a window operation
|
7745
|
-
# within the query and unset otherwise.
|
7746
|
-
# Corresponds to the JSON property `outputPeriod`
|
7747
|
-
# @return [String]
|
7748
|
-
attr_accessor :output_period
|
7749
|
-
|
7750
|
-
# Required. Template for response.
|
7751
|
-
# Corresponds to the JSON property `responseTemplate`
|
7752
|
-
# @return [String]
|
7753
|
-
attr_accessor :response_template
|
7754
|
-
|
7755
|
-
def initialize(**args)
|
7756
|
-
update!(**args)
|
7757
|
-
end
|
7758
|
-
|
7759
|
-
# Update properties of this object
|
7760
|
-
def update!(**args)
|
7761
|
-
@duration = args[:duration] if args.key?(:duration)
|
7762
|
-
@end_time = args[:end_time] if args.key?(:end_time)
|
7763
|
-
@mash_query = args[:mash_query] if args.key?(:mash_query)
|
7764
|
-
@metric_field_table = args[:metric_field_table] if args.key?(:metric_field_table)
|
7765
|
-
@output_period = args[:output_period] if args.key?(:output_period)
|
7766
|
-
@response_template = args[:response_template] if args.key?(:response_template)
|
7767
|
-
end
|
7768
|
-
end
|
7769
|
-
|
7770
|
-
# MashQuery GroupBy parameters.
|
7771
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy
|
7772
|
-
include Google::Apis::Core::Hashable
|
7773
|
-
|
7774
|
-
# Optional. optional, metrics list for GroupBy.
|
7775
|
-
# Corresponds to the JSON property `fields`
|
7776
|
-
# @return [Array<String>]
|
7777
|
-
attr_accessor :fields
|
7778
|
-
|
7779
|
-
# Optional. optional, reduce function for GroupBy.
|
7780
|
-
# Corresponds to the JSON property `reducer`
|
7781
|
-
# @return [String]
|
7782
|
-
attr_accessor :reducer
|
7783
|
-
|
7784
|
-
def initialize(**args)
|
7785
|
-
update!(**args)
|
7786
|
-
end
|
7787
|
-
|
7788
|
-
# Update properties of this object
|
7789
|
-
def update!(**args)
|
7790
|
-
@fields = args[:fields] if args.key?(:fields)
|
7791
|
-
@reducer = args[:reducer] if args.key?(:reducer)
|
7792
|
-
end
|
7793
|
-
end
|
7794
|
-
|
7795
|
-
# The MashQuery for searching data, set both queries for Join Operation.
|
7796
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery
|
7797
|
-
include Google::Apis::Core::Hashable
|
7798
|
-
|
7799
|
-
# The components for constructing MashQuery.
|
7800
|
-
# Corresponds to the JSON property `firstQuery`
|
7801
|
-
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent]
|
7802
|
-
attr_accessor :first_query
|
7803
|
-
|
7804
|
-
# Operation between 2 query
|
7805
|
-
# Corresponds to the JSON property `operationMode`
|
7806
|
-
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode]
|
7807
|
-
attr_accessor :operation_mode
|
7808
|
-
|
7809
|
-
# The components for constructing MashQuery.
|
7810
|
-
# Corresponds to the JSON property `secondQuery`
|
7811
|
-
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent]
|
7812
|
-
attr_accessor :second_query
|
7813
|
-
|
7814
|
-
def initialize(**args)
|
7815
|
-
update!(**args)
|
7816
|
-
end
|
7817
|
-
|
7818
|
-
# Update properties of this object
|
7819
|
-
def update!(**args)
|
7820
|
-
@first_query = args[:first_query] if args.key?(:first_query)
|
7821
|
-
@operation_mode = args[:operation_mode] if args.key?(:operation_mode)
|
7822
|
-
@second_query = args[:second_query] if args.key?(:second_query)
|
7823
|
-
end
|
7824
|
-
end
|
7825
|
-
|
7826
|
-
# The components for constructing MashQuery.
|
7827
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent
|
7828
|
-
include Google::Apis::Core::Hashable
|
7829
|
-
|
7830
|
-
# Required. The metric for monarch.BorgTask.
|
7831
|
-
# Corresponds to the JSON property `borgTaskMetric`
|
7832
|
-
# @return [String]
|
7833
|
-
attr_accessor :borg_task_metric
|
7834
|
-
|
7835
|
-
# Optional. optional, filters on fetched data, "metric:client_id" not supported.
|
7836
|
-
# Corresponds to the JSON property `dataFilters`
|
7837
|
-
# @return [Array<String>]
|
7838
|
-
attr_accessor :data_filters
|
7839
|
-
|
7840
|
-
# Optional. optional, filters for Fetch Raw, "metric:client_id" not supported.
|
7841
|
-
# Corresponds to the JSON property `fetchFilters`
|
7842
|
-
# @return [Array<String>]
|
7843
|
-
attr_accessor :fetch_filters
|
7844
|
-
|
7845
|
-
# MashQuery GroupBy parameters.
|
7846
|
-
# Corresponds to the JSON property `groupBy`
|
7847
|
-
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy]
|
7848
|
-
attr_accessor :group_by
|
7849
|
-
|
7850
|
-
# Optional. optional, Point Operation on single query or joined query.
|
7851
|
-
# Corresponds to the JSON property `pointOperation`
|
7852
|
-
# @return [String]
|
7853
|
-
attr_accessor :point_operation
|
7854
|
-
|
7855
|
-
# Required. Window time delta.
|
7856
|
-
# Corresponds to the JSON property `timeDelta`
|
7857
|
-
# @return [String]
|
7858
|
-
attr_accessor :time_delta
|
7859
|
-
|
7860
|
-
def initialize(**args)
|
7861
|
-
update!(**args)
|
7862
|
-
end
|
7863
|
-
|
7864
|
-
# Update properties of this object
|
7865
|
-
def update!(**args)
|
7866
|
-
@borg_task_metric = args[:borg_task_metric] if args.key?(:borg_task_metric)
|
7867
|
-
@data_filters = args[:data_filters] if args.key?(:data_filters)
|
7868
|
-
@fetch_filters = args[:fetch_filters] if args.key?(:fetch_filters)
|
7869
|
-
@group_by = args[:group_by] if args.key?(:group_by)
|
7870
|
-
@point_operation = args[:point_operation] if args.key?(:point_operation)
|
7871
|
-
@time_delta = args[:time_delta] if args.key?(:time_delta)
|
7872
|
-
end
|
7873
|
-
end
|
7874
|
-
|
7875
|
-
# Operation between 2 query
|
7876
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode
|
7877
|
-
include Google::Apis::Core::Hashable
|
7878
|
-
|
7879
|
-
# Join Operation
|
7880
|
-
# Corresponds to the JSON property `joinConfig`
|
7881
|
-
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig]
|
7882
|
-
attr_accessor :join_config
|
7883
|
-
|
7884
|
-
# Optional. optional operation types.
|
7885
|
-
# Corresponds to the JSON property `operationType`
|
7886
|
-
# @return [String]
|
7887
|
-
attr_accessor :operation_type
|
7888
|
-
|
7889
|
-
# Union operation
|
7890
|
-
# Corresponds to the JSON property `unionConfig`
|
7891
|
-
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig]
|
7892
|
-
attr_accessor :union_config
|
7893
|
-
|
7894
|
-
def initialize(**args)
|
7895
|
-
update!(**args)
|
7896
|
-
end
|
7897
|
-
|
7898
|
-
# Update properties of this object
|
7899
|
-
def update!(**args)
|
7900
|
-
@join_config = args[:join_config] if args.key?(:join_config)
|
7901
|
-
@operation_type = args[:operation_type] if args.key?(:operation_type)
|
7902
|
-
@union_config = args[:union_config] if args.key?(:union_config)
|
7903
|
-
end
|
7904
|
-
end
|
7905
|
-
|
7906
|
-
# Join Operation
|
7907
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig
|
7908
|
-
include Google::Apis::Core::Hashable
|
7909
|
-
|
7910
|
-
def initialize(**args)
|
7911
|
-
update!(**args)
|
7912
|
-
end
|
7913
|
-
|
7914
|
-
# Update properties of this object
|
7915
|
-
def update!(**args)
|
7916
|
-
end
|
7917
|
-
end
|
7918
|
-
|
7919
|
-
# Union operation
|
7920
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig
|
7921
|
-
include Google::Apis::Core::Hashable
|
7922
|
-
|
7923
|
-
# Optional. optional, reduce function
|
7924
|
-
# Corresponds to the JSON property `reducer`
|
7925
|
-
# @return [String]
|
7926
|
-
attr_accessor :reducer
|
7927
|
-
|
7928
|
-
def initialize(**args)
|
7929
|
-
update!(**args)
|
7930
|
-
end
|
7931
|
-
|
7932
|
-
# Update properties of this object
|
7933
|
-
def update!(**args)
|
7934
|
-
@reducer = args[:reducer] if args.key?(:reducer)
|
7935
|
-
end
|
7936
|
-
end
|
7937
|
-
|
7938
|
-
# The response for getting Execution stats.
|
7939
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse
|
7940
|
-
include Google::Apis::Core::Hashable
|
7941
|
-
|
7942
|
-
# Data used for Aplos charts that accept multiple Series.
|
7943
|
-
# Corresponds to the JSON property `aplosSeriesListData`
|
7944
|
-
# @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListData]
|
7945
|
-
attr_accessor :aplos_series_list_data
|
7946
|
-
|
7947
|
-
# The generic data format returned from all connectors.
|
7948
|
-
# Corresponds to the JSON property `tableData`
|
7949
|
-
# @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTabularData]
|
7950
|
-
attr_accessor :table_data
|
7951
|
-
|
7952
|
-
def initialize(**args)
|
7953
|
-
update!(**args)
|
7954
|
-
end
|
7955
|
-
|
7956
|
-
# Update properties of this object
|
7957
|
-
def update!(**args)
|
7958
|
-
@aplos_series_list_data = args[:aplos_series_list_data] if args.key?(:aplos_series_list_data)
|
7959
|
-
@table_data = args[:table_data] if args.key?(:table_data)
|
7960
|
-
end
|
7961
|
-
end
|
7962
|
-
|
7963
7539
|
# The task that is next in line to be executed, if the condition specified
|
7964
7540
|
# evaluated to true.
|
7965
7541
|
class GoogleCloudIntegrationsV1alphaNextTask
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module IntegrationsV1alpha
|
18
18
|
# Version of the google-apis-integrations_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.5.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.11.
|
22
|
+
GENERATOR_VERSION = "0.11.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230103"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,48 +28,6 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
-
class EnterpriseCrmCardsCellValue
|
32
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
-
|
34
|
-
include Google::Apis::Core::JsonObjectSupport
|
35
|
-
end
|
36
|
-
|
37
|
-
class EnterpriseCrmCardsRow
|
38
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
-
|
40
|
-
include Google::Apis::Core::JsonObjectSupport
|
41
|
-
end
|
42
|
-
|
43
|
-
class EnterpriseCrmCardsTabularData
|
44
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
-
|
46
|
-
include Google::Apis::Core::JsonObjectSupport
|
47
|
-
end
|
48
|
-
|
49
|
-
class EnterpriseCrmCardsTemplatesAplosSeriesData
|
50
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
-
|
52
|
-
include Google::Apis::Core::JsonObjectSupport
|
53
|
-
end
|
54
|
-
|
55
|
-
class EnterpriseCrmCardsTemplatesAplosSeriesDataRow
|
56
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
-
|
58
|
-
include Google::Apis::Core::JsonObjectSupport
|
59
|
-
end
|
60
|
-
|
61
|
-
class EnterpriseCrmCardsTemplatesAplosSeriesListData
|
62
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
-
|
64
|
-
include Google::Apis::Core::JsonObjectSupport
|
65
|
-
end
|
66
|
-
|
67
|
-
class EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries
|
68
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
-
|
70
|
-
include Google::Apis::Core::JsonObjectSupport
|
71
|
-
end
|
72
|
-
|
73
31
|
class EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam
|
74
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
33
|
|
@@ -1234,54 +1192,6 @@ module Google
|
|
1234
1192
|
include Google::Apis::Core::JsonObjectSupport
|
1235
1193
|
end
|
1236
1194
|
|
1237
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest
|
1238
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1239
|
-
|
1240
|
-
include Google::Apis::Core::JsonObjectSupport
|
1241
|
-
end
|
1242
|
-
|
1243
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy
|
1244
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1245
|
-
|
1246
|
-
include Google::Apis::Core::JsonObjectSupport
|
1247
|
-
end
|
1248
|
-
|
1249
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery
|
1250
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1251
|
-
|
1252
|
-
include Google::Apis::Core::JsonObjectSupport
|
1253
|
-
end
|
1254
|
-
|
1255
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent
|
1256
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1257
|
-
|
1258
|
-
include Google::Apis::Core::JsonObjectSupport
|
1259
|
-
end
|
1260
|
-
|
1261
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode
|
1262
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1263
|
-
|
1264
|
-
include Google::Apis::Core::JsonObjectSupport
|
1265
|
-
end
|
1266
|
-
|
1267
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig
|
1268
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1269
|
-
|
1270
|
-
include Google::Apis::Core::JsonObjectSupport
|
1271
|
-
end
|
1272
|
-
|
1273
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig
|
1274
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1275
|
-
|
1276
|
-
include Google::Apis::Core::JsonObjectSupport
|
1277
|
-
end
|
1278
|
-
|
1279
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse
|
1280
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1281
|
-
|
1282
|
-
include Google::Apis::Core::JsonObjectSupport
|
1283
|
-
end
|
1284
|
-
|
1285
1195
|
class GoogleCloudIntegrationsV1alphaNextTask
|
1286
1196
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1287
1197
|
|
@@ -1529,70 +1439,6 @@ module Google
|
|
1529
1439
|
end
|
1530
1440
|
end
|
1531
1441
|
|
1532
|
-
class EnterpriseCrmCardsCellValue
|
1533
|
-
# @private
|
1534
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1535
|
-
property :boolean_value, as: 'booleanValue'
|
1536
|
-
property :double_value, as: 'doubleValue'
|
1537
|
-
property :empty, as: 'empty', class: Google::Apis::IntegrationsV1alpha::GoogleProtobufEmpty, decorator: Google::Apis::IntegrationsV1alpha::GoogleProtobufEmpty::Representation
|
1538
|
-
|
1539
|
-
property :long_value, :numeric_string => true, as: 'longValue'
|
1540
|
-
property :string_value, as: 'stringValue'
|
1541
|
-
end
|
1542
|
-
end
|
1543
|
-
|
1544
|
-
class EnterpriseCrmCardsRow
|
1545
|
-
# @private
|
1546
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1547
|
-
collection :cells, as: 'cells', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue::Representation
|
1548
|
-
|
1549
|
-
end
|
1550
|
-
end
|
1551
|
-
|
1552
|
-
class EnterpriseCrmCardsTabularData
|
1553
|
-
# @private
|
1554
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1555
|
-
collection :headers, as: 'headers'
|
1556
|
-
collection :rows, as: 'rows', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsRow, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsRow::Representation
|
1557
|
-
|
1558
|
-
end
|
1559
|
-
end
|
1560
|
-
|
1561
|
-
class EnterpriseCrmCardsTemplatesAplosSeriesData
|
1562
|
-
# @private
|
1563
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1564
|
-
collection :rows, as: 'rows', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesDataRow, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesDataRow::Representation
|
1565
|
-
|
1566
|
-
end
|
1567
|
-
end
|
1568
|
-
|
1569
|
-
class EnterpriseCrmCardsTemplatesAplosSeriesDataRow
|
1570
|
-
# @private
|
1571
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1572
|
-
property :x, as: 'x', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue::Representation
|
1573
|
-
|
1574
|
-
property :y, as: 'y', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue::Representation
|
1575
|
-
|
1576
|
-
end
|
1577
|
-
end
|
1578
|
-
|
1579
|
-
class EnterpriseCrmCardsTemplatesAplosSeriesListData
|
1580
|
-
# @private
|
1581
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1582
|
-
collection :series, as: 'series', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries::Representation
|
1583
|
-
|
1584
|
-
end
|
1585
|
-
end
|
1586
|
-
|
1587
|
-
class EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries
|
1588
|
-
# @private
|
1589
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1590
|
-
property :data, as: 'data', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesData, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesData::Representation
|
1591
|
-
|
1592
|
-
property :name, as: 'name'
|
1593
|
-
end
|
1594
|
-
end
|
1595
|
-
|
1596
1442
|
class EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam
|
1597
1443
|
# @private
|
1598
1444
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3710,86 +3556,6 @@ module Google
|
|
3710
3556
|
end
|
3711
3557
|
end
|
3712
3558
|
|
3713
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest
|
3714
|
-
# @private
|
3715
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
3716
|
-
property :duration, as: 'duration'
|
3717
|
-
property :end_time, as: 'endTime'
|
3718
|
-
property :mash_query, as: 'mashQuery', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery::Representation
|
3719
|
-
|
3720
|
-
property :metric_field_table, as: 'metricFieldTable'
|
3721
|
-
property :output_period, as: 'outputPeriod'
|
3722
|
-
property :response_template, as: 'responseTemplate'
|
3723
|
-
end
|
3724
|
-
end
|
3725
|
-
|
3726
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy
|
3727
|
-
# @private
|
3728
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
3729
|
-
collection :fields, as: 'fields'
|
3730
|
-
property :reducer, as: 'reducer'
|
3731
|
-
end
|
3732
|
-
end
|
3733
|
-
|
3734
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery
|
3735
|
-
# @private
|
3736
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
3737
|
-
property :first_query, as: 'firstQuery', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent::Representation
|
3738
|
-
|
3739
|
-
property :operation_mode, as: 'operationMode', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode::Representation
|
3740
|
-
|
3741
|
-
property :second_query, as: 'secondQuery', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent::Representation
|
3742
|
-
|
3743
|
-
end
|
3744
|
-
end
|
3745
|
-
|
3746
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent
|
3747
|
-
# @private
|
3748
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
3749
|
-
property :borg_task_metric, as: 'borgTaskMetric'
|
3750
|
-
collection :data_filters, as: 'dataFilters'
|
3751
|
-
collection :fetch_filters, as: 'fetchFilters'
|
3752
|
-
property :group_by, as: 'groupBy', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy::Representation
|
3753
|
-
|
3754
|
-
property :point_operation, as: 'pointOperation'
|
3755
|
-
property :time_delta, as: 'timeDelta'
|
3756
|
-
end
|
3757
|
-
end
|
3758
|
-
|
3759
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode
|
3760
|
-
# @private
|
3761
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
3762
|
-
property :join_config, as: 'joinConfig', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig::Representation
|
3763
|
-
|
3764
|
-
property :operation_type, as: 'operationType'
|
3765
|
-
property :union_config, as: 'unionConfig', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig::Representation
|
3766
|
-
|
3767
|
-
end
|
3768
|
-
end
|
3769
|
-
|
3770
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig
|
3771
|
-
# @private
|
3772
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
3773
|
-
end
|
3774
|
-
end
|
3775
|
-
|
3776
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig
|
3777
|
-
# @private
|
3778
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
3779
|
-
property :reducer, as: 'reducer'
|
3780
|
-
end
|
3781
|
-
end
|
3782
|
-
|
3783
|
-
class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse
|
3784
|
-
# @private
|
3785
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
3786
|
-
property :aplos_series_list_data, as: 'aplosSeriesListData', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListData, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListData::Representation
|
3787
|
-
|
3788
|
-
property :table_data, as: 'tableData', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTabularData, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTabularData::Representation
|
3789
|
-
|
3790
|
-
end
|
3791
|
-
end
|
3792
|
-
|
3793
3559
|
class GoogleCloudIntegrationsV1alphaNextTask
|
3794
3560
|
# @private
|
3795
3561
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -755,39 +755,6 @@ module Google
|
|
755
755
|
execute_or_queue_command(command, &block)
|
756
756
|
end
|
757
757
|
|
758
|
-
# Get execution stats
|
759
|
-
# @param [String] parent
|
760
|
-
# Required. The parent resource name: `parent=projects/*/locations/*`.
|
761
|
-
# @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest] google_cloud_integrations_v1alpha_monitor_execution_stats_request_object
|
762
|
-
# @param [String] fields
|
763
|
-
# Selector specifying which fields to include in a partial response.
|
764
|
-
# @param [String] quota_user
|
765
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
766
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
767
|
-
# @param [Google::Apis::RequestOptions] options
|
768
|
-
# Request-specific options
|
769
|
-
#
|
770
|
-
# @yield [result, err] Result & error if block supplied
|
771
|
-
# @yieldparam result [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse] parsed result object
|
772
|
-
# @yieldparam err [StandardError] error object if request failed
|
773
|
-
#
|
774
|
-
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse]
|
775
|
-
#
|
776
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
777
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
778
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
779
|
-
def monitorexecutionstats_project_location_integration(parent, google_cloud_integrations_v1alpha_monitor_execution_stats_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
780
|
-
command = make_simple_command(:post, 'v1alpha/{+parent}:monitorexecutionstats', options)
|
781
|
-
command.request_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest::Representation
|
782
|
-
command.request_object = google_cloud_integrations_v1alpha_monitor_execution_stats_request_object
|
783
|
-
command.response_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse::Representation
|
784
|
-
command.response_class = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse
|
785
|
-
command.params['parent'] = parent unless parent.nil?
|
786
|
-
command.query['fields'] = fields unless fields.nil?
|
787
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
788
|
-
execute_or_queue_command(command, &block)
|
789
|
-
end
|
790
|
-
|
791
758
|
# Schedules an integration for execution by passing the trigger id and the
|
792
759
|
# scheduled time in the request body.
|
793
760
|
# @param [String] name
|
@@ -1926,39 +1893,6 @@ module Google
|
|
1926
1893
|
execute_or_queue_command(command, &block)
|
1927
1894
|
end
|
1928
1895
|
|
1929
|
-
# Get execution stats
|
1930
|
-
# @param [String] parent
|
1931
|
-
# Required. The parent resource name: `parent=projects/*/locations/*`.
|
1932
|
-
# @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest] google_cloud_integrations_v1alpha_monitor_execution_stats_request_object
|
1933
|
-
# @param [String] fields
|
1934
|
-
# Selector specifying which fields to include in a partial response.
|
1935
|
-
# @param [String] quota_user
|
1936
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1937
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1938
|
-
# @param [Google::Apis::RequestOptions] options
|
1939
|
-
# Request-specific options
|
1940
|
-
#
|
1941
|
-
# @yield [result, err] Result & error if block supplied
|
1942
|
-
# @yieldparam result [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse] parsed result object
|
1943
|
-
# @yieldparam err [StandardError] error object if request failed
|
1944
|
-
#
|
1945
|
-
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse]
|
1946
|
-
#
|
1947
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1948
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1949
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1950
|
-
def monitorexecutionstats_project_location_product_integration(parent, google_cloud_integrations_v1alpha_monitor_execution_stats_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1951
|
-
command = make_simple_command(:post, 'v1alpha/{+parent}:monitorexecutionstats', options)
|
1952
|
-
command.request_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest::Representation
|
1953
|
-
command.request_object = google_cloud_integrations_v1alpha_monitor_execution_stats_request_object
|
1954
|
-
command.response_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse::Representation
|
1955
|
-
command.response_class = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse
|
1956
|
-
command.params['parent'] = parent unless parent.nil?
|
1957
|
-
command.query['fields'] = fields unless fields.nil?
|
1958
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1959
|
-
execute_or_queue_command(command, &block)
|
1960
|
-
end
|
1961
|
-
|
1962
1896
|
# Schedules an integration for execution by passing the trigger id and the
|
1963
1897
|
# scheduled time in the request body.
|
1964
1898
|
# @param [String] name
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-integrations_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-01-
|
11
|
+
date: 2023-01-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-integrations_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1alpha/v0.5.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-integrations_v1alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.4.2
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Application Integration API V1alpha
|