Skip to content

Commit bf2d245

Browse files
PlayFab SDK TeamPlayFab SDK Team
authored andcommitted
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#230529
2 parents 261d508 + 7195e7b commit bf2d245

File tree

21 files changed

+127
-31
lines changed

21 files changed

+127
-31
lines changed

AndroidStudioExample/app/packageMe.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
55
popd
66

77
cd target
8-
Copy-Item client-sdk-0.189.230512.jar -Destination ../../builds/client-sdk-0.189.230512.jar
8+
Copy-Item client-sdk-0.190.230529.jar -Destination ../../builds/client-sdk-0.190.230529.jar

AndroidStudioExample/app/packageMe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ mkdir -p ./builds
77
popd
88

99
cd target
10-
cp client-sdk-0.189.230512.jar ../../builds/client-sdk-0.189.230512.jar
10+
cp client-sdk-0.190.230529.jar ../../builds/client-sdk-0.190.230529.jar

AndroidStudioExample/app/src/main/java/com/playfab/PlayFabMultiplayerModels.java

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ public static enum AzureVmFamily {
7070
Fsv2,
7171
Dasv4,
7272
Dav4,
73+
Dadsv5,
7374
Eav4,
7475
Easv4,
7576
Ev4,
@@ -117,6 +118,10 @@ public static enum AzureVmSize {
117118
Standard_D4a_v4,
118119
Standard_D8a_v4,
119120
Standard_D16a_v4,
121+
Standard_D2ads_v5,
122+
Standard_D4ads_v5,
123+
Standard_D8ads_v5,
124+
Standard_D16ads_v5,
120125
Standard_E2a_v4,
121126
Standard_E4a_v4,
122127
Standard_E8a_v4,
@@ -1449,12 +1454,14 @@ public static class GetMultiplayerServerDetailsResponse {
14491454
public ArrayList<ConnectedPlayer> ConnectedPlayers;
14501455
/** The fully qualified domain name of the virtual machine that is hosting this multiplayer server. */
14511456
public String FQDN;
1452-
/** The IPv4 address of the virtual machine that is hosting this multiplayer server. */
1457+
/** The public IPv4 address of the virtual machine that is hosting this multiplayer server. */
14531458
public String IPV4Address;
14541459
/** The time (UTC) at which a change in the multiplayer server state was observed. */
14551460
public Date LastStateTransitionTime;
14561461
/** The ports the multiplayer server uses. */
14571462
public ArrayList<Port> Ports;
1463+
/** The list of public Ipv4 addresses associated with the server. */
1464+
public ArrayList<PublicIpAddress> PublicIPV4Addresses;
14581465
/** The region the multiplayer server is located in. */
14591466
public String Region;
14601467
/** The string server ID of the multiplayer server generated by PlayFab. */
@@ -2217,6 +2224,16 @@ public static enum ProtocolType {
22172224
UDP
22182225
}
22192226

2227+
public static class PublicIpAddress {
2228+
/** FQDN of the public IP */
2229+
public String FQDN;
2230+
/** Server IP Address */
2231+
public String IpAddress;
2232+
/** Routing Type of the public IP. */
2233+
public String RoutingType;
2234+
2235+
}
2236+
22202237
public static class QosServer {
22212238
/** The region the QoS server is located in. */
22222239
public String Region;
@@ -2294,12 +2311,14 @@ public static class RequestMultiplayerServerResponse {
22942311
public ArrayList<ConnectedPlayer> ConnectedPlayers;
22952312
/** The fully qualified domain name of the virtual machine that is hosting this multiplayer server. */
22962313
public String FQDN;
2297-
/** The IPv4 address of the virtual machine that is hosting this multiplayer server. */
2314+
/** The public IPv4 address of the virtual machine that is hosting this multiplayer server. */
22982315
public String IPV4Address;
22992316
/** The time (UTC) at which a change in the multiplayer server state was observed. */
23002317
public Date LastStateTransitionTime;
23012318
/** The ports the multiplayer server uses. */
23022319
public ArrayList<Port> Ports;
2320+
/** The list of public Ipv4 addresses associated with the server. */
2321+
public ArrayList<PublicIpAddress> PublicIPV4Addresses;
23032322
/** The region the multiplayer server is located in. */
23042323
public String Region;
23052324
/** The string server ID of the multiplayer server generated by PlayFab. */
@@ -2333,6 +2352,11 @@ public static class RolloverContainerRegistryCredentialsResponse {
23332352

23342353
}
23352354

2355+
public static enum RoutingType {
2356+
Microsoft,
2357+
Internet
2358+
}
2359+
23362360
public static class Schedule {
23372361
/** A short description about this schedule. For example, "Game launch on July 15th". */
23382362
public String Description;

AndroidStudioExample/app/src/main/java/com/playfab/PlayFabSettings.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
import com.playfab.PlayFabErrors.ErrorCallback;
1010

1111
public class PlayFabSettings {
12-
public static String SdkVersion = "0.189.230512";
13-
public static String BuildIdentifier = "adobuild_javasdk_118";
14-
public static String SdkVersionString = "JavaSDK-0.189.230512";
12+
public static String SdkVersion = "0.190.230529";
13+
public static String BuildIdentifier = "adobuild_javasdk_115";
14+
public static String SdkVersionString = "JavaSDK-0.190.230529";
1515

1616
public static Map<String, String> RequestGetParams;
1717
static {

PlayFabClientSDK/packageMe.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
55
popd
66

77
cd target
8-
Copy-Item client-sdk-0.189.230512.jar -Destination ../../builds/client-sdk-0.189.230512.jar
8+
Copy-Item client-sdk-0.190.230529.jar -Destination ../../builds/client-sdk-0.190.230529.jar

PlayFabClientSDK/packageMe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ mkdir -p ./builds
77
popd
88

99
cd target
10-
cp client-sdk-0.189.230512.jar ../../builds/client-sdk-0.189.230512.jar
10+
cp client-sdk-0.190.230529.jar ../../builds/client-sdk-0.190.230529.jar

PlayFabClientSDK/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<!-- GAV & Meta -->
1515
<groupId>com.playfab</groupId>
1616
<artifactId>client-sdk</artifactId>
17-
<version>0.189.230512</version>
17+
<version>0.190.230529</version>
1818
<name>PlayFab Client API</name>
1919
<description>PlayFab is the unified backend platform for games — everything you need to build and operate your game, all in one place, so you can focus on creating and delivering a great player experience. </description>
2020
<url>https://docs.microsoft.com/gaming/playfab/</url>

PlayFabClientSDK/src/main/java/com/playfab/PlayFabMultiplayerModels.java

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ public static enum AzureVmFamily {
7070
Fsv2,
7171
Dasv4,
7272
Dav4,
73+
Dadsv5,
7374
Eav4,
7475
Easv4,
7576
Ev4,
@@ -117,6 +118,10 @@ public static enum AzureVmSize {
117118
Standard_D4a_v4,
118119
Standard_D8a_v4,
119120
Standard_D16a_v4,
121+
Standard_D2ads_v5,
122+
Standard_D4ads_v5,
123+
Standard_D8ads_v5,
124+
Standard_D16ads_v5,
120125
Standard_E2a_v4,
121126
Standard_E4a_v4,
122127
Standard_E8a_v4,
@@ -1449,12 +1454,14 @@ public static class GetMultiplayerServerDetailsResponse {
14491454
public ArrayList<ConnectedPlayer> ConnectedPlayers;
14501455
/** The fully qualified domain name of the virtual machine that is hosting this multiplayer server. */
14511456
public String FQDN;
1452-
/** The IPv4 address of the virtual machine that is hosting this multiplayer server. */
1457+
/** The public IPv4 address of the virtual machine that is hosting this multiplayer server. */
14531458
public String IPV4Address;
14541459
/** The time (UTC) at which a change in the multiplayer server state was observed. */
14551460
public Date LastStateTransitionTime;
14561461
/** The ports the multiplayer server uses. */
14571462
public ArrayList<Port> Ports;
1463+
/** The list of public Ipv4 addresses associated with the server. */
1464+
public ArrayList<PublicIpAddress> PublicIPV4Addresses;
14581465
/** The region the multiplayer server is located in. */
14591466
public String Region;
14601467
/** The string server ID of the multiplayer server generated by PlayFab. */
@@ -2217,6 +2224,16 @@ public static enum ProtocolType {
22172224
UDP
22182225
}
22192226

2227+
public static class PublicIpAddress {
2228+
/** FQDN of the public IP */
2229+
public String FQDN;
2230+
/** Server IP Address */
2231+
public String IpAddress;
2232+
/** Routing Type of the public IP. */
2233+
public String RoutingType;
2234+
2235+
}
2236+
22202237
public static class QosServer {
22212238
/** The region the QoS server is located in. */
22222239
public String Region;
@@ -2294,12 +2311,14 @@ public static class RequestMultiplayerServerResponse {
22942311
public ArrayList<ConnectedPlayer> ConnectedPlayers;
22952312
/** The fully qualified domain name of the virtual machine that is hosting this multiplayer server. */
22962313
public String FQDN;
2297-
/** The IPv4 address of the virtual machine that is hosting this multiplayer server. */
2314+
/** The public IPv4 address of the virtual machine that is hosting this multiplayer server. */
22982315
public String IPV4Address;
22992316
/** The time (UTC) at which a change in the multiplayer server state was observed. */
23002317
public Date LastStateTransitionTime;
23012318
/** The ports the multiplayer server uses. */
23022319
public ArrayList<Port> Ports;
2320+
/** The list of public Ipv4 addresses associated with the server. */
2321+
public ArrayList<PublicIpAddress> PublicIPV4Addresses;
23032322
/** The region the multiplayer server is located in. */
23042323
public String Region;
23052324
/** The string server ID of the multiplayer server generated by PlayFab. */
@@ -2333,6 +2352,11 @@ public static class RolloverContainerRegistryCredentialsResponse {
23332352

23342353
}
23352354

2355+
public static enum RoutingType {
2356+
Microsoft,
2357+
Internet
2358+
}
2359+
23362360
public static class Schedule {
23372361
/** A short description about this schedule. For example, "Game launch on July 15th". */
23382362
public String Description;

PlayFabClientSDK/src/main/java/com/playfab/PlayFabSettings.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
import com.playfab.PlayFabErrors.ErrorCallback;
99

1010
public class PlayFabSettings {
11-
public static String SdkVersion = "0.189.230512";
12-
public static String BuildIdentifier = "adobuild_javasdk_118";
13-
public static String SdkVersionString = "JavaSDK-0.189.230512";
11+
public static String SdkVersion = "0.190.230529";
12+
public static String BuildIdentifier = "adobuild_javasdk_115";
13+
public static String SdkVersionString = "JavaSDK-0.190.230529";
1414

1515
public static Map<String, String> RequestGetParams;
1616
static {

PlayFabSDK/packageMe.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
55
popd
66

77
cd target
8-
Copy-Item combo-sdk-0.189.230512.jar -Destination ../../builds/combo-sdk-0.189.230512.jar
8+
Copy-Item combo-sdk-0.190.230529.jar -Destination ../../builds/combo-sdk-0.190.230529.jar

0 commit comments

Comments
 (0)