google-apis-playcustomapp_v1 0.5.0 → 0.8.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: 76cfcd474adf9335e7b9358a53b5510eb7475bf092091fc6b9708ae674bc11ec
|
4
|
+
data.tar.gz: e2b7c35c508d8051f2eb242befc61bd86571a897dc3dcc151e5d123af6af7091
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 436a80725a12dd72923a89ace05afe8713d6cbc21ee98fd3d1c39d04aaec4cc9cdab7c8cc9698f61cfa6c8f68734735cbdb19e6ebbd36dd9889b14d1cc51b996
|
7
|
+
data.tar.gz: 13f85cb3e669710af4623976e5162cf158d5e1615e4df299bf4837062cde0ad1aa121827fc615ec283816954a0c1a58184ad399bf3015cd79197d0ab3e3b15c1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-playcustomapp_v1
|
2
2
|
|
3
|
+
### v0.8.0 (2022-06-03)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.5.0
|
6
|
+
|
7
|
+
### v0.7.0 (2021-12-14)
|
8
|
+
|
9
|
+
* Unspecified changes
|
10
|
+
|
11
|
+
### v0.6.0 (2021-10-26)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20211022
|
14
|
+
* Unspecified changes
|
15
|
+
|
3
16
|
### v0.5.0 (2021-06-29)
|
4
17
|
|
5
18
|
* Regenerated using generator version 0.4.0
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/playcustomapp_v1"
|
|
51
51
|
client = Google::Apis::PlaycustomappV1::PlaycustomappService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
|
|
60
60
|
|
61
61
|
More detailed descriptions of the Google simple REST clients are available in two documents.
|
62
62
|
|
63
|
-
* The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/
|
64
|
-
* The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/
|
63
|
+
* The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
|
64
|
+
* The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
|
65
65
|
|
66
66
|
(Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Playcustomapp service in particular.)
|
67
67
|
|
@@ -31,6 +31,16 @@ module Google
|
|
31
31
|
# @return [String]
|
32
32
|
attr_accessor :language_code
|
33
33
|
|
34
|
+
# Organizations to which the custom app should be made available. If the request
|
35
|
+
# contains any organizations, then the app will be restricted to only these
|
36
|
+
# organizations. To support the organization linked to the developer account,
|
37
|
+
# the organization ID should be provided explicitly together with other
|
38
|
+
# organizations. If no organizations are provided, then the app is only
|
39
|
+
# available to the organization linked to the developer account.
|
40
|
+
# Corresponds to the JSON property `organizations`
|
41
|
+
# @return [Array<Google::Apis::PlaycustomappV1::Organization>]
|
42
|
+
attr_accessor :organizations
|
43
|
+
|
34
44
|
# Output only. Package name of the created Android app. Only present in the API
|
35
45
|
# response.
|
36
46
|
# Corresponds to the JSON property `packageName`
|
@@ -49,10 +59,37 @@ module Google
|
|
49
59
|
# Update properties of this object
|
50
60
|
def update!(**args)
|
51
61
|
@language_code = args[:language_code] if args.key?(:language_code)
|
62
|
+
@organizations = args[:organizations] if args.key?(:organizations)
|
52
63
|
@package_name = args[:package_name] if args.key?(:package_name)
|
53
64
|
@title = args[:title] if args.key?(:title)
|
54
65
|
end
|
55
66
|
end
|
67
|
+
|
68
|
+
# Represents an organization that can access a custom app.
|
69
|
+
class Organization
|
70
|
+
include Google::Apis::Core::Hashable
|
71
|
+
|
72
|
+
# Required. ID of the organization.
|
73
|
+
# Corresponds to the JSON property `organizationId`
|
74
|
+
# @return [String]
|
75
|
+
attr_accessor :organization_id
|
76
|
+
|
77
|
+
# Optional. A human-readable name of the organization, to help recognize the
|
78
|
+
# organization.
|
79
|
+
# Corresponds to the JSON property `organizationName`
|
80
|
+
# @return [String]
|
81
|
+
attr_accessor :organization_name
|
82
|
+
|
83
|
+
def initialize(**args)
|
84
|
+
update!(**args)
|
85
|
+
end
|
86
|
+
|
87
|
+
# Update properties of this object
|
88
|
+
def update!(**args)
|
89
|
+
@organization_id = args[:organization_id] if args.key?(:organization_id)
|
90
|
+
@organization_name = args[:organization_name] if args.key?(:organization_name)
|
91
|
+
end
|
92
|
+
end
|
56
93
|
end
|
57
94
|
end
|
58
95
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module PlaycustomappV1
|
18
18
|
# Version of the google-apis-playcustomapp_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.5.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211022"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,14 +28,30 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class Organization
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class CustomApp
|
32
38
|
# @private
|
33
39
|
class Representation < Google::Apis::Core::JsonRepresentation
|
34
40
|
property :language_code, as: 'languageCode'
|
41
|
+
collection :organizations, as: 'organizations', class: Google::Apis::PlaycustomappV1::Organization, decorator: Google::Apis::PlaycustomappV1::Organization::Representation
|
42
|
+
|
35
43
|
property :package_name, as: 'packageName'
|
36
44
|
property :title, as: 'title'
|
37
45
|
end
|
38
46
|
end
|
47
|
+
|
48
|
+
class Organization
|
49
|
+
# @private
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
51
|
+
property :organization_id, as: 'organizationId'
|
52
|
+
property :organization_name, as: 'organizationName'
|
53
|
+
end
|
54
|
+
end
|
39
55
|
end
|
40
56
|
end
|
41
57
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-playcustomapp_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.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:
|
11
|
+
date: 2022-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.5'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.5'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -57,9 +57,9 @@ licenses:
|
|
57
57
|
- Apache-2.0
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
|
-
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-playcustomapp_v1/v0.
|
62
|
-
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/
|
60
|
+
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playcustomapp_v1/CHANGELOG.md
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-playcustomapp_v1/v0.8.0
|
62
|
+
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playcustomapp_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
65
65
|
require_paths:
|
@@ -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.3.14
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Play Custom App Publishing API V1
|