google-apis-oslogin_v1beta 0.1.0 → 0.6.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7efee779469679e84eb05351cff845464ec3bff4789577f87fb3f557ff60316
|
4
|
+
data.tar.gz: 57634ef1ac42e40a9b17cdf7519a7db86c5eb8cddf995f874d1e0a4482f5202c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 396498d4e21e0528f47a384f170e7a8553670475fa29f30207585e245b2c0d1eeb1e92352bc903aa6ab30bb21ba6a0ae37674fc4e2a32056b024ed37eb57e2a3
|
7
|
+
data.tar.gz: 5e953d8ae5d2027e267ca0d50df0b2ee3759eaab47aab4a62ba0a7057738d56a1f7da07014999b959f0b8fde74d4ac438b8ffd9faf600dfd8ba2270010f057bf
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-oslogin_v1beta
|
2
2
|
|
3
|
+
### v0.6.0 (2021-06-24)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.3.0
|
6
|
+
|
7
|
+
### v0.5.0 (2021-05-19)
|
8
|
+
|
9
|
+
* Unspecified changes
|
10
|
+
|
11
|
+
### v0.4.0 (2021-05-08)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210501
|
14
|
+
|
15
|
+
### v0.3.0 (2021-04-01)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210329
|
18
|
+
* Regenerated using generator version 0.2.0
|
19
|
+
|
20
|
+
### v0.2.0 (2021-03-04)
|
21
|
+
|
22
|
+
* Regenerated using generator version 0.1.2
|
23
|
+
|
3
24
|
### v0.1.0 (2021-01-07)
|
4
25
|
|
5
26
|
* Regenerated using generator version 0.1.1
|
@@ -29,7 +29,7 @@ module Google
|
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'V1beta'
|
31
31
|
|
32
|
-
#
|
32
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
33
33
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
34
34
|
|
35
35
|
# View your data across Google Cloud Platform services
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module OsloginV1beta
|
18
18
|
# Version of the google-apis-oslogin_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.6.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210501"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -57,6 +57,8 @@ module Google
|
|
57
57
|
# The project ID of the Google Cloud Platform project.
|
58
58
|
# @param [String] system_id
|
59
59
|
# A system ID for filtering the results of the request.
|
60
|
+
# @param [String] view
|
61
|
+
# The view configures whether to retrieve security keys information.
|
60
62
|
# @param [String] fields
|
61
63
|
# Selector specifying which fields to include in a partial response.
|
62
64
|
# @param [String] quota_user
|
@@ -74,13 +76,14 @@ module Google
|
|
74
76
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
75
77
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
76
78
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
77
|
-
def get_user_login_profile(name, project_id: nil, system_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
79
|
+
def get_user_login_profile(name, project_id: nil, system_id: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
78
80
|
command = make_simple_command(:get, 'v1beta/{+name}/loginProfile', options)
|
79
81
|
command.response_representation = Google::Apis::OsloginV1beta::LoginProfile::Representation
|
80
82
|
command.response_class = Google::Apis::OsloginV1beta::LoginProfile
|
81
83
|
command.params['name'] = name unless name.nil?
|
82
84
|
command.query['projectId'] = project_id unless project_id.nil?
|
83
85
|
command.query['systemId'] = system_id unless system_id.nil?
|
86
|
+
command.query['view'] = view unless view.nil?
|
84
87
|
command.query['fields'] = fields unless fields.nil?
|
85
88
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
86
89
|
execute_or_queue_command(command, &block)
|
@@ -94,6 +97,8 @@ module Google
|
|
94
97
|
# @param [Google::Apis::OsloginV1beta::SshPublicKey] ssh_public_key_object
|
95
98
|
# @param [String] project_id
|
96
99
|
# The project ID of the Google Cloud Platform project.
|
100
|
+
# @param [String] view
|
101
|
+
# The view configures whether to retrieve security keys information.
|
97
102
|
# @param [String] fields
|
98
103
|
# Selector specifying which fields to include in a partial response.
|
99
104
|
# @param [String] quota_user
|
@@ -111,7 +116,7 @@ module Google
|
|
111
116
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
112
117
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
113
118
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
114
|
-
def import_user_ssh_public_key(parent, ssh_public_key_object = nil, project_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
119
|
+
def import_user_ssh_public_key(parent, ssh_public_key_object = nil, project_id: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
115
120
|
command = make_simple_command(:post, 'v1beta/{+parent}:importSshPublicKey', options)
|
116
121
|
command.request_representation = Google::Apis::OsloginV1beta::SshPublicKey::Representation
|
117
122
|
command.request_object = ssh_public_key_object
|
@@ -119,6 +124,7 @@ module Google
|
|
119
124
|
command.response_class = Google::Apis::OsloginV1beta::ImportSshPublicKeyResponse
|
120
125
|
command.params['parent'] = parent unless parent.nil?
|
121
126
|
command.query['projectId'] = project_id unless project_id.nil?
|
127
|
+
command.query['view'] = view unless view.nil?
|
122
128
|
command.query['fields'] = fields unless fields.nil?
|
123
129
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
124
130
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-oslogin_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.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-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.3'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.3'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Cloud OS Login API V1beta. Simple
|
28
34
|
REST clients are Ruby client libraries that provide access to Google services via
|
29
35
|
their HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-oslogin_v1beta/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-oslogin_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-oslogin_v1beta/v0.6.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-oslogin_v1beta
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -62,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
68
|
requirements:
|
63
69
|
- - ">="
|
64
70
|
- !ruby/object:Gem::Version
|
65
|
-
version: '2.
|
71
|
+
version: '2.5'
|
66
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
73
|
requirements:
|
68
74
|
- - ">="
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for Cloud OS Login API V1beta
|