google-apis-ideahub_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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 786c87ace9c02591f11ab81a511645c202da148245277a4ce76a5cfb1945fb14
|
4
|
+
data.tar.gz: c053bc618706b3e2828e205835471df2252f943a095487337f0ec3859e5e394c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c96fa8760c5b43140866277dd4d6af0a1c8750258bc4454ace0ef05e297f75adc6485faefb7a329f7295bb5e4f39f17ca327dbc1ce4d3b846e20ac935a4b9356
|
7
|
+
data.tar.gz: e41b72d49f4079436bee01624864d772b6b07fe637f252eed6c1e23e60cfdfd1e9ea842668d8f1c6d607f83df1b49d118ba15c09921a721f89eefa64927cf52f
|
data/CHANGELOG.md
CHANGED
@@ -84,9 +84,9 @@ module Google
|
|
84
84
|
include Google::Apis::Core::Hashable
|
85
85
|
|
86
86
|
# The Idea IDs for this entry.
|
87
|
-
# Corresponds to the JSON property `
|
87
|
+
# Corresponds to the JSON property `ideas`
|
88
88
|
# @return [Array<String>]
|
89
|
-
attr_accessor :
|
89
|
+
attr_accessor :ideas
|
90
90
|
|
91
91
|
# Unique identifier for the idea activity. Format: platforms/`platform`/
|
92
92
|
# properties/`property`/ideaActivities/`idea_activity`
|
@@ -95,9 +95,9 @@ module Google
|
|
95
95
|
attr_accessor :name
|
96
96
|
|
97
97
|
# The Topic IDs for this entry.
|
98
|
-
# Corresponds to the JSON property `
|
98
|
+
# Corresponds to the JSON property `topics`
|
99
99
|
# @return [Array<String>]
|
100
|
-
attr_accessor :
|
100
|
+
attr_accessor :topics
|
101
101
|
|
102
102
|
# The type of activity performed.
|
103
103
|
# Corresponds to the JSON property `type`
|
@@ -115,9 +115,9 @@ module Google
|
|
115
115
|
|
116
116
|
# Update properties of this object
|
117
117
|
def update!(**args)
|
118
|
-
@
|
118
|
+
@ideas = args[:ideas] if args.key?(:ideas)
|
119
119
|
@name = args[:name] if args.key?(:name)
|
120
|
-
@
|
120
|
+
@topics = args[:topics] if args.key?(:topics)
|
121
121
|
@type = args[:type] if args.key?(:type)
|
122
122
|
@uri = args[:uri] if args.key?(:uri)
|
123
123
|
end
|
@@ -224,6 +224,11 @@ module Google
|
|
224
224
|
# @return [String]
|
225
225
|
attr_accessor :mid
|
226
226
|
|
227
|
+
# Unique identifier for the topic. Format: topics/`topic`
|
228
|
+
# Corresponds to the JSON property `name`
|
229
|
+
# @return [String]
|
230
|
+
attr_accessor :name
|
231
|
+
|
227
232
|
def initialize(**args)
|
228
233
|
update!(**args)
|
229
234
|
end
|
@@ -232,6 +237,7 @@ module Google
|
|
232
237
|
def update!(**args)
|
233
238
|
@display_name = args[:display_name] if args.key?(:display_name)
|
234
239
|
@mid = args[:mid] if args.key?(:mid)
|
240
|
+
@name = args[:name] if args.key?(:name)
|
235
241
|
end
|
236
242
|
end
|
237
243
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module IdeahubV1alpha
|
18
18
|
# Version of the google-apis-ideahub_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
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210728"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -91,9 +91,9 @@ module Google
|
|
91
91
|
class GoogleSearchIdeahubV1alphaIdeaActivity
|
92
92
|
# @private
|
93
93
|
class Representation < Google::Apis::Core::JsonRepresentation
|
94
|
-
collection :
|
94
|
+
collection :ideas, as: 'ideas'
|
95
95
|
property :name, as: 'name'
|
96
|
-
collection :
|
96
|
+
collection :topics, as: 'topics'
|
97
97
|
property :type, as: 'type'
|
98
98
|
property :uri, as: 'uri'
|
99
99
|
end
|
@@ -131,6 +131,7 @@ module Google
|
|
131
131
|
class Representation < Google::Apis::Core::JsonRepresentation
|
132
132
|
property :display_name, as: 'displayName'
|
133
133
|
property :mid, as: 'mid'
|
134
|
+
property :name, as: 'name'
|
134
135
|
end
|
135
136
|
end
|
136
137
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-ideahub_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: 2021-
|
11
|
+
date: 2021-08-02 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/master/generated/google-apis-ideahub_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-ideahub_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-ideahub_v1alpha/v0.5.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-ideahub_v1alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|